diff --git a/README.md b/README.md index 83891a9..1278aae 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.90.8 of Dear ImGui with internal api] +* currently this wrapper is based on version [1.90.9 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_glfw_dx11/CMakeLists.txt b/backend_test/example_glfw_dx11/CMakeLists.txt new file mode 100644 index 0000000..3e65bd6 --- /dev/null +++ b/backend_test/example_glfw_dx11/CMakeLists.txt @@ -0,0 +1,109 @@ +Project(cimgui_glfwdx11) +cmake_minimum_required(VERSION 3.11) +if(WIN32) # to mingw work as all the others + set(CMAKE_SHARED_LIBRARY_PREFIX "") +endif(WIN32) + +#run in build dir +set (CMAKE_INSTALL_PREFIX ${CMAKE_CURRENT_BINARY_DIR}) + +set (CMAKE_CXX_STANDARD 11) + +# general settings +if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/../../imgui/backends) + set(BAKENDS_FOLDER "../../imgui/backends/") +else() + set(BAKENDS_FOLDER "../../imgui/examples/") +endif() + +if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/../../imgui/imgui_tables.cpp) + set(TABLES_SOURCE "../../imgui/imgui_tables.cpp") +else() + set(TABLES_SOURCE "") +endif() + +include_directories(../../imgui) +add_definitions("-DIMGUI_DISABLE_OBSOLETE_FUNCTIONS=1") + +include_directories(../../) +set(IMGUI_SOURCES +../../cimgui.cpp +../../imgui/imgui.cpp +../../imgui/imgui_draw.cpp +../../imgui/imgui_demo.cpp +../../imgui/imgui_widgets.cpp +${TABLES_SOURCE} +) + +set(IMGUI_LIBRARIES ) + +if (WIN32) + add_definitions("-DIMGUI_IMPL_API=extern \"C\" __declspec\(dllexport\)") +else(WIN32) + add_definitions("-DIMGUI_IMPL_API=extern \"C\" ") +endif(WIN32) + +add_compile_definitions("IMGUI_IMPL_OPENGL_LOADER_GL3W") + +# optional adding freetype +option(IMGUI_FREETYPE "add Freetype2" OFF) + +if(IMGUI_FREETYPE) + FIND_PACKAGE(freetype REQUIRED PATHS ${FREETYPE_PATH}) + list(APPEND IMGUI_LIBRARIES freetype) + list(APPEND IMGUI_SOURCES ../../imgui/misc/freetype/imgui_freetype.cpp) + add_definitions("-DCIMGUI_FREETYPE=1") +endif(IMGUI_FREETYPE) + +# dx11 +list(APPEND IMGUI_SOURCES ${BAKENDS_FOLDER}imgui_impl_dx11.cpp) + +if(WIN32) + list(APPEND IMGUI_LIBRARIES opengl32) +else(WIN32) # Unix + list(APPEND IMGUI_LIBRARIES GL) +endif(WIN32) + +# GLFW +list(APPEND IMGUI_SOURCES ${BAKENDS_FOLDER}imgui_impl_glfw.cpp) + +set(GLFW_VERSION 3.3.8) +include(FetchContent) + FetchContent_Declare( + glfw + URL https://github.com/glfw/glfw/archive/refs/tags/${GLFW_VERSION}.tar.gz) + +FetchContent_GetProperties(glfw) +if (NOT glfw_POPULATED) + set(FETCHCONTENT_QUIET NO) + FetchContent_Populate(glfw) + set(GLFW_BUILD_DOCS OFF CACHE BOOL "" FORCE) + set(GLFW_BUILD_TESTS OFF CACHE BOOL "" FORCE) + set(GLFW_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE) + if (NOT STATIC_BUILD) + set(BUILD_SHARED_LIBS ON CACHE BOOL "" FORCE) + endif() + add_subdirectory(${glfw_SOURCE_DIR} ${glfw_BINARY_DIR} EXCLUDE_FROM_ALL) +endif() + +install(TARGETS glfw RUNTIME DESTINATION ${CMAKE_CURRENT_BINARY_DIR} + LIBRARY DESTINATION ${CMAKE_CURRENT_BINARY_DIR} +) +#FIND_PACKAGE(glfw3 PATHS "C:/LuaGL/gitsources/BUILDS/GLFW/install") + +if (NOT STATIC_BUILD) + add_library(cimgui SHARED ${IMGUI_SOURCES}) +else() + add_library(cimgui STATIC ${IMGUI_SOURCES}) +endif() + +target_link_libraries(cimgui ${IMGUI_LIBRARIES} glfw) + + +# using library +include_directories(../../generator/output/) +add_executable(${PROJECT_NAME} main.c) +target_compile_definitions(${PROJECT_NAME} PUBLIC -DCIMGUI_USE_DX11 -DCIMGUI_USE_GLFW) +target_link_libraries(${PROJECT_NAME} d3d11 d3dcompiler.lib cimgui) + + diff --git a/backend_test/example_glfw_dx11/README.md b/backend_test/example_glfw_dx11/README.md new file mode 100644 index 0000000..2847783 --- /dev/null +++ b/backend_test/example_glfw_dx11/README.md @@ -0,0 +1,6 @@ + +This example needs dx11 in generation before compile. (add dx11 to generator.bat(sh) and generate) + +`STATIC_BUILD` is the cmake variable to do static linking + +Only tested with VC nmake. \ No newline at end of file diff --git a/backend_test/example_glfw_dx11/main.c b/backend_test/example_glfw_dx11/main.c new file mode 100644 index 0000000..a3a4bda --- /dev/null +++ b/backend_test/example_glfw_dx11/main.c @@ -0,0 +1,247 @@ +#define CIMGUI_DEFINE_ENUMS_AND_STRUCTS +#include "cimgui.h" +#include "cimgui_impl.h" +#define D3D11_NO_HELPERS +#define CINTERFACE +#define COBJMACROS +#define WIN32_LEAN_AND_MEAN +#include +#include +#define GLFW_EXPOSE_NATIVE_WIN32 +#include +#include +#ifdef _MSC_VER +#include +#endif + +#pragma comment(lib, "dxguid.lib") + +#ifdef IMGUI_HAS_IMSTR +#define igBegin igBegin_Str +#define igSliderFloat igSliderFloat_Str +#define igCheckbox igCheckbox_Str +#define igColorEdit3 igColorEdit3_Str +#define igButton igButton_Str +#endif + +GLFWwindow *window; + +// Data +static ID3D11Device* g_pd3dDevice = NULL; +static ID3D11DeviceContext* g_pd3dDeviceContext = NULL; +static IDXGISwapChain* g_pSwapChain = NULL; +static ID3D11RenderTargetView* g_mainRenderTargetView = NULL; + +// Forward declarations of helper functions +bool CreateDeviceD3D(HWND hWnd); +void CleanupDeviceD3D(); +void CreateRenderTarget(); +void CleanupRenderTarget(); + +void window_size_callback(GLFWwindow* window, int width, int height) +{ + CleanupRenderTarget(); + IDXGISwapChain_ResizeBuffers(g_pSwapChain, 0, width, height, DXGI_FORMAT_UNKNOWN, 0); + CreateRenderTarget(); +} + +int main(int argc, char *argv[]) +{ + + if (!glfwInit()) + return -1; + + // Decide GL+GLSL versions + glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API); + + + + // just an extra window hint for resize + glfwWindowHint(GLFW_RESIZABLE, GLFW_TRUE); + + window = glfwCreateWindow(1024, 768, "Hello World!", NULL, NULL); + if (!window) + { + printf("Failed to create window! Terminating!\n"); + glfwTerminate(); + return -1; + } + + // + HWND hwnd = glfwGetWin32Window(window); + if (hwnd == NULL) + { + printf("Failed to get win32 window! Terminating!\n"); + glfwTerminate(); + return -1; + } + // Initialize Direct3D + if (!CreateDeviceD3D(hwnd)) + { + CleanupDeviceD3D(); + return 1; + } + + glfwSetWindowSizeCallback(window, window_size_callback); + + // setup imgui + igCreateContext(NULL); + + // set docking + ImGuiIO *ioptr = igGetIO(); + ioptr->ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; // Enable Keyboard Controls + //ioptr->ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // Enable Gamepad Controls +#ifdef IMGUI_HAS_DOCK + ioptr->ConfigFlags |= ImGuiConfigFlags_DockingEnable; // Enable Docking + ioptr->ConfigFlags |= ImGuiConfigFlags_ViewportsEnable; // Enable Multi-Viewport / Platform Windows +#endif + + ImGui_ImplGlfw_InitForOther(window, true); + ImGui_ImplDX11_Init(g_pd3dDevice, g_pd3dDeviceContext); + + igStyleColorsDark(NULL); + // ImFontAtlas_AddFontDefault(io.Fonts, NULL); + + bool showDemoWindow = true; + bool showAnotherWindow = false; + ImVec4 clearColor; + clearColor.x = 0.45f; + clearColor.y = 0.55f; + clearColor.z = 0.60f; + clearColor.w = 1.00f; + + // main event loop + bool quit = false; + while (!glfwWindowShouldClose(window)) + { + + glfwPollEvents(); + + // start imgui frame + ImGui_ImplDX11_NewFrame(); + ImGui_ImplGlfw_NewFrame(); + igNewFrame(); + + if (showDemoWindow) + igShowDemoWindow(&showDemoWindow); + + // show a simple window that we created ourselves. + { + static float f = 0.0f; + static int counter = 0; + + igBegin("Hello, world!", NULL, 0); + igText("This is some useful text"); + igCheckbox("Demo window", &showDemoWindow); + igCheckbox("Another window", &showAnotherWindow); + + igSliderFloat("Float", &f, 0.0f, 1.0f, "%.3f", 0); + igColorEdit3("clear color", (float *)&clearColor, 0); + + ImVec2 buttonSize; + buttonSize.x = 0; + buttonSize.y = 0; + if (igButton("Button", buttonSize)) + counter++; + igSameLine(0.0f, -1.0f); + igText("counter = %d", counter); + + igText("Application average %.3f ms/frame (%.1f FPS)", + 1000.0f / igGetIO()->Framerate, igGetIO()->Framerate); + igEnd(); + } + + if (showAnotherWindow) + { + igBegin("imgui Another Window", &showAnotherWindow, 0); + igText("Hello from imgui"); + ImVec2 buttonSize; + buttonSize.x = 0; + buttonSize.y = 0; + if (igButton("Close me", buttonSize)) { + showAnotherWindow = false; + } + igEnd(); + } + + // render + igRender(); + const float clear_color_with_alpha[4] = { clearColor.x * clearColor.w, clearColor.y * clearColor.w, clearColor.z * clearColor.w, clearColor.w }; + ID3D11DeviceContext_OMSetRenderTargets(g_pd3dDeviceContext, 1, &g_mainRenderTargetView, NULL); + ID3D11DeviceContext_ClearRenderTargetView(g_pd3dDeviceContext, g_mainRenderTargetView, clear_color_with_alpha); + ImGui_ImplDX11_RenderDrawData(igGetDrawData()); +#ifdef IMGUI_HAS_DOCK + if (ioptr->ConfigFlags & ImGuiConfigFlags_ViewportsEnable) + { + igUpdatePlatformWindows(); + igRenderPlatformWindowsDefault(NULL, NULL); + } +#endif + IDXGISwapChain_Present(g_pSwapChain,1, 0); // Present with vsync + //g_pSwapChain->Present(0, 0); // Present without vsync + } + + // clean up + ImGui_ImplDX11_Shutdown(); + ImGui_ImplGlfw_Shutdown(); + igDestroyContext(NULL); + +CleanupDeviceD3D(); + glfwDestroyWindow(window); + glfwTerminate(); + + return 0; +} + +// Helper functions to use DirectX11 +bool CreateDeviceD3D(HWND hWnd) +{ + // Setup swap chain + DXGI_SWAP_CHAIN_DESC sd; + ZeroMemory(&sd, sizeof(sd)); + sd.BufferCount = 2; + sd.BufferDesc.Width = 0; + sd.BufferDesc.Height = 0; + sd.BufferDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM; + sd.BufferDesc.RefreshRate.Numerator = 60; + sd.BufferDesc.RefreshRate.Denominator = 1; + sd.Flags = DXGI_SWAP_CHAIN_FLAG_ALLOW_MODE_SWITCH; + sd.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT; + sd.OutputWindow = hWnd; + sd.SampleDesc.Count = 1; + sd.SampleDesc.Quality = 0; + sd.Windowed = TRUE; + sd.SwapEffect = DXGI_SWAP_EFFECT_DISCARD; + + UINT createDeviceFlags = 0; + //createDeviceFlags |= D3D11_CREATE_DEVICE_DEBUG; + D3D_FEATURE_LEVEL featureLevel; + const D3D_FEATURE_LEVEL featureLevelArray[2] = { D3D_FEATURE_LEVEL_11_0, D3D_FEATURE_LEVEL_10_0, }; + if (D3D11CreateDeviceAndSwapChain(NULL, D3D_DRIVER_TYPE_HARDWARE, NULL, createDeviceFlags, featureLevelArray, 2, D3D11_SDK_VERSION, &sd, &g_pSwapChain, &g_pd3dDevice, &featureLevel, &g_pd3dDeviceContext) != S_OK) + return false; + + CreateRenderTarget(); + return true; +} + +void CleanupDeviceD3D() +{ + CleanupRenderTarget(); + if (g_pSwapChain) { IDXGISwapChain_Release(g_pSwapChain); g_pSwapChain = NULL; } + if (g_pd3dDeviceContext) { ID3D11DeviceContext_Release(g_pd3dDeviceContext); g_pd3dDeviceContext = NULL; } + if (g_pd3dDevice) { ID3D11Device_Release(g_pd3dDevice); g_pd3dDevice = NULL; } +} + +void CreateRenderTarget() +{ + ID3D11Resource* pBackBuffer; + IDXGISwapChain_GetBuffer(g_pSwapChain, 0, &IID_ID3D11Texture2D, (void**)&pBackBuffer); + ID3D11Device_CreateRenderTargetView(g_pd3dDevice, pBackBuffer, NULL, &g_mainRenderTargetView); + ID3D11Texture2D_Release(pBackBuffer); +} + +void CleanupRenderTarget() +{ + if (g_mainRenderTargetView) { ID3D11RenderTargetView_Release(g_mainRenderTargetView); g_mainRenderTargetView = NULL; } +} + diff --git a/backend_test/example_glfw_opengl3/CMakeLists.txt b/backend_test/example_glfw_opengl3/CMakeLists.txt index fb0e940..63b9d14 100644 --- a/backend_test/example_glfw_opengl3/CMakeLists.txt +++ b/backend_test/example_glfw_opengl3/CMakeLists.txt @@ -4,6 +4,9 @@ if(WIN32) # to mingw work as all the others set(CMAKE_SHARED_LIBRARY_PREFIX "") endif(WIN32) +#run in build dir +set (CMAKE_INSTALL_PREFIX ${CMAKE_CURRENT_BINARY_DIR}) + set (CMAKE_CXX_STANDARD 11) # general settings @@ -32,14 +35,8 @@ set(IMGUI_SOURCES ${TABLES_SOURCE} ) -set(IMGUI_SOURCES_sdl) set(IMGUI_LIBRARIES ) -if (WIN32) - add_definitions("-DIMGUI_IMPL_API=extern \"C\" __declspec\(dllexport\)") -else(WIN32) - add_definitions("-DIMGUI_IMPL_API=extern \"C\" ") -endif(WIN32) add_compile_definitions("IMGUI_IMPL_OPENGL_LOADER_GL3W") @@ -65,28 +62,44 @@ endif(WIN32) # GLFW list(APPEND IMGUI_SOURCES ${BAKENDS_FOLDER}imgui_impl_glfw.cpp) -set(GLFW_VERSION 3.3.8) +set(GLFW_VERSION 3.4) include(FetchContent) FetchContent_Declare( glfw URL https://github.com/glfw/glfw/archive/refs/tags/${GLFW_VERSION}.tar.gz) + #GIT_REPOSITORY https://github.com/glfw/glfw ) FetchContent_GetProperties(glfw) if (NOT glfw_POPULATED) set(FETCHCONTENT_QUIET NO) FetchContent_Populate(glfw) + set(GLFW_BUILD_DOCS OFF CACHE BOOL "" FORCE) set(GLFW_BUILD_TESTS OFF CACHE BOOL "" FORCE) set(GLFW_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE) - add_subdirectory(${glfw_SOURCE_DIR} ${glfw_BINARY_DIR}) + if (NOT STATIC_BUILD) + set(BUILD_SHARED_LIBS ON CACHE BOOL "" FORCE) + endif() + add_subdirectory(${glfw_SOURCE_DIR} ${glfw_BINARY_DIR} EXCLUDE_FROM_ALL) endif() +#if dynamic glfw then install +install(TARGETS glfw RUNTIME DESTINATION ${CMAKE_CURRENT_BINARY_DIR} + LIBRARY DESTINATION ${CMAKE_CURRENT_BINARY_DIR} +) +#FIND_PACKAGE(glfw3 PATHS "C:/LuaGL/gitsources/BUILDS/GLFW/install" REQUIRED) -# glfw/imgui gets confused if it is not statically built. -IF (WIN32) - add_library(cimgui STATIC ${IMGUI_SOURCES}) -ELSE() + +if (NOT STATIC_BUILD) add_library(cimgui SHARED ${IMGUI_SOURCES}) -ENDIF() +else() + add_library(cimgui STATIC ${IMGUI_SOURCES}) +endif() + +if (WIN32) + target_compile_definitions(cimgui PUBLIC "-DIMGUI_IMPL_API=extern \"C\" __declspec\(dllexport\)") +else(WIN32) + target_compile_definitions(cimgui PUBLIC "-DIMGUI_IMPL_API=extern \"C\" ") +endif(WIN32) target_link_libraries(cimgui ${IMGUI_LIBRARIES} glfw) @@ -95,9 +108,6 @@ target_link_libraries(cimgui ${IMGUI_LIBRARIES} glfw) include_directories(../../generator/output/) add_executable(${PROJECT_NAME} main.c) target_compile_definitions(${PROJECT_NAME} PUBLIC -DCIMGUI_USE_OPENGL3 -DCIMGUI_USE_GLFW) -if (MINGW) - target_link_options(${PROJECT_NAME} PRIVATE "-mconsole") -endif() -target_link_libraries(${PROJECT_NAME} ${IMGUI_SDL_LIBRARY} cimgui) +target_link_libraries(${PROJECT_NAME} cimgui) diff --git a/backend_test/example_glfw_opengl3/README.md b/backend_test/example_glfw_opengl3/README.md new file mode 100644 index 0000000..9c52d63 --- /dev/null +++ b/backend_test/example_glfw_opengl3/README.md @@ -0,0 +1,4 @@ + +To build use `cmake path_to_example_glfw_opengl3` and then `make install` + +`STATIC_BUILD` is a cmake variable if you want to do static linking. \ No newline at end of file diff --git a/cimgui.cpp b/cimgui.cpp index 0098cbc..be49735 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.90.8" 19080 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.90.9" 19090 from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api #ifdef IMGUI_ENABLE_FREETYPE #ifndef CIMGUI_FREETYPE @@ -1119,9 +1119,9 @@ CIMGUI_API bool igIsPopupOpen_Str(const char* str_id,ImGuiPopupFlags flags) { return ImGui::IsPopupOpen(str_id,flags); } -CIMGUI_API bool igBeginTable(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width) +CIMGUI_API bool igBeginTable(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width) { - return ImGui::BeginTable(str_id,column,flags,outer_size,inner_width); + return ImGui::BeginTable(str_id,columns,flags,outer_size,inner_width); } CIMGUI_API void igEndTable() { @@ -1187,6 +1187,10 @@ CIMGUI_API void igTableSetColumnEnabled(int column_n,bool v) { return ImGui::TableSetColumnEnabled(column_n,v); } +CIMGUI_API int igTableGetHoveredColumn() +{ + return ImGui::TableGetHoveredColumn(); +} CIMGUI_API void igTableSetBgColor(ImGuiTableBgTarget target,ImU32 color,int column_n) { return ImGui::TableSetBgColor(target,color,column_n); @@ -1399,6 +1403,7 @@ CIMGUI_API ImGuiViewport* igGetMainViewport() { return ImGui::GetMainViewport(); } +<<<<<<< HEAD CIMGUI_API ImDrawList* igGetBackgroundDrawList_Nil() { return ImGui::GetBackgroundDrawList(); @@ -1406,6 +1411,15 @@ CIMGUI_API ImDrawList* igGetBackgroundDrawList_Nil() CIMGUI_API ImDrawList* igGetForegroundDrawList_Nil() { return ImGui::GetForegroundDrawList(); +======= +CIMGUI_API ImDrawList* igGetBackgroundDrawList(ImGuiViewport* viewport) +{ + return ImGui::GetBackgroundDrawList(viewport); +} +CIMGUI_API ImDrawList* igGetForegroundDrawList_ViewportPtr(ImGuiViewport* viewport) +{ + return ImGui::GetForegroundDrawList(viewport); +>>>>>>> docking_inter } CIMGUI_API bool igIsRectVisible_Nil(const ImVec2 size) { @@ -1699,6 +1713,10 @@ CIMGUI_API void ImGuiIO_ClearInputKeys(ImGuiIO* self) { return self->ClearInputKeys(); } +CIMGUI_API void ImGuiIO_ClearInputMouse(ImGuiIO* self) +{ + return self->ClearInputMouse(); +} CIMGUI_API ImGuiIO* ImGuiIO_ImGuiIO(void) { return IM_NEW(ImGuiIO)(); @@ -3186,6 +3204,10 @@ CIMGUI_API void ImGuiTextIndex_append(ImGuiTextIndex* self,const char* base,int { return self->append(base,old_size,new_size); } +CIMGUI_API ImGuiStoragePair* igImLowerBound(ImGuiStoragePair* in_begin,ImGuiStoragePair* in_end,ImGuiID key) +{ + return ImLowerBound(in_begin,in_end,key); +} CIMGUI_API ImDrawListSharedData* ImDrawListSharedData_ImDrawListSharedData(void) { return IM_NEW(ImDrawListSharedData)(); @@ -4118,6 +4140,10 @@ CIMGUI_API bool igBeginChildEx(const char* name,ImGuiID id,const ImVec2 size_arg { return ImGui::BeginChildEx(name,id,size_arg,child_flags,window_flags); } +CIMGUI_API bool igBeginPopupEx(ImGuiID id,ImGuiWindowFlags extra_window_flags) +{ + return ImGui::BeginPopupEx(id,extra_window_flags); +} CIMGUI_API void igOpenPopupEx(ImGuiID id,ImGuiPopupFlags popup_flags) { return ImGui::OpenPopupEx(id,popup_flags); @@ -4138,18 +4164,6 @@ CIMGUI_API bool igIsPopupOpen_ID(ImGuiID id,ImGuiPopupFlags popup_flags) { return ImGui::IsPopupOpen(id,popup_flags); } -CIMGUI_API bool igBeginPopupEx(ImGuiID id,ImGuiWindowFlags extra_flags) -{ - return ImGui::BeginPopupEx(id,extra_flags); -} -CIMGUI_API bool igBeginTooltipEx(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags) -{ - return ImGui::BeginTooltipEx(tooltip_flags,extra_window_flags); -} -CIMGUI_API bool igBeginTooltipHidden() -{ - return ImGui::BeginTooltipHidden(); -} CIMGUI_API void igGetPopupAllowedExtentRect(ImRect *pOut,ImGuiWindow* window) { *pOut = ImGui::GetPopupAllowedExtentRect(window); @@ -4174,6 +4188,14 @@ CIMGUI_API void igFindBestWindowPosForPopupEx(ImVec2 *pOut,const ImVec2 ref_pos, { *pOut = ImGui::FindBestWindowPosForPopupEx(ref_pos,size,last_dir,r_outer,r_avoid,policy); } +CIMGUI_API bool igBeginTooltipEx(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags) +{ + return ImGui::BeginTooltipEx(tooltip_flags,extra_window_flags); +} +CIMGUI_API bool igBeginTooltipHidden() +{ + return ImGui::BeginTooltipHidden(); +} CIMGUI_API bool igBeginViewportSideBar(const char* name,ImGuiViewport* viewport,ImGuiDir dir,float size,ImGuiWindowFlags window_flags) { return ImGui::BeginViewportSideBar(name,viewport,dir,size,window_flags); @@ -4534,10 +4556,6 @@ CIMGUI_API void igTableSetColumnSortDirection(int column_n,ImGuiSortDirection so { return ImGui::TableSetColumnSortDirection(column_n,sort_direction,append_to_sort_specs); } -CIMGUI_API int igTableGetHoveredColumn() -{ - return ImGui::TableGetHoveredColumn(); -} CIMGUI_API int igTableGetHoveredRow() { return ImGui::TableGetHoveredRow(); diff --git a/cimgui.h b/cimgui.h index a355708..7160914 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.90.8" 19080 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.90.9" 19090 from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api #ifndef CIMGUI_INCLUDED #define CIMGUI_INCLUDED @@ -64,6 +64,7 @@ typedef struct ImGuiPayload ImGuiPayload; typedef struct ImGuiPlatformImeData ImGuiPlatformImeData; typedef struct ImGuiSizeCallbackData ImGuiSizeCallbackData; typedef struct ImGuiStorage ImGuiStorage; +typedef struct ImGuiStoragePair ImGuiStoragePair; typedef struct ImGuiStyle ImGuiStyle; typedef struct ImGuiTableSortSpecs ImGuiTableSortSpecs; typedef struct ImGuiTableColumnSortSpecs ImGuiTableColumnSortSpecs; @@ -141,6 +142,7 @@ struct ImGuiPayload; struct ImGuiPlatformImeData; struct ImGuiSizeCallbackData; struct ImGuiStorage; +struct ImGuiStoragePair; struct ImGuiStyle; struct ImGuiTableSortSpecs; struct ImGuiTableColumnSortSpecs; @@ -223,7 +225,6 @@ typedef enum { ImGuiWindowFlags_NoNav = ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus, ImGuiWindowFlags_NoDecoration = ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse, ImGuiWindowFlags_NoInputs = ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus, - ImGuiWindowFlags_NavFlattened = 1 << 23, ImGuiWindowFlags_ChildWindow = 1 << 24, ImGuiWindowFlags_Tooltip = 1 << 25, ImGuiWindowFlags_Popup = 1 << 26, @@ -240,6 +241,7 @@ typedef enum { ImGuiChildFlags_AutoResizeY = 1 << 5, ImGuiChildFlags_AlwaysAutoResize = 1 << 6, ImGuiChildFlags_FrameStyle = 1 << 7, + ImGuiChildFlags_NavFlattened = 1 << 8, }ImGuiChildFlags_; typedef enum { ImGuiInputTextFlags_None = 0, @@ -329,8 +331,9 @@ typedef enum { ImGuiTabBarFlags_NoCloseWithMiddleMouseButton = 1 << 3, ImGuiTabBarFlags_NoTabListScrollingButtons = 1 << 4, ImGuiTabBarFlags_NoTooltip = 1 << 5, - ImGuiTabBarFlags_FittingPolicyResizeDown = 1 << 6, - ImGuiTabBarFlags_FittingPolicyScroll = 1 << 7, + ImGuiTabBarFlags_DrawSelectedOverline = 1 << 6, + ImGuiTabBarFlags_FittingPolicyResizeDown = 1 << 7, + ImGuiTabBarFlags_FittingPolicyScroll = 1 << 8, ImGuiTabBarFlags_FittingPolicyMask_ = ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll, ImGuiTabBarFlags_FittingPolicyDefault_ = ImGuiTabBarFlags_FittingPolicyResizeDown, }ImGuiTabBarFlags_; @@ -383,7 +386,9 @@ typedef enum { ImGuiDragDropFlags_SourceNoHoldToOpenOthers = 1 << 2, ImGuiDragDropFlags_SourceAllowNullID = 1 << 3, ImGuiDragDropFlags_SourceExtern = 1 << 4, - ImGuiDragDropFlags_SourceAutoExpirePayload = 1 << 5, + ImGuiDragDropFlags_PayloadAutoExpire = 1 << 5, + ImGuiDragDropFlags_PayloadNoCrossContext = 1 << 6, + ImGuiDragDropFlags_PayloadNoCrossProcess = 1 << 7, ImGuiDragDropFlags_AcceptBeforeDelivery = 1 << 10, ImGuiDragDropFlags_AcceptNoDrawDefaultRect = 1 << 11, ImGuiDragDropFlags_AcceptNoPreviewTooltip = 1 << 12, @@ -605,6 +610,14 @@ typedef enum { ImGuiConfigFlags_NavNoCaptureKeyboard = 1 << 3, ImGuiConfigFlags_NoMouse = 1 << 4, ImGuiConfigFlags_NoMouseCursorChange = 1 << 5, +<<<<<<< HEAD +======= + ImGuiConfigFlags_NoKeyboard = 1 << 6, + ImGuiConfigFlags_DockingEnable = 1 << 7, + ImGuiConfigFlags_ViewportsEnable = 1 << 10, + ImGuiConfigFlags_DpiEnableScaleViewports= 1 << 14, + ImGuiConfigFlags_DpiEnableScaleFonts = 1 << 15, +>>>>>>> docking_inter ImGuiConfigFlags_IsSRGB = 1 << 20, ImGuiConfigFlags_IsTouchScreen = 1 << 21, }ImGuiConfigFlags_; @@ -649,11 +662,21 @@ typedef enum { ImGuiCol_ResizeGrip, ImGuiCol_ResizeGripHovered, ImGuiCol_ResizeGripActive, - ImGuiCol_Tab, ImGuiCol_TabHovered, +<<<<<<< HEAD ImGuiCol_TabActive, ImGuiCol_TabUnfocused, ImGuiCol_TabUnfocusedActive, +======= + ImGuiCol_Tab, + ImGuiCol_TabSelected, + ImGuiCol_TabSelectedOverline, + ImGuiCol_TabDimmed, + ImGuiCol_TabDimmedSelected, + ImGuiCol_TabDimmedSelectedOverline, + ImGuiCol_DockingPreview, + ImGuiCol_DockingEmptyBg, +>>>>>>> docking_inter ImGuiCol_PlotLines, ImGuiCol_PlotLinesHovered, ImGuiCol_PlotHistogram, @@ -669,7 +692,7 @@ typedef enum { ImGuiCol_NavWindowingHighlight, ImGuiCol_NavWindowingDimBg, ImGuiCol_ModalWindowDimBg, - ImGuiCol_COUNT + ImGuiCol_COUNT, }ImGuiCol_; typedef enum { ImGuiStyleVar_Alpha, @@ -750,6 +773,7 @@ typedef enum { ImGuiSliderFlags_Logarithmic = 1 << 5, ImGuiSliderFlags_NoRoundToFormat = 1 << 6, ImGuiSliderFlags_NoInput = 1 << 7, + ImGuiSliderFlags_WrapAround = 1 << 8, ImGuiSliderFlags_InvalidMask_ = 0x7000000F, }ImGuiSliderFlags_; typedef enum { @@ -1095,18 +1119,15 @@ struct ImGuiTextBuffer }; struct ImGuiStoragePair { - ImGuiID key; - union { int val_i; float val_f; void* val_p; }; + ImGuiID key; + union { int val_i; float val_f; void* val_p; }; }; -typedef struct ImGuiStoragePair ImGuiStoragePair; - typedef struct ImVector_ImGuiStoragePair {int Size;int Capacity;ImGuiStoragePair* Data;} ImVector_ImGuiStoragePair; struct ImGuiStorage { ImVector_ImGuiStoragePair Data; }; -typedef struct ImGuiStoragePair ImGuiStoragePair; struct ImGuiListClipper { ImGuiContext* Ctx; @@ -2112,6 +2133,113 @@ struct ImGuiOldColumns ImVector_ImGuiOldColumnData Columns; ImDrawListSplitter Splitter; }; +<<<<<<< HEAD +======= +typedef enum { + ImGuiDockNodeFlags_DockSpace = 1 << 10, + ImGuiDockNodeFlags_CentralNode = 1 << 11, + ImGuiDockNodeFlags_NoTabBar = 1 << 12, + ImGuiDockNodeFlags_HiddenTabBar = 1 << 13, + ImGuiDockNodeFlags_NoWindowMenuButton = 1 << 14, + ImGuiDockNodeFlags_NoCloseButton = 1 << 15, + ImGuiDockNodeFlags_NoResizeX = 1 << 16, + ImGuiDockNodeFlags_NoResizeY = 1 << 17, + ImGuiDockNodeFlags_DockedWindowsInFocusRoute= 1 << 18, + ImGuiDockNodeFlags_NoDockingSplitOther = 1 << 19, + ImGuiDockNodeFlags_NoDockingOverMe = 1 << 20, + ImGuiDockNodeFlags_NoDockingOverOther = 1 << 21, + ImGuiDockNodeFlags_NoDockingOverEmpty = 1 << 22, + ImGuiDockNodeFlags_NoDocking = ImGuiDockNodeFlags_NoDockingOverMe | ImGuiDockNodeFlags_NoDockingOverOther | ImGuiDockNodeFlags_NoDockingOverEmpty | ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoDockingSplitOther, + ImGuiDockNodeFlags_SharedFlagsInheritMask_ = ~0, + ImGuiDockNodeFlags_NoResizeFlagsMask_ = ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY, + ImGuiDockNodeFlags_LocalFlagsTransferMask_ = ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton, + ImGuiDockNodeFlags_SavedFlagsMask_ = ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton, +}ImGuiDockNodeFlagsPrivate_; +typedef enum { + ImGuiDataAuthority_Auto, + ImGuiDataAuthority_DockNode, + ImGuiDataAuthority_Window, +}ImGuiDataAuthority_; +typedef enum { + ImGuiDockNodeState_Unknown, + ImGuiDockNodeState_HostWindowHiddenBecauseSingleWindow, + ImGuiDockNodeState_HostWindowHiddenBecauseWindowsAreResizing, + ImGuiDockNodeState_HostWindowVisible, +}ImGuiDockNodeState; +typedef struct ImVector_ImGuiWindowPtr {int Size;int Capacity;ImGuiWindow** Data;} ImVector_ImGuiWindowPtr; + +struct ImGuiDockNode +{ + ImGuiID ID; + ImGuiDockNodeFlags SharedFlags; + ImGuiDockNodeFlags LocalFlags; + ImGuiDockNodeFlags LocalFlagsInWindows; + ImGuiDockNodeFlags MergedFlags; + ImGuiDockNodeState State; + ImGuiDockNode* ParentNode; + ImGuiDockNode* ChildNodes[2]; + ImVector_ImGuiWindowPtr Windows; + ImGuiTabBar* TabBar; + ImVec2 Pos; + ImVec2 Size; + ImVec2 SizeRef; + ImGuiAxis SplitAxis; + ImGuiWindowClass WindowClass; + ImU32 LastBgColor; + ImGuiWindow* HostWindow; + ImGuiWindow* VisibleWindow; + ImGuiDockNode* CentralNode; + ImGuiDockNode* OnlyNodeWithWindows; + int CountNodeWithWindows; + int LastFrameAlive; + int LastFrameActive; + int LastFrameFocused; + ImGuiID LastFocusedNodeId; + ImGuiID SelectedTabId; + ImGuiID WantCloseTabId; + ImGuiID RefViewportId; + ImGuiDataAuthority AuthorityForPos :3; + ImGuiDataAuthority AuthorityForSize :3; + ImGuiDataAuthority AuthorityForViewport :3; + bool IsVisible :1; + bool IsFocused :1; + bool IsBgDrawnThisFrame :1; + bool HasCloseButton :1; + bool HasWindowMenuButton :1; + bool HasCentralNodeChild :1; + bool WantCloseAll :1; + bool WantLockSizeOnce :1; + bool WantMouseMove :1; + bool WantHiddenTabBarUpdate :1; + bool WantHiddenTabBarToggle :1; +}; +typedef enum { + ImGuiWindowDockStyleCol_Text, + ImGuiWindowDockStyleCol_TabHovered, + ImGuiWindowDockStyleCol_TabFocused, + ImGuiWindowDockStyleCol_TabSelected, + ImGuiWindowDockStyleCol_TabSelectedOverline, + ImGuiWindowDockStyleCol_TabDimmed, + ImGuiWindowDockStyleCol_TabDimmedSelected, + ImGuiWindowDockStyleCol_TabDimmedSelectedOverline, + ImGuiWindowDockStyleCol_COUNT +}ImGuiWindowDockStyleCol; +struct ImGuiWindowDockStyle +{ + ImU32 Colors[ImGuiWindowDockStyleCol_COUNT]; +}; +typedef struct ImVector_ImGuiDockRequest {int Size;int Capacity;ImGuiDockRequest* Data;} ImVector_ImGuiDockRequest; + +typedef struct ImVector_ImGuiDockNodeSettings {int Size;int Capacity;ImGuiDockNodeSettings* Data;} ImVector_ImGuiDockNodeSettings; + +struct ImGuiDockContext +{ + ImGuiStorage Nodes; + ImVector_ImGuiDockRequest Requests; + ImVector_ImGuiDockNodeSettings NodesSettings; + bool WantFullRebuild; +}; +>>>>>>> docking_inter typedef struct ImGuiViewportP ImGuiViewportP; struct ImGuiViewportP { @@ -2310,6 +2438,7 @@ struct ImGuiContext bool GcCompactAll; bool TestEngineHookItems; void* TestEngine; + char ContextName[16]; ImVector_ImGuiInputEvent InputEventsQueue; ImVector_ImGuiInputEvent InputEventsTrail; ImGuiMouseSource InputEventsNextMouseSource; @@ -2325,6 +2454,7 @@ struct ImGuiContext ImGuiWindow* CurrentWindow; ImGuiWindow* HoveredWindow; ImGuiWindow* HoveredWindowUnderMovingWindow; + ImGuiWindow* HoveredWindowBeforeClear; ImGuiWindow* MovingWindow; ImGuiWindow* WheelingWindow; ImVec2 WheelingWindowRefMousePos; @@ -2339,7 +2469,7 @@ struct ImGuiContext float HoveredIdTimer; float HoveredIdNotActiveTimer; bool HoveredIdAllowOverlap; - bool HoveredIdDisabled; + bool HoveredIdIsDisabled; bool ItemUnclipByLog; ImGuiID ActiveId; ImGuiID ActiveIdIsAlive; @@ -2391,6 +2521,7 @@ struct ImGuiContext ImGuiWindow* NavWindow; ImGuiID NavId; ImGuiID NavFocusScopeId; + ImGuiNavLayer NavLayer; ImGuiID NavActivateId; ImGuiID NavActivateDownId; ImGuiID NavActivatePressedId; @@ -2398,13 +2529,9 @@ struct ImGuiContext ImVector_ImGuiFocusScopeData NavFocusRoute; ImGuiID NavHighlightActivatedId; float NavHighlightActivatedTimer; - ImGuiID NavJustMovedToId; - ImGuiID NavJustMovedToFocusScopeId; - ImGuiKeyChord NavJustMovedToKeyMods; ImGuiID NavNextActivateId; ImGuiActivateFlags NavNextActivateFlags; ImGuiInputSource NavInputSource; - ImGuiNavLayer NavLayer; ImGuiSelectionUserData NavLastValidSelectionUserData; bool NavIdIsAlive; bool NavMousePosDirty; @@ -2432,6 +2559,12 @@ struct ImGuiContext ImGuiNavItemData NavMoveResultLocalVisible; ImGuiNavItemData NavMoveResultOther; ImGuiNavItemData NavTabbingResultFirst; + ImGuiID NavJustMovedFromFocusScopeId; + ImGuiID NavJustMovedToId; + ImGuiID NavJustMovedToFocusScopeId; + ImGuiKeyChord NavJustMovedToKeyMods; + bool NavJustMovedToIsTabbing; + bool NavJustMovedToHasSelectionData; ImGuiKeyChord ConfigNavWindowingKeyNext; ImGuiKeyChord ConfigNavWindowingKeyPrev; ImGuiWindow* NavWindowingTarget; @@ -3015,7 +3148,6 @@ typedef union SDL_Event SDL_Event; #endif // CIMGUI_DEFINE_ENUMS_AND_STRUCTS #ifndef CIMGUI_DEFINE_ENUMS_AND_STRUCTS -typedef struct ImGuiStorage::ImGuiStoragePair ImGuiStoragePair; typedef struct ImGuiTextFilter::ImGuiTextRange ImGuiTextRange; typedef ImStb::STB_TexteditState STB_TexteditState; typedef ImStb::StbTexteditRow StbTexteditRow; @@ -3341,7 +3473,7 @@ CIMGUI_API bool igBeginPopupContextItem(const char* str_id,ImGuiPopupFlags popup CIMGUI_API bool igBeginPopupContextWindow(const char* str_id,ImGuiPopupFlags popup_flags); CIMGUI_API bool igBeginPopupContextVoid(const char* str_id,ImGuiPopupFlags popup_flags); CIMGUI_API bool igIsPopupOpen_Str(const char* str_id,ImGuiPopupFlags flags); -CIMGUI_API bool igBeginTable(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width); +CIMGUI_API bool igBeginTable(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width); CIMGUI_API void igEndTable(void); CIMGUI_API void igTableNextRow(ImGuiTableRowFlags row_flags,float min_row_height); CIMGUI_API bool igTableNextColumn(void); @@ -3358,6 +3490,7 @@ CIMGUI_API int igTableGetRowIndex(void); CIMGUI_API const char* igTableGetColumnName_Int(int column_n); CIMGUI_API ImGuiTableColumnFlags igTableGetColumnFlags(int column_n); CIMGUI_API void igTableSetColumnEnabled(int column_n,bool v); +CIMGUI_API int igTableGetHoveredColumn(void); CIMGUI_API void igTableSetBgColor(ImGuiTableBgTarget target,ImU32 color,int column_n); CIMGUI_API void igColumns(int count,const char* id,bool border); CIMGUI_API void igNextColumn(void); @@ -3411,8 +3544,13 @@ CIMGUI_API void igGetItemRectMin(ImVec2 *pOut); CIMGUI_API void igGetItemRectMax(ImVec2 *pOut); CIMGUI_API void igGetItemRectSize(ImVec2 *pOut); CIMGUI_API ImGuiViewport* igGetMainViewport(void); +<<<<<<< HEAD CIMGUI_API ImDrawList* igGetBackgroundDrawList_Nil(void); CIMGUI_API ImDrawList* igGetForegroundDrawList_Nil(void); +======= +CIMGUI_API ImDrawList* igGetBackgroundDrawList(ImGuiViewport* viewport); +CIMGUI_API ImDrawList* igGetForegroundDrawList_ViewportPtr(ImGuiViewport* viewport); +>>>>>>> docking_inter CIMGUI_API bool igIsRectVisible_Nil(const ImVec2 size); CIMGUI_API bool igIsRectVisible_Vec2(const ImVec2 rect_min,const ImVec2 rect_max); CIMGUI_API double igGetTime(void); @@ -3486,6 +3624,7 @@ CIMGUI_API void ImGuiIO_SetKeyEventNativeData(ImGuiIO* self,ImGuiKey key,int nat CIMGUI_API void ImGuiIO_SetAppAcceptingEvents(ImGuiIO* self,bool accepting_events); CIMGUI_API void ImGuiIO_ClearEventsQueue(ImGuiIO* self); CIMGUI_API void ImGuiIO_ClearInputKeys(ImGuiIO* self); +CIMGUI_API void ImGuiIO_ClearInputMouse(ImGuiIO* self); CIMGUI_API ImGuiIO* ImGuiIO_ImGuiIO(void); CIMGUI_API void ImGuiIO_destroy(ImGuiIO* self); CIMGUI_API ImGuiInputTextCallbackData* ImGuiInputTextCallbackData_ImGuiInputTextCallbackData(void); @@ -3856,6 +3995,7 @@ CIMGUI_API int ImGuiTextIndex_size(ImGuiTextIndex* self); CIMGUI_API const char* ImGuiTextIndex_get_line_begin(ImGuiTextIndex* self,const char* base,int n); CIMGUI_API const char* ImGuiTextIndex_get_line_end(ImGuiTextIndex* self,const char* base,int n); CIMGUI_API void ImGuiTextIndex_append(ImGuiTextIndex* self,const char* base,int old_size,int new_size); +CIMGUI_API ImGuiStoragePair* igImLowerBound(ImGuiStoragePair* in_begin,ImGuiStoragePair* in_end,ImGuiID key); CIMGUI_API ImDrawListSharedData* ImDrawListSharedData_ImDrawListSharedData(void); CIMGUI_API void ImDrawListSharedData_destroy(ImDrawListSharedData* self); CIMGUI_API void ImDrawListSharedData_SetCircleTessellationMaxError(ImDrawListSharedData* self,float max_error); @@ -4089,20 +4229,20 @@ CIMGUI_API void igLogToBuffer(int auto_open_depth); CIMGUI_API void igLogRenderedText(const ImVec2* 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 size_arg,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags); +CIMGUI_API bool igBeginPopupEx(ImGuiID id,ImGuiWindowFlags extra_window_flags); CIMGUI_API void igOpenPopupEx(ImGuiID id,ImGuiPopupFlags popup_flags); CIMGUI_API void igClosePopupToLevel(int remaining,bool restore_focus_to_window_under_popup); CIMGUI_API void igClosePopupsOverWindow(ImGuiWindow* ref_window,bool restore_focus_to_window_under_popup); CIMGUI_API void igClosePopupsExceptModals(void); CIMGUI_API bool igIsPopupOpen_ID(ImGuiID id,ImGuiPopupFlags popup_flags); -CIMGUI_API bool igBeginPopupEx(ImGuiID id,ImGuiWindowFlags extra_flags); -CIMGUI_API bool igBeginTooltipEx(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags); -CIMGUI_API bool igBeginTooltipHidden(void); CIMGUI_API void igGetPopupAllowedExtentRect(ImRect *pOut,ImGuiWindow* window); CIMGUI_API ImGuiWindow* igGetTopMostPopupModal(void); CIMGUI_API ImGuiWindow* igGetTopMostAndVisiblePopupModal(void); CIMGUI_API ImGuiWindow* igFindBlockingModal(ImGuiWindow* window); CIMGUI_API void igFindBestWindowPosForPopup(ImVec2 *pOut,ImGuiWindow* window); CIMGUI_API void igFindBestWindowPosForPopupEx(ImVec2 *pOut,const ImVec2 ref_pos,const ImVec2 size,ImGuiDir* last_dir,const ImRect r_outer,const ImRect r_avoid,ImGuiPopupPositionPolicy policy); +CIMGUI_API bool igBeginTooltipEx(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags); +CIMGUI_API bool igBeginTooltipHidden(void); CIMGUI_API bool igBeginViewportSideBar(const char* name,ImGuiViewport* viewport,ImGuiDir dir,float size,ImGuiWindowFlags window_flags); CIMGUI_API bool igBeginMenuEx(const char* label,const char* icon,bool enabled); CIMGUI_API bool igMenuItemEx(const char* label,const char* icon,const char* shortcut,bool selected,bool enabled); @@ -4193,7 +4333,6 @@ CIMGUI_API float igGetColumnNormFromOffset(const ImGuiOldColumns* columns,float CIMGUI_API void igTableOpenContextMenu(int column_n); CIMGUI_API void igTableSetColumnWidth(int column_n,float width); CIMGUI_API void igTableSetColumnSortDirection(int column_n,ImGuiSortDirection sort_direction,bool append_to_sort_specs); -CIMGUI_API int igTableGetHoveredColumn(void); CIMGUI_API int igTableGetHoveredRow(void); CIMGUI_API float igTableGetHeaderRowHeight(void); CIMGUI_API float igTableGetHeaderAngledMaxLabelWidth(void); diff --git a/generator/cpp2ffi.lua b/generator/cpp2ffi.lua index f8208f3..f61181e 100644 --- a/generator/cpp2ffi.lua +++ b/generator/cpp2ffi.lua @@ -752,7 +752,7 @@ local function parseFunction(self,stname,itt,namespace,locat) local noname_counter = 0 for i,ar in ipairs(argsTa) do --avoid var name without space type&name -> type& name - ar = ar:gsub("&(%S)","& %1") + ar = ar:gsub("(%S)&(%S)","%1& %2") local typ,name,retf,sigf,reftoptr,defa,ar1 local has_cdecl = ar:match"__cdecl" if has_cdecl then ar = ar:gsub("__cdecl","") end diff --git a/generator/output/definitions.json b/generator/output/definitions.json index 55468b5..b61d3ae 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -13,7 +13,11 @@ "cimguiname": "ImBitArray_ClearAllBits", "defaults": {}, "funcname": "ClearAllBits", +<<<<<<< HEAD "location": "imgui_internal:596", +======= + "location": "imgui_internal:609", +>>>>>>> docking_inter "ov_cimguiname": "ImBitArray_ClearAllBits", "ret": "void", "signature": "()", @@ -39,7 +43,11 @@ "cimguiname": "ImBitArray_ClearBit", "defaults": {}, "funcname": "ClearBit", +<<<<<<< HEAD "location": "imgui_internal:600", +======= + "location": "imgui_internal:613", +>>>>>>> docking_inter "ov_cimguiname": "ImBitArray_ClearBit", "ret": "void", "signature": "(int)", @@ -57,7 +65,11 @@ "constructor": true, "defaults": {}, "funcname": "ImBitArray", +<<<<<<< HEAD "location": "imgui_internal:595", +======= + "location": "imgui_internal:608", +>>>>>>> docking_inter "ov_cimguiname": "ImBitArray_ImBitArray", "signature": "()", "stname": "ImBitArray", @@ -78,7 +90,11 @@ "cimguiname": "ImBitArray_SetAllBits", "defaults": {}, "funcname": "SetAllBits", +<<<<<<< HEAD "location": "imgui_internal:597", +======= + "location": "imgui_internal:610", +>>>>>>> docking_inter "ov_cimguiname": "ImBitArray_SetAllBits", "ret": "void", "signature": "()", @@ -104,7 +120,11 @@ "cimguiname": "ImBitArray_SetBit", "defaults": {}, "funcname": "SetBit", +<<<<<<< HEAD "location": "imgui_internal:599", +======= + "location": "imgui_internal:612", +>>>>>>> docking_inter "ov_cimguiname": "ImBitArray_SetBit", "ret": "void", "signature": "(int)", @@ -134,7 +154,11 @@ "cimguiname": "ImBitArray_SetBitRange", "defaults": {}, "funcname": "SetBitRange", +<<<<<<< HEAD "location": "imgui_internal:601", +======= + "location": "imgui_internal:614", +>>>>>>> docking_inter "ov_cimguiname": "ImBitArray_SetBitRange", "ret": "void", "signature": "(int,int)", @@ -160,7 +184,11 @@ "cimguiname": "ImBitArray_TestBit", "defaults": {}, "funcname": "TestBit", +<<<<<<< HEAD "location": "imgui_internal:598", +======= + "location": "imgui_internal:611", +>>>>>>> docking_inter "ov_cimguiname": "ImBitArray_TestBit", "ret": "bool", "signature": "(int)const", @@ -202,7 +230,11 @@ "cimguiname": "ImBitVector_Clear", "defaults": {}, "funcname": "Clear", +<<<<<<< HEAD "location": "imgui_internal:611", +======= + "location": "imgui_internal:624", +>>>>>>> docking_inter "ov_cimguiname": "ImBitVector_Clear", "ret": "void", "signature": "()", @@ -227,7 +259,11 @@ "cimguiname": "ImBitVector_ClearBit", "defaults": {}, "funcname": "ClearBit", +<<<<<<< HEAD "location": "imgui_internal:614", +======= + "location": "imgui_internal:627", +>>>>>>> docking_inter "ov_cimguiname": "ImBitVector_ClearBit", "ret": "void", "signature": "(int)", @@ -252,7 +288,11 @@ "cimguiname": "ImBitVector_Create", "defaults": {}, "funcname": "Create", +<<<<<<< HEAD "location": "imgui_internal:610", +======= + "location": "imgui_internal:623", +>>>>>>> docking_inter "ov_cimguiname": "ImBitVector_Create", "ret": "void", "signature": "(int)", @@ -277,7 +317,11 @@ "cimguiname": "ImBitVector_SetBit", "defaults": {}, "funcname": "SetBit", +<<<<<<< HEAD "location": "imgui_internal:613", +======= + "location": "imgui_internal:626", +>>>>>>> docking_inter "ov_cimguiname": "ImBitVector_SetBit", "ret": "void", "signature": "(int)", @@ -302,7 +346,11 @@ "cimguiname": "ImBitVector_TestBit", "defaults": {}, "funcname": "TestBit", +<<<<<<< HEAD "location": "imgui_internal:612", +======= + "location": "imgui_internal:625", +>>>>>>> docking_inter "ov_cimguiname": "ImBitVector_TestBit", "ret": "bool", "signature": "(int)const", @@ -327,7 +375,11 @@ "cimguiname": "ImChunkStream_alloc_chunk", "defaults": {}, "funcname": "alloc_chunk", +<<<<<<< HEAD "location": "imgui_internal:715", +======= + "location": "imgui_internal:728", +>>>>>>> docking_inter "ov_cimguiname": "ImChunkStream_alloc_chunk", "ret": "T*", "signature": "(size_t)", @@ -349,7 +401,11 @@ "cimguiname": "ImChunkStream_begin", "defaults": {}, "funcname": "begin", +<<<<<<< HEAD "location": "imgui_internal:716", +======= + "location": "imgui_internal:729", +>>>>>>> docking_inter "ov_cimguiname": "ImChunkStream_begin", "ret": "T*", "signature": "()", @@ -375,7 +431,11 @@ "cimguiname": "ImChunkStream_chunk_size", "defaults": {}, "funcname": "chunk_size", +<<<<<<< HEAD "location": "imgui_internal:718", +======= + "location": "imgui_internal:731", +>>>>>>> docking_inter "ov_cimguiname": "ImChunkStream_chunk_size", "ret": "int", "signature": "(const T*)", @@ -397,7 +457,11 @@ "cimguiname": "ImChunkStream_clear", "defaults": {}, "funcname": "clear", +<<<<<<< HEAD "location": "imgui_internal:712", +======= + "location": "imgui_internal:725", +>>>>>>> docking_inter "ov_cimguiname": "ImChunkStream_clear", "ret": "void", "signature": "()", @@ -419,7 +483,11 @@ "cimguiname": "ImChunkStream_empty", "defaults": {}, "funcname": "empty", +<<<<<<< HEAD "location": "imgui_internal:713", +======= + "location": "imgui_internal:726", +>>>>>>> docking_inter "ov_cimguiname": "ImChunkStream_empty", "ret": "bool", "signature": "()const", @@ -441,7 +509,11 @@ "cimguiname": "ImChunkStream_end", "defaults": {}, "funcname": "end", +<<<<<<< HEAD "location": "imgui_internal:719", +======= + "location": "imgui_internal:732", +>>>>>>> docking_inter "ov_cimguiname": "ImChunkStream_end", "ret": "T*", "signature": "()", @@ -467,7 +539,11 @@ "cimguiname": "ImChunkStream_next_chunk", "defaults": {}, "funcname": "next_chunk", +<<<<<<< HEAD "location": "imgui_internal:717", +======= + "location": "imgui_internal:730", +>>>>>>> docking_inter "ov_cimguiname": "ImChunkStream_next_chunk", "ret": "T*", "signature": "(T*)", @@ -493,7 +569,11 @@ "cimguiname": "ImChunkStream_offset_from_ptr", "defaults": {}, "funcname": "offset_from_ptr", +<<<<<<< HEAD "location": "imgui_internal:720", +======= + "location": "imgui_internal:733", +>>>>>>> docking_inter "ov_cimguiname": "ImChunkStream_offset_from_ptr", "ret": "int", "signature": "(const T*)", @@ -519,7 +599,11 @@ "cimguiname": "ImChunkStream_ptr_from_offset", "defaults": {}, "funcname": "ptr_from_offset", +<<<<<<< HEAD "location": "imgui_internal:721", +======= + "location": "imgui_internal:734", +>>>>>>> docking_inter "ov_cimguiname": "ImChunkStream_ptr_from_offset", "ret": "T*", "signature": "(int)", @@ -541,7 +625,11 @@ "cimguiname": "ImChunkStream_size", "defaults": {}, "funcname": "size", +<<<<<<< HEAD "location": "imgui_internal:714", +======= + "location": "imgui_internal:727", +>>>>>>> docking_inter "ov_cimguiname": "ImChunkStream_size", "ret": "int", "signature": "()const", @@ -568,7 +656,11 @@ "cimguiname": "ImChunkStream_swap", "defaults": {}, "funcname": "swap", +<<<<<<< HEAD "location": "imgui_internal:722", +======= + "location": "imgui_internal:735", +>>>>>>> docking_inter "ov_cimguiname": "ImChunkStream_swap", "ret": "void", "signature": "(ImChunkStream_T *)", @@ -609,7 +701,11 @@ }, "funcname": "HSV", "is_static_function": true, +<<<<<<< HEAD "location": "imgui:2633", +======= + "location": "imgui:2777", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImColor_HSV", "ret": "void", @@ -627,7 +723,11 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", +<<<<<<< HEAD "location": "imgui:2623", +======= + "location": "imgui:2767", +>>>>>>> docking_inter "ov_cimguiname": "ImColor_ImColor_Nil", "signature": "()", "stname": "ImColor" @@ -660,7 +760,11 @@ "a": "1.0f" }, "funcname": "ImColor", +<<<<<<< HEAD "location": "imgui:2624", +======= + "location": "imgui:2768", +>>>>>>> docking_inter "ov_cimguiname": "ImColor_ImColor_Float", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -679,7 +783,11 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", +<<<<<<< HEAD "location": "imgui:2625", +======= + "location": "imgui:2769", +>>>>>>> docking_inter "ov_cimguiname": "ImColor_ImColor_Vec4", "signature": "(const ImVec4)", "stname": "ImColor" @@ -712,7 +820,11 @@ "a": "255" }, "funcname": "ImColor", +<<<<<<< HEAD "location": "imgui:2626", +======= + "location": "imgui:2770", +>>>>>>> docking_inter "ov_cimguiname": "ImColor_ImColor_Int", "signature": "(int,int,int,int)", "stname": "ImColor" @@ -731,7 +843,11 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", +<<<<<<< HEAD "location": "imgui:2627", +======= + "location": "imgui:2771", +>>>>>>> docking_inter "ov_cimguiname": "ImColor_ImColor_U32", "signature": "(ImU32)", "stname": "ImColor" @@ -769,7 +885,11 @@ "a": "1.0f" }, "funcname": "SetHSV", +<<<<<<< HEAD "location": "imgui:2632", +======= + "location": "imgui:2776", +>>>>>>> docking_inter "ov_cimguiname": "ImColor_SetHSV", "ret": "void", "signature": "(float,float,float,float)", @@ -809,7 +929,11 @@ "cimguiname": "ImDrawCmd_GetTexID", "defaults": {}, "funcname": "GetTexID", +<<<<<<< HEAD "location": "imgui:2681", +======= + "location": "imgui:2825", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawCmd_GetTexID", "ret": "ImTextureID", "signature": "()const", @@ -826,7 +950,11 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawCmd", +<<<<<<< HEAD "location": "imgui:2678", +======= + "location": "imgui:2822", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawCmd_ImDrawCmd", "signature": "()", "stname": "ImDrawCmd" @@ -861,7 +989,11 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawDataBuilder", +<<<<<<< HEAD "location": "imgui_internal:798", +======= + "location": "imgui_internal:813", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawDataBuilder_ImDrawDataBuilder", "signature": "()", "stname": "ImDrawDataBuilder" @@ -904,7 +1036,11 @@ "cimguiname": "ImDrawData_AddDrawList", "defaults": {}, "funcname": "AddDrawList", +<<<<<<< HEAD "location": "imgui:2928", +======= + "location": "imgui:3072", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawData_AddDrawList", "ret": "void", "signature": "(ImDrawList*)", @@ -925,7 +1061,11 @@ "cimguiname": "ImDrawData_Clear", "defaults": {}, "funcname": "Clear", +<<<<<<< HEAD "location": "imgui:2927", +======= + "location": "imgui:3071", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawData_Clear", "ret": "void", "signature": "()", @@ -946,7 +1086,11 @@ "cimguiname": "ImDrawData_DeIndexAllBuffers", "defaults": {}, "funcname": "DeIndexAllBuffers", +<<<<<<< HEAD "location": "imgui:2929", +======= + "location": "imgui:3073", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", "ret": "void", "signature": "()", @@ -963,7 +1107,11 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawData", +<<<<<<< HEAD "location": "imgui:2926", +======= + "location": "imgui:3070", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawData_ImDrawData", "signature": "()", "stname": "ImDrawData" @@ -987,7 +1135,11 @@ "cimguiname": "ImDrawData_ScaleClipRects", "defaults": {}, "funcname": "ScaleClipRects", +<<<<<<< HEAD "location": "imgui:2930", +======= + "location": "imgui:3074", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawData_ScaleClipRects", "ret": "void", "signature": "(const ImVec2)", @@ -1023,7 +1175,11 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSharedData", +<<<<<<< HEAD "location": "imgui_internal:789", +======= + "location": "imgui_internal:804", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawListSharedData_ImDrawListSharedData", "signature": "()", "stname": "ImDrawListSharedData" @@ -1047,7 +1203,11 @@ "cimguiname": "ImDrawListSharedData_SetCircleTessellationMaxError", "defaults": {}, "funcname": "SetCircleTessellationMaxError", +<<<<<<< HEAD "location": "imgui_internal:790", +======= + "location": "imgui_internal:805", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawListSharedData_SetCircleTessellationMaxError", "ret": "void", "signature": "(float)", @@ -1087,7 +1247,11 @@ "cimguiname": "ImDrawListSplitter_Clear", "defaults": {}, "funcname": "Clear", +<<<<<<< HEAD "location": "imgui:2726", +======= + "location": "imgui:2870", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawListSplitter_Clear", "ret": "void", "signature": "()", @@ -1108,7 +1272,11 @@ "cimguiname": "ImDrawListSplitter_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", +<<<<<<< HEAD "location": "imgui:2727", +======= + "location": "imgui:2871", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawListSplitter_ClearFreeMemory", "ret": "void", "signature": "()", @@ -1125,7 +1293,11 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSplitter", +<<<<<<< HEAD "location": "imgui:2724", +======= + "location": "imgui:2868", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawListSplitter_ImDrawListSplitter", "signature": "()", "stname": "ImDrawListSplitter" @@ -1149,7 +1321,11 @@ "cimguiname": "ImDrawListSplitter_Merge", "defaults": {}, "funcname": "Merge", +<<<<<<< HEAD "location": "imgui:2729", +======= + "location": "imgui:2873", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawListSplitter_Merge", "ret": "void", "signature": "(ImDrawList*)", @@ -1178,7 +1354,11 @@ "cimguiname": "ImDrawListSplitter_SetCurrentChannel", "defaults": {}, "funcname": "SetCurrentChannel", +<<<<<<< HEAD "location": "imgui:2730", +======= + "location": "imgui:2874", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawListSplitter_SetCurrentChannel", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1207,7 +1387,11 @@ "cimguiname": "ImDrawListSplitter_Split", "defaults": {}, "funcname": "Split", +<<<<<<< HEAD "location": "imgui:2728", +======= + "location": "imgui:2872", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawListSplitter_Split", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1227,7 +1411,11 @@ "cimguiname": "ImDrawListSplitter_destroy", "defaults": {}, "destructor": true, +<<<<<<< HEAD "location": "imgui:2725", +======= + "location": "imgui:2869", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawListSplitter_destroy", "realdestructor": true, "ret": "void", @@ -1279,7 +1467,11 @@ "num_segments": "0" }, "funcname": "AddBezierCubic", +<<<<<<< HEAD "location": "imgui:2829", +======= + "location": "imgui:2973", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddBezierCubic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1326,7 +1518,11 @@ "num_segments": "0" }, "funcname": "AddBezierQuadratic", +<<<<<<< HEAD "location": "imgui:2830", +======= + "location": "imgui:2974", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddBezierQuadratic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1355,7 +1551,11 @@ "cimguiname": "ImDrawList_AddCallback", "defaults": {}, "funcname": "AddCallback", +<<<<<<< HEAD "location": "imgui:2864", +======= + "location": "imgui:3008", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddCallback", "ret": "void", "signature": "(ImDrawCallback,void*)", @@ -1399,7 +1599,11 @@ "thickness": "1.0f" }, "funcname": "AddCircle", +<<<<<<< HEAD "location": "imgui:2821", +======= + "location": "imgui:2965", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddCircle", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1438,7 +1642,11 @@ "num_segments": "0" }, "funcname": "AddCircleFilled", +<<<<<<< HEAD "location": "imgui:2822", +======= + "location": "imgui:2966", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddCircleFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1471,7 +1679,11 @@ "cimguiname": "ImDrawList_AddConcavePolyFilled", "defaults": {}, "funcname": "AddConcavePolyFilled", +<<<<<<< HEAD "location": "imgui:2837", +======= + "location": "imgui:2981", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddConcavePolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -1504,7 +1716,11 @@ "cimguiname": "ImDrawList_AddConvexPolyFilled", "defaults": {}, "funcname": "AddConvexPolyFilled", +<<<<<<< HEAD "location": "imgui:2836", +======= + "location": "imgui:2980", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -1525,7 +1741,11 @@ "cimguiname": "ImDrawList_AddDrawCmd", "defaults": {}, "funcname": "AddDrawCmd", +<<<<<<< HEAD "location": "imgui:2865", +======= + "location": "imgui:3009", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddDrawCmd", "ret": "void", "signature": "()", @@ -1574,7 +1794,11 @@ "thickness": "1.0f" }, "funcname": "AddEllipse", +<<<<<<< HEAD "location": "imgui:2825", +======= + "location": "imgui:2969", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddEllipse", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,int,float)", @@ -1618,7 +1842,11 @@ "rot": "0.0f" }, "funcname": "AddEllipseFilled", +<<<<<<< HEAD "location": "imgui:2826", +======= + "location": "imgui:2970", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddEllipseFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,int)", @@ -1667,7 +1895,11 @@ "uv_min": "ImVec2(0,0)" }, "funcname": "AddImage", +<<<<<<< HEAD "location": "imgui:2843", +======= + "location": "imgui:2987", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddImage", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1734,7 +1966,11 @@ "uv4": "ImVec2(0,1)" }, "funcname": "AddImageQuad", +<<<<<<< HEAD "location": "imgui:2844", +======= + "location": "imgui:2988", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddImageQuad", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1789,7 +2025,11 @@ "flags": "0" }, "funcname": "AddImageRounded", +<<<<<<< HEAD "location": "imgui:2845", +======= + "location": "imgui:2989", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddImageRounded", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1828,7 +2068,11 @@ "thickness": "1.0f" }, "funcname": "AddLine", +<<<<<<< HEAD "location": "imgui:2813", +======= + "location": "imgui:2957", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddLine", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float)", @@ -1871,7 +2115,11 @@ "thickness": "1.0f" }, "funcname": "AddNgon", +<<<<<<< HEAD "location": "imgui:2823", +======= + "location": "imgui:2967", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddNgon", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1908,7 +2156,11 @@ "cimguiname": "ImDrawList_AddNgonFilled", "defaults": {}, "funcname": "AddNgonFilled", +<<<<<<< HEAD "location": "imgui:2824", +======= + "location": "imgui:2968", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddNgonFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1949,7 +2201,11 @@ "cimguiname": "ImDrawList_AddPolyline", "defaults": {}, "funcname": "AddPolyline", +<<<<<<< HEAD "location": "imgui:2835", +======= + "location": "imgui:2979", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddPolyline", "ret": "void", "signature": "(const ImVec2*,int,ImU32,ImDrawFlags,float)", @@ -1996,7 +2252,11 @@ "thickness": "1.0f" }, "funcname": "AddQuad", +<<<<<<< HEAD "location": "imgui:2817", +======= + "location": "imgui:2961", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddQuad", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2037,7 +2297,11 @@ "cimguiname": "ImDrawList_AddQuadFilled", "defaults": {}, "funcname": "AddQuadFilled", +<<<<<<< HEAD "location": "imgui:2818", +======= + "location": "imgui:2962", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddQuadFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2086,7 +2350,11 @@ "thickness": "1.0f" }, "funcname": "AddRect", +<<<<<<< HEAD "location": "imgui:2814", +======= + "location": "imgui:2958", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)", @@ -2130,7 +2398,11 @@ "rounding": "0.0f" }, "funcname": "AddRectFilled", +<<<<<<< HEAD "location": "imgui:2815", +======= + "location": "imgui:2959", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddRectFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -2175,7 +2447,11 @@ "cimguiname": "ImDrawList_AddRectFilledMultiColor", "defaults": {}, "funcname": "AddRectFilledMultiColor", +<<<<<<< HEAD "location": "imgui:2816", +======= + "location": "imgui:2960", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", @@ -2214,7 +2490,11 @@ "text_end": "NULL" }, "funcname": "AddText", +<<<<<<< HEAD "location": "imgui:2827", +======= + "location": "imgui:2971", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddText_Vec2", "ret": "void", "signature": "(const ImVec2,ImU32,const char*,const char*)", @@ -2269,7 +2549,11 @@ "wrap_width": "0.0f" }, "funcname": "AddText", +<<<<<<< HEAD "location": "imgui:2828", +======= + "location": "imgui:2972", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddText_FontPtr", "ret": "void", "signature": "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)", @@ -2312,7 +2596,11 @@ "thickness": "1.0f" }, "funcname": "AddTriangle", +<<<<<<< HEAD "location": "imgui:2819", +======= + "location": "imgui:2963", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddTriangle", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2349,7 +2637,11 @@ "cimguiname": "ImDrawList_AddTriangleFilled", "defaults": {}, "funcname": "AddTriangleFilled", +<<<<<<< HEAD "location": "imgui:2820", +======= + "location": "imgui:2964", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_AddTriangleFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2370,7 +2662,11 @@ "cimguiname": "ImDrawList_ChannelsMerge", "defaults": {}, "funcname": "ChannelsMerge", +<<<<<<< HEAD "location": "imgui:2875", +======= + "location": "imgui:3019", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_ChannelsMerge", "ret": "void", "signature": "()", @@ -2395,7 +2691,11 @@ "cimguiname": "ImDrawList_ChannelsSetCurrent", "defaults": {}, "funcname": "ChannelsSetCurrent", +<<<<<<< HEAD "location": "imgui:2876", +======= + "location": "imgui:3020", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", "ret": "void", "signature": "(int)", @@ -2420,7 +2720,11 @@ "cimguiname": "ImDrawList_ChannelsSplit", "defaults": {}, "funcname": "ChannelsSplit", +<<<<<<< HEAD "location": "imgui:2874", +======= + "location": "imgui:3018", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_ChannelsSplit", "ret": "void", "signature": "(int)", @@ -2441,7 +2745,11 @@ "cimguiname": "ImDrawList_CloneOutput", "defaults": {}, "funcname": "CloneOutput", +<<<<<<< HEAD "location": "imgui:2866", +======= + "location": "imgui:3010", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", "signature": "()const", @@ -2466,7 +2774,11 @@ "cimguiname": "ImDrawList_GetClipRectMax", "defaults": {}, "funcname": "GetClipRectMax", +<<<<<<< HEAD "location": "imgui:2804", +======= + "location": "imgui:2948", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "void", @@ -2492,7 +2804,11 @@ "cimguiname": "ImDrawList_GetClipRectMin", "defaults": {}, "funcname": "GetClipRectMin", +<<<<<<< HEAD "location": "imgui:2803", +======= + "location": "imgui:2947", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "void", @@ -2515,7 +2831,11 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawList", +<<<<<<< HEAD "location": "imgui:2795", +======= + "location": "imgui:2939", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_ImDrawList", "signature": "(ImDrawListSharedData*)", "stname": "ImDrawList" @@ -2557,7 +2877,11 @@ "num_segments": "0" }, "funcname": "PathArcTo", +<<<<<<< HEAD "location": "imgui:2856", +======= + "location": "imgui:3000", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PathArcTo", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -2594,7 +2918,11 @@ "cimguiname": "ImDrawList_PathArcToFast", "defaults": {}, "funcname": "PathArcToFast", +<<<<<<< HEAD "location": "imgui:2857", +======= + "location": "imgui:3001", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PathArcToFast", "ret": "void", "signature": "(const ImVec2,float,int,int)", @@ -2633,7 +2961,11 @@ "num_segments": "0" }, "funcname": "PathBezierCubicCurveTo", +<<<<<<< HEAD "location": "imgui:2859", +======= + "location": "imgui:3003", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PathBezierCubicCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,int)", @@ -2668,7 +3000,11 @@ "num_segments": "0" }, "funcname": "PathBezierQuadraticCurveTo", +<<<<<<< HEAD "location": "imgui:2860", +======= + "location": "imgui:3004", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PathBezierQuadraticCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,int)", @@ -2689,7 +3025,11 @@ "cimguiname": "ImDrawList_PathClear", "defaults": {}, "funcname": "PathClear", +<<<<<<< HEAD "location": "imgui:2850", +======= + "location": "imgui:2994", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PathClear", "ret": "void", "signature": "()", @@ -2736,7 +3076,11 @@ "num_segments": "0" }, "funcname": "PathEllipticalArcTo", +<<<<<<< HEAD "location": "imgui:2858", +======= + "location": "imgui:3002", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PathEllipticalArcTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,float,float,int)", @@ -2761,7 +3105,11 @@ "cimguiname": "ImDrawList_PathFillConcave", "defaults": {}, "funcname": "PathFillConcave", +<<<<<<< HEAD "location": "imgui:2854", +======= + "location": "imgui:2998", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PathFillConcave", "ret": "void", "signature": "(ImU32)", @@ -2786,7 +3134,11 @@ "cimguiname": "ImDrawList_PathFillConvex", "defaults": {}, "funcname": "PathFillConvex", +<<<<<<< HEAD "location": "imgui:2853", +======= + "location": "imgui:2997", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PathFillConvex", "ret": "void", "signature": "(ImU32)", @@ -2811,7 +3163,11 @@ "cimguiname": "ImDrawList_PathLineTo", "defaults": {}, "funcname": "PathLineTo", +<<<<<<< HEAD "location": "imgui:2851", +======= + "location": "imgui:2995", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PathLineTo", "ret": "void", "signature": "(const ImVec2)", @@ -2836,7 +3192,11 @@ "cimguiname": "ImDrawList_PathLineToMergeDuplicate", "defaults": {}, "funcname": "PathLineToMergeDuplicate", +<<<<<<< HEAD "location": "imgui:2852", +======= + "location": "imgui:2996", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", "ret": "void", "signature": "(const ImVec2)", @@ -2876,7 +3236,11 @@ "rounding": "0.0f" }, "funcname": "PathRect", +<<<<<<< HEAD "location": "imgui:2861", +======= + "location": "imgui:3005", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PathRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,ImDrawFlags)", @@ -2912,7 +3276,11 @@ "thickness": "1.0f" }, "funcname": "PathStroke", +<<<<<<< HEAD "location": "imgui:2855", +======= + "location": "imgui:2999", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PathStroke", "ret": "void", "signature": "(ImU32,ImDrawFlags,float)", @@ -2933,7 +3301,11 @@ "cimguiname": "ImDrawList_PopClipRect", "defaults": {}, "funcname": "PopClipRect", +<<<<<<< HEAD "location": "imgui:2800", +======= + "location": "imgui:2944", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PopClipRect", "ret": "void", "signature": "()", @@ -2954,7 +3326,11 @@ "cimguiname": "ImDrawList_PopTextureID", "defaults": {}, "funcname": "PopTextureID", +<<<<<<< HEAD "location": "imgui:2802", +======= + "location": "imgui:2946", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PopTextureID", "ret": "void", "signature": "()", @@ -3011,7 +3387,11 @@ "cimguiname": "ImDrawList_PrimQuadUV", "defaults": {}, "funcname": "PrimQuadUV", +<<<<<<< HEAD "location": "imgui:2885", +======= + "location": "imgui:3029", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PrimQuadUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -3044,7 +3424,11 @@ "cimguiname": "ImDrawList_PrimRect", "defaults": {}, "funcname": "PrimRect", +<<<<<<< HEAD "location": "imgui:2883", +======= + "location": "imgui:3027", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PrimRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3085,7 +3469,11 @@ "cimguiname": "ImDrawList_PrimRectUV", "defaults": {}, "funcname": "PrimRectUV", +<<<<<<< HEAD "location": "imgui:2884", +======= + "location": "imgui:3028", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PrimRectUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -3114,7 +3502,11 @@ "cimguiname": "ImDrawList_PrimReserve", "defaults": {}, "funcname": "PrimReserve", +<<<<<<< HEAD "location": "imgui:2881", +======= + "location": "imgui:3025", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PrimReserve", "ret": "void", "signature": "(int,int)", @@ -3143,7 +3535,11 @@ "cimguiname": "ImDrawList_PrimUnreserve", "defaults": {}, "funcname": "PrimUnreserve", +<<<<<<< HEAD "location": "imgui:2882", +======= + "location": "imgui:3026", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PrimUnreserve", "ret": "void", "signature": "(int,int)", @@ -3176,7 +3572,11 @@ "cimguiname": "ImDrawList_PrimVtx", "defaults": {}, "funcname": "PrimVtx", +<<<<<<< HEAD "location": "imgui:2888", +======= + "location": "imgui:3032", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PrimVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3201,7 +3601,11 @@ "cimguiname": "ImDrawList_PrimWriteIdx", "defaults": {}, "funcname": "PrimWriteIdx", +<<<<<<< HEAD "location": "imgui:2887", +======= + "location": "imgui:3031", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PrimWriteIdx", "ret": "void", "signature": "(ImDrawIdx)", @@ -3234,7 +3638,11 @@ "cimguiname": "ImDrawList_PrimWriteVtx", "defaults": {}, "funcname": "PrimWriteVtx", +<<<<<<< HEAD "location": "imgui:2886", +======= + "location": "imgui:3030", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PrimWriteVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3269,7 +3677,11 @@ "intersect_with_current_clip_rect": "false" }, "funcname": "PushClipRect", +<<<<<<< HEAD "location": "imgui:2798", +======= + "location": "imgui:2942", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PushClipRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,bool)", @@ -3290,7 +3702,11 @@ "cimguiname": "ImDrawList_PushClipRectFullScreen", "defaults": {}, "funcname": "PushClipRectFullScreen", +<<<<<<< HEAD "location": "imgui:2799", +======= + "location": "imgui:2943", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", "ret": "void", "signature": "()", @@ -3315,7 +3731,11 @@ "cimguiname": "ImDrawList_PushTextureID", "defaults": {}, "funcname": "PushTextureID", +<<<<<<< HEAD "location": "imgui:2801", +======= + "location": "imgui:2945", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_PushTextureID", "ret": "void", "signature": "(ImTextureID)", @@ -3340,7 +3760,11 @@ "cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "defaults": {}, "funcname": "_CalcCircleAutoSegmentCount", +<<<<<<< HEAD "location": "imgui:2905", +======= + "location": "imgui:3049", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "ret": "int", "signature": "(float)const", @@ -3361,7 +3785,11 @@ "cimguiname": "ImDrawList__ClearFreeMemory", "defaults": {}, "funcname": "_ClearFreeMemory", +<<<<<<< HEAD "location": "imgui:2899", +======= + "location": "imgui:3043", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList__ClearFreeMemory", "ret": "void", "signature": "()", @@ -3382,7 +3810,11 @@ "cimguiname": "ImDrawList__OnChangedClipRect", "defaults": {}, "funcname": "_OnChangedClipRect", +<<<<<<< HEAD "location": "imgui:2902", +======= + "location": "imgui:3046", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList__OnChangedClipRect", "ret": "void", "signature": "()", @@ -3403,7 +3835,11 @@ "cimguiname": "ImDrawList__OnChangedTextureID", "defaults": {}, "funcname": "_OnChangedTextureID", +<<<<<<< HEAD "location": "imgui:2903", +======= + "location": "imgui:3047", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList__OnChangedTextureID", "ret": "void", "signature": "()", @@ -3424,7 +3860,11 @@ "cimguiname": "ImDrawList__OnChangedVtxOffset", "defaults": {}, "funcname": "_OnChangedVtxOffset", +<<<<<<< HEAD "location": "imgui:2904", +======= + "location": "imgui:3048", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList__OnChangedVtxOffset", "ret": "void", "signature": "()", @@ -3465,7 +3905,11 @@ "cimguiname": "ImDrawList__PathArcToFastEx", "defaults": {}, "funcname": "_PathArcToFastEx", +<<<<<<< HEAD "location": "imgui:2906", +======= + "location": "imgui:3050", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList__PathArcToFastEx", "ret": "void", "signature": "(const ImVec2,float,int,int,int)", @@ -3506,7 +3950,11 @@ "cimguiname": "ImDrawList__PathArcToN", "defaults": {}, "funcname": "_PathArcToN", +<<<<<<< HEAD "location": "imgui:2907", +======= + "location": "imgui:3051", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList__PathArcToN", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -3527,7 +3975,11 @@ "cimguiname": "ImDrawList__PopUnusedDrawCmd", "defaults": {}, "funcname": "_PopUnusedDrawCmd", +<<<<<<< HEAD "location": "imgui:2900", +======= + "location": "imgui:3044", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList__PopUnusedDrawCmd", "ret": "void", "signature": "()", @@ -3548,7 +4000,11 @@ "cimguiname": "ImDrawList__ResetForNewFrame", "defaults": {}, "funcname": "_ResetForNewFrame", +<<<<<<< HEAD "location": "imgui:2898", +======= + "location": "imgui:3042", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList__ResetForNewFrame", "ret": "void", "signature": "()", @@ -3569,7 +4025,11 @@ "cimguiname": "ImDrawList__TryMergeDrawCmds", "defaults": {}, "funcname": "_TryMergeDrawCmds", +<<<<<<< HEAD "location": "imgui:2901", +======= + "location": "imgui:3045", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList__TryMergeDrawCmds", "ret": "void", "signature": "()", @@ -3589,7 +4049,11 @@ "cimguiname": "ImDrawList_destroy", "defaults": {}, "destructor": true, +<<<<<<< HEAD "location": "imgui:2797", +======= + "location": "imgui:2941", +>>>>>>> docking_inter "ov_cimguiname": "ImDrawList_destroy", "realdestructor": true, "ret": "void", @@ -3607,7 +4071,11 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlasCustomRect", +<<<<<<< HEAD "location": "imgui:3002", +======= + "location": "imgui:3146", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlasCustomRect_ImFontAtlasCustomRect", "signature": "()", "stname": "ImFontAtlasCustomRect" @@ -3627,7 +4095,11 @@ "cimguiname": "ImFontAtlasCustomRect_IsPacked", "defaults": {}, "funcname": "IsPacked", +<<<<<<< HEAD "location": "imgui:3003", +======= + "location": "imgui:3147", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlasCustomRect_IsPacked", "ret": "bool", "signature": "()const", @@ -3693,7 +4165,11 @@ "offset": "ImVec2(0,0)" }, "funcname": "AddCustomRectFontGlyph", +<<<<<<< HEAD "location": "imgui:3088", +======= + "location": "imgui:3232", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_AddCustomRectFontGlyph", "ret": "int", "signature": "(ImFont*,ImWchar,int,int,float,const ImVec2)", @@ -3722,7 +4198,11 @@ "cimguiname": "ImFontAtlas_AddCustomRectRegular", "defaults": {}, "funcname": "AddCustomRectRegular", +<<<<<<< HEAD "location": "imgui:3087", +======= + "location": "imgui:3231", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_AddCustomRectRegular", "ret": "int", "signature": "(int,int)", @@ -3747,7 +4227,11 @@ "cimguiname": "ImFontAtlas_AddFont", "defaults": {}, "funcname": "AddFont", +<<<<<<< HEAD "location": "imgui:3036", +======= + "location": "imgui:3180", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_AddFont", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3774,7 +4258,11 @@ "font_cfg": "NULL" }, "funcname": "AddFontDefault", +<<<<<<< HEAD "location": "imgui:3037", +======= + "location": "imgui:3181", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_AddFontDefault", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3814,7 +4302,11 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromFileTTF", +<<<<<<< HEAD "location": "imgui:3038", +======= + "location": "imgui:3182", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_AddFontFromFileTTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3854,7 +4346,11 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedBase85TTF", +<<<<<<< HEAD "location": "imgui:3041", +======= + "location": "imgui:3185", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3898,7 +4394,11 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedTTF", +<<<<<<< HEAD "location": "imgui:3040", +======= + "location": "imgui:3184", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "ret": "ImFont*", "signature": "(const void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3942,7 +4442,11 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryTTF", +<<<<<<< HEAD "location": "imgui:3039", +======= + "location": "imgui:3183", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "ret": "ImFont*", "signature": "(void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3963,7 +4467,11 @@ "cimguiname": "ImFontAtlas_Build", "defaults": {}, "funcname": "Build", +<<<<<<< HEAD "location": "imgui:3052", +======= + "location": "imgui:3196", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_Build", "ret": "bool", "signature": "()", @@ -3996,7 +4504,11 @@ "cimguiname": "ImFontAtlas_CalcCustomRectUV", "defaults": {}, "funcname": "CalcCustomRectUV", +<<<<<<< HEAD "location": "imgui:3092", +======= + "location": "imgui:3236", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_CalcCustomRectUV", "ret": "void", "signature": "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const", @@ -4017,7 +4529,11 @@ "cimguiname": "ImFontAtlas_Clear", "defaults": {}, "funcname": "Clear", +<<<<<<< HEAD "location": "imgui:3045", +======= + "location": "imgui:3189", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_Clear", "ret": "void", "signature": "()", @@ -4038,7 +4554,11 @@ "cimguiname": "ImFontAtlas_ClearFonts", "defaults": {}, "funcname": "ClearFonts", +<<<<<<< HEAD "location": "imgui:3044", +======= + "location": "imgui:3188", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_ClearFonts", "ret": "void", "signature": "()", @@ -4059,7 +4579,11 @@ "cimguiname": "ImFontAtlas_ClearInputData", "defaults": {}, "funcname": "ClearInputData", +<<<<<<< HEAD "location": "imgui:3042", +======= + "location": "imgui:3186", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_ClearInputData", "ret": "void", "signature": "()", @@ -4080,7 +4604,11 @@ "cimguiname": "ImFontAtlas_ClearTexData", "defaults": {}, "funcname": "ClearTexData", +<<<<<<< HEAD "location": "imgui:3043", +======= + "location": "imgui:3187", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_ClearTexData", "ret": "void", "signature": "()", @@ -4105,7 +4633,11 @@ "cimguiname": "ImFontAtlas_GetCustomRectByIndex", "defaults": {}, "funcname": "GetCustomRectByIndex", +<<<<<<< HEAD "location": "imgui:3089", +======= + "location": "imgui:3233", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_GetCustomRectByIndex", "ret": "ImFontAtlasCustomRect*", "signature": "(int)", @@ -4126,7 +4658,11 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "defaults": {}, "funcname": "GetGlyphRangesChineseFull", +<<<<<<< HEAD "location": "imgui:3070", +======= + "location": "imgui:3214", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "ret": "const ImWchar*", "signature": "()", @@ -4147,7 +4683,11 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "defaults": {}, "funcname": "GetGlyphRangesChineseSimplifiedCommon", +<<<<<<< HEAD "location": "imgui:3071", +======= + "location": "imgui:3215", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "ret": "const ImWchar*", "signature": "()", @@ -4168,7 +4708,11 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "defaults": {}, "funcname": "GetGlyphRangesCyrillic", +<<<<<<< HEAD "location": "imgui:3072", +======= + "location": "imgui:3216", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "ret": "const ImWchar*", "signature": "()", @@ -4189,7 +4733,11 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "defaults": {}, "funcname": "GetGlyphRangesDefault", +<<<<<<< HEAD "location": "imgui:3066", +======= + "location": "imgui:3210", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "ret": "const ImWchar*", "signature": "()", @@ -4210,7 +4758,11 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesGreek", "defaults": {}, "funcname": "GetGlyphRangesGreek", +<<<<<<< HEAD "location": "imgui:3067", +======= + "location": "imgui:3211", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_GetGlyphRangesGreek", "ret": "const ImWchar*", "signature": "()", @@ -4231,7 +4783,11 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "defaults": {}, "funcname": "GetGlyphRangesJapanese", +<<<<<<< HEAD "location": "imgui:3069", +======= + "location": "imgui:3213", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "ret": "const ImWchar*", "signature": "()", @@ -4252,7 +4808,11 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "defaults": {}, "funcname": "GetGlyphRangesKorean", +<<<<<<< HEAD "location": "imgui:3068", +======= + "location": "imgui:3212", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "ret": "const ImWchar*", "signature": "()", @@ -4273,7 +4833,11 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesThai", "defaults": {}, "funcname": "GetGlyphRangesThai", +<<<<<<< HEAD "location": "imgui:3073", +======= + "location": "imgui:3217", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_GetGlyphRangesThai", "ret": "const ImWchar*", "signature": "()", @@ -4294,7 +4858,11 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "defaults": {}, "funcname": "GetGlyphRangesVietnamese", +<<<<<<< HEAD "location": "imgui:3074", +======= + "location": "imgui:3218", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "ret": "const ImWchar*", "signature": "()", @@ -4335,7 +4903,11 @@ "cimguiname": "ImFontAtlas_GetMouseCursorTexData", "defaults": {}, "funcname": "GetMouseCursorTexData", +<<<<<<< HEAD "location": "imgui:3093", +======= + "location": "imgui:3237", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_GetMouseCursorTexData", "ret": "bool", "signature": "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])", @@ -4374,7 +4946,11 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsAlpha8", +<<<<<<< HEAD "location": "imgui:3053", +======= + "location": "imgui:3197", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -4413,7 +4989,11 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsRGBA32", +<<<<<<< HEAD "location": "imgui:3054", +======= + "location": "imgui:3198", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -4430,7 +5010,11 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlas", +<<<<<<< HEAD "location": "imgui:3034", +======= + "location": "imgui:3178", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_ImFontAtlas", "signature": "()", "stname": "ImFontAtlas" @@ -4450,7 +5034,11 @@ "cimguiname": "ImFontAtlas_IsBuilt", "defaults": {}, "funcname": "IsBuilt", +<<<<<<< HEAD "location": "imgui:3055", +======= + "location": "imgui:3199", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_IsBuilt", "ret": "bool", "signature": "()const", @@ -4475,7 +5063,11 @@ "cimguiname": "ImFontAtlas_SetTexID", "defaults": {}, "funcname": "SetTexID", +<<<<<<< HEAD "location": "imgui:3056", +======= + "location": "imgui:3200", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_SetTexID", "ret": "void", "signature": "(ImTextureID)", @@ -4495,7 +5087,11 @@ "cimguiname": "ImFontAtlas_destroy", "defaults": {}, "destructor": true, +<<<<<<< HEAD "location": "imgui:3035", +======= + "location": "imgui:3179", +>>>>>>> docking_inter "ov_cimguiname": "ImFontAtlas_destroy", "realdestructor": true, "ret": "void", @@ -4513,7 +5109,11 @@ "constructor": true, "defaults": {}, "funcname": "ImFontConfig", +<<<<<<< HEAD "location": "imgui:2962", +======= + "location": "imgui:3106", +>>>>>>> docking_inter "ov_cimguiname": "ImFontConfig_ImFontConfig", "signature": "()", "stname": "ImFontConfig" @@ -4556,7 +5156,11 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddChar", "defaults": {}, "funcname": "AddChar", +<<<<<<< HEAD "location": "imgui:2987", +======= + "location": "imgui:3131", +>>>>>>> docking_inter "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", "ret": "void", "signature": "(ImWchar)", @@ -4581,7 +5185,11 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "defaults": {}, "funcname": "AddRanges", +<<<<<<< HEAD "location": "imgui:2989", +======= + "location": "imgui:3133", +>>>>>>> docking_inter "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "ret": "void", "signature": "(const ImWchar*)", @@ -4612,7 +5220,11 @@ "text_end": "NULL" }, "funcname": "AddText", +<<<<<<< HEAD "location": "imgui:2988", +======= + "location": "imgui:3132", +>>>>>>> docking_inter "ov_cimguiname": "ImFontGlyphRangesBuilder_AddText", "ret": "void", "signature": "(const char*,const char*)", @@ -4637,7 +5249,11 @@ "cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "defaults": {}, "funcname": "BuildRanges", +<<<<<<< HEAD "location": "imgui:2990", +======= + "location": "imgui:3134", +>>>>>>> docking_inter "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "ret": "void", "signature": "(ImVector_ImWchar*)", @@ -4658,7 +5274,11 @@ "cimguiname": "ImFontGlyphRangesBuilder_Clear", "defaults": {}, "funcname": "Clear", +<<<<<<< HEAD "location": "imgui:2984", +======= + "location": "imgui:3128", +>>>>>>> docking_inter "ov_cimguiname": "ImFontGlyphRangesBuilder_Clear", "ret": "void", "signature": "()", @@ -4683,7 +5303,11 @@ "cimguiname": "ImFontGlyphRangesBuilder_GetBit", "defaults": {}, "funcname": "GetBit", +<<<<<<< HEAD "location": "imgui:2985", +======= + "location": "imgui:3129", +>>>>>>> docking_inter "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", "ret": "bool", "signature": "(size_t)const", @@ -4700,7 +5324,11 @@ "constructor": true, "defaults": {}, "funcname": "ImFontGlyphRangesBuilder", +<<<<<<< HEAD "location": "imgui:2983", +======= + "location": "imgui:3127", +>>>>>>> docking_inter "ov_cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "signature": "()", "stname": "ImFontGlyphRangesBuilder" @@ -4724,7 +5352,11 @@ "cimguiname": "ImFontGlyphRangesBuilder_SetBit", "defaults": {}, "funcname": "SetBit", +<<<<<<< HEAD "location": "imgui:2986", +======= + "location": "imgui:3130", +>>>>>>> docking_inter "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", "ret": "void", "signature": "(size_t)", @@ -4808,7 +5440,11 @@ "cimguiname": "ImFont_AddGlyph", "defaults": {}, "funcname": "AddGlyph", +<<<<<<< HEAD "location": "imgui:3183", +======= + "location": "imgui:3327", +>>>>>>> docking_inter "ov_cimguiname": "ImFont_AddGlyph", "ret": "void", "signature": "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)", @@ -4843,7 +5479,11 @@ "overwrite_dst": "true" }, "funcname": "AddRemapChar", +<<<<<<< HEAD "location": "imgui:3184", +======= + "location": "imgui:3328", +>>>>>>> docking_inter "ov_cimguiname": "ImFont_AddRemapChar", "ret": "void", "signature": "(ImWchar,ImWchar,bool)", @@ -4864,7 +5504,11 @@ "cimguiname": "ImFont_BuildLookupTable", "defaults": {}, "funcname": "BuildLookupTable", +<<<<<<< HEAD "location": "imgui:3180", +======= + "location": "imgui:3324", +>>>>>>> docking_inter "ov_cimguiname": "ImFont_BuildLookupTable", "ret": "void", "signature": "()", @@ -4916,7 +5560,11 @@ "text_end": "NULL" }, "funcname": "CalcTextSizeA", +<<<<<<< HEAD "location": "imgui:3174", +======= + "location": "imgui:3318", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImFont_CalcTextSizeA", "ret": "void", @@ -4954,7 +5602,11 @@ "cimguiname": "ImFont_CalcWordWrapPositionA", "defaults": {}, "funcname": "CalcWordWrapPositionA", +<<<<<<< HEAD "location": "imgui:3175", +======= + "location": "imgui:3319", +>>>>>>> docking_inter "ov_cimguiname": "ImFont_CalcWordWrapPositionA", "ret": "const char*", "signature": "(float,const char*,const char*,float)const", @@ -4975,7 +5627,11 @@ "cimguiname": "ImFont_ClearOutputData", "defaults": {}, "funcname": "ClearOutputData", +<<<<<<< HEAD "location": "imgui:3181", +======= + "location": "imgui:3325", +>>>>>>> docking_inter "ov_cimguiname": "ImFont_ClearOutputData", "ret": "void", "signature": "()", @@ -5000,7 +5656,11 @@ "cimguiname": "ImFont_FindGlyph", "defaults": {}, "funcname": "FindGlyph", +<<<<<<< HEAD "location": "imgui:3166", +======= + "location": "imgui:3310", +>>>>>>> docking_inter "ov_cimguiname": "ImFont_FindGlyph", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -5025,7 +5685,11 @@ "cimguiname": "ImFont_FindGlyphNoFallback", "defaults": {}, "funcname": "FindGlyphNoFallback", +<<<<<<< HEAD "location": "imgui:3167", +======= + "location": "imgui:3311", +>>>>>>> docking_inter "ov_cimguiname": "ImFont_FindGlyphNoFallback", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -5050,7 +5714,11 @@ "cimguiname": "ImFont_GetCharAdvance", "defaults": {}, "funcname": "GetCharAdvance", +<<<<<<< HEAD "location": "imgui:3168", +======= + "location": "imgui:3312", +>>>>>>> docking_inter "ov_cimguiname": "ImFont_GetCharAdvance", "ret": "float", "signature": "(ImWchar)const", @@ -5071,7 +5739,11 @@ "cimguiname": "ImFont_GetDebugName", "defaults": {}, "funcname": "GetDebugName", +<<<<<<< HEAD "location": "imgui:3170", +======= + "location": "imgui:3314", +>>>>>>> docking_inter "ov_cimguiname": "ImFont_GetDebugName", "ret": "const char*", "signature": "()const", @@ -5096,7 +5768,11 @@ "cimguiname": "ImFont_GrowIndex", "defaults": {}, "funcname": "GrowIndex", +<<<<<<< HEAD "location": "imgui:3182", +======= + "location": "imgui:3326", +>>>>>>> docking_inter "ov_cimguiname": "ImFont_GrowIndex", "ret": "void", "signature": "(int)", @@ -5113,7 +5789,11 @@ "constructor": true, "defaults": {}, "funcname": "ImFont", +<<<<<<< HEAD "location": "imgui:3164", +======= + "location": "imgui:3308", +>>>>>>> docking_inter "ov_cimguiname": "ImFont_ImFont", "signature": "()", "stname": "ImFont" @@ -5141,7 +5821,11 @@ "cimguiname": "ImFont_IsGlyphRangeUnused", "defaults": {}, "funcname": "IsGlyphRangeUnused", +<<<<<<< HEAD "location": "imgui:3186", +======= + "location": "imgui:3330", +>>>>>>> docking_inter "ov_cimguiname": "ImFont_IsGlyphRangeUnused", "ret": "bool", "signature": "(unsigned int,unsigned int)", @@ -5162,7 +5846,11 @@ "cimguiname": "ImFont_IsLoaded", "defaults": {}, "funcname": "IsLoaded", +<<<<<<< HEAD "location": "imgui:3169", +======= + "location": "imgui:3313", +>>>>>>> docking_inter "ov_cimguiname": "ImFont_IsLoaded", "ret": "bool", "signature": "()const", @@ -5203,7 +5891,11 @@ "cimguiname": "ImFont_RenderChar", "defaults": {}, "funcname": "RenderChar", +<<<<<<< HEAD "location": "imgui:3176", +======= + "location": "imgui:3320", +>>>>>>> docking_inter "ov_cimguiname": "ImFont_RenderChar", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,ImWchar)const", @@ -5263,7 +5955,11 @@ "wrap_width": "0.0f" }, "funcname": "RenderText", +<<<<<<< HEAD "location": "imgui:3177", +======= + "location": "imgui:3321", +>>>>>>> docking_inter "ov_cimguiname": "ImFont_RenderText", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const", @@ -5292,7 +5988,11 @@ "cimguiname": "ImFont_SetGlyphVisible", "defaults": {}, "funcname": "SetGlyphVisible", +<<<<<<< HEAD "location": "imgui:3185", +======= + "location": "imgui:3329", +>>>>>>> docking_inter "ov_cimguiname": "ImFont_SetGlyphVisible", "ret": "void", "signature": "(ImWchar,bool)", @@ -5312,7 +6012,11 @@ "cimguiname": "ImFont_destroy", "defaults": {}, "destructor": true, +<<<<<<< HEAD "location": "imgui:3165", +======= + "location": "imgui:3309", +>>>>>>> docking_inter "ov_cimguiname": "ImFont_destroy", "realdestructor": true, "ret": "void", @@ -5330,7 +6034,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiComboPreviewData", +<<<<<<< HEAD "location": "imgui_internal:1056", +======= + "location": "imgui_internal:1071", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiComboPreviewData_ImGuiComboPreviewData", "signature": "()", "stname": "ImGuiComboPreviewData" @@ -5365,7 +6073,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContextHook", +<<<<<<< HEAD "location": "imgui_internal:1911", +======= + "location": "imgui_internal:2106", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiContextHook_ImGuiContextHook", "signature": "()", "stname": "ImGuiContextHook" @@ -5405,7 +6117,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContext", +<<<<<<< HEAD "location": "imgui_internal:2249", +======= + "location": "imgui_internal:2471", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiContext_ImGuiContext", "signature": "(ImFontAtlas*)", "stname": "ImGuiContext" @@ -5448,7 +6164,11 @@ "cimguiname": "ImGuiDataVarInfo_GetVarPtr", "defaults": {}, "funcname": "GetVarPtr", +<<<<<<< HEAD "location": "imgui_internal:810", +======= + "location": "imgui_internal:825", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiDataVarInfo_GetVarPtr", "ret": "void*", "signature": "(void*)const", @@ -5465,7 +6185,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDebugAllocInfo", +<<<<<<< HEAD "location": "imgui_internal:1852", +======= + "location": "imgui_internal:2046", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo", "signature": "()", "stname": "ImGuiDebugAllocInfo" @@ -5490,6 +6214,347 @@ "stname": "ImGuiDebugAllocInfo" } ], +<<<<<<< HEAD +======= + "ImGuiDockContext_ImGuiDockContext": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiDockContext_ImGuiDockContext", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiDockContext", + "location": "imgui_internal:1889", + "ov_cimguiname": "ImGuiDockContext_ImGuiDockContext", + "signature": "()", + "stname": "ImGuiDockContext" + } + ], + "ImGuiDockContext_destroy": [ + { + "args": "(ImGuiDockContext* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiDockContext*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiDockContext_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiDockContext_destroy", + "ret": "void", + "signature": "(ImGuiDockContext*)", + "stname": "ImGuiDockContext" + } + ], + "ImGuiDockNode_ImGuiDockNode": [ + { + "args": "(ImGuiID id)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID id)", + "call_args": "(id)", + "cimguiname": "ImGuiDockNode_ImGuiDockNode", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiDockNode", + "location": "imgui_internal:1843", + "ov_cimguiname": "ImGuiDockNode_ImGuiDockNode", + "signature": "(ImGuiID)", + "stname": "ImGuiDockNode" + } + ], + "ImGuiDockNode_IsCentralNode": [ + { + "args": "(ImGuiDockNode* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiDockNode_IsCentralNode", + "defaults": {}, + "funcname": "IsCentralNode", + "location": "imgui_internal:1848", + "ov_cimguiname": "ImGuiDockNode_IsCentralNode", + "ret": "bool", + "signature": "()const", + "stname": "ImGuiDockNode" + } + ], + "ImGuiDockNode_IsDockSpace": [ + { + "args": "(ImGuiDockNode* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiDockNode_IsDockSpace", + "defaults": {}, + "funcname": "IsDockSpace", + "location": "imgui_internal:1846", + "ov_cimguiname": "ImGuiDockNode_IsDockSpace", + "ret": "bool", + "signature": "()const", + "stname": "ImGuiDockNode" + } + ], + "ImGuiDockNode_IsEmpty": [ + { + "args": "(ImGuiDockNode* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiDockNode_IsEmpty", + "defaults": {}, + "funcname": "IsEmpty", + "location": "imgui_internal:1853", + "ov_cimguiname": "ImGuiDockNode_IsEmpty", + "ret": "bool", + "signature": "()const", + "stname": "ImGuiDockNode" + } + ], + "ImGuiDockNode_IsFloatingNode": [ + { + "args": "(ImGuiDockNode* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiDockNode_IsFloatingNode", + "defaults": {}, + "funcname": "IsFloatingNode", + "location": "imgui_internal:1847", + "ov_cimguiname": "ImGuiDockNode_IsFloatingNode", + "ret": "bool", + "signature": "()const", + "stname": "ImGuiDockNode" + } + ], + "ImGuiDockNode_IsHiddenTabBar": [ + { + "args": "(ImGuiDockNode* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiDockNode_IsHiddenTabBar", + "defaults": {}, + "funcname": "IsHiddenTabBar", + "location": "imgui_internal:1849", + "ov_cimguiname": "ImGuiDockNode_IsHiddenTabBar", + "ret": "bool", + "signature": "()const", + "stname": "ImGuiDockNode" + } + ], + "ImGuiDockNode_IsLeafNode": [ + { + "args": "(ImGuiDockNode* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiDockNode_IsLeafNode", + "defaults": {}, + "funcname": "IsLeafNode", + "location": "imgui_internal:1852", + "ov_cimguiname": "ImGuiDockNode_IsLeafNode", + "ret": "bool", + "signature": "()const", + "stname": "ImGuiDockNode" + } + ], + "ImGuiDockNode_IsNoTabBar": [ + { + "args": "(ImGuiDockNode* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiDockNode_IsNoTabBar", + "defaults": {}, + "funcname": "IsNoTabBar", + "location": "imgui_internal:1850", + "ov_cimguiname": "ImGuiDockNode_IsNoTabBar", + "ret": "bool", + "signature": "()const", + "stname": "ImGuiDockNode" + } + ], + "ImGuiDockNode_IsRootNode": [ + { + "args": "(ImGuiDockNode* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiDockNode_IsRootNode", + "defaults": {}, + "funcname": "IsRootNode", + "location": "imgui_internal:1845", + "ov_cimguiname": "ImGuiDockNode_IsRootNode", + "ret": "bool", + "signature": "()const", + "stname": "ImGuiDockNode" + } + ], + "ImGuiDockNode_IsSplitNode": [ + { + "args": "(ImGuiDockNode* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiDockNode_IsSplitNode", + "defaults": {}, + "funcname": "IsSplitNode", + "location": "imgui_internal:1851", + "ov_cimguiname": "ImGuiDockNode_IsSplitNode", + "ret": "bool", + "signature": "()const", + "stname": "ImGuiDockNode" + } + ], + "ImGuiDockNode_Rect": [ + { + "args": "(ImRect *pOut,ImGuiDockNode* self)", + "argsT": [ + { + "name": "pOut", + "type": "ImRect*" + }, + { + "name": "self", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiDockNode_Rect", + "defaults": {}, + "funcname": "Rect", + "location": "imgui_internal:1854", + "nonUDT": 1, + "ov_cimguiname": "ImGuiDockNode_Rect", + "ret": "void", + "signature": "()const", + "stname": "ImGuiDockNode" + } + ], + "ImGuiDockNode_SetLocalFlags": [ + { + "args": "(ImGuiDockNode* self,ImGuiDockNodeFlags flags)", + "argsT": [ + { + "name": "self", + "type": "ImGuiDockNode*" + }, + { + "name": "flags", + "type": "ImGuiDockNodeFlags" + } + ], + "argsoriginal": "(ImGuiDockNodeFlags flags)", + "call_args": "(flags)", + "cimguiname": "ImGuiDockNode_SetLocalFlags", + "defaults": {}, + "funcname": "SetLocalFlags", + "location": "imgui_internal:1856", + "ov_cimguiname": "ImGuiDockNode_SetLocalFlags", + "ret": "void", + "signature": "(ImGuiDockNodeFlags)", + "stname": "ImGuiDockNode" + } + ], + "ImGuiDockNode_UpdateMergedFlags": [ + { + "args": "(ImGuiDockNode* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiDockNode_UpdateMergedFlags", + "defaults": {}, + "funcname": "UpdateMergedFlags", + "location": "imgui_internal:1857", + "ov_cimguiname": "ImGuiDockNode_UpdateMergedFlags", + "ret": "void", + "signature": "()", + "stname": "ImGuiDockNode" + } + ], + "ImGuiDockNode_destroy": [ + { + "args": "(ImGuiDockNode* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiDockNode*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiDockNode_destroy", + "defaults": {}, + "destructor": true, + "location": "imgui_internal:1844", + "ov_cimguiname": "ImGuiDockNode_destroy", + "realdestructor": true, + "ret": "void", + "signature": "(ImGuiDockNode*)", + "stname": "ImGuiDockNode" + } + ], +>>>>>>> docking_inter "ImGuiIDStackTool_ImGuiIDStackTool": [ { "args": "()", @@ -5500,7 +6565,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiIDStackTool", +<<<<<<< HEAD "location": "imgui_internal:1893", +======= + "location": "imgui_internal:2088", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiIDStackTool_ImGuiIDStackTool", "signature": "()", "stname": "ImGuiIDStackTool" @@ -5543,7 +6612,11 @@ "cimguiname": "ImGuiIO_AddFocusEvent", "defaults": {}, "funcname": "AddFocusEvent", +<<<<<<< HEAD "location": "imgui:2226", +======= + "location": "imgui:2340", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiIO_AddFocusEvent", "ret": "void", "signature": "(bool)", @@ -5568,7 +6641,11 @@ "cimguiname": "ImGuiIO_AddInputCharacter", "defaults": {}, "funcname": "AddInputCharacter", +<<<<<<< HEAD "location": "imgui:2227", +======= + "location": "imgui:2341", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiIO_AddInputCharacter", "ret": "void", "signature": "(unsigned int)", @@ -5593,7 +6670,11 @@ "cimguiname": "ImGuiIO_AddInputCharacterUTF16", "defaults": {}, "funcname": "AddInputCharacterUTF16", +<<<<<<< HEAD "location": "imgui:2228", +======= + "location": "imgui:2342", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiIO_AddInputCharacterUTF16", "ret": "void", "signature": "(ImWchar16)", @@ -5618,7 +6699,11 @@ "cimguiname": "ImGuiIO_AddInputCharactersUTF8", "defaults": {}, "funcname": "AddInputCharactersUTF8", +<<<<<<< HEAD "location": "imgui:2229", +======= + "location": "imgui:2343", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", "ret": "void", "signature": "(const char*)", @@ -5651,7 +6736,11 @@ "cimguiname": "ImGuiIO_AddKeyAnalogEvent", "defaults": {}, "funcname": "AddKeyAnalogEvent", +<<<<<<< HEAD "location": "imgui:2221", +======= + "location": "imgui:2334", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiIO_AddKeyAnalogEvent", "ret": "void", "signature": "(ImGuiKey,bool,float)", @@ -5680,7 +6769,11 @@ "cimguiname": "ImGuiIO_AddKeyEvent", "defaults": {}, "funcname": "AddKeyEvent", +<<<<<<< HEAD "location": "imgui:2220", +======= + "location": "imgui:2333", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiIO_AddKeyEvent", "ret": "void", "signature": "(ImGuiKey,bool)", @@ -5709,7 +6802,11 @@ "cimguiname": "ImGuiIO_AddMouseButtonEvent", "defaults": {}, "funcname": "AddMouseButtonEvent", +<<<<<<< HEAD "location": "imgui:2223", +======= + "location": "imgui:2336", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiIO_AddMouseButtonEvent", "ret": "void", "signature": "(int,bool)", @@ -5738,7 +6835,11 @@ "cimguiname": "ImGuiIO_AddMousePosEvent", "defaults": {}, "funcname": "AddMousePosEvent", +<<<<<<< HEAD "location": "imgui:2222", +======= + "location": "imgui:2335", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiIO_AddMousePosEvent", "ret": "void", "signature": "(float,float)", @@ -5763,13 +6864,45 @@ "cimguiname": "ImGuiIO_AddMouseSourceEvent", "defaults": {}, "funcname": "AddMouseSourceEvent", +<<<<<<< HEAD "location": "imgui:2225", +======= + "location": "imgui:2338", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiIO_AddMouseSourceEvent", "ret": "void", "signature": "(ImGuiMouseSource)", "stname": "ImGuiIO" } ], +<<<<<<< HEAD +======= + "ImGuiIO_AddMouseViewportEvent": [ + { + "args": "(ImGuiIO* self,ImGuiID id)", + "argsT": [ + { + "name": "self", + "type": "ImGuiIO*" + }, + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID id)", + "call_args": "(id)", + "cimguiname": "ImGuiIO_AddMouseViewportEvent", + "defaults": {}, + "funcname": "AddMouseViewportEvent", + "location": "imgui:2339", + "ov_cimguiname": "ImGuiIO_AddMouseViewportEvent", + "ret": "void", + "signature": "(ImGuiID)", + "stname": "ImGuiIO" + } + ], +>>>>>>> docking_inter "ImGuiIO_AddMouseWheelEvent": [ { "args": "(ImGuiIO* self,float wheel_x,float wheel_y)", @@ -5792,7 +6925,11 @@ "cimguiname": "ImGuiIO_AddMouseWheelEvent", "defaults": {}, "funcname": "AddMouseWheelEvent", +<<<<<<< HEAD "location": "imgui:2224", +======= + "location": "imgui:2337", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiIO_AddMouseWheelEvent", "ret": "void", "signature": "(float,float)", @@ -5813,7 +6950,11 @@ "cimguiname": "ImGuiIO_ClearEventsQueue", "defaults": {}, "funcname": "ClearEventsQueue", +<<<<<<< HEAD "location": "imgui:2233", +======= + "location": "imgui:2347", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiIO_ClearEventsQueue", "ret": "void", "signature": "()", @@ -5834,13 +6975,38 @@ "cimguiname": "ImGuiIO_ClearInputKeys", "defaults": {}, "funcname": "ClearInputKeys", +<<<<<<< HEAD "location": "imgui:2234", +======= + "location": "imgui:2348", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiIO_ClearInputKeys", "ret": "void", "signature": "()", "stname": "ImGuiIO" } ], + "ImGuiIO_ClearInputMouse": [ + { + "args": "(ImGuiIO* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiIO*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiIO_ClearInputMouse", + "defaults": {}, + "funcname": "ClearInputMouse", + "location": "imgui:2349", + "ov_cimguiname": "ImGuiIO_ClearInputMouse", + "ret": "void", + "signature": "()", + "stname": "ImGuiIO" + } + ], "ImGuiIO_ImGuiIO": [ { "args": "()", @@ -5851,7 +7017,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiIO", +<<<<<<< HEAD "location": "imgui:2315", +======= + "location": "imgui:2432", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiIO_ImGuiIO", "signature": "()", "stname": "ImGuiIO" @@ -5875,7 +7045,11 @@ "cimguiname": "ImGuiIO_SetAppAcceptingEvents", "defaults": {}, "funcname": "SetAppAcceptingEvents", +<<<<<<< HEAD "location": "imgui:2232", +======= + "location": "imgui:2346", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiIO_SetAppAcceptingEvents", "ret": "void", "signature": "(bool)", @@ -5914,7 +7088,11 @@ "native_legacy_index": "-1" }, "funcname": "SetKeyEventNativeData", +<<<<<<< HEAD "location": "imgui:2231", +======= + "location": "imgui:2345", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiIO_SetKeyEventNativeData", "ret": "void", "signature": "(ImGuiKey,int,int,int)", @@ -5950,7 +7128,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputEvent", +<<<<<<< HEAD "location": "imgui_internal:1403", +======= + "location": "imgui_internal:1429", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputEvent_ImGuiInputEvent", "signature": "()", "stname": "ImGuiInputEvent" @@ -5989,7 +7171,11 @@ "cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "defaults": {}, "funcname": "ClearSelection", +<<<<<<< HEAD "location": "imgui:2359", +======= + "location": "imgui:2476", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "ret": "void", "signature": "()", @@ -6018,7 +7204,11 @@ "cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "defaults": {}, "funcname": "DeleteChars", +<<<<<<< HEAD "location": "imgui:2356", +======= + "location": "imgui:2473", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "ret": "void", "signature": "(int,int)", @@ -6039,7 +7229,11 @@ "cimguiname": "ImGuiInputTextCallbackData_HasSelection", "defaults": {}, "funcname": "HasSelection", +<<<<<<< HEAD "location": "imgui:2360", +======= + "location": "imgui:2477", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", "signature": "()const", @@ -6056,7 +7250,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextCallbackData", +<<<<<<< HEAD "location": "imgui:2355", +======= + "location": "imgui:2472", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "signature": "()", "stname": "ImGuiInputTextCallbackData" @@ -6090,7 +7288,11 @@ "text_end": "NULL" }, "funcname": "InsertChars", +<<<<<<< HEAD "location": "imgui:2357", +======= + "location": "imgui:2474", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextCallbackData_InsertChars", "ret": "void", "signature": "(int,const char*,const char*)", @@ -6111,7 +7313,11 @@ "cimguiname": "ImGuiInputTextCallbackData_SelectAll", "defaults": {}, "funcname": "SelectAll", +<<<<<<< HEAD "location": "imgui:2358", +======= + "location": "imgui:2475", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextCallbackData_SelectAll", "ret": "void", "signature": "()", @@ -6151,7 +7357,11 @@ "cimguiname": "ImGuiInputTextDeactivatedState_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", +<<<<<<< HEAD "location": "imgui_internal:1102", +======= + "location": "imgui_internal:1117", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextDeactivatedState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -6168,7 +7378,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextDeactivatedState", +<<<<<<< HEAD "location": "imgui_internal:1101", +======= + "location": "imgui_internal:1116", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState", "signature": "()", "stname": "ImGuiInputTextDeactivatedState" @@ -6207,7 +7421,11 @@ "cimguiname": "ImGuiInputTextState_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", +<<<<<<< HEAD "location": "imgui_internal:1129", +======= + "location": "imgui_internal:1144", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -6228,7 +7446,11 @@ "cimguiname": "ImGuiInputTextState_ClearSelection", "defaults": {}, "funcname": "ClearSelection", +<<<<<<< HEAD "location": "imgui_internal:1138", +======= + "location": "imgui_internal:1153", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextState_ClearSelection", "ret": "void", "signature": "()", @@ -6249,7 +7471,11 @@ "cimguiname": "ImGuiInputTextState_ClearText", "defaults": {}, "funcname": "ClearText", +<<<<<<< HEAD "location": "imgui_internal:1128", +======= + "location": "imgui_internal:1143", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextState_ClearText", "ret": "void", "signature": "()", @@ -6270,7 +7496,11 @@ "cimguiname": "ImGuiInputTextState_CursorAnimReset", "defaults": {}, "funcname": "CursorAnimReset", +<<<<<<< HEAD "location": "imgui_internal:1135", +======= + "location": "imgui_internal:1150", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextState_CursorAnimReset", "ret": "void", "signature": "()", @@ -6291,7 +7521,11 @@ "cimguiname": "ImGuiInputTextState_CursorClamp", "defaults": {}, "funcname": "CursorClamp", +<<<<<<< HEAD "location": "imgui_internal:1136", +======= + "location": "imgui_internal:1151", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextState_CursorClamp", "ret": "void", "signature": "()", @@ -6312,7 +7546,11 @@ "cimguiname": "ImGuiInputTextState_GetCursorPos", "defaults": {}, "funcname": "GetCursorPos", +<<<<<<< HEAD "location": "imgui_internal:1139", +======= + "location": "imgui_internal:1154", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextState_GetCursorPos", "ret": "int", "signature": "()const", @@ -6333,7 +7571,11 @@ "cimguiname": "ImGuiInputTextState_GetRedoAvailCount", "defaults": {}, "funcname": "GetRedoAvailCount", +<<<<<<< HEAD "location": "imgui_internal:1131", +======= + "location": "imgui_internal:1146", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextState_GetRedoAvailCount", "ret": "int", "signature": "()const", @@ -6354,7 +7596,11 @@ "cimguiname": "ImGuiInputTextState_GetSelectionEnd", "defaults": {}, "funcname": "GetSelectionEnd", +<<<<<<< HEAD "location": "imgui_internal:1141", +======= + "location": "imgui_internal:1156", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextState_GetSelectionEnd", "ret": "int", "signature": "()const", @@ -6375,7 +7621,11 @@ "cimguiname": "ImGuiInputTextState_GetSelectionStart", "defaults": {}, "funcname": "GetSelectionStart", +<<<<<<< HEAD "location": "imgui_internal:1140", +======= + "location": "imgui_internal:1155", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextState_GetSelectionStart", "ret": "int", "signature": "()const", @@ -6396,7 +7646,11 @@ "cimguiname": "ImGuiInputTextState_GetUndoAvailCount", "defaults": {}, "funcname": "GetUndoAvailCount", +<<<<<<< HEAD "location": "imgui_internal:1130", +======= + "location": "imgui_internal:1145", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextState_GetUndoAvailCount", "ret": "int", "signature": "()const", @@ -6417,7 +7671,11 @@ "cimguiname": "ImGuiInputTextState_HasSelection", "defaults": {}, "funcname": "HasSelection", +<<<<<<< HEAD "location": "imgui_internal:1137", +======= + "location": "imgui_internal:1152", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextState_HasSelection", "ret": "bool", "signature": "()const", @@ -6434,7 +7692,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextState", +<<<<<<< HEAD "location": "imgui_internal:1127", +======= + "location": "imgui_internal:1142", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextState_ImGuiInputTextState", "signature": "()", "stname": "ImGuiInputTextState" @@ -6458,7 +7720,11 @@ "cimguiname": "ImGuiInputTextState_OnKeyPressed", "defaults": {}, "funcname": "OnKeyPressed", +<<<<<<< HEAD "location": "imgui_internal:1132", +======= + "location": "imgui_internal:1147", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextState_OnKeyPressed", "ret": "void", "signature": "(int)", @@ -6479,7 +7745,11 @@ "cimguiname": "ImGuiInputTextState_ReloadUserBufAndKeepSelection", "defaults": {}, "funcname": "ReloadUserBufAndKeepSelection", +<<<<<<< HEAD "location": "imgui_internal:1150", +======= + "location": "imgui_internal:1165", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndKeepSelection", "ret": "void", "signature": "()", @@ -6500,7 +7770,11 @@ "cimguiname": "ImGuiInputTextState_ReloadUserBufAndMoveToEnd", "defaults": {}, "funcname": "ReloadUserBufAndMoveToEnd", +<<<<<<< HEAD "location": "imgui_internal:1151", +======= + "location": "imgui_internal:1166", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndMoveToEnd", "ret": "void", "signature": "()", @@ -6521,7 +7795,11 @@ "cimguiname": "ImGuiInputTextState_ReloadUserBufAndSelectAll", "defaults": {}, "funcname": "ReloadUserBufAndSelectAll", +<<<<<<< HEAD "location": "imgui_internal:1149", +======= + "location": "imgui_internal:1164", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndSelectAll", "ret": "void", "signature": "()", @@ -6542,7 +7820,11 @@ "cimguiname": "ImGuiInputTextState_SelectAll", "defaults": {}, "funcname": "SelectAll", +<<<<<<< HEAD "location": "imgui_internal:1142", +======= + "location": "imgui_internal:1157", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiInputTextState_SelectAll", "ret": "void", "signature": "()", @@ -6578,7 +7860,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyOwnerData", +<<<<<<< HEAD "location": "imgui_internal:1447", +======= + "location": "imgui_internal:1473", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiKeyOwnerData_ImGuiKeyOwnerData", "signature": "()", "stname": "ImGuiKeyOwnerData" @@ -6613,7 +7899,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyRoutingData", +<<<<<<< HEAD "location": "imgui_internal:1423", +======= + "location": "imgui_internal:1449", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiKeyRoutingData_ImGuiKeyRoutingData", "signature": "()", "stname": "ImGuiKeyRoutingData" @@ -6652,7 +7942,11 @@ "cimguiname": "ImGuiKeyRoutingTable_Clear", "defaults": {}, "funcname": "Clear", +<<<<<<< HEAD "location": "imgui_internal:1435", +======= + "location": "imgui_internal:1461", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiKeyRoutingTable_Clear", "ret": "void", "signature": "()", @@ -6669,7 +7963,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyRoutingTable", +<<<<<<< HEAD "location": "imgui_internal:1434", +======= + "location": "imgui_internal:1460", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable", "signature": "()", "stname": "ImGuiKeyRoutingTable" @@ -6704,7 +8002,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiLastItemData", +<<<<<<< HEAD "location": "imgui_internal:1247", +======= + "location": "imgui_internal:1270", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiLastItemData_ImGuiLastItemData", "signature": "()", "stname": "ImGuiLastItemData" @@ -6739,7 +8041,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipperData", +<<<<<<< HEAD "location": "imgui_internal:1518", +======= + "location": "imgui_internal:1544", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiListClipperData_ImGuiListClipperData", "signature": "()", "stname": "ImGuiListClipperData" @@ -6763,7 +8069,11 @@ "cimguiname": "ImGuiListClipperData_Reset", "defaults": {}, "funcname": "Reset", +<<<<<<< HEAD "location": "imgui_internal:1519", +======= + "location": "imgui_internal:1545", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiListClipperData_Reset", "ret": "void", "signature": "(ImGuiListClipper*)", @@ -6808,7 +8118,11 @@ "defaults": {}, "funcname": "FromIndices", "is_static_function": true, +<<<<<<< HEAD "location": "imgui_internal:1505", +======= + "location": "imgui_internal:1531", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiListClipperRange_FromIndices", "ret": "ImGuiListClipperRange", "signature": "(int,int)", @@ -6842,7 +8156,11 @@ "defaults": {}, "funcname": "FromPositions", "is_static_function": true, +<<<<<<< HEAD "location": "imgui_internal:1506", +======= + "location": "imgui_internal:1532", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiListClipperRange_FromPositions", "ret": "ImGuiListClipperRange", "signature": "(float,float,int,int)", @@ -6873,7 +8191,11 @@ "items_height": "-1.0f" }, "funcname": "Begin", +<<<<<<< HEAD "location": "imgui:2547", +======= + "location": "imgui:2691", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiListClipper_Begin", "ret": "void", "signature": "(int,float)", @@ -6894,7 +8216,11 @@ "cimguiname": "ImGuiListClipper_End", "defaults": {}, "funcname": "End", +<<<<<<< HEAD "location": "imgui:2548", +======= + "location": "imgui:2692", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiListClipper_End", "ret": "void", "signature": "()", @@ -6911,7 +8237,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipper", +<<<<<<< HEAD "location": "imgui:2545", +======= + "location": "imgui:2689", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiListClipper_ImGuiListClipper", "signature": "()", "stname": "ImGuiListClipper" @@ -6935,7 +8265,11 @@ "cimguiname": "ImGuiListClipper_IncludeItemByIndex", "defaults": {}, "funcname": "IncludeItemByIndex", +<<<<<<< HEAD "location": "imgui:2553", +======= + "location": "imgui:2697", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiListClipper_IncludeItemByIndex", "ret": "void", "signature": "(int)", @@ -6964,7 +8298,11 @@ "cimguiname": "ImGuiListClipper_IncludeItemsByIndex", "defaults": {}, "funcname": "IncludeItemsByIndex", +<<<<<<< HEAD "location": "imgui:2554", +======= + "location": "imgui:2698", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiListClipper_IncludeItemsByIndex", "ret": "void", "signature": "(int,int)", @@ -6985,7 +8323,11 @@ "cimguiname": "ImGuiListClipper_Step", "defaults": {}, "funcname": "Step", +<<<<<<< HEAD "location": "imgui:2549", +======= + "location": "imgui:2693", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiListClipper_Step", "ret": "bool", "signature": "()", @@ -7005,7 +8347,11 @@ "cimguiname": "ImGuiListClipper_destroy", "defaults": {}, "destructor": true, +<<<<<<< HEAD "location": "imgui:2546", +======= + "location": "imgui:2690", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiListClipper_destroy", "realdestructor": true, "ret": "void", @@ -7031,7 +8377,11 @@ "cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "defaults": {}, "funcname": "CalcNextTotalWidth", +<<<<<<< HEAD "location": "imgui_internal:1092", +======= + "location": "imgui_internal:1107", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "ret": "void", "signature": "(bool)", @@ -7068,7 +8418,11 @@ "cimguiname": "ImGuiMenuColumns_DeclColumns", "defaults": {}, "funcname": "DeclColumns", +<<<<<<< HEAD "location": "imgui_internal:1091", +======= + "location": "imgui_internal:1106", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiMenuColumns_DeclColumns", "ret": "float", "signature": "(float,float,float,float)", @@ -7085,7 +8439,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMenuColumns", +<<<<<<< HEAD "location": "imgui_internal:1089", +======= + "location": "imgui_internal:1104", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiMenuColumns_ImGuiMenuColumns", "signature": "()", "stname": "ImGuiMenuColumns" @@ -7113,7 +8471,11 @@ "cimguiname": "ImGuiMenuColumns_Update", "defaults": {}, "funcname": "Update", +<<<<<<< HEAD "location": "imgui_internal:1090", +======= + "location": "imgui_internal:1105", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiMenuColumns_Update", "ret": "void", "signature": "(float,bool)", @@ -7153,7 +8515,11 @@ "cimguiname": "ImGuiNavItemData_Clear", "defaults": {}, "funcname": "Clear", +<<<<<<< HEAD "location": "imgui_internal:1602", +======= + "location": "imgui_internal:1628", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiNavItemData_Clear", "ret": "void", "signature": "()", @@ -7170,7 +8536,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNavItemData", +<<<<<<< HEAD "location": "imgui_internal:1601", +======= + "location": "imgui_internal:1627", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiNavItemData_ImGuiNavItemData", "signature": "()", "stname": "ImGuiNavItemData" @@ -7209,7 +8579,11 @@ "cimguiname": "ImGuiNextItemData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", +<<<<<<< HEAD "location": "imgui_internal:1231", +======= + "location": "imgui_internal:1254", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiNextItemData_ClearFlags", "ret": "void", "signature": "()", @@ -7226,7 +8600,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextItemData", +<<<<<<< HEAD "location": "imgui_internal:1230", +======= + "location": "imgui_internal:1253", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiNextItemData_ImGuiNextItemData", "signature": "()", "stname": "ImGuiNextItemData" @@ -7265,7 +8643,11 @@ "cimguiname": "ImGuiNextWindowData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", +<<<<<<< HEAD "location": "imgui_internal:1201", +======= + "location": "imgui_internal:1224", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiNextWindowData_ClearFlags", "ret": "void", "signature": "()", @@ -7282,7 +8664,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextWindowData", +<<<<<<< HEAD "location": "imgui_internal:1200", +======= + "location": "imgui_internal:1223", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiNextWindowData_ImGuiNextWindowData", "signature": "()", "stname": "ImGuiNextWindowData" @@ -7317,7 +8703,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumnData", +<<<<<<< HEAD "location": "imgui_internal:1681", +======= + "location": "imgui_internal:1707", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiOldColumnData_ImGuiOldColumnData", "signature": "()", "stname": "ImGuiOldColumnData" @@ -7352,7 +8742,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumns", +<<<<<<< HEAD "location": "imgui_internal:1702", +======= + "location": "imgui_internal:1728", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiOldColumns_ImGuiOldColumns", "signature": "()", "stname": "ImGuiOldColumns" @@ -7387,7 +8781,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOnceUponAFrame", +<<<<<<< HEAD "location": "imgui:2411", +======= + "location": "imgui:2550", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "signature": "()", "stname": "ImGuiOnceUponAFrame" @@ -7426,7 +8824,11 @@ "cimguiname": "ImGuiPayload_Clear", "defaults": {}, "funcname": "Clear", +<<<<<<< HEAD "location": "imgui:2389", +======= + "location": "imgui:2528", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiPayload_Clear", "ret": "void", "signature": "()", @@ -7443,7 +8845,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPayload", +<<<<<<< HEAD "location": "imgui:2388", +======= + "location": "imgui:2527", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiPayload_ImGuiPayload", "signature": "()", "stname": "ImGuiPayload" @@ -7467,7 +8873,11 @@ "cimguiname": "ImGuiPayload_IsDataType", "defaults": {}, "funcname": "IsDataType", +<<<<<<< HEAD "location": "imgui:2390", +======= + "location": "imgui:2529", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", "signature": "(const char*)const", @@ -7488,7 +8898,11 @@ "cimguiname": "ImGuiPayload_IsDelivery", "defaults": {}, "funcname": "IsDelivery", +<<<<<<< HEAD "location": "imgui:2392", +======= + "location": "imgui:2531", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", "signature": "()const", @@ -7509,7 +8923,11 @@ "cimguiname": "ImGuiPayload_IsPreview", "defaults": {}, "funcname": "IsPreview", +<<<<<<< HEAD "location": "imgui:2391", +======= + "location": "imgui:2530", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", "signature": "()const", @@ -7535,6 +8953,44 @@ "stname": "ImGuiPayload" } ], +<<<<<<< HEAD +======= + "ImGuiPlatformIO_ImGuiPlatformIO": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiPlatformIO_ImGuiPlatformIO", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiPlatformIO", + "location": "imgui:3508", + "ov_cimguiname": "ImGuiPlatformIO_ImGuiPlatformIO", + "signature": "()", + "stname": "ImGuiPlatformIO" + } + ], + "ImGuiPlatformIO_destroy": [ + { + "args": "(ImGuiPlatformIO* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiPlatformIO*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiPlatformIO_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiPlatformIO_destroy", + "ret": "void", + "signature": "(ImGuiPlatformIO*)", + "stname": "ImGuiPlatformIO" + } + ], +>>>>>>> docking_inter "ImGuiPlatformImeData_ImGuiPlatformImeData": [ { "args": "()", @@ -7545,7 +9001,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformImeData", +<<<<<<< HEAD "location": "imgui:3239", +======= + "location": "imgui:3529", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiPlatformImeData_ImGuiPlatformImeData", "signature": "()", "stname": "ImGuiPlatformImeData" @@ -7570,6 +9030,44 @@ "stname": "ImGuiPlatformImeData" } ], +<<<<<<< HEAD +======= + "ImGuiPlatformMonitor_ImGuiPlatformMonitor": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiPlatformMonitor_ImGuiPlatformMonitor", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiPlatformMonitor", + "location": "imgui:3519", + "ov_cimguiname": "ImGuiPlatformMonitor_ImGuiPlatformMonitor", + "signature": "()", + "stname": "ImGuiPlatformMonitor" + } + ], + "ImGuiPlatformMonitor_destroy": [ + { + "args": "(ImGuiPlatformMonitor* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiPlatformMonitor*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiPlatformMonitor_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiPlatformMonitor_destroy", + "ret": "void", + "signature": "(ImGuiPlatformMonitor*)", + "stname": "ImGuiPlatformMonitor" + } + ], +>>>>>>> docking_inter "ImGuiPopupData_ImGuiPopupData": [ { "args": "()", @@ -7580,7 +9078,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPopupData", +<<<<<<< HEAD "location": "imgui_internal:1325", +======= + "location": "imgui_internal:1348", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiPopupData_ImGuiPopupData", "signature": "()", "stname": "ImGuiPopupData" @@ -7620,7 +9122,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", +<<<<<<< HEAD "location": "imgui_internal:1298", +======= + "location": "imgui_internal:1321", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr", "signature": "(void*)", "stname": "ImGuiPtrOrIndex" @@ -7639,7 +9145,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", +<<<<<<< HEAD "location": "imgui_internal:1299", +======= + "location": "imgui_internal:1322", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int", "signature": "(int)", "stname": "ImGuiPtrOrIndex" @@ -7674,7 +9184,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSettingsHandler", +<<<<<<< HEAD "location": "imgui_internal:1788", +======= + "location": "imgui_internal:1977", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiSettingsHandler_ImGuiSettingsHandler", "signature": "()", "stname": "ImGuiSettingsHandler" @@ -7709,7 +9223,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackLevelInfo", +<<<<<<< HEAD "location": "imgui_internal:1880", +======= + "location": "imgui_internal:2075", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStackLevelInfo_ImGuiStackLevelInfo", "signature": "()", "stname": "ImGuiStackLevelInfo" @@ -7752,7 +9270,11 @@ "cimguiname": "ImGuiStackSizes_CompareWithContextState", "defaults": {}, "funcname": "CompareWithContextState", +<<<<<<< HEAD "location": "imgui_internal:1274", +======= + "location": "imgui_internal:1297", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStackSizes_CompareWithContextState", "ret": "void", "signature": "(ImGuiContext*)", @@ -7769,7 +9291,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackSizes", +<<<<<<< HEAD "location": "imgui_internal:1272", +======= + "location": "imgui_internal:1295", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStackSizes_ImGuiStackSizes", "signature": "()", "stname": "ImGuiStackSizes" @@ -7793,7 +9319,11 @@ "cimguiname": "ImGuiStackSizes_SetToContextState", "defaults": {}, "funcname": "SetToContextState", +<<<<<<< HEAD "location": "imgui_internal:1273", +======= + "location": "imgui_internal:1296", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStackSizes_SetToContextState", "ret": "void", "signature": "(ImGuiContext*)", @@ -7838,7 +9368,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", +<<<<<<< HEAD "location": "imgui:2478", +======= + "location": "imgui:2607", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Int", "signature": "(ImGuiID,int)", "stname": "ImGuiStoragePair" @@ -7861,7 +9395,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", +<<<<<<< HEAD "location": "imgui:2479", +======= + "location": "imgui:2608", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Float", "signature": "(ImGuiID,float)", "stname": "ImGuiStoragePair" @@ -7884,7 +9422,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", +<<<<<<< HEAD "location": "imgui:2480", +======= + "location": "imgui:2609", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Ptr", "signature": "(ImGuiID,void*)", "stname": "ImGuiStoragePair" @@ -7923,7 +9465,11 @@ "cimguiname": "ImGuiStorage_BuildSortByKey", "defaults": {}, "funcname": "BuildSortByKey", +<<<<<<< HEAD "location": "imgui:2508", +======= + "location": "imgui:2648", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStorage_BuildSortByKey", "ret": "void", "signature": "()", @@ -7944,7 +9490,11 @@ "cimguiname": "ImGuiStorage_Clear", "defaults": {}, "funcname": "Clear", +<<<<<<< HEAD "location": "imgui:2488", +======= + "location": "imgui:2628", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStorage_Clear", "ret": "void", "signature": "()", @@ -7975,7 +9525,11 @@ "default_val": "false" }, "funcname": "GetBool", +<<<<<<< HEAD "location": "imgui:2491", +======= + "location": "imgui:2631", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", "signature": "(ImGuiID,bool)const", @@ -8006,7 +9560,11 @@ "default_val": "false" }, "funcname": "GetBoolRef", +<<<<<<< HEAD "location": "imgui:2503", +======= + "location": "imgui:2643", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStorage_GetBoolRef", "ret": "bool*", "signature": "(ImGuiID,bool)", @@ -8037,7 +9595,11 @@ "default_val": "0.0f" }, "funcname": "GetFloat", +<<<<<<< HEAD "location": "imgui:2493", +======= + "location": "imgui:2633", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", "signature": "(ImGuiID,float)const", @@ -8068,7 +9630,11 @@ "default_val": "0.0f" }, "funcname": "GetFloatRef", +<<<<<<< HEAD "location": "imgui:2504", +======= + "location": "imgui:2644", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStorage_GetFloatRef", "ret": "float*", "signature": "(ImGuiID,float)", @@ -8099,7 +9665,11 @@ "default_val": "0" }, "funcname": "GetInt", +<<<<<<< HEAD "location": "imgui:2489", +======= + "location": "imgui:2629", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", "signature": "(ImGuiID,int)const", @@ -8130,7 +9700,11 @@ "default_val": "0" }, "funcname": "GetIntRef", +<<<<<<< HEAD "location": "imgui:2502", +======= + "location": "imgui:2642", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStorage_GetIntRef", "ret": "int*", "signature": "(ImGuiID,int)", @@ -8155,7 +9729,11 @@ "cimguiname": "ImGuiStorage_GetVoidPtr", "defaults": {}, "funcname": "GetVoidPtr", +<<<<<<< HEAD "location": "imgui:2495", +======= + "location": "imgui:2635", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", "signature": "(ImGuiID)const", @@ -8186,7 +9764,11 @@ "default_val": "NULL" }, "funcname": "GetVoidPtrRef", +<<<<<<< HEAD "location": "imgui:2505", +======= + "location": "imgui:2645", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStorage_GetVoidPtrRef", "ret": "void**", "signature": "(ImGuiID,void*)", @@ -8211,7 +9793,11 @@ "cimguiname": "ImGuiStorage_SetAllInt", "defaults": {}, "funcname": "SetAllInt", +<<<<<<< HEAD "location": "imgui:2510", +======= + "location": "imgui:2650", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStorage_SetAllInt", "ret": "void", "signature": "(int)", @@ -8240,7 +9826,11 @@ "cimguiname": "ImGuiStorage_SetBool", "defaults": {}, "funcname": "SetBool", +<<<<<<< HEAD "location": "imgui:2492", +======= + "location": "imgui:2632", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStorage_SetBool", "ret": "void", "signature": "(ImGuiID,bool)", @@ -8269,7 +9859,11 @@ "cimguiname": "ImGuiStorage_SetFloat", "defaults": {}, "funcname": "SetFloat", +<<<<<<< HEAD "location": "imgui:2494", +======= + "location": "imgui:2634", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStorage_SetFloat", "ret": "void", "signature": "(ImGuiID,float)", @@ -8298,7 +9892,11 @@ "cimguiname": "ImGuiStorage_SetInt", "defaults": {}, "funcname": "SetInt", +<<<<<<< HEAD "location": "imgui:2490", +======= + "location": "imgui:2630", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStorage_SetInt", "ret": "void", "signature": "(ImGuiID,int)", @@ -8327,7 +9925,11 @@ "cimguiname": "ImGuiStorage_SetVoidPtr", "defaults": {}, "funcname": "SetVoidPtr", +<<<<<<< HEAD "location": "imgui:2496", +======= + "location": "imgui:2636", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStorage_SetVoidPtr", "ret": "void", "signature": "(ImGuiID,void*)", @@ -8353,7 +9955,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", +<<<<<<< HEAD "location": "imgui_internal:1041", +======= + "location": "imgui_internal:1056", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Int", "signature": "(ImGuiStyleVar,int)", "stname": "ImGuiStyleMod" @@ -8376,7 +9982,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", +<<<<<<< HEAD "location": "imgui_internal:1042", +======= + "location": "imgui_internal:1057", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Float", "signature": "(ImGuiStyleVar,float)", "stname": "ImGuiStyleMod" @@ -8399,7 +10009,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", +<<<<<<< HEAD "location": "imgui_internal:1043", +======= + "location": "imgui_internal:1058", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Vec2", "signature": "(ImGuiStyleVar,ImVec2)", "stname": "ImGuiStyleMod" @@ -8434,7 +10048,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyle", +<<<<<<< HEAD "location": "imgui:2101", +======= + "location": "imgui:2202", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStyle_ImGuiStyle", "signature": "()", "stname": "ImGuiStyle" @@ -8458,7 +10076,11 @@ "cimguiname": "ImGuiStyle_ScaleAllSizes", "defaults": {}, "funcname": "ScaleAllSizes", +<<<<<<< HEAD "location": "imgui:2102", +======= + "location": "imgui:2203", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", "ret": "void", "signature": "(float)", @@ -8494,7 +10116,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabBar", +<<<<<<< HEAD "location": "imgui_internal:2703", +======= + "location": "imgui_internal:2968", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTabBar_ImGuiTabBar", "signature": "()", "stname": "ImGuiTabBar" @@ -8529,7 +10155,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabItem", +<<<<<<< HEAD "location": "imgui_internal:2663", +======= + "location": "imgui_internal:2928", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTabItem_ImGuiTabItem", "signature": "()", "stname": "ImGuiTabItem" @@ -8564,7 +10194,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSettings", +<<<<<<< HEAD "location": "imgui_internal:2970", +======= + "location": "imgui_internal:3235", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTableColumnSettings_ImGuiTableColumnSettings", "signature": "()", "stname": "ImGuiTableColumnSettings" @@ -8599,7 +10233,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSortSpecs", +<<<<<<< HEAD "location": "imgui:1936", +======= + "location": "imgui:2036", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs", "signature": "()", "stname": "ImGuiTableColumnSortSpecs" @@ -8634,7 +10272,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumn", +<<<<<<< HEAD "location": "imgui_internal:2765", +======= + "location": "imgui_internal:3030", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTableColumn_ImGuiTableColumn", "signature": "()", "stname": "ImGuiTableColumn" @@ -8669,7 +10311,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableInstanceData", +<<<<<<< HEAD "location": "imgui_internal:2808", +======= + "location": "imgui_internal:3073", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTableInstanceData_ImGuiTableInstanceData", "signature": "()", "stname": "ImGuiTableInstanceData" @@ -8708,7 +10354,11 @@ "cimguiname": "ImGuiTableSettings_GetColumnSettings", "defaults": {}, "funcname": "GetColumnSettings", +<<<<<<< HEAD "location": "imgui_internal:2993", +======= + "location": "imgui_internal:3258", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTableSettings_GetColumnSettings", "ret": "ImGuiTableColumnSettings*", "signature": "()", @@ -8725,7 +10375,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSettings", +<<<<<<< HEAD "location": "imgui_internal:2992", +======= + "location": "imgui_internal:3257", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTableSettings_ImGuiTableSettings", "signature": "()", "stname": "ImGuiTableSettings" @@ -8760,7 +10414,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSortSpecs", +<<<<<<< HEAD "location": "imgui:1925", +======= + "location": "imgui:2025", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTableSortSpecs_ImGuiTableSortSpecs", "signature": "()", "stname": "ImGuiTableSortSpecs" @@ -8795,7 +10453,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableTempData", +<<<<<<< HEAD "location": "imgui_internal:2955", +======= + "location": "imgui_internal:3220", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTableTempData_ImGuiTableTempData", "signature": "()", "stname": "ImGuiTableTempData" @@ -8830,7 +10492,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTable", +<<<<<<< HEAD "location": "imgui_internal:2927", +======= + "location": "imgui_internal:3192", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTable_ImGuiTable", "signature": "()", "stname": "ImGuiTable" @@ -8849,7 +10515,11 @@ "cimguiname": "ImGuiTable_destroy", "defaults": {}, "destructor": true, +<<<<<<< HEAD "location": "imgui_internal:2928", +======= + "location": "imgui_internal:3193", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTable_destroy", "realdestructor": true, "ret": "void", @@ -8867,7 +10537,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextBuffer", +<<<<<<< HEAD "location": "imgui:2449", +======= + "location": "imgui:2588", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "signature": "()", "stname": "ImGuiTextBuffer" @@ -8897,7 +10571,11 @@ "str_end": "NULL" }, "funcname": "append", +<<<<<<< HEAD "location": "imgui:2458", +======= + "location": "imgui:2597", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextBuffer_append", "ret": "void", "signature": "(const char*,const char*)", @@ -8927,7 +10605,11 @@ "defaults": {}, "funcname": "appendf", "isvararg": "...)", +<<<<<<< HEAD "location": "imgui:2459", +======= + "location": "imgui:2598", +>>>>>>> docking_inter "manual": true, "ov_cimguiname": "ImGuiTextBuffer_appendf", "ret": "void", @@ -8957,7 +10639,11 @@ "cimguiname": "ImGuiTextBuffer_appendfv", "defaults": {}, "funcname": "appendfv", +<<<<<<< HEAD "location": "imgui:2460", +======= + "location": "imgui:2599", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextBuffer_appendfv", "ret": "void", "signature": "(const char*,va_list)", @@ -8978,7 +10664,11 @@ "cimguiname": "ImGuiTextBuffer_begin", "defaults": {}, "funcname": "begin", +<<<<<<< HEAD "location": "imgui:2451", +======= + "location": "imgui:2590", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", "signature": "()const", @@ -8999,7 +10689,11 @@ "cimguiname": "ImGuiTextBuffer_c_str", "defaults": {}, "funcname": "c_str", +<<<<<<< HEAD "location": "imgui:2457", +======= + "location": "imgui:2596", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", "signature": "()const", @@ -9020,7 +10714,11 @@ "cimguiname": "ImGuiTextBuffer_clear", "defaults": {}, "funcname": "clear", +<<<<<<< HEAD "location": "imgui:2455", +======= + "location": "imgui:2594", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextBuffer_clear", "ret": "void", "signature": "()", @@ -9060,7 +10758,11 @@ "cimguiname": "ImGuiTextBuffer_empty", "defaults": {}, "funcname": "empty", +<<<<<<< HEAD "location": "imgui:2454", +======= + "location": "imgui:2593", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextBuffer_empty", "ret": "bool", "signature": "()const", @@ -9081,7 +10783,11 @@ "cimguiname": "ImGuiTextBuffer_end", "defaults": {}, "funcname": "end", +<<<<<<< HEAD "location": "imgui:2452", +======= + "location": "imgui:2591", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", "signature": "()const", @@ -9106,7 +10812,11 @@ "cimguiname": "ImGuiTextBuffer_reserve", "defaults": {}, "funcname": "reserve", +<<<<<<< HEAD "location": "imgui:2456", +======= + "location": "imgui:2595", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextBuffer_reserve", "ret": "void", "signature": "(int)", @@ -9127,7 +10837,11 @@ "cimguiname": "ImGuiTextBuffer_size", "defaults": {}, "funcname": "size", +<<<<<<< HEAD "location": "imgui:2453", +======= + "location": "imgui:2592", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", "signature": "()const", @@ -9148,7 +10862,11 @@ "cimguiname": "ImGuiTextFilter_Build", "defaults": {}, "funcname": "Build", +<<<<<<< HEAD "location": "imgui:2422", +======= + "location": "imgui:2561", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextFilter_Build", "ret": "void", "signature": "()", @@ -9169,7 +10887,11 @@ "cimguiname": "ImGuiTextFilter_Clear", "defaults": {}, "funcname": "Clear", +<<<<<<< HEAD "location": "imgui:2423", +======= + "location": "imgui:2562", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextFilter_Clear", "ret": "void", "signature": "()", @@ -9201,7 +10923,11 @@ "width": "0.0f" }, "funcname": "Draw", +<<<<<<< HEAD "location": "imgui:2420", +======= + "location": "imgui:2559", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextFilter_Draw", "ret": "bool", "signature": "(const char*,float)", @@ -9225,7 +10951,11 @@ "default_filter": "\"\"" }, "funcname": "ImGuiTextFilter", +<<<<<<< HEAD "location": "imgui:2419", +======= + "location": "imgui:2558", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextFilter_ImGuiTextFilter", "signature": "(const char*)", "stname": "ImGuiTextFilter" @@ -9245,7 +10975,11 @@ "cimguiname": "ImGuiTextFilter_IsActive", "defaults": {}, "funcname": "IsActive", +<<<<<<< HEAD "location": "imgui:2424", +======= + "location": "imgui:2563", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", "signature": "()const", @@ -9276,7 +11010,11 @@ "text_end": "NULL" }, "funcname": "PassFilter", +<<<<<<< HEAD "location": "imgui:2421", +======= + "location": "imgui:2560", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", "signature": "(const char*,const char*)const", @@ -9328,7 +11066,11 @@ "cimguiname": "ImGuiTextIndex_append", "defaults": {}, "funcname": "append", +<<<<<<< HEAD "location": "imgui_internal:736", +======= + "location": "imgui_internal:749", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextIndex_append", "ret": "void", "signature": "(const char*,int,int)", @@ -9349,7 +11091,11 @@ "cimguiname": "ImGuiTextIndex_clear", "defaults": {}, "funcname": "clear", +<<<<<<< HEAD "location": "imgui_internal:732", +======= + "location": "imgui_internal:745", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextIndex_clear", "ret": "void", "signature": "()", @@ -9378,7 +11124,11 @@ "cimguiname": "ImGuiTextIndex_get_line_begin", "defaults": {}, "funcname": "get_line_begin", +<<<<<<< HEAD "location": "imgui_internal:734", +======= + "location": "imgui_internal:747", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextIndex_get_line_begin", "ret": "const char*", "signature": "(const char*,int)", @@ -9407,7 +11157,11 @@ "cimguiname": "ImGuiTextIndex_get_line_end", "defaults": {}, "funcname": "get_line_end", +<<<<<<< HEAD "location": "imgui_internal:735", +======= + "location": "imgui_internal:748", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextIndex_get_line_end", "ret": "const char*", "signature": "(const char*,int)", @@ -9428,7 +11182,11 @@ "cimguiname": "ImGuiTextIndex_size", "defaults": {}, "funcname": "size", +<<<<<<< HEAD "location": "imgui_internal:733", +======= + "location": "imgui_internal:746", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextIndex_size", "ret": "int", "signature": "()", @@ -9445,7 +11203,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", +<<<<<<< HEAD "location": "imgui:2432", +======= + "location": "imgui:2571", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Nil", "signature": "()", "stname": "ImGuiTextRange" @@ -9468,7 +11230,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", +<<<<<<< HEAD "location": "imgui:2433", +======= + "location": "imgui:2572", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Str", "signature": "(const char*,const char*)", "stname": "ImGuiTextRange" @@ -9507,7 +11273,11 @@ "cimguiname": "ImGuiTextRange_empty", "defaults": {}, "funcname": "empty", +<<<<<<< HEAD "location": "imgui:2434", +======= + "location": "imgui:2573", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextRange_empty", "ret": "bool", "signature": "()const", @@ -9536,7 +11306,11 @@ "cimguiname": "ImGuiTextRange_split", "defaults": {}, "funcname": "split", +<<<<<<< HEAD "location": "imgui:2435", +======= + "location": "imgui:2574", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTextRange_split", "ret": "void", "signature": "(char,ImVector_ImGuiTextRange*)const", @@ -9557,7 +11331,11 @@ "cimguiname": "ImGuiTypingSelectState_Clear", "defaults": {}, "funcname": "Clear", +<<<<<<< HEAD "location": "imgui_internal:1646", +======= + "location": "imgui_internal:1672", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTypingSelectState_Clear", "ret": "void", "signature": "()", @@ -9574,7 +11352,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTypingSelectState", +<<<<<<< HEAD "location": "imgui_internal:1645", +======= + "location": "imgui_internal:1671", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiTypingSelectState_ImGuiTypingSelectState", "signature": "()", "stname": "ImGuiTypingSelectState" @@ -9621,7 +11403,11 @@ "cimguiname": "ImGuiViewportP_CalcWorkRectPos", "defaults": {}, "funcname": "CalcWorkRectPos", +<<<<<<< HEAD "location": "imgui_internal:1745", +======= + "location": "imgui_internal:1929", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectPos", "ret": "void", @@ -9655,7 +11441,11 @@ "cimguiname": "ImGuiViewportP_CalcWorkRectSize", "defaults": {}, "funcname": "CalcWorkRectSize", +<<<<<<< HEAD "location": "imgui_internal:1746", +======= + "location": "imgui_internal:1930", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectSize", "ret": "void", @@ -9663,6 +11453,30 @@ "stname": "ImGuiViewportP" } ], +<<<<<<< HEAD +======= + "ImGuiViewportP_ClearRequestFlags": [ + { + "args": "(ImGuiViewportP* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiViewportP*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiViewportP_ClearRequestFlags", + "defaults": {}, + "funcname": "ClearRequestFlags", + "location": "imgui_internal:1926", + "ov_cimguiname": "ImGuiViewportP_ClearRequestFlags", + "ret": "void", + "signature": "()", + "stname": "ImGuiViewportP" + } + ], +>>>>>>> docking_inter "ImGuiViewportP_GetBuildWorkRect": [ { "args": "(ImRect *pOut,ImGuiViewportP* self)", @@ -9681,7 +11495,11 @@ "cimguiname": "ImGuiViewportP_GetBuildWorkRect", "defaults": {}, "funcname": "GetBuildWorkRect", +<<<<<<< HEAD "location": "imgui_internal:1752", +======= + "location": "imgui_internal:1936", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetBuildWorkRect", "ret": "void", @@ -9707,7 +11525,11 @@ "cimguiname": "ImGuiViewportP_GetMainRect", "defaults": {}, "funcname": "GetMainRect", +<<<<<<< HEAD "location": "imgui_internal:1750", +======= + "location": "imgui_internal:1934", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetMainRect", "ret": "void", @@ -9733,7 +11555,11 @@ "cimguiname": "ImGuiViewportP_GetWorkRect", "defaults": {}, "funcname": "GetWorkRect", +<<<<<<< HEAD "location": "imgui_internal:1751", +======= + "location": "imgui_internal:1935", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetWorkRect", "ret": "void", @@ -9751,7 +11577,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewportP", +<<<<<<< HEAD "location": "imgui_internal:1741", +======= + "location": "imgui_internal:1924", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiViewportP_ImGuiViewportP", "signature": "()", "stname": "ImGuiViewportP" @@ -9771,7 +11601,11 @@ "cimguiname": "ImGuiViewportP_UpdateWorkRect", "defaults": {}, "funcname": "UpdateWorkRect", +<<<<<<< HEAD "location": "imgui_internal:1747", +======= + "location": "imgui_internal:1931", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiViewportP_UpdateWorkRect", "ret": "void", "signature": "()", @@ -9791,7 +11625,11 @@ "cimguiname": "ImGuiViewportP_destroy", "defaults": {}, "destructor": true, +<<<<<<< HEAD "location": "imgui_internal:1742", +======= + "location": "imgui_internal:1925", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiViewportP_destroy", "realdestructor": true, "ret": "void", @@ -9817,7 +11655,11 @@ "cimguiname": "ImGuiViewport_GetCenter", "defaults": {}, "funcname": "GetCenter", +<<<<<<< HEAD "location": "imgui:3224", +======= + "location": "imgui:3396", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetCenter", "ret": "void", @@ -9843,7 +11685,11 @@ "cimguiname": "ImGuiViewport_GetWorkCenter", "defaults": {}, "funcname": "GetWorkCenter", +<<<<<<< HEAD "location": "imgui:3225", +======= + "location": "imgui:3397", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetWorkCenter", "ret": "void", @@ -9861,7 +11707,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewport", +<<<<<<< HEAD "location": "imgui:3221", +======= + "location": "imgui:3392", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiViewport_ImGuiViewport", "signature": "()", "stname": "ImGuiViewport" @@ -9880,12 +11730,54 @@ "cimguiname": "ImGuiViewport_destroy", "defaults": {}, "destructor": true, +<<<<<<< HEAD +======= + "location": "imgui:3393", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiViewport_destroy", "ret": "void", "signature": "(ImGuiViewport*)", "stname": "ImGuiViewport" } ], +<<<<<<< HEAD +======= + "ImGuiWindowClass_ImGuiWindowClass": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiWindowClass_ImGuiWindowClass", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiWindowClass", + "location": "imgui:2509", + "ov_cimguiname": "ImGuiWindowClass_ImGuiWindowClass", + "signature": "()", + "stname": "ImGuiWindowClass" + } + ], + "ImGuiWindowClass_destroy": [ + { + "args": "(ImGuiWindowClass* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiWindowClass*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiWindowClass_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiWindowClass_destroy", + "ret": "void", + "signature": "(ImGuiWindowClass*)", + "stname": "ImGuiWindowClass" + } + ], +>>>>>>> docking_inter "ImGuiWindowSettings_GetName": [ { "args": "(ImGuiWindowSettings* self)", @@ -9900,7 +11792,11 @@ "cimguiname": "ImGuiWindowSettings_GetName", "defaults": {}, "funcname": "GetName", +<<<<<<< HEAD "location": "imgui_internal:1773", +======= + "location": "imgui_internal:1962", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiWindowSettings_GetName", "ret": "char*", "signature": "()", @@ -9917,7 +11813,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowSettings", +<<<<<<< HEAD "location": "imgui_internal:1772", +======= + "location": "imgui_internal:1961", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiWindowSettings_ImGuiWindowSettings", "signature": "()", "stname": "ImGuiWindowSettings" @@ -9956,7 +11856,11 @@ "cimguiname": "ImGuiWindow_CalcFontSize", "defaults": {}, "funcname": "CalcFontSize", +<<<<<<< HEAD "location": "imgui_internal:2622", +======= + "location": "imgui_internal:2885", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiWindow_CalcFontSize", "ret": "float", "signature": "()const", @@ -9987,7 +11891,11 @@ "str_end": "NULL" }, "funcname": "GetID", +<<<<<<< HEAD "location": "imgui_internal:2615", +======= + "location": "imgui_internal:2878", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiWindow_GetID_Str", "ret": "ImGuiID", "signature": "(const char*,const char*)", @@ -10010,7 +11918,11 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", +<<<<<<< HEAD "location": "imgui_internal:2616", +======= + "location": "imgui_internal:2879", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiWindow_GetID_Ptr", "ret": "ImGuiID", "signature": "(const void*)", @@ -10033,7 +11945,11 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", +<<<<<<< HEAD "location": "imgui_internal:2617", +======= + "location": "imgui_internal:2880", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiWindow_GetID_Int", "ret": "ImGuiID", "signature": "(int)", @@ -10058,7 +11974,11 @@ "cimguiname": "ImGuiWindow_GetIDFromRectangle", "defaults": {}, "funcname": "GetIDFromRectangle", +<<<<<<< HEAD "location": "imgui_internal:2618", +======= + "location": "imgui_internal:2881", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiWindow_GetIDFromRectangle", "ret": "ImGuiID", "signature": "(const ImRect)", @@ -10084,7 +12004,11 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindow", +<<<<<<< HEAD "location": "imgui_internal:2611", +======= + "location": "imgui_internal:2874", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiWindow_ImGuiWindow", "signature": "(ImGuiContext*,const char*)", "stname": "ImGuiWindow" @@ -10108,7 +12032,11 @@ "cimguiname": "ImGuiWindow_MenuBarRect", "defaults": {}, "funcname": "MenuBarRect", +<<<<<<< HEAD "location": "imgui_internal:2624", +======= + "location": "imgui_internal:2887", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_MenuBarRect", "ret": "void", @@ -10134,7 +12062,11 @@ "cimguiname": "ImGuiWindow_Rect", "defaults": {}, "funcname": "Rect", +<<<<<<< HEAD "location": "imgui_internal:2621", +======= + "location": "imgui_internal:2884", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_Rect", "ret": "void", @@ -10160,7 +12092,11 @@ "cimguiname": "ImGuiWindow_TitleBarRect", "defaults": {}, "funcname": "TitleBarRect", +<<<<<<< HEAD "location": "imgui_internal:2623", +======= + "location": "imgui_internal:2886", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_TitleBarRect", "ret": "void", @@ -10181,7 +12117,11 @@ "cimguiname": "ImGuiWindow_destroy", "defaults": {}, "destructor": true, +<<<<<<< HEAD "location": "imgui_internal:2613", +======= + "location": "imgui_internal:2876", +>>>>>>> docking_inter "ov_cimguiname": "ImGuiWindow_destroy", "realdestructor": true, "ret": "void", @@ -10203,7 +12143,11 @@ "cimguiname": "ImPool_Add", "defaults": {}, "funcname": "Add", +<<<<<<< HEAD "location": "imgui_internal:689", +======= + "location": "imgui_internal:702", +>>>>>>> docking_inter "ov_cimguiname": "ImPool_Add", "ret": "T*", "signature": "()", @@ -10225,7 +12169,11 @@ "cimguiname": "ImPool_Clear", "defaults": {}, "funcname": "Clear", +<<<<<<< HEAD "location": "imgui_internal:688", +======= + "location": "imgui_internal:701", +>>>>>>> docking_inter "ov_cimguiname": "ImPool_Clear", "ret": "void", "signature": "()", @@ -10251,7 +12199,11 @@ "cimguiname": "ImPool_Contains", "defaults": {}, "funcname": "Contains", +<<<<<<< HEAD "location": "imgui_internal:687", +======= + "location": "imgui_internal:700", +>>>>>>> docking_inter "ov_cimguiname": "ImPool_Contains", "ret": "bool", "signature": "(const T*)const", @@ -10273,7 +12225,11 @@ "cimguiname": "ImPool_GetAliveCount", "defaults": {}, "funcname": "GetAliveCount", +<<<<<<< HEAD "location": "imgui_internal:696", +======= + "location": "imgui_internal:709", +>>>>>>> docking_inter "ov_cimguiname": "ImPool_GetAliveCount", "ret": "int", "signature": "()const", @@ -10295,7 +12251,11 @@ "cimguiname": "ImPool_GetBufSize", "defaults": {}, "funcname": "GetBufSize", +<<<<<<< HEAD "location": "imgui_internal:697", +======= + "location": "imgui_internal:710", +>>>>>>> docking_inter "ov_cimguiname": "ImPool_GetBufSize", "ret": "int", "signature": "()const", @@ -10321,7 +12281,11 @@ "cimguiname": "ImPool_GetByIndex", "defaults": {}, "funcname": "GetByIndex", +<<<<<<< HEAD "location": "imgui_internal:684", +======= + "location": "imgui_internal:697", +>>>>>>> docking_inter "ov_cimguiname": "ImPool_GetByIndex", "ret": "T*", "signature": "(ImPoolIdx)", @@ -10347,7 +12311,11 @@ "cimguiname": "ImPool_GetByKey", "defaults": {}, "funcname": "GetByKey", +<<<<<<< HEAD "location": "imgui_internal:683", +======= + "location": "imgui_internal:696", +>>>>>>> docking_inter "ov_cimguiname": "ImPool_GetByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -10373,7 +12341,11 @@ "cimguiname": "ImPool_GetIndex", "defaults": {}, "funcname": "GetIndex", +<<<<<<< HEAD "location": "imgui_internal:685", +======= + "location": "imgui_internal:698", +>>>>>>> docking_inter "ov_cimguiname": "ImPool_GetIndex", "ret": "ImPoolIdx", "signature": "(const T*)const", @@ -10395,7 +12367,11 @@ "cimguiname": "ImPool_GetMapSize", "defaults": {}, "funcname": "GetMapSize", +<<<<<<< HEAD "location": "imgui_internal:698", +======= + "location": "imgui_internal:711", +>>>>>>> docking_inter "ov_cimguiname": "ImPool_GetMapSize", "ret": "int", "signature": "()const", @@ -10421,7 +12397,11 @@ "cimguiname": "ImPool_GetOrAddByKey", "defaults": {}, "funcname": "GetOrAddByKey", +<<<<<<< HEAD "location": "imgui_internal:686", +======= + "location": "imgui_internal:699", +>>>>>>> docking_inter "ov_cimguiname": "ImPool_GetOrAddByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -10439,7 +12419,11 @@ "constructor": true, "defaults": {}, "funcname": "ImPool", +<<<<<<< HEAD "location": "imgui_internal:681", +======= + "location": "imgui_internal:694", +>>>>>>> docking_inter "ov_cimguiname": "ImPool_ImPool", "signature": "()", "stname": "ImPool", @@ -10468,7 +12452,11 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", +<<<<<<< HEAD "location": "imgui_internal:690", +======= + "location": "imgui_internal:703", +>>>>>>> docking_inter "ov_cimguiname": "ImPool_Remove_TPtr", "ret": "void", "signature": "(ImGuiID,const T*)", @@ -10496,7 +12484,11 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", +<<<<<<< HEAD "location": "imgui_internal:691", +======= + "location": "imgui_internal:704", +>>>>>>> docking_inter "ov_cimguiname": "ImPool_Remove_PoolIdx", "ret": "void", "signature": "(ImGuiID,ImPoolIdx)", @@ -10522,7 +12514,11 @@ "cimguiname": "ImPool_Reserve", "defaults": {}, "funcname": "Reserve", +<<<<<<< HEAD "location": "imgui_internal:692", +======= + "location": "imgui_internal:705", +>>>>>>> docking_inter "ov_cimguiname": "ImPool_Reserve", "ret": "void", "signature": "(int)", @@ -10548,7 +12544,11 @@ "cimguiname": "ImPool_TryGetMapData", "defaults": {}, "funcname": "TryGetMapData", +<<<<<<< HEAD "location": "imgui_internal:699", +======= + "location": "imgui_internal:712", +>>>>>>> docking_inter "ov_cimguiname": "ImPool_TryGetMapData", "ret": "T*", "signature": "(ImPoolIdx)", @@ -10569,7 +12569,11 @@ "cimguiname": "ImPool_destroy", "defaults": {}, "destructor": true, +<<<<<<< HEAD "location": "imgui_internal:682", +======= + "location": "imgui_internal:695", +>>>>>>> docking_inter "ov_cimguiname": "ImPool_destroy", "realdestructor": true, "ret": "void", @@ -10596,7 +12600,11 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", +<<<<<<< HEAD "location": "imgui_internal:552", +======= + "location": "imgui_internal:565", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_Add_Vec2", "ret": "void", "signature": "(const ImVec2)", @@ -10619,7 +12627,11 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", +<<<<<<< HEAD "location": "imgui_internal:553", +======= + "location": "imgui_internal:566", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_Add_Rect", "ret": "void", "signature": "(const ImRect)", @@ -10644,7 +12656,11 @@ "cimguiname": "ImRect_ClipWith", "defaults": {}, "funcname": "ClipWith", +<<<<<<< HEAD "location": "imgui_internal:559", +======= + "location": "imgui_internal:572", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_ClipWith", "ret": "void", "signature": "(const ImRect)", @@ -10669,7 +12685,11 @@ "cimguiname": "ImRect_ClipWithFull", "defaults": {}, "funcname": "ClipWithFull", +<<<<<<< HEAD "location": "imgui_internal:560", +======= + "location": "imgui_internal:573", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_ClipWithFull", "ret": "void", "signature": "(const ImRect)", @@ -10694,7 +12714,11 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", +<<<<<<< HEAD "location": "imgui_internal:548", +======= + "location": "imgui_internal:561", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_Contains_Vec2", "ret": "bool", "signature": "(const ImVec2)const", @@ -10717,7 +12741,11 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", +<<<<<<< HEAD "location": "imgui_internal:549", +======= + "location": "imgui_internal:562", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_Contains_Rect", "ret": "bool", "signature": "(const ImRect)const", @@ -10746,7 +12774,11 @@ "cimguiname": "ImRect_ContainsWithPad", "defaults": {}, "funcname": "ContainsWithPad", +<<<<<<< HEAD "location": "imgui_internal:550", +======= + "location": "imgui_internal:563", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_ContainsWithPad", "ret": "bool", "signature": "(const ImVec2,const ImVec2)const", @@ -10771,7 +12803,11 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", +<<<<<<< HEAD "location": "imgui_internal:554", +======= + "location": "imgui_internal:567", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_Expand_Float", "ret": "void", "signature": "(const float)", @@ -10794,7 +12830,11 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", +<<<<<<< HEAD "location": "imgui_internal:555", +======= + "location": "imgui_internal:568", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_Expand_Vec2", "ret": "void", "signature": "(const ImVec2)", @@ -10815,7 +12855,11 @@ "cimguiname": "ImRect_Floor", "defaults": {}, "funcname": "Floor", +<<<<<<< HEAD "location": "imgui_internal:561", +======= + "location": "imgui_internal:574", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_Floor", "ret": "void", "signature": "()", @@ -10836,7 +12880,11 @@ "cimguiname": "ImRect_GetArea", "defaults": {}, "funcname": "GetArea", +<<<<<<< HEAD "location": "imgui_internal:543", +======= + "location": "imgui_internal:556", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_GetArea", "ret": "float", "signature": "()const", @@ -10861,7 +12909,11 @@ "cimguiname": "ImRect_GetBL", "defaults": {}, "funcname": "GetBL", +<<<<<<< HEAD "location": "imgui_internal:546", +======= + "location": "imgui_internal:559", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImRect_GetBL", "ret": "void", @@ -10887,7 +12939,11 @@ "cimguiname": "ImRect_GetBR", "defaults": {}, "funcname": "GetBR", +<<<<<<< HEAD "location": "imgui_internal:547", +======= + "location": "imgui_internal:560", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImRect_GetBR", "ret": "void", @@ -10913,7 +12969,11 @@ "cimguiname": "ImRect_GetCenter", "defaults": {}, "funcname": "GetCenter", +<<<<<<< HEAD "location": "imgui_internal:539", +======= + "location": "imgui_internal:552", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImRect_GetCenter", "ret": "void", @@ -10935,7 +12995,11 @@ "cimguiname": "ImRect_GetHeight", "defaults": {}, "funcname": "GetHeight", +<<<<<<< HEAD "location": "imgui_internal:542", +======= + "location": "imgui_internal:555", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_GetHeight", "ret": "float", "signature": "()const", @@ -10960,7 +13024,11 @@ "cimguiname": "ImRect_GetSize", "defaults": {}, "funcname": "GetSize", +<<<<<<< HEAD "location": "imgui_internal:540", +======= + "location": "imgui_internal:553", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImRect_GetSize", "ret": "void", @@ -10986,7 +13054,11 @@ "cimguiname": "ImRect_GetTL", "defaults": {}, "funcname": "GetTL", +<<<<<<< HEAD "location": "imgui_internal:544", +======= + "location": "imgui_internal:557", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImRect_GetTL", "ret": "void", @@ -11012,7 +13084,11 @@ "cimguiname": "ImRect_GetTR", "defaults": {}, "funcname": "GetTR", +<<<<<<< HEAD "location": "imgui_internal:545", +======= + "location": "imgui_internal:558", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImRect_GetTR", "ret": "void", @@ -11034,7 +13110,11 @@ "cimguiname": "ImRect_GetWidth", "defaults": {}, "funcname": "GetWidth", +<<<<<<< HEAD "location": "imgui_internal:541", +======= + "location": "imgui_internal:554", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_GetWidth", "ret": "float", "signature": "()const", @@ -11051,7 +13131,11 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", +<<<<<<< HEAD "location": "imgui_internal:534", +======= + "location": "imgui_internal:547", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_ImRect_Nil", "signature": "()", "stname": "ImRect" @@ -11074,7 +13158,11 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", +<<<<<<< HEAD "location": "imgui_internal:535", +======= + "location": "imgui_internal:548", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_ImRect_Vec2", "signature": "(const ImVec2,const ImVec2)", "stname": "ImRect" @@ -11093,7 +13181,11 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", +<<<<<<< HEAD "location": "imgui_internal:536", +======= + "location": "imgui_internal:549", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_ImRect_Vec4", "signature": "(const ImVec4)", "stname": "ImRect" @@ -11124,7 +13216,11 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", +<<<<<<< HEAD "location": "imgui_internal:537", +======= + "location": "imgui_internal:550", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_ImRect_Float", "signature": "(float,float,float,float)", "stname": "ImRect" @@ -11144,7 +13240,11 @@ "cimguiname": "ImRect_IsInverted", "defaults": {}, "funcname": "IsInverted", +<<<<<<< HEAD "location": "imgui_internal:562", +======= + "location": "imgui_internal:575", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_IsInverted", "ret": "bool", "signature": "()const", @@ -11169,7 +13269,11 @@ "cimguiname": "ImRect_Overlaps", "defaults": {}, "funcname": "Overlaps", +<<<<<<< HEAD "location": "imgui_internal:551", +======= + "location": "imgui_internal:564", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_Overlaps", "ret": "bool", "signature": "(const ImRect)const", @@ -11194,7 +13298,11 @@ "cimguiname": "ImRect_ToVec4", "defaults": {}, "funcname": "ToVec4", +<<<<<<< HEAD "location": "imgui_internal:563", +======= + "location": "imgui_internal:576", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "ImRect_ToVec4", "ret": "void", @@ -11220,7 +13328,11 @@ "cimguiname": "ImRect_Translate", "defaults": {}, "funcname": "Translate", +<<<<<<< HEAD "location": "imgui_internal:556", +======= + "location": "imgui_internal:569", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_Translate", "ret": "void", "signature": "(const ImVec2)", @@ -11245,7 +13357,11 @@ "cimguiname": "ImRect_TranslateX", "defaults": {}, "funcname": "TranslateX", +<<<<<<< HEAD "location": "imgui_internal:557", +======= + "location": "imgui_internal:570", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_TranslateX", "ret": "void", "signature": "(float)", @@ -11270,7 +13386,11 @@ "cimguiname": "ImRect_TranslateY", "defaults": {}, "funcname": "TranslateY", +<<<<<<< HEAD "location": "imgui_internal:558", +======= + "location": "imgui_internal:571", +>>>>>>> docking_inter "ov_cimguiname": "ImRect_TranslateY", "ret": "void", "signature": "(float)", @@ -11310,7 +13430,11 @@ "cimguiname": "ImSpanAllocator_GetArenaSizeInBytes", "defaults": {}, "funcname": "GetArenaSizeInBytes", +<<<<<<< HEAD "location": "imgui_internal:661", +======= + "location": "imgui_internal:674", +>>>>>>> docking_inter "ov_cimguiname": "ImSpanAllocator_GetArenaSizeInBytes", "ret": "int", "signature": "()", @@ -11336,7 +13460,11 @@ "cimguiname": "ImSpanAllocator_GetSpanPtrBegin", "defaults": {}, "funcname": "GetSpanPtrBegin", +<<<<<<< HEAD "location": "imgui_internal:663", +======= + "location": "imgui_internal:676", +>>>>>>> docking_inter "ov_cimguiname": "ImSpanAllocator_GetSpanPtrBegin", "ret": "void*", "signature": "(int)", @@ -11362,7 +13490,11 @@ "cimguiname": "ImSpanAllocator_GetSpanPtrEnd", "defaults": {}, "funcname": "GetSpanPtrEnd", +<<<<<<< HEAD "location": "imgui_internal:664", +======= + "location": "imgui_internal:677", +>>>>>>> docking_inter "ov_cimguiname": "ImSpanAllocator_GetSpanPtrEnd", "ret": "void*", "signature": "(int)", @@ -11380,7 +13512,11 @@ "constructor": true, "defaults": {}, "funcname": "ImSpanAllocator", +<<<<<<< HEAD "location": "imgui_internal:659", +======= + "location": "imgui_internal:672", +>>>>>>> docking_inter "ov_cimguiname": "ImSpanAllocator_ImSpanAllocator", "signature": "()", "stname": "ImSpanAllocator", @@ -11415,7 +13551,11 @@ "a": "4" }, "funcname": "Reserve", +<<<<<<< HEAD "location": "imgui_internal:660", +======= + "location": "imgui_internal:673", +>>>>>>> docking_inter "ov_cimguiname": "ImSpanAllocator_Reserve", "ret": "void", "signature": "(int,size_t,int)", @@ -11441,7 +13581,11 @@ "cimguiname": "ImSpanAllocator_SetArenaBasePtr", "defaults": {}, "funcname": "SetArenaBasePtr", +<<<<<<< HEAD "location": "imgui_internal:662", +======= + "location": "imgui_internal:675", +>>>>>>> docking_inter "ov_cimguiname": "ImSpanAllocator_SetArenaBasePtr", "ret": "void", "signature": "(void*)", @@ -11479,7 +13623,11 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", +<<<<<<< HEAD "location": "imgui_internal:627", +======= + "location": "imgui_internal:640", +>>>>>>> docking_inter "ov_cimguiname": "ImSpan_ImSpan_Nil", "signature": "()", "stname": "ImSpan", @@ -11503,7 +13651,11 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", +<<<<<<< HEAD "location": "imgui_internal:628", +======= + "location": "imgui_internal:641", +>>>>>>> docking_inter "ov_cimguiname": "ImSpan_ImSpan_TPtrInt", "signature": "(T*,int)", "stname": "ImSpan", @@ -11527,7 +13679,11 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", +<<<<<<< HEAD "location": "imgui_internal:629", +======= + "location": "imgui_internal:642", +>>>>>>> docking_inter "ov_cimguiname": "ImSpan_ImSpan_TPtrTPtr", "signature": "(T*,T*)", "stname": "ImSpan", @@ -11548,7 +13704,11 @@ "cimguiname": "ImSpan_begin", "defaults": {}, "funcname": "begin", +<<<<<<< HEAD "location": "imgui_internal:638", +======= + "location": "imgui_internal:651", +>>>>>>> docking_inter "ov_cimguiname": "ImSpan_begin_Nil", "ret": "T*", "signature": "()", @@ -11568,7 +13728,11 @@ "cimguiname": "ImSpan_begin", "defaults": {}, "funcname": "begin", +<<<<<<< HEAD "location": "imgui_internal:639", +======= + "location": "imgui_internal:652", +>>>>>>> docking_inter "ov_cimguiname": "ImSpan_begin__const", "ret": "const T*", "signature": "()const", @@ -11610,7 +13774,11 @@ "cimguiname": "ImSpan_end", "defaults": {}, "funcname": "end", +<<<<<<< HEAD "location": "imgui_internal:640", +======= + "location": "imgui_internal:653", +>>>>>>> docking_inter "ov_cimguiname": "ImSpan_end_Nil", "ret": "T*", "signature": "()", @@ -11630,7 +13798,11 @@ "cimguiname": "ImSpan_end", "defaults": {}, "funcname": "end", +<<<<<<< HEAD "location": "imgui_internal:641", +======= + "location": "imgui_internal:654", +>>>>>>> docking_inter "ov_cimguiname": "ImSpan_end__const", "ret": "const T*", "signature": "()const", @@ -11656,7 +13828,11 @@ "cimguiname": "ImSpan_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", +<<<<<<< HEAD "location": "imgui_internal:644", +======= + "location": "imgui_internal:657", +>>>>>>> docking_inter "ov_cimguiname": "ImSpan_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -11686,7 +13862,11 @@ "cimguiname": "ImSpan_set", "defaults": {}, "funcname": "set", +<<<<<<< HEAD "location": "imgui_internal:631", +======= + "location": "imgui_internal:644", +>>>>>>> docking_inter "ov_cimguiname": "ImSpan_set_Int", "ret": "void", "signature": "(T*,int)", @@ -11714,7 +13894,11 @@ "cimguiname": "ImSpan_set", "defaults": {}, "funcname": "set", +<<<<<<< HEAD "location": "imgui_internal:632", +======= + "location": "imgui_internal:645", +>>>>>>> docking_inter "ov_cimguiname": "ImSpan_set_TPtr", "ret": "void", "signature": "(T*,T*)", @@ -11736,7 +13920,11 @@ "cimguiname": "ImSpan_size", "defaults": {}, "funcname": "size", +<<<<<<< HEAD "location": "imgui_internal:633", +======= + "location": "imgui_internal:646", +>>>>>>> docking_inter "ov_cimguiname": "ImSpan_size", "ret": "int", "signature": "()const", @@ -11758,7 +13946,11 @@ "cimguiname": "ImSpan_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", +<<<<<<< HEAD "location": "imgui_internal:634", +======= + "location": "imgui_internal:647", +>>>>>>> docking_inter "ov_cimguiname": "ImSpan_size_in_bytes", "ret": "int", "signature": "()const", @@ -11776,7 +13968,11 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", +<<<<<<< HEAD "location": "imgui_internal:514", +======= + "location": "imgui_internal:527", +>>>>>>> docking_inter "ov_cimguiname": "ImVec1_ImVec1_Nil", "signature": "()", "stname": "ImVec1" @@ -11795,7 +13991,11 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", +<<<<<<< HEAD "location": "imgui_internal:515", +======= + "location": "imgui_internal:528", +>>>>>>> docking_inter "ov_cimguiname": "ImVec1_ImVec1_Float", "signature": "(float)", "stname": "ImVec1" @@ -11830,7 +14030,11 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2", +<<<<<<< HEAD "location": "imgui:276", +======= + "location": "imgui:283", +>>>>>>> docking_inter "ov_cimguiname": "ImVec2_ImVec2_Nil", "signature": "()", "stname": "ImVec2" @@ -11853,7 +14057,11 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2", +<<<<<<< HEAD "location": "imgui:277", +======= + "location": "imgui:284", +>>>>>>> docking_inter "ov_cimguiname": "ImVec2_ImVec2_Float", "signature": "(float,float)", "stname": "ImVec2" @@ -11888,7 +14096,11 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", +<<<<<<< HEAD "location": "imgui_internal:522", +======= + "location": "imgui_internal:535", +>>>>>>> docking_inter "ov_cimguiname": "ImVec2ih_ImVec2ih_Nil", "signature": "()", "stname": "ImVec2ih" @@ -11911,7 +14123,11 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", +<<<<<<< HEAD "location": "imgui_internal:523", +======= + "location": "imgui_internal:536", +>>>>>>> docking_inter "ov_cimguiname": "ImVec2ih_ImVec2ih_short", "signature": "(short,short)", "stname": "ImVec2ih" @@ -11930,7 +14146,11 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", +<<<<<<< HEAD "location": "imgui_internal:524", +======= + "location": "imgui_internal:537", +>>>>>>> docking_inter "ov_cimguiname": "ImVec2ih_ImVec2ih_Vec2", "signature": "(const ImVec2)", "stname": "ImVec2ih" @@ -11965,7 +14185,11 @@ "constructor": true, "defaults": {}, "funcname": "ImVec4", +<<<<<<< HEAD "location": "imgui:289", +======= + "location": "imgui:296", +>>>>>>> docking_inter "ov_cimguiname": "ImVec4_ImVec4_Nil", "signature": "()", "stname": "ImVec4" @@ -11996,7 +14220,11 @@ "constructor": true, "defaults": {}, "funcname": "ImVec4", +<<<<<<< HEAD "location": "imgui:290", +======= + "location": "imgui:297", +>>>>>>> docking_inter "ov_cimguiname": "ImVec4_ImVec4_Float", "signature": "(float,float,float,float)", "stname": "ImVec4" @@ -12031,7 +14259,11 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", +<<<<<<< HEAD "location": "imgui:1983", +======= + "location": "imgui:2083", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_ImVector_Nil", "signature": "()", "stname": "ImVector", @@ -12051,7 +14283,11 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", +<<<<<<< HEAD "location": "imgui:1984", +======= + "location": "imgui:2084", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_ImVector_Vector_T_", "signature": "(const ImVector_T )", "stname": "ImVector", @@ -12076,7 +14312,11 @@ "cimguiname": "ImVector__grow_capacity", "defaults": {}, "funcname": "_grow_capacity", +<<<<<<< HEAD "location": "imgui:2010", +======= + "location": "imgui:2110", +>>>>>>> docking_inter "ov_cimguiname": "ImVector__grow_capacity", "ret": "int", "signature": "(int)const", @@ -12098,7 +14338,11 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", +<<<<<<< HEAD "location": "imgui:2006", +======= + "location": "imgui:2106", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_back_Nil", "ret": "T*", "retref": "&", @@ -12119,7 +14363,11 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", +<<<<<<< HEAD "location": "imgui:2007", +======= + "location": "imgui:2107", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_back__const", "ret": "const T*", "retref": "&", @@ -12142,7 +14390,11 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", +<<<<<<< HEAD "location": "imgui:2000", +======= + "location": "imgui:2100", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_begin_Nil", "ret": "T*", "signature": "()", @@ -12162,7 +14414,11 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", +<<<<<<< HEAD "location": "imgui:2001", +======= + "location": "imgui:2101", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_begin__const", "ret": "const T*", "signature": "()const", @@ -12184,7 +14440,11 @@ "cimguiname": "ImVector_capacity", "defaults": {}, "funcname": "capacity", +<<<<<<< HEAD "location": "imgui:1996", +======= + "location": "imgui:2096", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_capacity", "ret": "int", "signature": "()const", @@ -12206,7 +14466,11 @@ "cimguiname": "ImVector_clear", "defaults": {}, "funcname": "clear", +<<<<<<< HEAD "location": "imgui:1988", +======= + "location": "imgui:2088", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_clear", "ret": "void", "signature": "()", @@ -12228,7 +14492,11 @@ "cimguiname": "ImVector_clear_delete", "defaults": {}, "funcname": "clear_delete", +<<<<<<< HEAD "location": "imgui:1989", +======= + "location": "imgui:2089", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_clear_delete", "ret": "void", "signature": "()", @@ -12250,7 +14518,11 @@ "cimguiname": "ImVector_clear_destruct", "defaults": {}, "funcname": "clear_destruct", +<<<<<<< HEAD "location": "imgui:1990", +======= + "location": "imgui:2090", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_clear_destruct", "ret": "void", "signature": "()", @@ -12276,7 +14548,11 @@ "cimguiname": "ImVector_contains", "defaults": {}, "funcname": "contains", +<<<<<<< HEAD "location": "imgui:2025", +======= + "location": "imgui:2125", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_contains", "ret": "bool", "signature": "(const T)const", @@ -12297,7 +14573,11 @@ "cimguiname": "ImVector_destroy", "defaults": {}, "destructor": true, +<<<<<<< HEAD "location": "imgui:1986", +======= + "location": "imgui:2086", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_destroy", "realdestructor": true, "ret": "void", @@ -12320,7 +14600,11 @@ "cimguiname": "ImVector_empty", "defaults": {}, "funcname": "empty", +<<<<<<< HEAD "location": "imgui:1992", +======= + "location": "imgui:2092", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_empty", "ret": "bool", "signature": "()const", @@ -12342,7 +14626,11 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", +<<<<<<< HEAD "location": "imgui:2002", +======= + "location": "imgui:2102", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_end_Nil", "ret": "T*", "signature": "()", @@ -12362,7 +14650,11 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", +<<<<<<< HEAD "location": "imgui:2003", +======= + "location": "imgui:2103", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_end__const", "ret": "const T*", "signature": "()const", @@ -12388,7 +14680,11 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", +<<<<<<< HEAD "location": "imgui:2021", +======= + "location": "imgui:2121", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_erase_Nil", "ret": "T*", "signature": "(const T*)", @@ -12416,7 +14712,11 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", +<<<<<<< HEAD "location": "imgui:2022", +======= + "location": "imgui:2122", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_erase_TPtr", "ret": "T*", "signature": "(const T*,const T*)", @@ -12442,7 +14742,11 @@ "cimguiname": "ImVector_erase_unsorted", "defaults": {}, "funcname": "erase_unsorted", +<<<<<<< HEAD "location": "imgui:2023", +======= + "location": "imgui:2123", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_erase_unsorted", "ret": "T*", "signature": "(const T*)", @@ -12468,7 +14772,11 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", +<<<<<<< HEAD "location": "imgui:2026", +======= + "location": "imgui:2126", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_find_Nil", "ret": "T*", "signature": "(const T)", @@ -12492,7 +14800,11 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", +<<<<<<< HEAD "location": "imgui:2027", +======= + "location": "imgui:2127", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_find__const", "ret": "const T*", "signature": "(const T)const", @@ -12518,7 +14830,11 @@ "cimguiname": "ImVector_find_erase", "defaults": {}, "funcname": "find_erase", +<<<<<<< HEAD "location": "imgui:2029", +======= + "location": "imgui:2129", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_find_erase", "ret": "bool", "signature": "(const T)", @@ -12544,7 +14860,11 @@ "cimguiname": "ImVector_find_erase_unsorted", "defaults": {}, "funcname": "find_erase_unsorted", +<<<<<<< HEAD "location": "imgui:2030", +======= + "location": "imgui:2130", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_find_erase_unsorted", "ret": "bool", "signature": "(const T)", @@ -12570,7 +14890,11 @@ "cimguiname": "ImVector_find_index", "defaults": {}, "funcname": "find_index", +<<<<<<< HEAD "location": "imgui:2028", +======= + "location": "imgui:2128", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_find_index", "ret": "int", "signature": "(const T)const", @@ -12592,7 +14916,11 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", +<<<<<<< HEAD "location": "imgui:2004", +======= + "location": "imgui:2104", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_front_Nil", "ret": "T*", "retref": "&", @@ -12613,7 +14941,11 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", +<<<<<<< HEAD "location": "imgui:2005", +======= + "location": "imgui:2105", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_front__const", "ret": "const T*", "retref": "&", @@ -12640,7 +14972,11 @@ "cimguiname": "ImVector_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", +<<<<<<< HEAD "location": "imgui:2031", +======= + "location": "imgui:2131", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -12670,7 +15006,11 @@ "cimguiname": "ImVector_insert", "defaults": {}, "funcname": "insert", +<<<<<<< HEAD "location": "imgui:2024", +======= + "location": "imgui:2124", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_insert", "ret": "T*", "signature": "(const T*,const T)", @@ -12692,7 +15032,11 @@ "cimguiname": "ImVector_max_size", "defaults": {}, "funcname": "max_size", +<<<<<<< HEAD "location": "imgui:1995", +======= + "location": "imgui:2095", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_max_size", "ret": "int", "signature": "()const", @@ -12714,7 +15058,11 @@ "cimguiname": "ImVector_pop_back", "defaults": {}, "funcname": "pop_back", +<<<<<<< HEAD "location": "imgui:2019", +======= + "location": "imgui:2119", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_pop_back", "ret": "void", "signature": "()", @@ -12740,7 +15088,11 @@ "cimguiname": "ImVector_push_back", "defaults": {}, "funcname": "push_back", +<<<<<<< HEAD "location": "imgui:2018", +======= + "location": "imgui:2118", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_push_back", "ret": "void", "signature": "(const T)", @@ -12766,7 +15118,11 @@ "cimguiname": "ImVector_push_front", "defaults": {}, "funcname": "push_front", +<<<<<<< HEAD "location": "imgui:2020", +======= + "location": "imgui:2120", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_push_front", "ret": "void", "signature": "(const T)", @@ -12792,7 +15148,11 @@ "cimguiname": "ImVector_reserve", "defaults": {}, "funcname": "reserve", +<<<<<<< HEAD "location": "imgui:2014", +======= + "location": "imgui:2114", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_reserve", "ret": "void", "signature": "(int)", @@ -12818,7 +15178,11 @@ "cimguiname": "ImVector_reserve_discard", "defaults": {}, "funcname": "reserve_discard", +<<<<<<< HEAD "location": "imgui:2015", +======= + "location": "imgui:2115", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_reserve_discard", "ret": "void", "signature": "(int)", @@ -12844,7 +15208,11 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", +<<<<<<< HEAD "location": "imgui:2011", +======= + "location": "imgui:2111", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_resize_Nil", "ret": "void", "signature": "(int)", @@ -12872,7 +15240,11 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", +<<<<<<< HEAD "location": "imgui:2012", +======= + "location": "imgui:2112", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_resize_T", "ret": "void", "signature": "(int,const T)", @@ -12898,7 +15270,11 @@ "cimguiname": "ImVector_shrink", "defaults": {}, "funcname": "shrink", +<<<<<<< HEAD "location": "imgui:2013", +======= + "location": "imgui:2113", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_shrink", "ret": "void", "signature": "(int)", @@ -12920,7 +15296,11 @@ "cimguiname": "ImVector_size", "defaults": {}, "funcname": "size", +<<<<<<< HEAD "location": "imgui:1993", +======= + "location": "imgui:2093", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_size", "ret": "int", "signature": "()const", @@ -12942,7 +15322,11 @@ "cimguiname": "ImVector_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", +<<<<<<< HEAD "location": "imgui:1994", +======= + "location": "imgui:2094", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_size_in_bytes", "ret": "int", "signature": "()const", @@ -12969,7 +15353,11 @@ "cimguiname": "ImVector_swap", "defaults": {}, "funcname": "swap", +<<<<<<< HEAD "location": "imgui:2008", +======= + "location": "imgui:2108", +>>>>>>> docking_inter "ov_cimguiname": "ImVector_swap", "ret": "void", "signature": "(ImVector_T *)", @@ -12997,7 +15385,11 @@ "flags": "0" }, "funcname": "AcceptDragDropPayload", +<<<<<<< HEAD "location": "imgui:855", +======= + "location": "imgui:886", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igAcceptDragDropPayload", "ret": "const ImGuiPayload*", @@ -13019,7 +15411,11 @@ "cimguiname": "igActivateItemByID", "defaults": {}, "funcname": "ActivateItemByID", +<<<<<<< HEAD "location": "imgui_internal:3196", +======= + "location": "imgui_internal:3470", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igActivateItemByID", "ret": "void", @@ -13045,7 +15441,11 @@ "cimguiname": "igAddContextHook", "defaults": {}, "funcname": "AddContextHook", +<<<<<<< HEAD "location": "imgui_internal:3063", +======= + "location": "imgui_internal:3327", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igAddContextHook", "ret": "ImGuiID", @@ -13075,7 +15475,11 @@ "cimguiname": "igAddDrawListToDrawDataEx", "defaults": {}, "funcname": "AddDrawListToDrawDataEx", +<<<<<<< HEAD "location": "imgui_internal:3048", +======= + "location": "imgui_internal:3311", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igAddDrawListToDrawDataEx", "ret": "void", @@ -13097,7 +15501,11 @@ "cimguiname": "igAddSettingsHandler", "defaults": {}, "funcname": "AddSettingsHandler", +<<<<<<< HEAD "location": "imgui_internal:3074", +======= + "location": "imgui_internal:3344", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igAddSettingsHandler", "ret": "void", @@ -13114,7 +15522,11 @@ "cimguiname": "igAlignTextToFramePadding", "defaults": {}, "funcname": "AlignTextToFramePadding", +<<<<<<< HEAD "location": "imgui:489", +======= + "location": "imgui:499", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igAlignTextToFramePadding", "ret": "void", @@ -13140,7 +15552,11 @@ "cimguiname": "igArrowButton", "defaults": {}, "funcname": "ArrowButton", +<<<<<<< HEAD "location": "imgui:537", +======= + "location": "imgui:547", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igArrowButton", "ret": "bool", @@ -13176,7 +15592,11 @@ "flags": "0" }, "funcname": "ArrowButtonEx", +<<<<<<< HEAD "location": "imgui_internal:3423", +======= + "location": "imgui_internal:3755", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igArrowButtonEx", "ret": "bool", @@ -13209,7 +15629,11 @@ "p_open": "NULL" }, "funcname": "Begin", +<<<<<<< HEAD "location": "imgui:350", +======= + "location": "imgui:357", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBegin", "ret": "bool", @@ -13247,7 +15671,11 @@ "window_flags": "0" }, "funcname": "BeginChild", +<<<<<<< HEAD "location": "imgui:371", +======= + "location": "imgui:378", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginChild_Str", "ret": "bool", @@ -13283,7 +15711,11 @@ "window_flags": "0" }, "funcname": "BeginChild", +<<<<<<< HEAD "location": "imgui:372", +======= + "location": "imgui:379", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginChild_ID", "ret": "bool", @@ -13321,7 +15753,11 @@ "cimguiname": "igBeginChildEx", "defaults": {}, "funcname": "BeginChildEx", +<<<<<<< HEAD "location": "imgui_internal:3147", +======= + "location": "imgui_internal:3417", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginChildEx", "ret": "bool", @@ -13353,7 +15789,11 @@ "flags": "0" }, "funcname": "BeginColumns", +<<<<<<< HEAD "location": "imgui_internal:3310", +======= + "location": "imgui_internal:3639", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginColumns", "ret": "void", @@ -13385,7 +15825,11 @@ "flags": "0" }, "funcname": "BeginCombo", +<<<<<<< HEAD "location": "imgui:556", +======= + "location": "imgui:566", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginCombo", "ret": "bool", @@ -13415,7 +15859,11 @@ "cimguiname": "igBeginComboPopup", "defaults": {}, "funcname": "BeginComboPopup", +<<<<<<< HEAD "location": "imgui_internal:3169", +======= + "location": "imgui_internal:3443", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginComboPopup", "ret": "bool", @@ -13432,7 +15880,11 @@ "cimguiname": "igBeginComboPreview", "defaults": {}, "funcname": "BeginComboPreview", +<<<<<<< HEAD "location": "imgui_internal:3170", +======= + "location": "imgui_internal:3444", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginComboPreview", "ret": "bool", @@ -13456,7 +15908,11 @@ "disabled": "true" }, "funcname": "BeginDisabled", +<<<<<<< HEAD "location": "imgui:863", +======= + "location": "imgui:895", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginDisabled", "ret": "void", @@ -13473,7 +15929,11 @@ "cimguiname": "igBeginDisabledOverrideReenable", "defaults": {}, "funcname": "BeginDisabledOverrideReenable", +<<<<<<< HEAD "location": "imgui_internal:3137", +======= + "location": "imgui_internal:3407", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginDisabledOverrideReenable", "ret": "void", @@ -13481,6 +15941,79 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igBeginDockableDragDropSource": [ + { + "args": "(ImGuiWindow* window)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window)", + "call_args": "(window)", + "cimguiname": "igBeginDockableDragDropSource", + "defaults": {}, + "funcname": "BeginDockableDragDropSource", + "location": "imgui_internal:3584", + "namespace": "ImGui", + "ov_cimguiname": "igBeginDockableDragDropSource", + "ret": "void", + "signature": "(ImGuiWindow*)", + "stname": "" + } + ], + "igBeginDockableDragDropTarget": [ + { + "args": "(ImGuiWindow* window)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window)", + "call_args": "(window)", + "cimguiname": "igBeginDockableDragDropTarget", + "defaults": {}, + "funcname": "BeginDockableDragDropTarget", + "location": "imgui_internal:3585", + "namespace": "ImGui", + "ov_cimguiname": "igBeginDockableDragDropTarget", + "ret": "void", + "signature": "(ImGuiWindow*)", + "stname": "" + } + ], + "igBeginDocked": [ + { + "args": "(ImGuiWindow* window,bool* p_open)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "p_open", + "type": "bool*" + } + ], + "argsoriginal": "(ImGuiWindow* window,bool* p_open)", + "call_args": "(window,p_open)", + "cimguiname": "igBeginDocked", + "defaults": {}, + "funcname": "BeginDocked", + "location": "imgui_internal:3583", + "namespace": "ImGui", + "ov_cimguiname": "igBeginDocked", + "ret": "void", + "signature": "(ImGuiWindow*,bool*)", + "stname": "" + } + ], +>>>>>>> docking_inter "igBeginDragDropSource": [ { "args": "(ImGuiDragDropFlags flags)", @@ -13497,7 +16030,11 @@ "flags": "0" }, "funcname": "BeginDragDropSource", +<<<<<<< HEAD "location": "imgui:851", +======= + "location": "imgui:882", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropSource", "ret": "bool", @@ -13514,7 +16051,11 @@ "cimguiname": "igBeginDragDropTarget", "defaults": {}, "funcname": "BeginDragDropTarget", +<<<<<<< HEAD "location": "imgui:854", +======= + "location": "imgui:885", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTarget", "ret": "bool", @@ -13540,7 +16081,11 @@ "cimguiname": "igBeginDragDropTargetCustom", "defaults": {}, "funcname": "BeginDragDropTargetCustom", +<<<<<<< HEAD "location": "imgui_internal:3297", +======= + "location": "imgui_internal:3626", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTargetCustom", "ret": "bool", @@ -13557,7 +16102,11 @@ "cimguiname": "igBeginGroup", "defaults": {}, "funcname": "BeginGroup", +<<<<<<< HEAD "location": "imgui:487", +======= + "location": "imgui:497", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginGroup", "ret": "void", @@ -13574,7 +16123,11 @@ "cimguiname": "igBeginItemTooltip", "defaults": {}, "funcname": "BeginItemTooltip", +<<<<<<< HEAD "location": "imgui:714", +======= + "location": "imgui:724", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginItemTooltip", "ret": "bool", @@ -13602,7 +16155,11 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginListBox", +<<<<<<< HEAD "location": "imgui:668", +======= + "location": "imgui:678", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginListBox", "ret": "bool", @@ -13619,7 +16176,11 @@ "cimguiname": "igBeginMainMenuBar", "defaults": {}, "funcname": "BeginMainMenuBar", +<<<<<<< HEAD "location": "imgui:694", +======= + "location": "imgui:704", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginMainMenuBar", "ret": "bool", @@ -13647,7 +16208,11 @@ "enabled": "true" }, "funcname": "BeginMenu", +<<<<<<< HEAD "location": "imgui:696", +======= + "location": "imgui:706", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginMenu", "ret": "bool", @@ -13664,7 +16229,11 @@ "cimguiname": "igBeginMenuBar", "defaults": {}, "funcname": "BeginMenuBar", +<<<<<<< HEAD "location": "imgui:692", +======= + "location": "imgui:702", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginMenuBar", "ret": "bool", @@ -13696,7 +16265,11 @@ "enabled": "true" }, "funcname": "BeginMenuEx", +<<<<<<< HEAD "location": "imgui_internal:3165", +======= + "location": "imgui_internal:3439", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginMenuEx", "ret": "bool", @@ -13724,7 +16297,11 @@ "flags": "0" }, "funcname": "BeginPopup", +<<<<<<< HEAD "location": "imgui:728", +======= + "location": "imgui:738", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginPopup", "ret": "bool", @@ -13753,7 +16330,11 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextItem", +<<<<<<< HEAD "location": "imgui:750", +======= + "location": "imgui:760", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextItem", "ret": "bool", @@ -13782,7 +16363,11 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextVoid", +<<<<<<< HEAD "location": "imgui:752", +======= + "location": "imgui:762", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextVoid", "ret": "bool", @@ -13811,7 +16396,11 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextWindow", +<<<<<<< HEAD "location": "imgui:751", +======= + "location": "imgui:761", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextWindow", "ret": "bool", @@ -13821,23 +16410,27 @@ ], "igBeginPopupEx": [ { - "args": "(ImGuiID id,ImGuiWindowFlags extra_flags)", + "args": "(ImGuiID id,ImGuiWindowFlags extra_window_flags)", "argsT": [ { "name": "id", "type": "ImGuiID" }, { - "name": "extra_flags", + "name": "extra_window_flags", "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(ImGuiID id,ImGuiWindowFlags extra_flags)", - "call_args": "(id,extra_flags)", + "argsoriginal": "(ImGuiID id,ImGuiWindowFlags extra_window_flags)", + "call_args": "(id,extra_window_flags)", "cimguiname": "igBeginPopupEx", "defaults": {}, "funcname": "BeginPopupEx", +<<<<<<< HEAD "location": "imgui_internal:3153", +======= + "location": "imgui_internal:3420", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginPopupEx", "ret": "bool", @@ -13870,7 +16463,11 @@ "p_open": "NULL" }, "funcname": "BeginPopupModal", +<<<<<<< HEAD "location": "imgui:729", +======= + "location": "imgui:739", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginPopupModal", "ret": "bool", @@ -13898,7 +16495,11 @@ "flags": "0" }, "funcname": "BeginTabBar", +<<<<<<< HEAD "location": "imgui:829", +======= + "location": "imgui:840", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginTabBar", "ret": "bool", @@ -13928,7 +16529,11 @@ "cimguiname": "igBeginTabBarEx", "defaults": {}, "funcname": "BeginTabBarEx", +<<<<<<< HEAD "location": "imgui_internal:3379", +======= + "location": "imgui_internal:3707", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginTabBarEx", "ret": "bool", @@ -13961,7 +16566,11 @@ "p_open": "NULL" }, "funcname": "BeginTabItem", +<<<<<<< HEAD "location": "imgui:831", +======= + "location": "imgui:842", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginTabItem", "ret": "bool", @@ -13971,14 +16580,14 @@ ], "igBeginTable": [ { - "args": "(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)", + "args": "(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)", "argsT": [ { "name": "str_id", "type": "const char*" }, { - "name": "column", + "name": "columns", "type": "int" }, { @@ -13994,8 +16603,8 @@ "type": "float" } ], - "argsoriginal": "(const char* str_id,int column,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)", - "call_args": "(str_id,column,flags,outer_size,inner_width)", + "argsoriginal": "(const char* str_id,int columns,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)", + "call_args": "(str_id,columns,flags,outer_size,inner_width)", "cimguiname": "igBeginTable", "defaults": { "flags": "0", @@ -14003,7 +16612,11 @@ "outer_size": "ImVec2(0.0f,0.0f)" }, "funcname": "BeginTable", +<<<<<<< HEAD "location": "imgui:781", +======= + "location": "imgui:791", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginTable", "ret": "bool", @@ -14049,7 +16662,11 @@ "outer_size": "ImVec2(0,0)" }, "funcname": "BeginTableEx", +<<<<<<< HEAD "location": "imgui_internal:3335", +======= + "location": "imgui_internal:3663", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginTableEx", "ret": "bool", @@ -14066,7 +16683,11 @@ "cimguiname": "igBeginTooltip", "defaults": {}, "funcname": "BeginTooltip", +<<<<<<< HEAD "location": "imgui:705", +======= + "location": "imgui:715", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginTooltip", "ret": "bool", @@ -14092,7 +16713,11 @@ "cimguiname": "igBeginTooltipEx", "defaults": {}, "funcname": "BeginTooltipEx", +<<<<<<< HEAD "location": "imgui_internal:3154", +======= + "location": "imgui_internal:3434", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginTooltipEx", "ret": "bool", @@ -14109,7 +16734,11 @@ "cimguiname": "igBeginTooltipHidden", "defaults": {}, "funcname": "BeginTooltipHidden", +<<<<<<< HEAD "location": "imgui_internal:3155", +======= + "location": "imgui_internal:3435", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginTooltipHidden", "ret": "bool", @@ -14147,7 +16776,11 @@ "cimguiname": "igBeginViewportSideBar", "defaults": {}, "funcname": "BeginViewportSideBar", +<<<<<<< HEAD "location": "imgui_internal:3164", +======= + "location": "imgui_internal:3438", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBeginViewportSideBar", "ret": "bool", @@ -14169,7 +16802,11 @@ "cimguiname": "igBringWindowToDisplayBack", "defaults": {}, "funcname": "BringWindowToDisplayBack", +<<<<<<< HEAD "location": "imgui_internal:3034", +======= + "location": "imgui_internal:3299", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBack", "ret": "void", @@ -14195,7 +16832,11 @@ "cimguiname": "igBringWindowToDisplayBehind", "defaults": {}, "funcname": "BringWindowToDisplayBehind", +<<<<<<< HEAD "location": "imgui_internal:3035", +======= + "location": "imgui_internal:3300", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBehind", "ret": "void", @@ -14217,7 +16858,11 @@ "cimguiname": "igBringWindowToDisplayFront", "defaults": {}, "funcname": "BringWindowToDisplayFront", +<<<<<<< HEAD "location": "imgui_internal:3033", +======= + "location": "imgui_internal:3298", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayFront", "ret": "void", @@ -14239,7 +16884,11 @@ "cimguiname": "igBringWindowToFocusFront", "defaults": {}, "funcname": "BringWindowToFocusFront", +<<<<<<< HEAD "location": "imgui_internal:3032", +======= + "location": "imgui_internal:3297", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBringWindowToFocusFront", "ret": "void", @@ -14256,7 +16905,11 @@ "cimguiname": "igBullet", "defaults": {}, "funcname": "Bullet", +<<<<<<< HEAD "location": "imgui:544", +======= + "location": "imgui:554", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBullet", "ret": "void", @@ -14283,7 +16936,11 @@ "defaults": {}, "funcname": "BulletText", "isvararg": "...)", +<<<<<<< HEAD "location": "imgui:527", +======= + "location": "imgui:537", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBulletText", "ret": "void", @@ -14309,7 +16966,11 @@ "cimguiname": "igBulletTextV", "defaults": {}, "funcname": "BulletTextV", +<<<<<<< HEAD "location": "imgui:528", +======= + "location": "imgui:538", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igBulletTextV", "ret": "void", @@ -14337,7 +16998,11 @@ "size": "ImVec2(0,0)" }, "funcname": "Button", +<<<<<<< HEAD "location": "imgui:534", +======= + "location": "imgui:544", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igButton", "ret": "bool", @@ -14377,7 +17042,11 @@ "flags": "0" }, "funcname": "ButtonBehavior", +<<<<<<< HEAD "location": "imgui_internal:3441", +======= + "location": "imgui_internal:3773", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igButtonBehavior", "ret": "bool", @@ -14410,7 +17079,11 @@ "size_arg": "ImVec2(0,0)" }, "funcname": "ButtonEx", +<<<<<<< HEAD "location": "imgui_internal:3422", +======= + "location": "imgui_internal:3754", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igButtonEx", "ret": "bool", @@ -14444,7 +17117,11 @@ "cimguiname": "igCalcItemSize", "defaults": {}, "funcname": "CalcItemSize", +<<<<<<< HEAD "location": "imgui_internal:3126", +======= + "location": "imgui_internal:3396", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcItemSize", @@ -14462,7 +17139,11 @@ "cimguiname": "igCalcItemWidth", "defaults": {}, "funcname": "CalcItemWidth", +<<<<<<< HEAD "location": "imgui:447", +======= + "location": "imgui:457", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igCalcItemWidth", "ret": "float", @@ -14470,6 +17151,39 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igCalcRoundingFlagsForRectInRect": [ + { + "args": "(const ImRect r_in,const ImRect r_outer,float threshold)", + "argsT": [ + { + "name": "r_in", + "type": "const ImRect" + }, + { + "name": "r_outer", + "type": "const ImRect" + }, + { + "name": "threshold", + "type": "float" + } + ], + "argsoriginal": "(const ImRect& r_in,const ImRect& r_outer,float threshold)", + "call_args": "(r_in,r_outer,threshold)", + "cimguiname": "igCalcRoundingFlagsForRectInRect", + "defaults": {}, + "funcname": "CalcRoundingFlagsForRectInRect", + "location": "imgui_internal:3750", + "namespace": "ImGui", + "ov_cimguiname": "igCalcRoundingFlagsForRectInRect", + "ret": "ImDrawFlags", + "signature": "(const ImRect,const ImRect,float)", + "stname": "" + } + ], +>>>>>>> docking_inter "igCalcTextSize": [ { "args": "(ImVec2 *pOut,const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width)", @@ -14504,7 +17218,11 @@ "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", +<<<<<<< HEAD "location": "imgui:921", +======= + "location": "imgui:953", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcTextSize", @@ -14539,7 +17257,11 @@ "cimguiname": "igCalcTypematicRepeatAmount", "defaults": {}, "funcname": "CalcTypematicRepeatAmount", +<<<<<<< HEAD "location": "imgui_internal:3225", +======= + "location": "imgui_internal:3499", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igCalcTypematicRepeatAmount", "ret": "int", @@ -14565,7 +17287,11 @@ "cimguiname": "igCalcWindowNextAutoFitSize", "defaults": {}, "funcname": "CalcWindowNextAutoFitSize", +<<<<<<< HEAD "location": "imgui_internal:3014", +======= + "location": "imgui_internal:3279", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcWindowNextAutoFitSize", @@ -14592,7 +17318,11 @@ "cimguiname": "igCalcWrapWidthForPos", "defaults": {}, "funcname": "CalcWrapWidthForPos", +<<<<<<< HEAD "location": "imgui_internal:3127", +======= + "location": "imgui_internal:3397", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igCalcWrapWidthForPos", "ret": "float", @@ -14618,7 +17348,11 @@ "cimguiname": "igCallContextHooks", "defaults": {}, "funcname": "CallContextHooks", +<<<<<<< HEAD "location": "imgui_internal:3065", +======= + "location": "imgui_internal:3329", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igCallContextHooks", "ret": "void", @@ -14644,7 +17378,11 @@ "cimguiname": "igCheckbox", "defaults": {}, "funcname": "Checkbox", +<<<<<<< HEAD "location": "imgui:538", +======= + "location": "imgui:548", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igCheckbox", "ret": "bool", @@ -14674,7 +17412,11 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", +<<<<<<< HEAD "location": "imgui:539", +======= + "location": "imgui:549", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_IntPtr", "ret": "bool", @@ -14702,7 +17444,11 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", +<<<<<<< HEAD "location": "imgui:540", +======= + "location": "imgui:550", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_UintPtr", "ret": "bool", @@ -14730,7 +17476,11 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", +<<<<<<< HEAD "location": "imgui_internal:3427", +======= + "location": "imgui_internal:3759", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_S64Ptr", "ret": "bool", @@ -14758,7 +17508,11 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", +<<<<<<< HEAD "location": "imgui_internal:3428", +======= + "location": "imgui_internal:3760", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_U64Ptr", "ret": "bool", @@ -14775,7 +17529,11 @@ "cimguiname": "igClearActiveID", "defaults": {}, "funcname": "ClearActiveID", +<<<<<<< HEAD "location": "imgui_internal:3109", +======= + "location": "imgui_internal:3379", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igClearActiveID", "ret": "void", @@ -14792,7 +17550,11 @@ "cimguiname": "igClearDragDrop", "defaults": {}, "funcname": "ClearDragDrop", +<<<<<<< HEAD "location": "imgui_internal:3298", +======= + "location": "imgui_internal:3627", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igClearDragDrop", "ret": "void", @@ -14809,7 +17571,11 @@ "cimguiname": "igClearIniSettings", "defaults": {}, "funcname": "ClearIniSettings", +<<<<<<< HEAD "location": "imgui_internal:3073", +======= + "location": "imgui_internal:3343", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igClearIniSettings", "ret": "void", @@ -14831,7 +17597,11 @@ "cimguiname": "igClearWindowSettings", "defaults": {}, "funcname": "ClearWindowSettings", +<<<<<<< HEAD "location": "imgui_internal:3082", +======= + "location": "imgui_internal:3352", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igClearWindowSettings", "ret": "void", @@ -14857,7 +17627,11 @@ "cimguiname": "igCloseButton", "defaults": {}, "funcname": "CloseButton", +<<<<<<< HEAD "location": "imgui_internal:3431", +======= + "location": "imgui_internal:3763", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igCloseButton", "ret": "bool", @@ -14874,7 +17648,11 @@ "cimguiname": "igCloseCurrentPopup", "defaults": {}, "funcname": "CloseCurrentPopup", +<<<<<<< HEAD "location": "imgui:743", +======= + "location": "imgui:753", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igCloseCurrentPopup", "ret": "void", @@ -14900,7 +17678,11 @@ "cimguiname": "igClosePopupToLevel", "defaults": {}, "funcname": "ClosePopupToLevel", +<<<<<<< HEAD "location": "imgui_internal:3149", +======= + "location": "imgui_internal:3422", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igClosePopupToLevel", "ret": "void", @@ -14917,7 +17699,11 @@ "cimguiname": "igClosePopupsExceptModals", "defaults": {}, "funcname": "ClosePopupsExceptModals", +<<<<<<< HEAD "location": "imgui_internal:3151", +======= + "location": "imgui_internal:3424", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igClosePopupsExceptModals", "ret": "void", @@ -14943,7 +17729,11 @@ "cimguiname": "igClosePopupsOverWindow", "defaults": {}, "funcname": "ClosePopupsOverWindow", +<<<<<<< HEAD "location": "imgui_internal:3150", +======= + "location": "imgui_internal:3423", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igClosePopupsOverWindow", "ret": "void", @@ -14969,7 +17759,11 @@ "cimguiname": "igCollapseButton", "defaults": {}, "funcname": "CollapseButton", +<<<<<<< HEAD "location": "imgui_internal:3432", +======= + "location": "imgui_internal:3764", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igCollapseButton", "ret": "bool", @@ -14997,7 +17791,11 @@ "flags": "0" }, "funcname": "CollapsingHeader", +<<<<<<< HEAD "location": "imgui:652", +======= + "location": "imgui:662", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_TreeNodeFlags", "ret": "bool", @@ -15027,7 +17825,11 @@ "flags": "0" }, "funcname": "CollapsingHeader", +<<<<<<< HEAD "location": "imgui:653", +======= + "location": "imgui:663", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_BoolPtr", "ret": "bool", @@ -15064,7 +17866,11 @@ "size": "ImVec2(0,0)" }, "funcname": "ColorButton", +<<<<<<< HEAD "location": "imgui:633", +======= + "location": "imgui:643", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igColorButton", "ret": "bool", @@ -15086,7 +17892,11 @@ "cimguiname": "igColorConvertFloat4ToU32", "defaults": {}, "funcname": "ColorConvertFloat4ToU32", +<<<<<<< HEAD "location": "imgui:925", +======= + "location": "imgui:957", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igColorConvertFloat4ToU32", "ret": "ImU32", @@ -15131,7 +17941,11 @@ "cimguiname": "igColorConvertHSVtoRGB", "defaults": {}, "funcname": "ColorConvertHSVtoRGB", +<<<<<<< HEAD "location": "imgui:927", +======= + "location": "imgui:959", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igColorConvertHSVtoRGB", "ret": "void", @@ -15176,7 +17990,11 @@ "cimguiname": "igColorConvertRGBtoHSV", "defaults": {}, "funcname": "ColorConvertRGBtoHSV", +<<<<<<< HEAD "location": "imgui:926", +======= + "location": "imgui:958", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igColorConvertRGBtoHSV", "ret": "void", @@ -15202,7 +18020,11 @@ "cimguiname": "igColorConvertU32ToFloat4", "defaults": {}, "funcname": "ColorConvertU32ToFloat4", +<<<<<<< HEAD "location": "imgui:924", +======= + "location": "imgui:956", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igColorConvertU32ToFloat4", @@ -15235,7 +18057,11 @@ "flags": "0" }, "funcname": "ColorEdit3", +<<<<<<< HEAD "location": "imgui:629", +======= + "location": "imgui:639", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igColorEdit3", "ret": "bool", @@ -15267,7 +18093,11 @@ "flags": "0" }, "funcname": "ColorEdit4", +<<<<<<< HEAD "location": "imgui:630", +======= + "location": "imgui:640", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igColorEdit4", "ret": "bool", @@ -15293,7 +18123,11 @@ "cimguiname": "igColorEditOptionsPopup", "defaults": {}, "funcname": "ColorEditOptionsPopup", +<<<<<<< HEAD "location": "imgui_internal:3480", +======= + "location": "imgui_internal:3812", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igColorEditOptionsPopup", "ret": "void", @@ -15325,7 +18159,11 @@ "flags": "0" }, "funcname": "ColorPicker3", +<<<<<<< HEAD "location": "imgui:631", +======= + "location": "imgui:641", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igColorPicker3", "ret": "bool", @@ -15362,7 +18200,11 @@ "ref_col": "NULL" }, "funcname": "ColorPicker4", +<<<<<<< HEAD "location": "imgui:632", +======= + "location": "imgui:642", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igColorPicker4", "ret": "bool", @@ -15388,7 +18230,11 @@ "cimguiname": "igColorPickerOptionsPopup", "defaults": {}, "funcname": "ColorPickerOptionsPopup", +<<<<<<< HEAD "location": "imgui_internal:3481", +======= + "location": "imgui_internal:3813", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igColorPickerOptionsPopup", "ret": "void", @@ -15418,7 +18264,11 @@ "cimguiname": "igColorTooltip", "defaults": {}, "funcname": "ColorTooltip", +<<<<<<< HEAD "location": "imgui_internal:3479", +======= + "location": "imgui_internal:3811", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igColorTooltip", "ret": "void", @@ -15452,7 +18302,11 @@ "id": "NULL" }, "funcname": "Columns", +<<<<<<< HEAD "location": "imgui:818", +======= + "location": "imgui:829", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igColumns", "ret": "void", @@ -15492,7 +18346,11 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", +<<<<<<< HEAD "location": "imgui:558", +======= + "location": "imgui:568", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igCombo_Str_arr", "ret": "bool", @@ -15526,7 +18384,11 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", +<<<<<<< HEAD "location": "imgui:559", +======= + "location": "imgui:569", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igCombo_Str", "ret": "bool", @@ -15570,7 +18432,11 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", +<<<<<<< HEAD "location": "imgui:560", +======= + "location": "imgui:570", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igCombo_FnStrPtr", "ret": "bool", @@ -15592,7 +18458,11 @@ "cimguiname": "igConvertSingleModFlagToKey", "defaults": {}, "funcname": "ConvertSingleModFlagToKey", +<<<<<<< HEAD "location": "imgui_internal:3209", +======= + "location": "imgui_internal:3483", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igConvertSingleModFlagToKey", "ret": "ImGuiKey", @@ -15616,7 +18486,11 @@ "shared_font_atlas": "NULL" }, "funcname": "CreateContext", +<<<<<<< HEAD "location": "imgui:308", +======= + "location": "imgui:315", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igCreateContext", "ret": "ImGuiContext*", @@ -15638,7 +18512,11 @@ "cimguiname": "igCreateNewWindowSettings", "defaults": {}, "funcname": "CreateNewWindowSettings", +<<<<<<< HEAD "location": "imgui_internal:3079", +======= + "location": "imgui_internal:3349", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igCreateNewWindowSettings", "ret": "ImGuiWindowSettings*", @@ -15678,7 +18556,11 @@ "p_data_when_empty": "NULL" }, "funcname": "DataTypeApplyFromText", +<<<<<<< HEAD "location": "imgui_internal:3465", +======= + "location": "imgui_internal:3797", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyFromText", "ret": "bool", @@ -15716,7 +18598,11 @@ "cimguiname": "igDataTypeApplyOp", "defaults": {}, "funcname": "DataTypeApplyOp", +<<<<<<< HEAD "location": "imgui_internal:3464", +======= + "location": "imgui_internal:3796", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyOp", "ret": "void", @@ -15750,7 +18636,11 @@ "cimguiname": "igDataTypeClamp", "defaults": {}, "funcname": "DataTypeClamp", +<<<<<<< HEAD "location": "imgui_internal:3467", +======= + "location": "imgui_internal:3799", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDataTypeClamp", "ret": "bool", @@ -15780,7 +18670,11 @@ "cimguiname": "igDataTypeCompare", "defaults": {}, "funcname": "DataTypeCompare", +<<<<<<< HEAD "location": "imgui_internal:3466", +======= + "location": "imgui_internal:3798", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDataTypeCompare", "ret": "int", @@ -15818,7 +18712,11 @@ "cimguiname": "igDataTypeFormatString", "defaults": {}, "funcname": "DataTypeFormatString", +<<<<<<< HEAD "location": "imgui_internal:3463", +======= + "location": "imgui_internal:3795", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDataTypeFormatString", "ret": "int", @@ -15840,7 +18738,11 @@ "cimguiname": "igDataTypeGetInfo", "defaults": {}, "funcname": "DataTypeGetInfo", +<<<<<<< HEAD "location": "imgui_internal:3462", +======= + "location": "imgui_internal:3794", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDataTypeGetInfo", "ret": "const ImGuiDataTypeInfo*", @@ -15874,7 +18776,11 @@ "cimguiname": "igDebugAllocHook", "defaults": {}, "funcname": "DebugAllocHook", +<<<<<<< HEAD "location": "imgui_internal:3499", +======= + "location": "imgui_internal:3831", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugAllocHook", "ret": "void", @@ -15900,7 +18806,11 @@ "cimguiname": "igDebugBreakButton", "defaults": {}, "funcname": "DebugBreakButton", +<<<<<<< HEAD "location": "imgui_internal:3513", +======= + "location": "imgui_internal:3845", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugBreakButton", "ret": "bool", @@ -15926,7 +18836,11 @@ "cimguiname": "igDebugBreakButtonTooltip", "defaults": {}, "funcname": "DebugBreakButtonTooltip", +<<<<<<< HEAD "location": "imgui_internal:3514", +======= + "location": "imgui_internal:3846", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugBreakButtonTooltip", "ret": "void", @@ -15943,7 +18857,11 @@ "cimguiname": "igDebugBreakClearData", "defaults": {}, "funcname": "DebugBreakClearData", +<<<<<<< HEAD "location": "imgui_internal:3512", +======= + "location": "imgui_internal:3844", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugBreakClearData", "ret": "void", @@ -15989,7 +18907,11 @@ "cimguiname": "igDebugCheckVersionAndDataLayout", "defaults": {}, "funcname": "DebugCheckVersionAndDataLayout", +<<<<<<< HEAD "location": "imgui:1000", +======= + "location": "imgui:1032", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugCheckVersionAndDataLayout", "ret": "bool", @@ -16013,7 +18935,11 @@ "col": "4278190335" }, "funcname": "DebugDrawCursorPos", +<<<<<<< HEAD "location": "imgui_internal:3505", +======= + "location": "imgui_internal:3837", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugDrawCursorPos", "ret": "void", @@ -16037,7 +18963,11 @@ "col": "4278190335" }, "funcname": "DebugDrawItemRect", +<<<<<<< HEAD "location": "imgui_internal:3507", +======= + "location": "imgui_internal:3839", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugDrawItemRect", "ret": "void", @@ -16061,7 +18991,11 @@ "col": "4278190335" }, "funcname": "DebugDrawLineExtents", +<<<<<<< HEAD "location": "imgui_internal:3506", +======= + "location": "imgui_internal:3838", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugDrawLineExtents", "ret": "void", @@ -16083,7 +19017,11 @@ "cimguiname": "igDebugFlashStyleColor", "defaults": {}, "funcname": "DebugFlashStyleColor", +<<<<<<< HEAD "location": "imgui:998", +======= + "location": "imgui:1030", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugFlashStyleColor", "ret": "void", @@ -16117,7 +19055,11 @@ "cimguiname": "igDebugHookIdInfo", "defaults": {}, "funcname": "DebugHookIdInfo", +<<<<<<< HEAD "location": "imgui_internal:3516", +======= + "location": "imgui_internal:3848", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugHookIdInfo", "ret": "void", @@ -16139,7 +19081,11 @@ "cimguiname": "igDebugLocateItem", "defaults": {}, "funcname": "DebugLocateItem", +<<<<<<< HEAD "location": "imgui_internal:3509", +======= + "location": "imgui_internal:3841", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItem", "ret": "void", @@ -16161,7 +19107,11 @@ "cimguiname": "igDebugLocateItemOnHover", "defaults": {}, "funcname": "DebugLocateItemOnHover", +<<<<<<< HEAD "location": "imgui_internal:3510", +======= + "location": "imgui_internal:3842", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItemOnHover", "ret": "void", @@ -16178,7 +19128,11 @@ "cimguiname": "igDebugLocateItemResolveWithLastItem", "defaults": {}, "funcname": "DebugLocateItemResolveWithLastItem", +<<<<<<< HEAD "location": "imgui_internal:3511", +======= + "location": "imgui_internal:3843", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItemResolveWithLastItem", "ret": "void", @@ -16205,7 +19159,11 @@ "defaults": {}, "funcname": "DebugLog", "isvararg": "...)", +<<<<<<< HEAD "location": "imgui_internal:3497", +======= + "location": "imgui_internal:3829", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugLog", "ret": "void", @@ -16231,7 +19189,11 @@ "cimguiname": "igDebugLogV", "defaults": {}, "funcname": "DebugLogV", +<<<<<<< HEAD "location": "imgui_internal:3498", +======= + "location": "imgui_internal:3830", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugLogV", "ret": "void", @@ -16253,7 +19215,11 @@ "cimguiname": "igDebugNodeColumns", "defaults": {}, "funcname": "DebugNodeColumns", +<<<<<<< HEAD "location": "imgui_internal:3517", +======= + "location": "imgui_internal:3849", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugNodeColumns", "ret": "void", @@ -16261,6 +19227,35 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igDebugNodeDockNode": [ + { + "args": "(ImGuiDockNode* node,const char* label)", + "argsT": [ + { + "name": "node", + "type": "ImGuiDockNode*" + }, + { + "name": "label", + "type": "const char*" + } + ], + "argsoriginal": "(ImGuiDockNode* node,const char* label)", + "call_args": "(node,label)", + "cimguiname": "igDebugNodeDockNode", + "defaults": {}, + "funcname": "DebugNodeDockNode", + "location": "imgui_internal:3850", + "namespace": "ImGui", + "ov_cimguiname": "igDebugNodeDockNode", + "ret": "void", + "signature": "(ImGuiDockNode*,const char*)", + "stname": "" + } + ], +>>>>>>> docking_inter "igDebugNodeDrawCmdShowMeshAndBoundingBox": [ { "args": "(ImDrawList* out_draw_list,const ImDrawList* draw_list,const ImDrawCmd* draw_cmd,bool show_mesh,bool show_aabb)", @@ -16291,7 +19286,11 @@ "cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "defaults": {}, "funcname": "DebugNodeDrawCmdShowMeshAndBoundingBox", +<<<<<<< HEAD "location": "imgui_internal:3519", +======= + "location": "imgui_internal:3852", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "ret": "void", @@ -16325,7 +19324,11 @@ "cimguiname": "igDebugNodeDrawList", "defaults": {}, "funcname": "DebugNodeDrawList", +<<<<<<< HEAD "location": "imgui_internal:3518", +======= + "location": "imgui_internal:3851", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawList", "ret": "void", @@ -16347,7 +19350,11 @@ "cimguiname": "igDebugNodeFont", "defaults": {}, "funcname": "DebugNodeFont", +<<<<<<< HEAD "location": "imgui_internal:3520", +======= + "location": "imgui_internal:3853", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFont", "ret": "void", @@ -16373,7 +19380,11 @@ "cimguiname": "igDebugNodeFontGlyph", "defaults": {}, "funcname": "DebugNodeFontGlyph", +<<<<<<< HEAD "location": "imgui_internal:3521", +======= + "location": "imgui_internal:3854", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFontGlyph", "ret": "void", @@ -16395,7 +19406,11 @@ "cimguiname": "igDebugNodeInputTextState", "defaults": {}, "funcname": "DebugNodeInputTextState", +<<<<<<< HEAD "location": "imgui_internal:3526", +======= + "location": "imgui_internal:3859", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugNodeInputTextState", "ret": "void", @@ -16421,7 +19436,11 @@ "cimguiname": "igDebugNodeStorage", "defaults": {}, "funcname": "DebugNodeStorage", +<<<<<<< HEAD "location": "imgui_internal:3522", +======= + "location": "imgui_internal:3855", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugNodeStorage", "ret": "void", @@ -16447,7 +19466,11 @@ "cimguiname": "igDebugNodeTabBar", "defaults": {}, "funcname": "DebugNodeTabBar", +<<<<<<< HEAD "location": "imgui_internal:3523", +======= + "location": "imgui_internal:3856", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTabBar", "ret": "void", @@ -16469,7 +19492,11 @@ "cimguiname": "igDebugNodeTable", "defaults": {}, "funcname": "DebugNodeTable", +<<<<<<< HEAD "location": "imgui_internal:3524", +======= + "location": "imgui_internal:3857", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTable", "ret": "void", @@ -16491,7 +19518,11 @@ "cimguiname": "igDebugNodeTableSettings", "defaults": {}, "funcname": "DebugNodeTableSettings", +<<<<<<< HEAD "location": "imgui_internal:3525", +======= + "location": "imgui_internal:3858", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTableSettings", "ret": "void", @@ -16513,7 +19544,11 @@ "cimguiname": "igDebugNodeTypingSelectState", "defaults": {}, "funcname": "DebugNodeTypingSelectState", +<<<<<<< HEAD "location": "imgui_internal:3527", +======= + "location": "imgui_internal:3860", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTypingSelectState", "ret": "void", @@ -16535,7 +19570,11 @@ "cimguiname": "igDebugNodeViewport", "defaults": {}, "funcname": "DebugNodeViewport", +<<<<<<< HEAD "location": "imgui_internal:3532", +======= + "location": "imgui_internal:3865", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugNodeViewport", "ret": "void", @@ -16561,7 +19600,11 @@ "cimguiname": "igDebugNodeWindow", "defaults": {}, "funcname": "DebugNodeWindow", +<<<<<<< HEAD "location": "imgui_internal:3528", +======= + "location": "imgui_internal:3861", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindow", "ret": "void", @@ -16583,7 +19626,11 @@ "cimguiname": "igDebugNodeWindowSettings", "defaults": {}, "funcname": "DebugNodeWindowSettings", +<<<<<<< HEAD "location": "imgui_internal:3529", +======= + "location": "imgui_internal:3862", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowSettings", "ret": "void", @@ -16609,7 +19656,11 @@ "cimguiname": "igDebugNodeWindowsList", "defaults": {}, "funcname": "DebugNodeWindowsList", +<<<<<<< HEAD "location": "imgui_internal:3530", +======= + "location": "imgui_internal:3863", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsList", "ret": "void", @@ -16639,7 +19690,11 @@ "cimguiname": "igDebugNodeWindowsListByBeginStackParent", "defaults": {}, "funcname": "DebugNodeWindowsListByBeginStackParent", +<<<<<<< HEAD "location": "imgui_internal:3531", +======= + "location": "imgui_internal:3864", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsListByBeginStackParent", "ret": "void", @@ -16661,7 +19716,11 @@ "cimguiname": "igDebugRenderKeyboardPreview", "defaults": {}, "funcname": "DebugRenderKeyboardPreview", +<<<<<<< HEAD "location": "imgui_internal:3533", +======= + "location": "imgui_internal:3866", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugRenderKeyboardPreview", "ret": "void", @@ -16691,7 +19750,11 @@ "cimguiname": "igDebugRenderViewportThumbnail", "defaults": {}, "funcname": "DebugRenderViewportThumbnail", +<<<<<<< HEAD "location": "imgui_internal:3534", +======= + "location": "imgui_internal:3867", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugRenderViewportThumbnail", "ret": "void", @@ -16708,7 +19771,11 @@ "cimguiname": "igDebugStartItemPicker", "defaults": {}, "funcname": "DebugStartItemPicker", +<<<<<<< HEAD "location": "imgui:999", +======= + "location": "imgui:1031", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugStartItemPicker", "ret": "void", @@ -16730,7 +19797,11 @@ "cimguiname": "igDebugTextEncoding", "defaults": {}, "funcname": "DebugTextEncoding", +<<<<<<< HEAD "location": "imgui:997", +======= + "location": "imgui:1029", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugTextEncoding", "ret": "void", @@ -16756,7 +19827,11 @@ "cimguiname": "igDebugTextUnformattedWithLocateItem", "defaults": {}, "funcname": "DebugTextUnformattedWithLocateItem", +<<<<<<< HEAD "location": "imgui_internal:3508", +======= + "location": "imgui_internal:3840", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDebugTextUnformattedWithLocateItem", "ret": "void", @@ -16780,7 +19855,11 @@ "ctx": "NULL" }, "funcname": "DestroyContext", +<<<<<<< HEAD "location": "imgui:309", +======= + "location": "imgui:316", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDestroyContext", "ret": "void", @@ -16788,6 +19867,1067 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igDestroyPlatformWindow": [ + { + "args": "(ImGuiViewportP* viewport)", + "argsT": [ + { + "name": "viewport", + "type": "ImGuiViewportP*" + } + ], + "argsoriginal": "(ImGuiViewportP* viewport)", + "call_args": "(viewport)", + "cimguiname": "igDestroyPlatformWindow", + "defaults": {}, + "funcname": "DestroyPlatformWindow", + "location": "imgui_internal:3334", + "namespace": "ImGui", + "ov_cimguiname": "igDestroyPlatformWindow", + "ret": "void", + "signature": "(ImGuiViewportP*)", + "stname": "" + } + ], + "igDestroyPlatformWindows": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igDestroyPlatformWindows", + "defaults": {}, + "funcname": "DestroyPlatformWindows", + "location": "imgui:1049", + "namespace": "ImGui", + "ov_cimguiname": "igDestroyPlatformWindows", + "ret": "void", + "signature": "()", + "stname": "" + } + ], + "igDockBuilderAddNode": [ + { + "args": "(ImGuiID node_id,ImGuiDockNodeFlags flags)", + "argsT": [ + { + "name": "node_id", + "type": "ImGuiID" + }, + { + "name": "flags", + "type": "ImGuiDockNodeFlags" + } + ], + "argsoriginal": "(ImGuiID node_id=0,ImGuiDockNodeFlags flags=0)", + "call_args": "(node_id,flags)", + "cimguiname": "igDockBuilderAddNode", + "defaults": { + "flags": "0", + "node_id": "0" + }, + "funcname": "DockBuilderAddNode", + "location": "imgui_internal:3600", + "namespace": "ImGui", + "ov_cimguiname": "igDockBuilderAddNode", + "ret": "ImGuiID", + "signature": "(ImGuiID,ImGuiDockNodeFlags)", + "stname": "" + } + ], + "igDockBuilderCopyDockSpace": [ + { + "args": "(ImGuiID src_dockspace_id,ImGuiID dst_dockspace_id,ImVector_const_charPtr* in_window_remap_pairs)", + "argsT": [ + { + "name": "src_dockspace_id", + "type": "ImGuiID" + }, + { + "name": "dst_dockspace_id", + "type": "ImGuiID" + }, + { + "name": "in_window_remap_pairs", + "type": "ImVector_const_charPtr*" + } + ], + "argsoriginal": "(ImGuiID src_dockspace_id,ImGuiID dst_dockspace_id,ImVector* in_window_remap_pairs)", + "call_args": "(src_dockspace_id,dst_dockspace_id,in_window_remap_pairs)", + "cimguiname": "igDockBuilderCopyDockSpace", + "defaults": {}, + "funcname": "DockBuilderCopyDockSpace", + "location": "imgui_internal:3607", + "namespace": "ImGui", + "ov_cimguiname": "igDockBuilderCopyDockSpace", + "ret": "void", + "signature": "(ImGuiID,ImGuiID,ImVector_const_charPtr*)", + "stname": "" + } + ], + "igDockBuilderCopyNode": [ + { + "args": "(ImGuiID src_node_id,ImGuiID dst_node_id,ImVector_ImGuiID* out_node_remap_pairs)", + "argsT": [ + { + "name": "src_node_id", + "type": "ImGuiID" + }, + { + "name": "dst_node_id", + "type": "ImGuiID" + }, + { + "name": "out_node_remap_pairs", + "type": "ImVector_ImGuiID*" + } + ], + "argsoriginal": "(ImGuiID src_node_id,ImGuiID dst_node_id,ImVector* out_node_remap_pairs)", + "call_args": "(src_node_id,dst_node_id,out_node_remap_pairs)", + "cimguiname": "igDockBuilderCopyNode", + "defaults": {}, + "funcname": "DockBuilderCopyNode", + "location": "imgui_internal:3608", + "namespace": "ImGui", + "ov_cimguiname": "igDockBuilderCopyNode", + "ret": "void", + "signature": "(ImGuiID,ImGuiID,ImVector_ImGuiID*)", + "stname": "" + } + ], + "igDockBuilderCopyWindowSettings": [ + { + "args": "(const char* src_name,const char* dst_name)", + "argsT": [ + { + "name": "src_name", + "type": "const char*" + }, + { + "name": "dst_name", + "type": "const char*" + } + ], + "argsoriginal": "(const char* src_name,const char* dst_name)", + "call_args": "(src_name,dst_name)", + "cimguiname": "igDockBuilderCopyWindowSettings", + "defaults": {}, + "funcname": "DockBuilderCopyWindowSettings", + "location": "imgui_internal:3609", + "namespace": "ImGui", + "ov_cimguiname": "igDockBuilderCopyWindowSettings", + "ret": "void", + "signature": "(const char*,const char*)", + "stname": "" + } + ], + "igDockBuilderDockWindow": [ + { + "args": "(const char* window_name,ImGuiID node_id)", + "argsT": [ + { + "name": "window_name", + "type": "const char*" + }, + { + "name": "node_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(const char* window_name,ImGuiID node_id)", + "call_args": "(window_name,node_id)", + "cimguiname": "igDockBuilderDockWindow", + "defaults": {}, + "funcname": "DockBuilderDockWindow", + "location": "imgui_internal:3597", + "namespace": "ImGui", + "ov_cimguiname": "igDockBuilderDockWindow", + "ret": "void", + "signature": "(const char*,ImGuiID)", + "stname": "" + } + ], + "igDockBuilderFinish": [ + { + "args": "(ImGuiID node_id)", + "argsT": [ + { + "name": "node_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID node_id)", + "call_args": "(node_id)", + "cimguiname": "igDockBuilderFinish", + "defaults": {}, + "funcname": "DockBuilderFinish", + "location": "imgui_internal:3610", + "namespace": "ImGui", + "ov_cimguiname": "igDockBuilderFinish", + "ret": "void", + "signature": "(ImGuiID)", + "stname": "" + } + ], + "igDockBuilderGetCentralNode": [ + { + "args": "(ImGuiID node_id)", + "argsT": [ + { + "name": "node_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID node_id)", + "call_args": "(node_id)", + "cimguiname": "igDockBuilderGetCentralNode", + "defaults": {}, + "funcname": "DockBuilderGetCentralNode", + "location": "imgui_internal:3599", + "namespace": "ImGui", + "ov_cimguiname": "igDockBuilderGetCentralNode", + "ret": "ImGuiDockNode*", + "signature": "(ImGuiID)", + "stname": "" + } + ], + "igDockBuilderGetNode": [ + { + "args": "(ImGuiID node_id)", + "argsT": [ + { + "name": "node_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID node_id)", + "call_args": "(node_id)", + "cimguiname": "igDockBuilderGetNode", + "defaults": {}, + "funcname": "DockBuilderGetNode", + "location": "imgui_internal:3598", + "namespace": "ImGui", + "ov_cimguiname": "igDockBuilderGetNode", + "ret": "ImGuiDockNode*", + "signature": "(ImGuiID)", + "stname": "" + } + ], + "igDockBuilderRemoveNode": [ + { + "args": "(ImGuiID node_id)", + "argsT": [ + { + "name": "node_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID node_id)", + "call_args": "(node_id)", + "cimguiname": "igDockBuilderRemoveNode", + "defaults": {}, + "funcname": "DockBuilderRemoveNode", + "location": "imgui_internal:3601", + "namespace": "ImGui", + "ov_cimguiname": "igDockBuilderRemoveNode", + "ret": "void", + "signature": "(ImGuiID)", + "stname": "" + } + ], + "igDockBuilderRemoveNodeChildNodes": [ + { + "args": "(ImGuiID node_id)", + "argsT": [ + { + "name": "node_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID node_id)", + "call_args": "(node_id)", + "cimguiname": "igDockBuilderRemoveNodeChildNodes", + "defaults": {}, + "funcname": "DockBuilderRemoveNodeChildNodes", + "location": "imgui_internal:3603", + "namespace": "ImGui", + "ov_cimguiname": "igDockBuilderRemoveNodeChildNodes", + "ret": "void", + "signature": "(ImGuiID)", + "stname": "" + } + ], + "igDockBuilderRemoveNodeDockedWindows": [ + { + "args": "(ImGuiID node_id,bool clear_settings_refs)", + "argsT": [ + { + "name": "node_id", + "type": "ImGuiID" + }, + { + "name": "clear_settings_refs", + "type": "bool" + } + ], + "argsoriginal": "(ImGuiID node_id,bool clear_settings_refs=true)", + "call_args": "(node_id,clear_settings_refs)", + "cimguiname": "igDockBuilderRemoveNodeDockedWindows", + "defaults": { + "clear_settings_refs": "true" + }, + "funcname": "DockBuilderRemoveNodeDockedWindows", + "location": "imgui_internal:3602", + "namespace": "ImGui", + "ov_cimguiname": "igDockBuilderRemoveNodeDockedWindows", + "ret": "void", + "signature": "(ImGuiID,bool)", + "stname": "" + } + ], + "igDockBuilderSetNodePos": [ + { + "args": "(ImGuiID node_id,ImVec2 pos)", + "argsT": [ + { + "name": "node_id", + "type": "ImGuiID" + }, + { + "name": "pos", + "type": "ImVec2" + } + ], + "argsoriginal": "(ImGuiID node_id,ImVec2 pos)", + "call_args": "(node_id,pos)", + "cimguiname": "igDockBuilderSetNodePos", + "defaults": {}, + "funcname": "DockBuilderSetNodePos", + "location": "imgui_internal:3604", + "namespace": "ImGui", + "ov_cimguiname": "igDockBuilderSetNodePos", + "ret": "void", + "signature": "(ImGuiID,ImVec2)", + "stname": "" + } + ], + "igDockBuilderSetNodeSize": [ + { + "args": "(ImGuiID node_id,ImVec2 size)", + "argsT": [ + { + "name": "node_id", + "type": "ImGuiID" + }, + { + "name": "size", + "type": "ImVec2" + } + ], + "argsoriginal": "(ImGuiID node_id,ImVec2 size)", + "call_args": "(node_id,size)", + "cimguiname": "igDockBuilderSetNodeSize", + "defaults": {}, + "funcname": "DockBuilderSetNodeSize", + "location": "imgui_internal:3605", + "namespace": "ImGui", + "ov_cimguiname": "igDockBuilderSetNodeSize", + "ret": "void", + "signature": "(ImGuiID,ImVec2)", + "stname": "" + } + ], + "igDockBuilderSplitNode": [ + { + "args": "(ImGuiID node_id,ImGuiDir split_dir,float size_ratio_for_node_at_dir,ImGuiID* out_id_at_dir,ImGuiID* out_id_at_opposite_dir)", + "argsT": [ + { + "name": "node_id", + "type": "ImGuiID" + }, + { + "name": "split_dir", + "type": "ImGuiDir" + }, + { + "name": "size_ratio_for_node_at_dir", + "type": "float" + }, + { + "name": "out_id_at_dir", + "type": "ImGuiID*" + }, + { + "name": "out_id_at_opposite_dir", + "type": "ImGuiID*" + } + ], + "argsoriginal": "(ImGuiID node_id,ImGuiDir split_dir,float size_ratio_for_node_at_dir,ImGuiID* out_id_at_dir,ImGuiID* out_id_at_opposite_dir)", + "call_args": "(node_id,split_dir,size_ratio_for_node_at_dir,out_id_at_dir,out_id_at_opposite_dir)", + "cimguiname": "igDockBuilderSplitNode", + "defaults": {}, + "funcname": "DockBuilderSplitNode", + "location": "imgui_internal:3606", + "namespace": "ImGui", + "ov_cimguiname": "igDockBuilderSplitNode", + "ret": "ImGuiID", + "signature": "(ImGuiID,ImGuiDir,float,ImGuiID*,ImGuiID*)", + "stname": "" + } + ], + "igDockContextCalcDropPosForDocking": [ + { + "args": "(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload_window,ImGuiDockNode* payload_node,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos)", + "argsT": [ + { + "name": "target", + "type": "ImGuiWindow*" + }, + { + "name": "target_node", + "type": "ImGuiDockNode*" + }, + { + "name": "payload_window", + "type": "ImGuiWindow*" + }, + { + "name": "payload_node", + "type": "ImGuiDockNode*" + }, + { + "name": "split_dir", + "type": "ImGuiDir" + }, + { + "name": "split_outer", + "type": "bool" + }, + { + "name": "out_pos", + "type": "ImVec2*" + } + ], + "argsoriginal": "(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload_window,ImGuiDockNode* payload_node,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos)", + "call_args": "(target,target_node,payload_window,payload_node,split_dir,split_outer,out_pos)", + "cimguiname": "igDockContextCalcDropPosForDocking", + "defaults": {}, + "funcname": "DockContextCalcDropPosForDocking", + "location": "imgui_internal:3572", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextCalcDropPosForDocking", + "ret": "bool", + "signature": "(ImGuiWindow*,ImGuiDockNode*,ImGuiWindow*,ImGuiDockNode*,ImGuiDir,bool,ImVec2*)", + "stname": "" + } + ], + "igDockContextClearNodes": [ + { + "args": "(ImGuiContext* ctx,ImGuiID root_id,bool clear_settings_refs)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + }, + { + "name": "root_id", + "type": "ImGuiID" + }, + { + "name": "clear_settings_refs", + "type": "bool" + } + ], + "argsoriginal": "(ImGuiContext* ctx,ImGuiID root_id,bool clear_settings_refs)", + "call_args": "(ctx,root_id,clear_settings_refs)", + "cimguiname": "igDockContextClearNodes", + "defaults": {}, + "funcname": "DockContextClearNodes", + "location": "imgui_internal:3561", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextClearNodes", + "ret": "void", + "signature": "(ImGuiContext*,ImGuiID,bool)", + "stname": "" + } + ], + "igDockContextEndFrame": [ + { + "args": "(ImGuiContext* ctx)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + } + ], + "argsoriginal": "(ImGuiContext* ctx)", + "call_args": "(ctx)", + "cimguiname": "igDockContextEndFrame", + "defaults": {}, + "funcname": "DockContextEndFrame", + "location": "imgui_internal:3565", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextEndFrame", + "ret": "void", + "signature": "(ImGuiContext*)", + "stname": "" + } + ], + "igDockContextFindNodeByID": [ + { + "args": "(ImGuiContext* ctx,ImGuiID id)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + }, + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiContext* ctx,ImGuiID id)", + "call_args": "(ctx,id)", + "cimguiname": "igDockContextFindNodeByID", + "defaults": {}, + "funcname": "DockContextFindNodeByID", + "location": "imgui_internal:3573", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextFindNodeByID", + "ret": "ImGuiDockNode*", + "signature": "(ImGuiContext*,ImGuiID)", + "stname": "" + } + ], + "igDockContextGenNodeID": [ + { + "args": "(ImGuiContext* ctx)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + } + ], + "argsoriginal": "(ImGuiContext* ctx)", + "call_args": "(ctx)", + "cimguiname": "igDockContextGenNodeID", + "defaults": {}, + "funcname": "DockContextGenNodeID", + "location": "imgui_internal:3566", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextGenNodeID", + "ret": "ImGuiID", + "signature": "(ImGuiContext*)", + "stname": "" + } + ], + "igDockContextInitialize": [ + { + "args": "(ImGuiContext* ctx)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + } + ], + "argsoriginal": "(ImGuiContext* ctx)", + "call_args": "(ctx)", + "cimguiname": "igDockContextInitialize", + "defaults": {}, + "funcname": "DockContextInitialize", + "location": "imgui_internal:3559", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextInitialize", + "ret": "void", + "signature": "(ImGuiContext*)", + "stname": "" + } + ], + "igDockContextNewFrameUpdateDocking": [ + { + "args": "(ImGuiContext* ctx)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + } + ], + "argsoriginal": "(ImGuiContext* ctx)", + "call_args": "(ctx)", + "cimguiname": "igDockContextNewFrameUpdateDocking", + "defaults": {}, + "funcname": "DockContextNewFrameUpdateDocking", + "location": "imgui_internal:3564", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextNewFrameUpdateDocking", + "ret": "void", + "signature": "(ImGuiContext*)", + "stname": "" + } + ], + "igDockContextNewFrameUpdateUndocking": [ + { + "args": "(ImGuiContext* ctx)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + } + ], + "argsoriginal": "(ImGuiContext* ctx)", + "call_args": "(ctx)", + "cimguiname": "igDockContextNewFrameUpdateUndocking", + "defaults": {}, + "funcname": "DockContextNewFrameUpdateUndocking", + "location": "imgui_internal:3563", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextNewFrameUpdateUndocking", + "ret": "void", + "signature": "(ImGuiContext*)", + "stname": "" + } + ], + "igDockContextProcessUndockNode": [ + { + "args": "(ImGuiContext* ctx,ImGuiDockNode* node)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + }, + { + "name": "node", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "(ImGuiContext* ctx,ImGuiDockNode* node)", + "call_args": "(ctx,node)", + "cimguiname": "igDockContextProcessUndockNode", + "defaults": {}, + "funcname": "DockContextProcessUndockNode", + "location": "imgui_internal:3571", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextProcessUndockNode", + "ret": "void", + "signature": "(ImGuiContext*,ImGuiDockNode*)", + "stname": "" + } + ], + "igDockContextProcessUndockWindow": [ + { + "args": "(ImGuiContext* ctx,ImGuiWindow* window,bool clear_persistent_docking_ref)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + }, + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "clear_persistent_docking_ref", + "type": "bool" + } + ], + "argsoriginal": "(ImGuiContext* ctx,ImGuiWindow* window,bool clear_persistent_docking_ref=true)", + "call_args": "(ctx,window,clear_persistent_docking_ref)", + "cimguiname": "igDockContextProcessUndockWindow", + "defaults": { + "clear_persistent_docking_ref": "true" + }, + "funcname": "DockContextProcessUndockWindow", + "location": "imgui_internal:3570", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextProcessUndockWindow", + "ret": "void", + "signature": "(ImGuiContext*,ImGuiWindow*,bool)", + "stname": "" + } + ], + "igDockContextQueueDock": [ + { + "args": "(ImGuiContext* ctx,ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload,ImGuiDir split_dir,float split_ratio,bool split_outer)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + }, + { + "name": "target", + "type": "ImGuiWindow*" + }, + { + "name": "target_node", + "type": "ImGuiDockNode*" + }, + { + "name": "payload", + "type": "ImGuiWindow*" + }, + { + "name": "split_dir", + "type": "ImGuiDir" + }, + { + "name": "split_ratio", + "type": "float" + }, + { + "name": "split_outer", + "type": "bool" + } + ], + "argsoriginal": "(ImGuiContext* ctx,ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload,ImGuiDir split_dir,float split_ratio,bool split_outer)", + "call_args": "(ctx,target,target_node,payload,split_dir,split_ratio,split_outer)", + "cimguiname": "igDockContextQueueDock", + "defaults": {}, + "funcname": "DockContextQueueDock", + "location": "imgui_internal:3567", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextQueueDock", + "ret": "void", + "signature": "(ImGuiContext*,ImGuiWindow*,ImGuiDockNode*,ImGuiWindow*,ImGuiDir,float,bool)", + "stname": "" + } + ], + "igDockContextQueueUndockNode": [ + { + "args": "(ImGuiContext* ctx,ImGuiDockNode* node)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + }, + { + "name": "node", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "(ImGuiContext* ctx,ImGuiDockNode* node)", + "call_args": "(ctx,node)", + "cimguiname": "igDockContextQueueUndockNode", + "defaults": {}, + "funcname": "DockContextQueueUndockNode", + "location": "imgui_internal:3569", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextQueueUndockNode", + "ret": "void", + "signature": "(ImGuiContext*,ImGuiDockNode*)", + "stname": "" + } + ], + "igDockContextQueueUndockWindow": [ + { + "args": "(ImGuiContext* ctx,ImGuiWindow* window)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + }, + { + "name": "window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiContext* ctx,ImGuiWindow* window)", + "call_args": "(ctx,window)", + "cimguiname": "igDockContextQueueUndockWindow", + "defaults": {}, + "funcname": "DockContextQueueUndockWindow", + "location": "imgui_internal:3568", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextQueueUndockWindow", + "ret": "void", + "signature": "(ImGuiContext*,ImGuiWindow*)", + "stname": "" + } + ], + "igDockContextRebuildNodes": [ + { + "args": "(ImGuiContext* ctx)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + } + ], + "argsoriginal": "(ImGuiContext* ctx)", + "call_args": "(ctx)", + "cimguiname": "igDockContextRebuildNodes", + "defaults": {}, + "funcname": "DockContextRebuildNodes", + "location": "imgui_internal:3562", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextRebuildNodes", + "ret": "void", + "signature": "(ImGuiContext*)", + "stname": "" + } + ], + "igDockContextShutdown": [ + { + "args": "(ImGuiContext* ctx)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + } + ], + "argsoriginal": "(ImGuiContext* ctx)", + "call_args": "(ctx)", + "cimguiname": "igDockContextShutdown", + "defaults": {}, + "funcname": "DockContextShutdown", + "location": "imgui_internal:3560", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextShutdown", + "ret": "void", + "signature": "(ImGuiContext*)", + "stname": "" + } + ], + "igDockNodeBeginAmendTabBar": [ + { + "args": "(ImGuiDockNode* node)", + "argsT": [ + { + "name": "node", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "(ImGuiDockNode* node)", + "call_args": "(node)", + "cimguiname": "igDockNodeBeginAmendTabBar", + "defaults": {}, + "funcname": "DockNodeBeginAmendTabBar", + "location": "imgui_internal:3575", + "namespace": "ImGui", + "ov_cimguiname": "igDockNodeBeginAmendTabBar", + "ret": "bool", + "signature": "(ImGuiDockNode*)", + "stname": "" + } + ], + "igDockNodeEndAmendTabBar": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igDockNodeEndAmendTabBar", + "defaults": {}, + "funcname": "DockNodeEndAmendTabBar", + "location": "imgui_internal:3576", + "namespace": "ImGui", + "ov_cimguiname": "igDockNodeEndAmendTabBar", + "ret": "void", + "signature": "()", + "stname": "" + } + ], + "igDockNodeGetDepth": [ + { + "args": "(const ImGuiDockNode* node)", + "argsT": [ + { + "name": "node", + "type": "const ImGuiDockNode*" + } + ], + "argsoriginal": "(const ImGuiDockNode* node)", + "call_args": "(node)", + "cimguiname": "igDockNodeGetDepth", + "defaults": {}, + "funcname": "DockNodeGetDepth", + "location": "imgui_internal:3579", + "namespace": "ImGui", + "ov_cimguiname": "igDockNodeGetDepth", + "ret": "int", + "signature": "(const ImGuiDockNode*)", + "stname": "" + } + ], + "igDockNodeGetRootNode": [ + { + "args": "(ImGuiDockNode* node)", + "argsT": [ + { + "name": "node", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "(ImGuiDockNode* node)", + "call_args": "(node)", + "cimguiname": "igDockNodeGetRootNode", + "defaults": {}, + "funcname": "DockNodeGetRootNode", + "location": "imgui_internal:3577", + "namespace": "ImGui", + "ov_cimguiname": "igDockNodeGetRootNode", + "ret": "ImGuiDockNode*", + "signature": "(ImGuiDockNode*)", + "stname": "" + } + ], + "igDockNodeGetWindowMenuButtonId": [ + { + "args": "(const ImGuiDockNode* node)", + "argsT": [ + { + "name": "node", + "type": "const ImGuiDockNode*" + } + ], + "argsoriginal": "(const ImGuiDockNode* node)", + "call_args": "(node)", + "cimguiname": "igDockNodeGetWindowMenuButtonId", + "defaults": {}, + "funcname": "DockNodeGetWindowMenuButtonId", + "location": "imgui_internal:3580", + "namespace": "ImGui", + "ov_cimguiname": "igDockNodeGetWindowMenuButtonId", + "ret": "ImGuiID", + "signature": "(const ImGuiDockNode*)", + "stname": "" + } + ], + "igDockNodeIsInHierarchyOf": [ + { + "args": "(ImGuiDockNode* node,ImGuiDockNode* parent)", + "argsT": [ + { + "name": "node", + "type": "ImGuiDockNode*" + }, + { + "name": "parent", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "(ImGuiDockNode* node,ImGuiDockNode* parent)", + "call_args": "(node,parent)", + "cimguiname": "igDockNodeIsInHierarchyOf", + "defaults": {}, + "funcname": "DockNodeIsInHierarchyOf", + "location": "imgui_internal:3578", + "namespace": "ImGui", + "ov_cimguiname": "igDockNodeIsInHierarchyOf", + "ret": "bool", + "signature": "(ImGuiDockNode*,ImGuiDockNode*)", + "stname": "" + } + ], + "igDockNodeWindowMenuHandler_Default": [ + { + "args": "(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + }, + { + "name": "node", + "type": "ImGuiDockNode*" + }, + { + "name": "tab_bar", + "type": "ImGuiTabBar*" + } + ], + "argsoriginal": "(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar)", + "call_args": "(ctx,node,tab_bar)", + "cimguiname": "igDockNodeWindowMenuHandler_Default", + "defaults": {}, + "funcname": "DockNodeWindowMenuHandler_Default", + "location": "imgui_internal:3574", + "namespace": "ImGui", + "ov_cimguiname": "igDockNodeWindowMenuHandler_Default", + "ret": "void", + "signature": "(ImGuiContext*,ImGuiDockNode*,ImGuiTabBar*)", + "stname": "" + } + ], + "igDockSpace": [ + { + "args": "(ImGuiID dockspace_id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)", + "argsT": [ + { + "name": "dockspace_id", + "type": "ImGuiID" + }, + { + "name": "size", + "type": "const ImVec2" + }, + { + "name": "flags", + "type": "ImGuiDockNodeFlags" + }, + { + "name": "window_class", + "type": "const ImGuiWindowClass*" + } + ], + "argsoriginal": "(ImGuiID dockspace_id,const ImVec2& size=ImVec2(0,0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))", + "call_args": "(dockspace_id,size,flags,window_class)", + "cimguiname": "igDockSpace", + "defaults": { + "flags": "0", + "size": "ImVec2(0,0)", + "window_class": "NULL" + }, + "funcname": "DockSpace", + "location": "imgui:860", + "namespace": "ImGui", + "ov_cimguiname": "igDockSpace", + "ret": "ImGuiID", + "signature": "(ImGuiID,const ImVec2,ImGuiDockNodeFlags,const ImGuiWindowClass*)", + "stname": "" + } + ], + "igDockSpaceOverViewport": [ + { + "args": "(ImGuiID dockspace_id,const ImGuiViewport* viewport,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)", + "argsT": [ + { + "name": "dockspace_id", + "type": "ImGuiID" + }, + { + "name": "viewport", + "type": "const ImGuiViewport*" + }, + { + "name": "flags", + "type": "ImGuiDockNodeFlags" + }, + { + "name": "window_class", + "type": "const ImGuiWindowClass*" + } + ], + "argsoriginal": "(ImGuiID dockspace_id=0,const ImGuiViewport* viewport=((void*)0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))", + "call_args": "(dockspace_id,viewport,flags,window_class)", + "cimguiname": "igDockSpaceOverViewport", + "defaults": { + "dockspace_id": "0", + "flags": "0", + "viewport": "NULL", + "window_class": "NULL" + }, + "funcname": "DockSpaceOverViewport", + "location": "imgui:861", + "namespace": "ImGui", + "ov_cimguiname": "igDockSpaceOverViewport", + "ret": "ImGuiID", + "signature": "(ImGuiID,const ImGuiViewport*,ImGuiDockNodeFlags,const ImGuiWindowClass*)", + "stname": "" + } + ], +>>>>>>> docking_inter "igDragBehavior": [ { "args": "(ImGuiID id,ImGuiDataType data_type,void* p_v,float v_speed,const void* p_min,const void* p_max,const char* format,ImGuiSliderFlags flags)", @@ -16830,7 +20970,11 @@ "cimguiname": "igDragBehavior", "defaults": {}, "funcname": "DragBehavior", +<<<<<<< HEAD "location": "imgui_internal:3442", +======= + "location": "imgui_internal:3774", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDragBehavior", "ret": "bool", @@ -16882,7 +21026,11 @@ "v_speed": "1.0f" }, "funcname": "DragFloat", +<<<<<<< HEAD "location": "imgui:574", +======= + "location": "imgui:584", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDragFloat", "ret": "bool", @@ -16934,7 +21082,11 @@ "v_speed": "1.0f" }, "funcname": "DragFloat2", +<<<<<<< HEAD "location": "imgui:575", +======= + "location": "imgui:585", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDragFloat2", "ret": "bool", @@ -16986,7 +21138,11 @@ "v_speed": "1.0f" }, "funcname": "DragFloat3", +<<<<<<< HEAD "location": "imgui:576", +======= + "location": "imgui:586", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDragFloat3", "ret": "bool", @@ -17038,7 +21194,11 @@ "v_speed": "1.0f" }, "funcname": "DragFloat4", +<<<<<<< HEAD "location": "imgui:577", +======= + "location": "imgui:587", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDragFloat4", "ret": "bool", @@ -17099,7 +21259,11 @@ "v_speed": "1.0f" }, "funcname": "DragFloatRange2", +<<<<<<< HEAD "location": "imgui:578", +======= + "location": "imgui:588", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDragFloatRange2", "ret": "bool", @@ -17151,7 +21315,11 @@ "v_speed": "1.0f" }, "funcname": "DragInt", +<<<<<<< HEAD "location": "imgui:579", +======= + "location": "imgui:589", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDragInt", "ret": "bool", @@ -17203,7 +21371,11 @@ "v_speed": "1.0f" }, "funcname": "DragInt2", +<<<<<<< HEAD "location": "imgui:580", +======= + "location": "imgui:590", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDragInt2", "ret": "bool", @@ -17255,7 +21427,11 @@ "v_speed": "1.0f" }, "funcname": "DragInt3", +<<<<<<< HEAD "location": "imgui:581", +======= + "location": "imgui:591", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDragInt3", "ret": "bool", @@ -17307,7 +21483,11 @@ "v_speed": "1.0f" }, "funcname": "DragInt4", +<<<<<<< HEAD "location": "imgui:582", +======= + "location": "imgui:592", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDragInt4", "ret": "bool", @@ -17368,7 +21548,11 @@ "v_speed": "1.0f" }, "funcname": "DragIntRange2", +<<<<<<< HEAD "location": "imgui:583", +======= + "location": "imgui:593", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDragIntRange2", "ret": "bool", @@ -17424,7 +21608,11 @@ "v_speed": "1.0f" }, "funcname": "DragScalar", +<<<<<<< HEAD "location": "imgui:584", +======= + "location": "imgui:594", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDragScalar", "ret": "bool", @@ -17484,7 +21672,11 @@ "v_speed": "1.0f" }, "funcname": "DragScalarN", +<<<<<<< HEAD "location": "imgui:585", +======= + "location": "imgui:595", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDragScalarN", "ret": "bool", @@ -17506,7 +21698,11 @@ "cimguiname": "igDummy", "defaults": {}, "funcname": "Dummy", +<<<<<<< HEAD "location": "imgui:484", +======= + "location": "imgui:494", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igDummy", "ret": "void", @@ -17523,7 +21719,11 @@ "cimguiname": "igEnd", "defaults": {}, "funcname": "End", +<<<<<<< HEAD "location": "imgui:351", +======= + "location": "imgui:358", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEnd", "ret": "void", @@ -17540,7 +21740,11 @@ "cimguiname": "igEndChild", "defaults": {}, "funcname": "EndChild", +<<<<<<< HEAD "location": "imgui:373", +======= + "location": "imgui:380", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEndChild", "ret": "void", @@ -17557,7 +21761,11 @@ "cimguiname": "igEndColumns", "defaults": {}, "funcname": "EndColumns", +<<<<<<< HEAD "location": "imgui_internal:3311", +======= + "location": "imgui_internal:3640", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEndColumns", "ret": "void", @@ -17574,7 +21782,11 @@ "cimguiname": "igEndCombo", "defaults": {}, "funcname": "EndCombo", +<<<<<<< HEAD "location": "imgui:557", +======= + "location": "imgui:567", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEndCombo", "ret": "void", @@ -17591,7 +21803,11 @@ "cimguiname": "igEndComboPreview", "defaults": {}, "funcname": "EndComboPreview", +<<<<<<< HEAD "location": "imgui_internal:3171", +======= + "location": "imgui_internal:3445", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEndComboPreview", "ret": "void", @@ -17608,7 +21824,11 @@ "cimguiname": "igEndDisabled", "defaults": {}, "funcname": "EndDisabled", +<<<<<<< HEAD "location": "imgui:864", +======= + "location": "imgui:896", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEndDisabled", "ret": "void", @@ -17625,7 +21845,11 @@ "cimguiname": "igEndDisabledOverrideReenable", "defaults": {}, "funcname": "EndDisabledOverrideReenable", +<<<<<<< HEAD "location": "imgui_internal:3138", +======= + "location": "imgui_internal:3408", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEndDisabledOverrideReenable", "ret": "void", @@ -17642,7 +21866,11 @@ "cimguiname": "igEndDragDropSource", "defaults": {}, "funcname": "EndDragDropSource", +<<<<<<< HEAD "location": "imgui:853", +======= + "location": "imgui:884", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEndDragDropSource", "ret": "void", @@ -17659,7 +21887,11 @@ "cimguiname": "igEndDragDropTarget", "defaults": {}, "funcname": "EndDragDropTarget", +<<<<<<< HEAD "location": "imgui:856", +======= + "location": "imgui:887", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEndDragDropTarget", "ret": "void", @@ -17676,7 +21908,11 @@ "cimguiname": "igEndFrame", "defaults": {}, "funcname": "EndFrame", +<<<<<<< HEAD "location": "imgui:317", +======= + "location": "imgui:324", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEndFrame", "ret": "void", @@ -17693,7 +21929,11 @@ "cimguiname": "igEndGroup", "defaults": {}, "funcname": "EndGroup", +<<<<<<< HEAD "location": "imgui:488", +======= + "location": "imgui:498", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEndGroup", "ret": "void", @@ -17710,7 +21950,11 @@ "cimguiname": "igEndListBox", "defaults": {}, "funcname": "EndListBox", +<<<<<<< HEAD "location": "imgui:669", +======= + "location": "imgui:679", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEndListBox", "ret": "void", @@ -17727,7 +21971,11 @@ "cimguiname": "igEndMainMenuBar", "defaults": {}, "funcname": "EndMainMenuBar", +<<<<<<< HEAD "location": "imgui:695", +======= + "location": "imgui:705", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEndMainMenuBar", "ret": "void", @@ -17744,7 +21992,11 @@ "cimguiname": "igEndMenu", "defaults": {}, "funcname": "EndMenu", +<<<<<<< HEAD "location": "imgui:697", +======= + "location": "imgui:707", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEndMenu", "ret": "void", @@ -17761,7 +22013,11 @@ "cimguiname": "igEndMenuBar", "defaults": {}, "funcname": "EndMenuBar", +<<<<<<< HEAD "location": "imgui:693", +======= + "location": "imgui:703", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEndMenuBar", "ret": "void", @@ -17778,7 +22034,11 @@ "cimguiname": "igEndPopup", "defaults": {}, "funcname": "EndPopup", +<<<<<<< HEAD "location": "imgui:730", +======= + "location": "imgui:740", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEndPopup", "ret": "void", @@ -17795,7 +22055,11 @@ "cimguiname": "igEndTabBar", "defaults": {}, "funcname": "EndTabBar", +<<<<<<< HEAD "location": "imgui:830", +======= + "location": "imgui:841", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEndTabBar", "ret": "void", @@ -17812,7 +22076,11 @@ "cimguiname": "igEndTabItem", "defaults": {}, "funcname": "EndTabItem", +<<<<<<< HEAD "location": "imgui:832", +======= + "location": "imgui:843", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEndTabItem", "ret": "void", @@ -17829,7 +22097,11 @@ "cimguiname": "igEndTable", "defaults": {}, "funcname": "EndTable", +<<<<<<< HEAD "location": "imgui:782", +======= + "location": "imgui:792", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEndTable", "ret": "void", @@ -17846,7 +22118,11 @@ "cimguiname": "igEndTooltip", "defaults": {}, "funcname": "EndTooltip", +<<<<<<< HEAD "location": "imgui:706", +======= + "location": "imgui:716", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igEndTooltip", "ret": "void", @@ -17874,7 +22150,11 @@ "user_data": "NULL" }, "funcname": "ErrorCheckEndFrameRecover", +<<<<<<< HEAD "location": "imgui_internal:3502", +======= + "location": "imgui_internal:3834", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igErrorCheckEndFrameRecover", "ret": "void", @@ -17902,7 +22182,11 @@ "user_data": "NULL" }, "funcname": "ErrorCheckEndWindowRecover", +<<<<<<< HEAD "location": "imgui_internal:3503", +======= + "location": "imgui_internal:3835", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igErrorCheckEndWindowRecover", "ret": "void", @@ -17919,7 +22203,11 @@ "cimguiname": "igErrorCheckUsingSetCursorPosToExtendParentBoundaries", "defaults": {}, "funcname": "ErrorCheckUsingSetCursorPosToExtendParentBoundaries", +<<<<<<< HEAD "location": "imgui_internal:3504", +======= + "location": "imgui_internal:3836", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igErrorCheckUsingSetCursorPosToExtendParentBoundaries", "ret": "void", @@ -17945,7 +22233,11 @@ "cimguiname": "igFindBestWindowPosForPopup", "defaults": {}, "funcname": "FindBestWindowPosForPopup", +<<<<<<< HEAD "location": "imgui_internal:3160", +======= + "location": "imgui_internal:3430", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopup", @@ -17992,7 +22284,11 @@ "cimguiname": "igFindBestWindowPosForPopupEx", "defaults": {}, "funcname": "FindBestWindowPosForPopupEx", +<<<<<<< HEAD "location": "imgui_internal:3161", +======= + "location": "imgui_internal:3431", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopupEx", @@ -18015,7 +22311,11 @@ "cimguiname": "igFindBlockingModal", "defaults": {}, "funcname": "FindBlockingModal", +<<<<<<< HEAD "location": "imgui_internal:3159", +======= + "location": "imgui_internal:3429", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igFindBlockingModal", "ret": "ImGuiWindow*", @@ -18037,7 +22337,11 @@ "cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", "defaults": {}, "funcname": "FindBottomMostVisibleWindowWithinBeginStack", +<<<<<<< HEAD "location": "imgui_internal:3037", +======= + "location": "imgui_internal:3302", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", "ret": "ImGuiWindow*", @@ -18045,6 +22349,31 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igFindHoveredViewportFromPlatformWindowStack": [ + { + "args": "(const ImVec2 mouse_platform_pos)", + "argsT": [ + { + "name": "mouse_platform_pos", + "type": "const ImVec2" + } + ], + "argsoriginal": "(const ImVec2& mouse_platform_pos)", + "call_args": "(mouse_platform_pos)", + "cimguiname": "igFindHoveredViewportFromPlatformWindowStack", + "defaults": {}, + "funcname": "FindHoveredViewportFromPlatformWindowStack", + "location": "imgui_internal:3338", + "namespace": "ImGui", + "ov_cimguiname": "igFindHoveredViewportFromPlatformWindowStack", + "ret": "ImGuiViewportP*", + "signature": "(const ImVec2)", + "stname": "" + } + ], +>>>>>>> docking_inter "igFindHoveredWindowEx": [ { "args": "(const ImVec2 pos,bool find_first_and_in_any_viewport,ImGuiWindow** out_hovered_window,ImGuiWindow** out_hovered_window_under_moving_window)", @@ -18071,7 +22400,11 @@ "cimguiname": "igFindHoveredWindowEx", "defaults": {}, "funcname": "FindHoveredWindowEx", +<<<<<<< HEAD "location": "imgui_internal:3057", +======= + "location": "imgui_internal:3320", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igFindHoveredWindowEx", "ret": "void", @@ -18097,7 +22430,11 @@ "cimguiname": "igFindOrCreateColumns", "defaults": {}, "funcname": "FindOrCreateColumns", +<<<<<<< HEAD "location": "imgui_internal:3316", +======= + "location": "imgui_internal:3645", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igFindOrCreateColumns", "ret": "ImGuiOldColumns*", @@ -18125,7 +22462,11 @@ "text_end": "NULL" }, "funcname": "FindRenderedTextEnd", +<<<<<<< HEAD "location": "imgui_internal:3409", +======= + "location": "imgui_internal:3739", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igFindRenderedTextEnd", "ret": "const char*", @@ -18147,7 +22488,11 @@ "cimguiname": "igFindSettingsHandler", "defaults": {}, "funcname": "FindSettingsHandler", +<<<<<<< HEAD "location": "imgui_internal:3076", +======= + "location": "imgui_internal:3346", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igFindSettingsHandler", "ret": "ImGuiSettingsHandler*", @@ -18155,6 +22500,53 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igFindViewportByID": [ + { + "args": "(ImGuiID id)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID id)", + "call_args": "(id)", + "cimguiname": "igFindViewportByID", + "defaults": {}, + "funcname": "FindViewportByID", + "location": "imgui:1050", + "namespace": "ImGui", + "ov_cimguiname": "igFindViewportByID", + "ret": "ImGuiViewport*", + "signature": "(ImGuiID)", + "stname": "" + } + ], + "igFindViewportByPlatformHandle": [ + { + "args": "(void* platform_handle)", + "argsT": [ + { + "name": "platform_handle", + "type": "void*" + } + ], + "argsoriginal": "(void* platform_handle)", + "call_args": "(platform_handle)", + "cimguiname": "igFindViewportByPlatformHandle", + "defaults": {}, + "funcname": "FindViewportByPlatformHandle", + "location": "imgui:1051", + "namespace": "ImGui", + "ov_cimguiname": "igFindViewportByPlatformHandle", + "ret": "ImGuiViewport*", + "signature": "(void*)", + "stname": "" + } + ], +>>>>>>> docking_inter "igFindWindowByID": [ { "args": "(ImGuiID id)", @@ -18169,7 +22561,11 @@ "cimguiname": "igFindWindowByID", "defaults": {}, "funcname": "FindWindowByID", +<<<<<<< HEAD "location": "imgui_internal:3010", +======= + "location": "imgui_internal:3275", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igFindWindowByID", "ret": "ImGuiWindow*", @@ -18191,7 +22587,11 @@ "cimguiname": "igFindWindowByName", "defaults": {}, "funcname": "FindWindowByName", +<<<<<<< HEAD "location": "imgui_internal:3011", +======= + "location": "imgui_internal:3276", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igFindWindowByName", "ret": "ImGuiWindow*", @@ -18213,7 +22613,11 @@ "cimguiname": "igFindWindowDisplayIndex", "defaults": {}, "funcname": "FindWindowDisplayIndex", +<<<<<<< HEAD "location": "imgui_internal:3036", +======= + "location": "imgui_internal:3301", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igFindWindowDisplayIndex", "ret": "int", @@ -18235,7 +22639,11 @@ "cimguiname": "igFindWindowSettingsByID", "defaults": {}, "funcname": "FindWindowSettingsByID", +<<<<<<< HEAD "location": "imgui_internal:3080", +======= + "location": "imgui_internal:3350", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igFindWindowSettingsByID", "ret": "ImGuiWindowSettings*", @@ -18257,7 +22665,11 @@ "cimguiname": "igFindWindowSettingsByWindow", "defaults": {}, "funcname": "FindWindowSettingsByWindow", +<<<<<<< HEAD "location": "imgui_internal:3081", +======= + "location": "imgui_internal:3351", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igFindWindowSettingsByWindow", "ret": "ImGuiWindowSettings*", @@ -18279,7 +22691,11 @@ "cimguiname": "igFixupKeyChord", "defaults": {}, "funcname": "FixupKeyChord", +<<<<<<< HEAD "location": "imgui_internal:3208", +======= + "location": "imgui_internal:3482", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igFixupKeyChord", "ret": "ImGuiKeyChord", @@ -18296,7 +22712,11 @@ "cimguiname": "igFocusItem", "defaults": {}, "funcname": "FocusItem", +<<<<<<< HEAD "location": "imgui_internal:3195", +======= + "location": "imgui_internal:3469", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igFocusItem", "ret": "void", @@ -18330,7 +22750,11 @@ "cimguiname": "igFocusTopMostWindowUnderOne", "defaults": {}, "funcname": "FocusTopMostWindowUnderOne", +<<<<<<< HEAD "location": "imgui_internal:3031", +======= + "location": "imgui_internal:3296", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igFocusTopMostWindowUnderOne", "ret": "void", @@ -18358,7 +22782,11 @@ "flags": "0" }, "funcname": "FocusWindow", +<<<<<<< HEAD "location": "imgui_internal:3030", +======= + "location": "imgui_internal:3295", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igFocusWindow", "ret": "void", @@ -18380,7 +22808,11 @@ "cimguiname": "igGcAwakeTransientWindowBuffers", "defaults": {}, "funcname": "GcAwakeTransientWindowBuffers", +<<<<<<< HEAD "location": "imgui_internal:3494", +======= + "location": "imgui_internal:3826", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGcAwakeTransientWindowBuffers", "ret": "void", @@ -18397,7 +22829,11 @@ "cimguiname": "igGcCompactTransientMiscBuffers", "defaults": {}, "funcname": "GcCompactTransientMiscBuffers", +<<<<<<< HEAD "location": "imgui_internal:3492", +======= + "location": "imgui_internal:3824", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientMiscBuffers", "ret": "void", @@ -18419,7 +22855,11 @@ "cimguiname": "igGcCompactTransientWindowBuffers", "defaults": {}, "funcname": "GcCompactTransientWindowBuffers", +<<<<<<< HEAD "location": "imgui_internal:3493", +======= + "location": "imgui_internal:3825", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientWindowBuffers", "ret": "void", @@ -18436,7 +22876,11 @@ "cimguiname": "igGetActiveID", "defaults": {}, "funcname": "GetActiveID", +<<<<<<< HEAD "location": "imgui_internal:3105", +======= + "location": "imgui_internal:3375", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetActiveID", "ret": "ImGuiID", @@ -18466,7 +22910,11 @@ "cimguiname": "igGetAllocatorFunctions", "defaults": {}, "funcname": "GetAllocatorFunctions", +<<<<<<< HEAD "location": "imgui:1007", +======= + "location": "imgui:1039", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetAllocatorFunctions", "ret": "void", @@ -18476,6 +22924,7 @@ ], "igGetBackgroundDrawList": [ { +<<<<<<< HEAD "args": "()", "argsT": [], "argsoriginal": "()", @@ -18491,6 +22940,8 @@ "stname": "" }, { +======= +>>>>>>> docking_inter "args": "(ImGuiViewport* viewport)", "argsT": [ { @@ -18498,14 +22949,20 @@ "type": "ImGuiViewport*" } ], - "argsoriginal": "(ImGuiViewport* viewport)", + "argsoriginal": "(ImGuiViewport* viewport=((void*)0))", "call_args": "(viewport)", "cimguiname": "igGetBackgroundDrawList", - "defaults": {}, + "defaults": { + "viewport": "NULL" + }, "funcname": "GetBackgroundDrawList", +<<<<<<< HEAD "location": "imgui_internal:3046", +======= + "location": "imgui:939", +>>>>>>> docking_inter "namespace": "ImGui", - "ov_cimguiname": "igGetBackgroundDrawList_ViewportPtr", + "ov_cimguiname": "igGetBackgroundDrawList", "ret": "ImDrawList*", "signature": "(ImGuiViewport*)", "stname": "" @@ -18520,7 +22977,11 @@ "cimguiname": "igGetClipboardText", "defaults": {}, "funcname": "GetClipboardText", +<<<<<<< HEAD "location": "imgui:983", +======= + "location": "imgui:1015", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetClipboardText", "ret": "const char*", @@ -18548,7 +23009,11 @@ "alpha_mul": "1.0f" }, "funcname": "GetColorU32", +<<<<<<< HEAD "location": "imgui:456", +======= + "location": "imgui:466", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_Col", "ret": "ImU32", @@ -18568,7 +23033,11 @@ "cimguiname": "igGetColorU32", "defaults": {}, "funcname": "GetColorU32", +<<<<<<< HEAD "location": "imgui:457", +======= + "location": "imgui:467", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_Vec4", "ret": "ImU32", @@ -18594,7 +23063,11 @@ "alpha_mul": "1.0f" }, "funcname": "GetColorU32", +<<<<<<< HEAD "location": "imgui:458", +======= + "location": "imgui:468", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_U32", "ret": "ImU32", @@ -18611,7 +23084,11 @@ "cimguiname": "igGetColumnIndex", "defaults": {}, "funcname": "GetColumnIndex", +<<<<<<< HEAD "location": "imgui:820", +======= + "location": "imgui:831", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetColumnIndex", "ret": "int", @@ -18637,7 +23114,11 @@ "cimguiname": "igGetColumnNormFromOffset", "defaults": {}, "funcname": "GetColumnNormFromOffset", +<<<<<<< HEAD "location": "imgui_internal:3318", +======= + "location": "imgui_internal:3647", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetColumnNormFromOffset", "ret": "float", @@ -18661,7 +23142,11 @@ "column_index": "-1" }, "funcname": "GetColumnOffset", +<<<<<<< HEAD "location": "imgui:823", +======= + "location": "imgui:834", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffset", "ret": "float", @@ -18687,7 +23172,11 @@ "cimguiname": "igGetColumnOffsetFromNorm", "defaults": {}, "funcname": "GetColumnOffsetFromNorm", +<<<<<<< HEAD "location": "imgui_internal:3317", +======= + "location": "imgui_internal:3646", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffsetFromNorm", "ret": "float", @@ -18711,7 +23200,11 @@ "column_index": "-1" }, "funcname": "GetColumnWidth", +<<<<<<< HEAD "location": "imgui:821", +======= + "location": "imgui:832", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetColumnWidth", "ret": "float", @@ -18728,7 +23221,11 @@ "cimguiname": "igGetColumnsCount", "defaults": {}, "funcname": "GetColumnsCount", +<<<<<<< HEAD "location": "imgui:825", +======= + "location": "imgui:836", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetColumnsCount", "ret": "int", @@ -18754,7 +23251,11 @@ "cimguiname": "igGetColumnsID", "defaults": {}, "funcname": "GetColumnsID", +<<<<<<< HEAD "location": "imgui_internal:3315", +======= + "location": "imgui_internal:3644", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetColumnsID", "ret": "ImGuiID", @@ -18776,7 +23277,11 @@ "cimguiname": "igGetContentRegionAvail", "defaults": {}, "funcname": "GetContentRegionAvail", +<<<<<<< HEAD "location": "imgui:410", +======= + "location": "imgui:420", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionAvail", @@ -18799,7 +23304,11 @@ "cimguiname": "igGetContentRegionMax", "defaults": {}, "funcname": "GetContentRegionMax", +<<<<<<< HEAD "location": "imgui:411", +======= + "location": "imgui:421", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionMax", @@ -18822,7 +23331,11 @@ "cimguiname": "igGetContentRegionMaxAbs", "defaults": {}, "funcname": "GetContentRegionMaxAbs", +<<<<<<< HEAD "location": "imgui_internal:3130", +======= + "location": "imgui_internal:3400", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionMaxAbs", @@ -18840,7 +23353,11 @@ "cimguiname": "igGetCurrentContext", "defaults": {}, "funcname": "GetCurrentContext", +<<<<<<< HEAD "location": "imgui:310", +======= + "location": "imgui:317", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetCurrentContext", "ret": "ImGuiContext*", @@ -18857,7 +23374,11 @@ "cimguiname": "igGetCurrentFocusScope", "defaults": {}, "funcname": "GetCurrentFocusScope", +<<<<<<< HEAD "location": "imgui_internal:3293", +======= + "location": "imgui_internal:3622", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetCurrentFocusScope", "ret": "ImGuiID", @@ -18874,7 +23395,11 @@ "cimguiname": "igGetCurrentTabBar", "defaults": {}, "funcname": "GetCurrentTabBar", +<<<<<<< HEAD "location": "imgui_internal:3378", +======= + "location": "imgui_internal:3706", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetCurrentTabBar", "ret": "ImGuiTabBar*", @@ -18891,7 +23416,11 @@ "cimguiname": "igGetCurrentTable", "defaults": {}, "funcname": "GetCurrentTable", +<<<<<<< HEAD "location": "imgui_internal:3333", +======= + "location": "imgui_internal:3661", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetCurrentTable", "ret": "ImGuiTable*", @@ -18908,7 +23437,11 @@ "cimguiname": "igGetCurrentWindow", "defaults": {}, "funcname": "GetCurrentWindow", +<<<<<<< HEAD "location": "imgui_internal:3009", +======= + "location": "imgui_internal:3274", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindow", "ret": "ImGuiWindow*", @@ -18925,7 +23458,11 @@ "cimguiname": "igGetCurrentWindowRead", "defaults": {}, "funcname": "GetCurrentWindowRead", +<<<<<<< HEAD "location": "imgui_internal:3008", +======= + "location": "imgui_internal:3273", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindowRead", "ret": "ImGuiWindow*", @@ -18947,7 +23484,11 @@ "cimguiname": "igGetCursorPos", "defaults": {}, "funcname": "GetCursorPos", +<<<<<<< HEAD "location": "imgui:471", +======= + "location": "imgui:481", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorPos", @@ -18965,7 +23506,11 @@ "cimguiname": "igGetCursorPosX", "defaults": {}, "funcname": "GetCursorPosX", +<<<<<<< HEAD "location": "imgui:472", +======= + "location": "imgui:482", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosX", "ret": "float", @@ -18982,7 +23527,11 @@ "cimguiname": "igGetCursorPosY", "defaults": {}, "funcname": "GetCursorPosY", +<<<<<<< HEAD "location": "imgui:473", +======= + "location": "imgui:483", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosY", "ret": "float", @@ -19004,7 +23553,11 @@ "cimguiname": "igGetCursorScreenPos", "defaults": {}, "funcname": "GetCursorScreenPos", +<<<<<<< HEAD "location": "imgui:469", +======= + "location": "imgui:479", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorScreenPos", @@ -19027,7 +23580,11 @@ "cimguiname": "igGetCursorStartPos", "defaults": {}, "funcname": "GetCursorStartPos", +<<<<<<< HEAD "location": "imgui:477", +======= + "location": "imgui:487", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorStartPos", @@ -19045,7 +23602,11 @@ "cimguiname": "igGetDefaultFont", "defaults": {}, "funcname": "GetDefaultFont", +<<<<<<< HEAD "location": "imgui_internal:3044", +======= + "location": "imgui_internal:3309", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetDefaultFont", "ret": "ImFont*", @@ -19062,7 +23623,11 @@ "cimguiname": "igGetDragDropPayload", "defaults": {}, "funcname": "GetDragDropPayload", +<<<<<<< HEAD "location": "imgui:857", +======= + "location": "imgui:888", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetDragDropPayload", "ret": "const ImGuiPayload*", @@ -19079,7 +23644,11 @@ "cimguiname": "igGetDrawData", "defaults": {}, "funcname": "GetDrawData", +<<<<<<< HEAD "location": "imgui:319", +======= + "location": "imgui:326", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetDrawData", "ret": "ImDrawData*", @@ -19096,7 +23665,11 @@ "cimguiname": "igGetDrawListSharedData", "defaults": {}, "funcname": "GetDrawListSharedData", +<<<<<<< HEAD "location": "imgui:915", +======= + "location": "imgui:947", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetDrawListSharedData", "ret": "ImDrawListSharedData*", @@ -19113,7 +23686,11 @@ "cimguiname": "igGetFocusID", "defaults": {}, "funcname": "GetFocusID", +<<<<<<< HEAD "location": "imgui_internal:3106", +======= + "location": "imgui_internal:3376", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetFocusID", "ret": "ImGuiID", @@ -19130,7 +23707,11 @@ "cimguiname": "igGetFont", "defaults": {}, "funcname": "GetFont", +<<<<<<< HEAD "location": "imgui:453", +======= + "location": "imgui:463", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetFont", "ret": "ImFont*", @@ -19147,7 +23728,11 @@ "cimguiname": "igGetFontSize", "defaults": {}, "funcname": "GetFontSize", +<<<<<<< HEAD "location": "imgui:454", +======= + "location": "imgui:464", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetFontSize", "ret": "float", @@ -19169,7 +23754,11 @@ "cimguiname": "igGetFontTexUvWhitePixel", "defaults": {}, "funcname": "GetFontTexUvWhitePixel", +<<<<<<< HEAD "location": "imgui:455", +======= + "location": "imgui:465", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetFontTexUvWhitePixel", @@ -19180,6 +23769,7 @@ ], "igGetForegroundDrawList": [ { +<<<<<<< HEAD "args": "()", "argsT": [], "argsoriginal": "()", @@ -19192,6 +23782,27 @@ "ov_cimguiname": "igGetForegroundDrawList_Nil", "ret": "ImDrawList*", "signature": "()", +======= + "args": "(ImGuiViewport* viewport)", + "argsT": [ + { + "name": "viewport", + "type": "ImGuiViewport*" + } + ], + "argsoriginal": "(ImGuiViewport* viewport=((void*)0))", + "call_args": "(viewport)", + "cimguiname": "igGetForegroundDrawList", + "defaults": { + "viewport": "NULL" + }, + "funcname": "GetForegroundDrawList", + "location": "imgui:940", + "namespace": "ImGui", + "ov_cimguiname": "igGetForegroundDrawList_ViewportPtr", + "ret": "ImDrawList*", + "signature": "(ImGuiViewport*)", +>>>>>>> docking_inter "stname": "" }, { @@ -19207,7 +23818,11 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", +<<<<<<< HEAD "location": "imgui_internal:3045", +======= + "location": "imgui_internal:3310", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_WindowPtr", "ret": "ImDrawList*", @@ -19244,7 +23859,11 @@ "cimguiname": "igGetFrameCount", "defaults": {}, "funcname": "GetFrameCount", +<<<<<<< HEAD "location": "imgui:914", +======= + "location": "imgui:946", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetFrameCount", "ret": "int", @@ -19261,7 +23880,11 @@ "cimguiname": "igGetFrameHeight", "defaults": {}, "funcname": "GetFrameHeight", +<<<<<<< HEAD "location": "imgui:492", +======= + "location": "imgui:502", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeight", "ret": "float", @@ -19278,7 +23901,11 @@ "cimguiname": "igGetFrameHeightWithSpacing", "defaults": {}, "funcname": "GetFrameHeightWithSpacing", +<<<<<<< HEAD "location": "imgui:493", +======= + "location": "imgui:503", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeightWithSpacing", "ret": "float", @@ -19295,7 +23922,11 @@ "cimguiname": "igGetHoveredID", "defaults": {}, "funcname": "GetHoveredID", +<<<<<<< HEAD "location": "imgui_internal:3110", +======= + "location": "imgui_internal:3380", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetHoveredID", "ret": "ImGuiID", @@ -19317,7 +23948,11 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", +<<<<<<< HEAD "location": "imgui:511", +======= + "location": "imgui:521", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetID_Str", "ret": "ImGuiID", @@ -19341,7 +23976,11 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", +<<<<<<< HEAD "location": "imgui:512", +======= + "location": "imgui:522", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetID_StrStr", "ret": "ImGuiID", @@ -19361,7 +24000,11 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", +<<<<<<< HEAD "location": "imgui:513", +======= + "location": "imgui:523", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetID_Ptr", "ret": "ImGuiID", @@ -19391,7 +24034,11 @@ "cimguiname": "igGetIDWithSeed", "defaults": {}, "funcname": "GetIDWithSeed", +<<<<<<< HEAD "location": "imgui_internal:3115", +======= + "location": "imgui_internal:3385", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetIDWithSeed_Str", "ret": "ImGuiID", @@ -19415,7 +24062,11 @@ "cimguiname": "igGetIDWithSeed", "defaults": {}, "funcname": "GetIDWithSeed", +<<<<<<< HEAD "location": "imgui_internal:3116", +======= + "location": "imgui_internal:3386", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetIDWithSeed_Int", "ret": "ImGuiID", @@ -19432,7 +24083,11 @@ "cimguiname": "igGetIO", "defaults": {}, "funcname": "GetIO", +<<<<<<< HEAD "location": "imgui:314", +======= + "location": "imgui:321", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetIO", "ret": "ImGuiIO*", @@ -19455,7 +24110,11 @@ "cimguiname": "igGetInputTextState", "defaults": {}, "funcname": "GetInputTextState", +<<<<<<< HEAD "location": "imgui_internal:3475", +======= + "location": "imgui_internal:3807", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetInputTextState", "ret": "ImGuiInputTextState*", @@ -19472,7 +24131,11 @@ "cimguiname": "igGetItemFlags", "defaults": {}, "funcname": "GetItemFlags", +<<<<<<< HEAD "location": "imgui_internal:3104", +======= + "location": "imgui_internal:3374", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetItemFlags", "ret": "ImGuiItemFlags", @@ -19489,7 +24152,11 @@ "cimguiname": "igGetItemID", "defaults": {}, "funcname": "GetItemID", +<<<<<<< HEAD "location": "imgui:895", +======= + "location": "imgui:927", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetItemID", "ret": "ImGuiID", @@ -19511,7 +24178,11 @@ "cimguiname": "igGetItemRectMax", "defaults": {}, "funcname": "GetItemRectMax", +<<<<<<< HEAD "location": "imgui:897", +======= + "location": "imgui:929", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMax", @@ -19534,7 +24205,11 @@ "cimguiname": "igGetItemRectMin", "defaults": {}, "funcname": "GetItemRectMin", +<<<<<<< HEAD "location": "imgui:896", +======= + "location": "imgui:928", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMin", @@ -19557,7 +24232,11 @@ "cimguiname": "igGetItemRectSize", "defaults": {}, "funcname": "GetItemRectSize", +<<<<<<< HEAD "location": "imgui:898", +======= + "location": "imgui:930", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectSize", @@ -19575,7 +24254,11 @@ "cimguiname": "igGetItemStatusFlags", "defaults": {}, "funcname": "GetItemStatusFlags", +<<<<<<< HEAD "location": "imgui_internal:3103", +======= + "location": "imgui_internal:3373", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetItemStatusFlags", "ret": "ImGuiItemStatusFlags", @@ -19597,7 +24280,11 @@ "cimguiname": "igGetKeyChordName", "defaults": {}, "funcname": "GetKeyChordName", +<<<<<<< HEAD "location": "imgui_internal:3220", +======= + "location": "imgui_internal:3494", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetKeyChordName", "ret": "const char*", @@ -19623,7 +24310,11 @@ "cimguiname": "igGetKeyData", "defaults": {}, "funcname": "GetKeyData", +<<<<<<< HEAD "location": "imgui_internal:3218", +======= + "location": "imgui_internal:3492", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetKeyData_ContextPtr", "ret": "ImGuiKeyData*", @@ -19643,7 +24334,11 @@ "cimguiname": "igGetKeyData", "defaults": {}, "funcname": "GetKeyData", +<<<<<<< HEAD "location": "imgui_internal:3219", +======= + "location": "imgui_internal:3493", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetKeyData_Key", "ret": "ImGuiKeyData*", @@ -19681,7 +24376,11 @@ "cimguiname": "igGetKeyMagnitude2d", "defaults": {}, "funcname": "GetKeyMagnitude2d", +<<<<<<< HEAD "location": "imgui_internal:3223", +======= + "location": "imgui_internal:3497", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetKeyMagnitude2d", @@ -19704,7 +24403,11 @@ "cimguiname": "igGetKeyName", "defaults": {}, "funcname": "GetKeyName", +<<<<<<< HEAD "location": "imgui:939", +======= + "location": "imgui:971", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetKeyName", "ret": "const char*", @@ -19726,7 +24429,11 @@ "cimguiname": "igGetKeyOwner", "defaults": {}, "funcname": "GetKeyOwner", +<<<<<<< HEAD "location": "imgui_internal:3242", +======= + "location": "imgui_internal:3516", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetKeyOwner", "ret": "ImGuiID", @@ -19752,7 +24459,11 @@ "cimguiname": "igGetKeyOwnerData", "defaults": {}, "funcname": "GetKeyOwnerData", +<<<<<<< HEAD "location": "imgui_internal:3247", +======= + "location": "imgui_internal:3521", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetKeyOwnerData", "ret": "ImGuiKeyOwnerData*", @@ -19782,7 +24493,11 @@ "cimguiname": "igGetKeyPressedAmount", "defaults": {}, "funcname": "GetKeyPressedAmount", +<<<<<<< HEAD "location": "imgui:938", +======= + "location": "imgui:970", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetKeyPressedAmount", "ret": "int", @@ -19799,7 +24514,11 @@ "cimguiname": "igGetMainViewport", "defaults": {}, "funcname": "GetMainViewport", +<<<<<<< HEAD "location": "imgui:904", +======= + "location": "imgui:936", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetMainViewport", "ret": "ImGuiViewport*", @@ -19821,7 +24540,11 @@ "cimguiname": "igGetMouseClickedCount", "defaults": {}, "funcname": "GetMouseClickedCount", +<<<<<<< HEAD "location": "imgui:968", +======= + "location": "imgui:1000", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetMouseClickedCount", "ret": "int", @@ -19838,7 +24561,11 @@ "cimguiname": "igGetMouseCursor", "defaults": {}, "funcname": "GetMouseCursor", +<<<<<<< HEAD "location": "imgui:977", +======= + "location": "imgui:1009", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetMouseCursor", "ret": "ImGuiMouseCursor", @@ -19871,7 +24598,11 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", +<<<<<<< HEAD "location": "imgui:975", +======= + "location": "imgui:1007", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMouseDragDelta", @@ -19894,7 +24625,11 @@ "cimguiname": "igGetMousePos", "defaults": {}, "funcname": "GetMousePos", +<<<<<<< HEAD "location": "imgui:972", +======= + "location": "imgui:1004", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePos", @@ -19917,7 +24652,11 @@ "cimguiname": "igGetMousePosOnOpeningCurrentPopup", "defaults": {}, "funcname": "GetMousePosOnOpeningCurrentPopup", +<<<<<<< HEAD "location": "imgui:973", +======= + "location": "imgui:1005", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup", @@ -19940,7 +24679,11 @@ "cimguiname": "igGetNavTweakPressedAmount", "defaults": {}, "funcname": "GetNavTweakPressedAmount", +<<<<<<< HEAD "location": "imgui_internal:3224", +======= + "location": "imgui_internal:3498", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetNavTweakPressedAmount", "ret": "float", @@ -19948,6 +24691,27 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igGetPlatformIO": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igGetPlatformIO", + "defaults": {}, + "funcname": "GetPlatformIO", + "location": "imgui:1046", + "namespace": "ImGui", + "ov_cimguiname": "igGetPlatformIO", + "ret": "ImGuiPlatformIO*", + "retref": "&", + "signature": "()", + "stname": "" + } + ], +>>>>>>> docking_inter "igGetPopupAllowedExtentRect": [ { "args": "(ImRect *pOut,ImGuiWindow* window)", @@ -19966,7 +24730,11 @@ "cimguiname": "igGetPopupAllowedExtentRect", "defaults": {}, "funcname": "GetPopupAllowedExtentRect", +<<<<<<< HEAD "location": "imgui_internal:3156", +======= + "location": "imgui_internal:3426", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetPopupAllowedExtentRect", @@ -19984,7 +24752,11 @@ "cimguiname": "igGetScrollMaxX", "defaults": {}, "funcname": "GetScrollMaxX", +<<<<<<< HEAD "location": "imgui:422", +======= + "location": "imgui:432", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxX", "ret": "float", @@ -20001,7 +24773,11 @@ "cimguiname": "igGetScrollMaxY", "defaults": {}, "funcname": "GetScrollMaxY", +<<<<<<< HEAD "location": "imgui:423", +======= + "location": "imgui:433", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxY", "ret": "float", @@ -20018,7 +24794,11 @@ "cimguiname": "igGetScrollX", "defaults": {}, "funcname": "GetScrollX", +<<<<<<< HEAD "location": "imgui:418", +======= + "location": "imgui:428", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetScrollX", "ret": "float", @@ -20035,7 +24815,11 @@ "cimguiname": "igGetScrollY", "defaults": {}, "funcname": "GetScrollY", +<<<<<<< HEAD "location": "imgui:419", +======= + "location": "imgui:429", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetScrollY", "ret": "float", @@ -20057,7 +24841,11 @@ "cimguiname": "igGetShortcutRoutingData", "defaults": {}, "funcname": "GetShortcutRoutingData", +<<<<<<< HEAD "location": "imgui_internal:3281", +======= + "location": "imgui_internal:3555", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetShortcutRoutingData", "ret": "ImGuiKeyRoutingData*", @@ -20074,7 +24862,11 @@ "cimguiname": "igGetStateStorage", "defaults": {}, "funcname": "GetStateStorage", +<<<<<<< HEAD "location": "imgui:918", +======= + "location": "imgui:950", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetStateStorage", "ret": "ImGuiStorage*", @@ -20091,7 +24883,11 @@ "cimguiname": "igGetStyle", "defaults": {}, "funcname": "GetStyle", +<<<<<<< HEAD "location": "imgui:315", +======= + "location": "imgui:322", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetStyle", "ret": "ImGuiStyle*", @@ -20114,7 +24910,11 @@ "cimguiname": "igGetStyleColorName", "defaults": {}, "funcname": "GetStyleColorName", +<<<<<<< HEAD "location": "imgui:916", +======= + "location": "imgui:948", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorName", "ret": "const char*", @@ -20136,7 +24936,11 @@ "cimguiname": "igGetStyleColorVec4", "defaults": {}, "funcname": "GetStyleColorVec4", +<<<<<<< HEAD "location": "imgui:459", +======= + "location": "imgui:469", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorVec4", "ret": "const ImVec4*", @@ -20159,7 +24963,11 @@ "cimguiname": "igGetStyleVarInfo", "defaults": {}, "funcname": "GetStyleVarInfo", +<<<<<<< HEAD "location": "imgui_internal:3136", +======= + "location": "imgui_internal:3406", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetStyleVarInfo", "ret": "const ImGuiDataVarInfo*", @@ -20176,7 +24984,11 @@ "cimguiname": "igGetTextLineHeight", "defaults": {}, "funcname": "GetTextLineHeight", +<<<<<<< HEAD "location": "imgui:490", +======= + "location": "imgui:500", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeight", "ret": "float", @@ -20193,7 +25005,11 @@ "cimguiname": "igGetTextLineHeightWithSpacing", "defaults": {}, "funcname": "GetTextLineHeightWithSpacing", +<<<<<<< HEAD "location": "imgui:491", +======= + "location": "imgui:501", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeightWithSpacing", "ret": "float", @@ -20210,7 +25026,11 @@ "cimguiname": "igGetTime", "defaults": {}, "funcname": "GetTime", +<<<<<<< HEAD "location": "imgui:913", +======= + "location": "imgui:945", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetTime", "ret": "double", @@ -20227,7 +25047,11 @@ "cimguiname": "igGetTopMostAndVisiblePopupModal", "defaults": {}, "funcname": "GetTopMostAndVisiblePopupModal", +<<<<<<< HEAD "location": "imgui_internal:3158", +======= + "location": "imgui_internal:3428", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetTopMostAndVisiblePopupModal", "ret": "ImGuiWindow*", @@ -20244,7 +25068,11 @@ "cimguiname": "igGetTopMostPopupModal", "defaults": {}, "funcname": "GetTopMostPopupModal", +<<<<<<< HEAD "location": "imgui_internal:3157", +======= + "location": "imgui_internal:3427", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetTopMostPopupModal", "ret": "ImGuiWindow*", @@ -20261,7 +25089,11 @@ "cimguiname": "igGetTreeNodeToLabelSpacing", "defaults": {}, "funcname": "GetTreeNodeToLabelSpacing", +<<<<<<< HEAD "location": "imgui:651", +======= + "location": "imgui:661", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetTreeNodeToLabelSpacing", "ret": "float", @@ -20291,7 +25123,11 @@ "cimguiname": "igGetTypematicRepeatRate", "defaults": {}, "funcname": "GetTypematicRepeatRate", +<<<<<<< HEAD "location": "imgui_internal:3226", +======= + "location": "imgui_internal:3500", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetTypematicRepeatRate", "ret": "void", @@ -20315,7 +25151,11 @@ "flags": "ImGuiTypingSelectFlags_None" }, "funcname": "GetTypingSelectRequest", +<<<<<<< HEAD "location": "imgui_internal:3303", +======= + "location": "imgui_internal:3632", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetTypingSelectRequest", "ret": "ImGuiTypingSelectRequest*", @@ -20332,7 +25172,11 @@ "cimguiname": "igGetVersion", "defaults": {}, "funcname": "GetVersion", +<<<<<<< HEAD "location": "imgui:331", +======= + "location": "imgui:338", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetVersion", "ret": "const char*", @@ -20340,6 +25184,53 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igGetViewportPlatformMonitor": [ + { + "args": "(ImGuiViewport* viewport)", + "argsT": [ + { + "name": "viewport", + "type": "ImGuiViewport*" + } + ], + "argsoriginal": "(ImGuiViewport* viewport)", + "call_args": "(viewport)", + "cimguiname": "igGetViewportPlatformMonitor", + "defaults": {}, + "funcname": "GetViewportPlatformMonitor", + "location": "imgui_internal:3337", + "namespace": "ImGui", + "ov_cimguiname": "igGetViewportPlatformMonitor", + "ret": "const ImGuiPlatformMonitor*", + "signature": "(ImGuiViewport*)", + "stname": "" + } + ], + "igGetWindowAlwaysWantOwnTabBar": [ + { + "args": "(ImGuiWindow* window)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window)", + "call_args": "(window)", + "cimguiname": "igGetWindowAlwaysWantOwnTabBar", + "defaults": {}, + "funcname": "GetWindowAlwaysWantOwnTabBar", + "location": "imgui_internal:3582", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowAlwaysWantOwnTabBar", + "ret": "bool", + "signature": "(ImGuiWindow*)", + "stname": "" + } + ], +>>>>>>> docking_inter "igGetWindowContentRegionMax": [ { "args": "(ImVec2 *pOut)", @@ -20354,7 +25245,11 @@ "cimguiname": "igGetWindowContentRegionMax", "defaults": {}, "funcname": "GetWindowContentRegionMax", +<<<<<<< HEAD "location": "imgui:413", +======= + "location": "imgui:423", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowContentRegionMax", @@ -20377,7 +25272,11 @@ "cimguiname": "igGetWindowContentRegionMin", "defaults": {}, "funcname": "GetWindowContentRegionMin", +<<<<<<< HEAD "location": "imgui:412", +======= + "location": "imgui:422", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowContentRegionMin", @@ -20386,6 +25285,60 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igGetWindowDockID": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igGetWindowDockID", + "defaults": {}, + "funcname": "GetWindowDockID", + "location": "imgui:864", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowDockID", + "ret": "ImGuiID", + "signature": "()", + "stname": "" + } + ], + "igGetWindowDockNode": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igGetWindowDockNode", + "defaults": {}, + "funcname": "GetWindowDockNode", + "location": "imgui_internal:3581", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowDockNode", + "ret": "ImGuiDockNode*", + "signature": "()", + "stname": "" + } + ], + "igGetWindowDpiScale": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igGetWindowDpiScale", + "defaults": {}, + "funcname": "GetWindowDpiScale", + "location": "imgui:389", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowDpiScale", + "ret": "float", + "signature": "()", + "stname": "" + } + ], +>>>>>>> docking_inter "igGetWindowDrawList": [ { "args": "()", @@ -20395,7 +25348,11 @@ "cimguiname": "igGetWindowDrawList", "defaults": {}, "funcname": "GetWindowDrawList", +<<<<<<< HEAD "location": "imgui:381", +======= + "location": "imgui:388", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetWindowDrawList", "ret": "ImDrawList*", @@ -20412,7 +25369,11 @@ "cimguiname": "igGetWindowHeight", "defaults": {}, "funcname": "GetWindowHeight", +<<<<<<< HEAD "location": "imgui:385", +======= + "location": "imgui:393", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetWindowHeight", "ret": "float", @@ -20434,7 +25395,11 @@ "cimguiname": "igGetWindowPos", "defaults": {}, "funcname": "GetWindowPos", +<<<<<<< HEAD "location": "imgui:382", +======= + "location": "imgui:390", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowPos", @@ -20461,7 +25426,11 @@ "cimguiname": "igGetWindowResizeBorderID", "defaults": {}, "funcname": "GetWindowResizeBorderID", +<<<<<<< HEAD "location": "imgui_internal:3438", +======= + "location": "imgui_internal:3770", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeBorderID", "ret": "ImGuiID", @@ -20487,7 +25456,11 @@ "cimguiname": "igGetWindowResizeCornerID", "defaults": {}, "funcname": "GetWindowResizeCornerID", +<<<<<<< HEAD "location": "imgui_internal:3437", +======= + "location": "imgui_internal:3769", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeCornerID", "ret": "ImGuiID", @@ -20513,7 +25486,11 @@ "cimguiname": "igGetWindowScrollbarID", "defaults": {}, "funcname": "GetWindowScrollbarID", +<<<<<<< HEAD "location": "imgui_internal:3436", +======= + "location": "imgui_internal:3768", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetWindowScrollbarID", "ret": "ImGuiID", @@ -20543,7 +25520,11 @@ "cimguiname": "igGetWindowScrollbarRect", "defaults": {}, "funcname": "GetWindowScrollbarRect", +<<<<<<< HEAD "location": "imgui_internal:3435", +======= + "location": "imgui_internal:3767", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowScrollbarRect", @@ -20566,7 +25547,11 @@ "cimguiname": "igGetWindowSize", "defaults": {}, "funcname": "GetWindowSize", +<<<<<<< HEAD "location": "imgui:383", +======= + "location": "imgui:391", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowSize", @@ -20575,6 +25560,26 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igGetWindowViewport": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igGetWindowViewport", + "defaults": {}, + "funcname": "GetWindowViewport", + "location": "imgui:394", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowViewport", + "ret": "ImGuiViewport*", + "signature": "()", + "stname": "" + } + ], +>>>>>>> docking_inter "igGetWindowWidth": [ { "args": "()", @@ -20584,7 +25589,11 @@ "cimguiname": "igGetWindowWidth", "defaults": {}, "funcname": "GetWindowWidth", +<<<<<<< HEAD "location": "imgui:384", +======= + "location": "imgui:392", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igGetWindowWidth", "ret": "float", @@ -20606,7 +25615,11 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", +<<<<<<< HEAD "location": "imgui_internal:451", +======= + "location": "imgui_internal:464", +>>>>>>> docking_inter "ov_cimguiname": "igImAbs_Int", "ret": "int", "signature": "(int)", @@ -20625,7 +25638,11 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", +<<<<<<< HEAD "location": "imgui_internal:452", +======= + "location": "imgui_internal:465", +>>>>>>> docking_inter "ov_cimguiname": "igImAbs_Float", "ret": "float", "signature": "(float)", @@ -20644,7 +25661,11 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", +<<<<<<< HEAD "location": "imgui_internal:453", +======= + "location": "imgui_internal:466", +>>>>>>> docking_inter "ov_cimguiname": "igImAbs_double", "ret": "double", "signature": "(double)", @@ -20669,7 +25690,11 @@ "cimguiname": "igImAlphaBlendColors", "defaults": {}, "funcname": "ImAlphaBlendColors", +<<<<<<< HEAD "location": "imgui_internal:363", +======= + "location": "imgui_internal:376", +>>>>>>> docking_inter "ov_cimguiname": "igImAlphaBlendColors", "ret": "ImU32", "signature": "(ImU32,ImU32)", @@ -20710,7 +25735,11 @@ "cimguiname": "igImBezierCubicCalc", "defaults": {}, "funcname": "ImBezierCubicCalc", +<<<<<<< HEAD "location": "imgui_internal:497", +======= + "location": "imgui_internal:510", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "igImBezierCubicCalc", "ret": "void", @@ -20756,7 +25785,11 @@ "cimguiname": "igImBezierCubicClosestPoint", "defaults": {}, "funcname": "ImBezierCubicClosestPoint", +<<<<<<< HEAD "location": "imgui_internal:498", +======= + "location": "imgui_internal:511", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "igImBezierCubicClosestPoint", "ret": "void", @@ -20802,7 +25835,11 @@ "cimguiname": "igImBezierCubicClosestPointCasteljau", "defaults": {}, "funcname": "ImBezierCubicClosestPointCasteljau", +<<<<<<< HEAD "location": "imgui_internal:499", +======= + "location": "imgui_internal:512", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "igImBezierCubicClosestPointCasteljau", "ret": "void", @@ -20840,7 +25877,11 @@ "cimguiname": "igImBezierQuadraticCalc", "defaults": {}, "funcname": "ImBezierQuadraticCalc", +<<<<<<< HEAD "location": "imgui_internal:500", +======= + "location": "imgui_internal:513", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "igImBezierQuadraticCalc", "ret": "void", @@ -20866,7 +25907,11 @@ "cimguiname": "igImBitArrayClearAllBits", "defaults": {}, "funcname": "ImBitArrayClearAllBits", +<<<<<<< HEAD "location": "imgui_internal:570", +======= + "location": "imgui_internal:583", +>>>>>>> docking_inter "ov_cimguiname": "igImBitArrayClearAllBits", "ret": "void", "signature": "(ImU32*,int)", @@ -20891,7 +25936,11 @@ "cimguiname": "igImBitArrayClearBit", "defaults": {}, "funcname": "ImBitArrayClearBit", +<<<<<<< HEAD "location": "imgui_internal:572", +======= + "location": "imgui_internal:585", +>>>>>>> docking_inter "ov_cimguiname": "igImBitArrayClearBit", "ret": "void", "signature": "(ImU32*,int)", @@ -20912,7 +25961,11 @@ "cimguiname": "igImBitArrayGetStorageSizeInBytes", "defaults": {}, "funcname": "ImBitArrayGetStorageSizeInBytes", +<<<<<<< HEAD "location": "imgui_internal:569", +======= + "location": "imgui_internal:582", +>>>>>>> docking_inter "ov_cimguiname": "igImBitArrayGetStorageSizeInBytes", "ret": "size_t", "signature": "(int)", @@ -20937,7 +25990,11 @@ "cimguiname": "igImBitArraySetBit", "defaults": {}, "funcname": "ImBitArraySetBit", +<<<<<<< HEAD "location": "imgui_internal:573", +======= + "location": "imgui_internal:586", +>>>>>>> docking_inter "ov_cimguiname": "igImBitArraySetBit", "ret": "void", "signature": "(ImU32*,int)", @@ -20966,7 +26023,11 @@ "cimguiname": "igImBitArraySetBitRange", "defaults": {}, "funcname": "ImBitArraySetBitRange", +<<<<<<< HEAD "location": "imgui_internal:574", +======= + "location": "imgui_internal:587", +>>>>>>> docking_inter "ov_cimguiname": "igImBitArraySetBitRange", "ret": "void", "signature": "(ImU32*,int,int)", @@ -20991,7 +26052,11 @@ "cimguiname": "igImBitArrayTestBit", "defaults": {}, "funcname": "ImBitArrayTestBit", +<<<<<<< HEAD "location": "imgui_internal:571", +======= + "location": "imgui_internal:584", +>>>>>>> docking_inter "ov_cimguiname": "igImBitArrayTestBit", "ret": "bool", "signature": "(const ImU32*,int)", @@ -21012,7 +26077,11 @@ "cimguiname": "igImCharIsBlankA", "defaults": {}, "funcname": "ImCharIsBlankA", +<<<<<<< HEAD "location": "imgui_internal:385", +======= + "location": "imgui_internal:398", +>>>>>>> docking_inter "ov_cimguiname": "igImCharIsBlankA", "ret": "bool", "signature": "(char)", @@ -21033,7 +26102,11 @@ "cimguiname": "igImCharIsBlankW", "defaults": {}, "funcname": "ImCharIsBlankW", +<<<<<<< HEAD "location": "imgui_internal:386", +======= + "location": "imgui_internal:399", +>>>>>>> docking_inter "ov_cimguiname": "igImCharIsBlankW", "ret": "bool", "signature": "(unsigned int)", @@ -21066,7 +26139,11 @@ "cimguiname": "igImClamp", "defaults": {}, "funcname": "ImClamp", +<<<<<<< HEAD "location": "imgui_internal:475", +======= + "location": "imgui_internal:488", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "igImClamp", "ret": "void", @@ -21092,7 +26169,11 @@ "cimguiname": "igImDot", "defaults": {}, "funcname": "ImDot", +<<<<<<< HEAD "location": "imgui_internal:488", +======= + "location": "imgui_internal:501", +>>>>>>> docking_inter "ov_cimguiname": "igImDot", "ret": "float", "signature": "(const ImVec2,const ImVec2)", @@ -21121,7 +26202,11 @@ "cimguiname": "igImExponentialMovingAverage", "defaults": {}, "funcname": "ImExponentialMovingAverage", +<<<<<<< HEAD "location": "imgui_internal:493", +======= + "location": "imgui_internal:506", +>>>>>>> docking_inter "ov_cimguiname": "igImExponentialMovingAverage", "ret": "float", "signature": "(float,float,int)", @@ -21142,7 +26227,11 @@ "cimguiname": "igImFileClose", "defaults": {}, "funcname": "ImFileClose", +<<<<<<< HEAD "location": "imgui_internal:425", +======= + "location": "imgui_internal:438", +>>>>>>> docking_inter "ov_cimguiname": "igImFileClose", "ret": "bool", "signature": "(ImFileHandle)", @@ -21163,7 +26252,11 @@ "cimguiname": "igImFileGetSize", "defaults": {}, "funcname": "ImFileGetSize", +<<<<<<< HEAD "location": "imgui_internal:426", +======= + "location": "imgui_internal:439", +>>>>>>> docking_inter "ov_cimguiname": "igImFileGetSize", "ret": "ImU64", "signature": "(ImFileHandle)", @@ -21199,7 +26292,11 @@ "padding_bytes": "0" }, "funcname": "ImFileLoadToMemory", +<<<<<<< HEAD "location": "imgui_internal:432", +======= + "location": "imgui_internal:445", +>>>>>>> docking_inter "ov_cimguiname": "igImFileLoadToMemory", "ret": "void*", "signature": "(const char*,const char*,size_t*,int)", @@ -21224,7 +26321,11 @@ "cimguiname": "igImFileOpen", "defaults": {}, "funcname": "ImFileOpen", +<<<<<<< HEAD "location": "imgui_internal:424", +======= + "location": "imgui_internal:437", +>>>>>>> docking_inter "ov_cimguiname": "igImFileOpen", "ret": "ImFileHandle", "signature": "(const char*,const char*)", @@ -21257,7 +26358,11 @@ "cimguiname": "igImFileRead", "defaults": {}, "funcname": "ImFileRead", +<<<<<<< HEAD "location": "imgui_internal:427", +======= + "location": "imgui_internal:440", +>>>>>>> docking_inter "ov_cimguiname": "igImFileRead", "ret": "ImU64", "signature": "(void*,ImU64,ImU64,ImFileHandle)", @@ -21290,7 +26395,11 @@ "cimguiname": "igImFileWrite", "defaults": {}, "funcname": "ImFileWrite", +<<<<<<< HEAD "location": "imgui_internal:428", +======= + "location": "imgui_internal:441", +>>>>>>> docking_inter "ov_cimguiname": "igImFileWrite", "ret": "ImU64", "signature": "(const void*,ImU64,ImU64,ImFileHandle)", @@ -21311,7 +26420,11 @@ "cimguiname": "igImFloor", "defaults": {}, "funcname": "ImFloor", +<<<<<<< HEAD "location": "imgui_internal:485", +======= + "location": "imgui_internal:498", +>>>>>>> docking_inter "ov_cimguiname": "igImFloor_Float", "ret": "float", "signature": "(float)", @@ -21334,7 +26447,11 @@ "cimguiname": "igImFloor", "defaults": {}, "funcname": "ImFloor", +<<<<<<< HEAD "location": "imgui_internal:486", +======= + "location": "imgui_internal:499", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "igImFloor_Vec2", "ret": "void", @@ -21356,7 +26473,11 @@ "cimguiname": "igImFontAtlasBuildFinish", "defaults": {}, "funcname": "ImFontAtlasBuildFinish", +<<<<<<< HEAD "location": "imgui_internal:3572", +======= + "location": "imgui_internal:3905", +>>>>>>> docking_inter "ov_cimguiname": "igImFontAtlasBuildFinish", "ret": "void", "signature": "(ImFontAtlas*)", @@ -21377,7 +26498,11 @@ "cimguiname": "igImFontAtlasBuildInit", "defaults": {}, "funcname": "ImFontAtlasBuildInit", +<<<<<<< HEAD "location": "imgui_internal:3569", +======= + "location": "imgui_internal:3902", +>>>>>>> docking_inter "ov_cimguiname": "igImFontAtlasBuildInit", "ret": "void", "signature": "(ImFontAtlas*)", @@ -21402,7 +26527,11 @@ "cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyCalcLookupTable", +<<<<<<< HEAD "location": "imgui_internal:3575", +======= + "location": "imgui_internal:3908", +>>>>>>> docking_inter "ov_cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "ret": "void", "signature": "(unsigned char[256],float)", @@ -21447,7 +26576,11 @@ "cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyRectAlpha8", +<<<<<<< HEAD "location": "imgui_internal:3576", +======= + "location": "imgui_internal:3909", +>>>>>>> docking_inter "ov_cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "ret": "void", "signature": "(const unsigned char[256],unsigned char*,int,int,int,int,int)", @@ -21472,7 +26605,11 @@ "cimguiname": "igImFontAtlasBuildPackCustomRects", "defaults": {}, "funcname": "ImFontAtlasBuildPackCustomRects", +<<<<<<< HEAD "location": "imgui_internal:3571", +======= + "location": "imgui_internal:3904", +>>>>>>> docking_inter "ov_cimguiname": "igImFontAtlasBuildPackCustomRects", "ret": "void", "signature": "(ImFontAtlas*,void*)", @@ -21521,7 +26658,11 @@ "cimguiname": "igImFontAtlasBuildRender32bppRectFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRender32bppRectFromString", +<<<<<<< HEAD "location": "imgui_internal:3574", +======= + "location": "imgui_internal:3907", +>>>>>>> docking_inter "ov_cimguiname": "igImFontAtlasBuildRender32bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned int)", @@ -21570,7 +26711,11 @@ "cimguiname": "igImFontAtlasBuildRender8bppRectFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRender8bppRectFromString", +<<<<<<< HEAD "location": "imgui_internal:3573", +======= + "location": "imgui_internal:3906", +>>>>>>> docking_inter "ov_cimguiname": "igImFontAtlasBuildRender8bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned char)", @@ -21607,7 +26752,11 @@ "cimguiname": "igImFontAtlasBuildSetupFont", "defaults": {}, "funcname": "ImFontAtlasBuildSetupFont", +<<<<<<< HEAD "location": "imgui_internal:3570", +======= + "location": "imgui_internal:3903", +>>>>>>> docking_inter "ov_cimguiname": "igImFontAtlasBuildSetupFont", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)", @@ -21623,7 +26772,11 @@ "cimguiname": "igImFontAtlasGetBuilderForStbTruetype", "defaults": {}, "funcname": "ImFontAtlasGetBuilderForStbTruetype", +<<<<<<< HEAD "location": "imgui_internal:3566", +======= + "location": "imgui_internal:3899", +>>>>>>> docking_inter "ov_cimguiname": "igImFontAtlasGetBuilderForStbTruetype", "ret": "const ImFontBuilderIO*", "signature": "()", @@ -21644,7 +26797,11 @@ "cimguiname": "igImFontAtlasUpdateConfigDataPointers", "defaults": {}, "funcname": "ImFontAtlasUpdateConfigDataPointers", +<<<<<<< HEAD "location": "imgui_internal:3568", +======= + "location": "imgui_internal:3901", +>>>>>>> docking_inter "ov_cimguiname": "igImFontAtlasUpdateConfigDataPointers", "ret": "void", "signature": "(ImFontAtlas*)", @@ -21678,7 +26835,11 @@ "defaults": {}, "funcname": "ImFormatString", "isvararg": "...)", +<<<<<<< HEAD "location": "imgui_internal:390", +======= + "location": "imgui_internal:403", +>>>>>>> docking_inter "ov_cimguiname": "igImFormatString", "ret": "int", "signature": "(char*,size_t,const char*,...)", @@ -21712,7 +26873,11 @@ "defaults": {}, "funcname": "ImFormatStringToTempBuffer", "isvararg": "...)", +<<<<<<< HEAD "location": "imgui_internal:392", +======= + "location": "imgui_internal:405", +>>>>>>> docking_inter "ov_cimguiname": "igImFormatStringToTempBuffer", "ret": "void", "signature": "(const char**,const char**,const char*,...)", @@ -21745,7 +26910,11 @@ "cimguiname": "igImFormatStringToTempBufferV", "defaults": {}, "funcname": "ImFormatStringToTempBufferV", +<<<<<<< HEAD "location": "imgui_internal:393", +======= + "location": "imgui_internal:406", +>>>>>>> docking_inter "ov_cimguiname": "igImFormatStringToTempBufferV", "ret": "void", "signature": "(const char**,const char**,const char*,va_list)", @@ -21778,7 +26947,11 @@ "cimguiname": "igImFormatStringV", "defaults": {}, "funcname": "ImFormatStringV", +<<<<<<< HEAD "location": "imgui_internal:391", +======= + "location": "imgui_internal:404", +>>>>>>> docking_inter "ov_cimguiname": "igImFormatStringV", "ret": "int", "signature": "(char*,size_t,const char*,va_list)", @@ -21809,7 +26982,11 @@ "seed": "0" }, "funcname": "ImHashData", +<<<<<<< HEAD "location": "imgui_internal:354", +======= + "location": "imgui_internal:367", +>>>>>>> docking_inter "ov_cimguiname": "igImHashData", "ret": "ImGuiID", "signature": "(const void*,size_t,ImGuiID)", @@ -21841,7 +27018,11 @@ "seed": "0" }, "funcname": "ImHashStr", +<<<<<<< HEAD "location": "imgui_internal:355", +======= + "location": "imgui_internal:368", +>>>>>>> docking_inter "ov_cimguiname": "igImHashStr", "ret": "ImGuiID", "signature": "(const char*,size_t,ImGuiID)", @@ -21866,7 +27047,11 @@ "cimguiname": "igImInvLength", "defaults": {}, "funcname": "ImInvLength", +<<<<<<< HEAD "location": "imgui_internal:482", +======= + "location": "imgui_internal:495", +>>>>>>> docking_inter "ov_cimguiname": "igImInvLength", "ret": "float", "signature": "(const ImVec2,float)", @@ -21887,7 +27072,11 @@ "cimguiname": "igImIsFloatAboveGuaranteedIntegerPrecision", "defaults": {}, "funcname": "ImIsFloatAboveGuaranteedIntegerPrecision", +<<<<<<< HEAD "location": "imgui_internal:492", +======= + "location": "imgui_internal:505", +>>>>>>> docking_inter "ov_cimguiname": "igImIsFloatAboveGuaranteedIntegerPrecision", "ret": "bool", "signature": "(float)", @@ -21908,7 +27097,11 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": {}, "funcname": "ImIsPowerOfTwo", +<<<<<<< HEAD "location": "imgui_internal:366", +======= + "location": "imgui_internal:379", +>>>>>>> docking_inter "ov_cimguiname": "igImIsPowerOfTwo_Int", "ret": "bool", "signature": "(int)", @@ -21927,7 +27120,11 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": {}, "funcname": "ImIsPowerOfTwo", +<<<<<<< HEAD "location": "imgui_internal:367", +======= + "location": "imgui_internal:380", +>>>>>>> docking_inter "ov_cimguiname": "igImIsPowerOfTwo_U64", "ret": "bool", "signature": "(ImU64)", @@ -21948,7 +27145,11 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", +<<<<<<< HEAD "location": "imgui_internal:480", +======= + "location": "imgui_internal:493", +>>>>>>> docking_inter "ov_cimguiname": "igImLengthSqr_Vec2", "ret": "float", "signature": "(const ImVec2)", @@ -21967,7 +27168,11 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", +<<<<<<< HEAD "location": "imgui_internal:481", +======= + "location": "imgui_internal:494", +>>>>>>> docking_inter "ov_cimguiname": "igImLengthSqr_Vec4", "ret": "float", "signature": "(const ImVec4)", @@ -22000,7 +27205,11 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", +<<<<<<< HEAD "location": "imgui_internal:476", +======= + "location": "imgui_internal:489", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec2Float", "ret": "void", @@ -22032,7 +27241,11 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", +<<<<<<< HEAD "location": "imgui_internal:477", +======= + "location": "imgui_internal:490", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec2Vec2", "ret": "void", @@ -22064,7 +27277,11 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", +<<<<<<< HEAD "location": "imgui_internal:478", +======= + "location": "imgui_internal:491", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec4", "ret": "void", @@ -22098,7 +27315,11 @@ "cimguiname": "igImLineClosestPoint", "defaults": {}, "funcname": "ImLineClosestPoint", +<<<<<<< HEAD "location": "imgui_internal:501", +======= + "location": "imgui_internal:514", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "igImLineClosestPoint", "ret": "void", @@ -22128,7 +27349,11 @@ "cimguiname": "igImLinearSweep", "defaults": {}, "funcname": "ImLinearSweep", +<<<<<<< HEAD "location": "imgui_internal:490", +======= + "location": "imgui_internal:503", +>>>>>>> docking_inter "ov_cimguiname": "igImLinearSweep", "ret": "float", "signature": "(float,float,float)", @@ -22149,7 +27374,11 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", +<<<<<<< HEAD "location": "imgui_internal:449", +======= + "location": "imgui_internal:462", +>>>>>>> docking_inter "ov_cimguiname": "igImLog_Float", "ret": "float", "signature": "(float)", @@ -22168,13 +27397,46 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", +<<<<<<< HEAD "location": "imgui_internal:450", +======= + "location": "imgui_internal:463", +>>>>>>> docking_inter "ov_cimguiname": "igImLog_double", "ret": "double", "signature": "(double)", "stname": "" } ], + "igImLowerBound": [ + { + "args": "(ImGuiStoragePair* in_begin,ImGuiStoragePair* in_end,ImGuiID key)", + "argsT": [ + { + "name": "in_begin", + "type": "ImGuiStoragePair*" + }, + { + "name": "in_end", + "type": "ImGuiStoragePair*" + }, + { + "name": "key", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiStoragePair* in_begin,ImGuiStoragePair* in_end,ImGuiID key)", + "call_args": "(in_begin,in_end,key)", + "cimguiname": "igImLowerBound", + "defaults": {}, + "funcname": "ImLowerBound", + "location": "imgui_internal:753", + "ov_cimguiname": "igImLowerBound", + "ret": "ImGuiStoragePair*", + "signature": "(ImGuiStoragePair*,ImGuiStoragePair*,ImGuiID)", + "stname": "" + } + ], "igImMax": [ { "args": "(ImVec2 *pOut,const ImVec2 lhs,const ImVec2 rhs)", @@ -22197,7 +27459,11 @@ "cimguiname": "igImMax", "defaults": {}, "funcname": "ImMax", +<<<<<<< HEAD "location": "imgui_internal:474", +======= + "location": "imgui_internal:487", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "igImMax", "ret": "void", @@ -22227,7 +27493,11 @@ "cimguiname": "igImMin", "defaults": {}, "funcname": "ImMin", +<<<<<<< HEAD "location": "imgui_internal:473", +======= + "location": "imgui_internal:486", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "igImMin", "ret": "void", @@ -22253,7 +27523,11 @@ "cimguiname": "igImModPositive", "defaults": {}, "funcname": "ImModPositive", +<<<<<<< HEAD "location": "imgui_internal:487", +======= + "location": "imgui_internal:500", +>>>>>>> docking_inter "ov_cimguiname": "igImModPositive", "ret": "int", "signature": "(int,int)", @@ -22282,7 +27556,11 @@ "cimguiname": "igImMul", "defaults": {}, "funcname": "ImMul", +<<<<<<< HEAD "location": "imgui_internal:491", +======= + "location": "imgui_internal:504", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "igImMul", "ret": "void", @@ -22304,7 +27582,11 @@ "cimguiname": "igImParseFormatFindEnd", "defaults": {}, "funcname": "ImParseFormatFindEnd", +<<<<<<< HEAD "location": "imgui_internal:395", +======= + "location": "imgui_internal:408", +>>>>>>> docking_inter "ov_cimguiname": "igImParseFormatFindEnd", "ret": "const char*", "signature": "(const char*)", @@ -22325,7 +27607,11 @@ "cimguiname": "igImParseFormatFindStart", "defaults": {}, "funcname": "ImParseFormatFindStart", +<<<<<<< HEAD "location": "imgui_internal:394", +======= + "location": "imgui_internal:407", +>>>>>>> docking_inter "ov_cimguiname": "igImParseFormatFindStart", "ret": "const char*", "signature": "(const char*)", @@ -22350,7 +27636,11 @@ "cimguiname": "igImParseFormatPrecision", "defaults": {}, "funcname": "ImParseFormatPrecision", +<<<<<<< HEAD "location": "imgui_internal:399", +======= + "location": "imgui_internal:412", +>>>>>>> docking_inter "ov_cimguiname": "igImParseFormatPrecision", "ret": "int", "signature": "(const char*,int)", @@ -22379,7 +27669,11 @@ "cimguiname": "igImParseFormatSanitizeForPrinting", "defaults": {}, "funcname": "ImParseFormatSanitizeForPrinting", +<<<<<<< HEAD "location": "imgui_internal:397", +======= + "location": "imgui_internal:410", +>>>>>>> docking_inter "ov_cimguiname": "igImParseFormatSanitizeForPrinting", "ret": "void", "signature": "(const char*,char*,size_t)", @@ -22408,7 +27702,11 @@ "cimguiname": "igImParseFormatSanitizeForScanning", "defaults": {}, "funcname": "ImParseFormatSanitizeForScanning", +<<<<<<< HEAD "location": "imgui_internal:398", +======= + "location": "imgui_internal:411", +>>>>>>> docking_inter "ov_cimguiname": "igImParseFormatSanitizeForScanning", "ret": "const char*", "signature": "(const char*,char*,size_t)", @@ -22437,7 +27735,11 @@ "cimguiname": "igImParseFormatTrimDecorations", "defaults": {}, "funcname": "ImParseFormatTrimDecorations", +<<<<<<< HEAD "location": "imgui_internal:396", +======= + "location": "imgui_internal:409", +>>>>>>> docking_inter "ov_cimguiname": "igImParseFormatTrimDecorations", "ret": "const char*", "signature": "(const char*,char*,size_t)", @@ -22462,7 +27764,11 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", +<<<<<<< HEAD "location": "imgui_internal:447", +======= + "location": "imgui_internal:460", +>>>>>>> docking_inter "ov_cimguiname": "igImPow_Float", "ret": "float", "signature": "(float,float)", @@ -22485,7 +27791,11 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", +<<<<<<< HEAD "location": "imgui_internal:448", +======= + "location": "imgui_internal:461", +>>>>>>> docking_inter "ov_cimguiname": "igImPow_double", "ret": "double", "signature": "(double,double)", @@ -22520,7 +27830,11 @@ "cimguiname": "igImQsort", "defaults": {}, "funcname": "ImQsort", +<<<<<<< HEAD "location": "imgui_internal:359", +======= + "location": "imgui_internal:372", +>>>>>>> docking_inter "ov_cimguiname": "igImQsort", "ret": "void", "signature": "(void*,size_t,size_t,int(*)(void const*,void const*))", @@ -22553,7 +27867,11 @@ "cimguiname": "igImRotate", "defaults": {}, "funcname": "ImRotate", +<<<<<<< HEAD "location": "imgui_internal:489", +======= + "location": "imgui_internal:502", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "igImRotate", "ret": "void", @@ -22575,7 +27893,11 @@ "cimguiname": "igImRsqrt", "defaults": {}, "funcname": "ImRsqrt", +<<<<<<< HEAD "location": "imgui_internal:459", +======= + "location": "imgui_internal:472", +>>>>>>> docking_inter "ov_cimguiname": "igImRsqrt_Float", "ret": "float", "signature": "(float)", @@ -22594,7 +27916,11 @@ "cimguiname": "igImRsqrt", "defaults": {}, "funcname": "ImRsqrt", +<<<<<<< HEAD "location": "imgui_internal:461", +======= + "location": "imgui_internal:474", +>>>>>>> docking_inter "ov_cimguiname": "igImRsqrt_double", "ret": "double", "signature": "(double)", @@ -22615,7 +27941,11 @@ "cimguiname": "igImSaturate", "defaults": {}, "funcname": "ImSaturate", +<<<<<<< HEAD "location": "imgui_internal:479", +======= + "location": "imgui_internal:492", +>>>>>>> docking_inter "ov_cimguiname": "igImSaturate", "ret": "float", "signature": "(float)", @@ -22636,7 +27966,11 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", +<<<<<<< HEAD "location": "imgui_internal:454", +======= + "location": "imgui_internal:467", +>>>>>>> docking_inter "ov_cimguiname": "igImSign_Float", "ret": "float", "signature": "(float)", @@ -22655,7 +27989,11 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", +<<<<<<< HEAD "location": "imgui_internal:455", +======= + "location": "imgui_internal:468", +>>>>>>> docking_inter "ov_cimguiname": "igImSign_double", "ret": "double", "signature": "(double)", @@ -22676,7 +28014,11 @@ "cimguiname": "igImStrSkipBlank", "defaults": {}, "funcname": "ImStrSkipBlank", +<<<<<<< HEAD "location": "imgui_internal:380", +======= + "location": "imgui_internal:393", +>>>>>>> docking_inter "ov_cimguiname": "igImStrSkipBlank", "ret": "const char*", "signature": "(const char*)", @@ -22697,7 +28039,11 @@ "cimguiname": "igImStrTrimBlanks", "defaults": {}, "funcname": "ImStrTrimBlanks", +<<<<<<< HEAD "location": "imgui_internal:379", +======= + "location": "imgui_internal:392", +>>>>>>> docking_inter "ov_cimguiname": "igImStrTrimBlanks", "ret": "void", "signature": "(char*)", @@ -22722,7 +28068,11 @@ "cimguiname": "igImStrbolW", "defaults": {}, "funcname": "ImStrbolW", +<<<<<<< HEAD "location": "imgui_internal:382", +======= + "location": "imgui_internal:395", +>>>>>>> docking_inter "ov_cimguiname": "igImStrbolW", "ret": "const ImWchar*", "signature": "(const ImWchar*,const ImWchar*)", @@ -22751,7 +28101,11 @@ "cimguiname": "igImStrchrRange", "defaults": {}, "funcname": "ImStrchrRange", +<<<<<<< HEAD "location": "imgui_internal:376", +======= + "location": "imgui_internal:389", +>>>>>>> docking_inter "ov_cimguiname": "igImStrchrRange", "ret": "const char*", "signature": "(const char*,const char*,char)", @@ -22772,7 +28126,11 @@ "cimguiname": "igImStrdup", "defaults": {}, "funcname": "ImStrdup", +<<<<<<< HEAD "location": "imgui_internal:374", +======= + "location": "imgui_internal:387", +>>>>>>> docking_inter "ov_cimguiname": "igImStrdup", "ret": "char*", "signature": "(const char*)", @@ -22801,7 +28159,11 @@ "cimguiname": "igImStrdupcpy", "defaults": {}, "funcname": "ImStrdupcpy", +<<<<<<< HEAD "location": "imgui_internal:375", +======= + "location": "imgui_internal:388", +>>>>>>> docking_inter "ov_cimguiname": "igImStrdupcpy", "ret": "char*", "signature": "(char*,size_t*,const char*)", @@ -22826,7 +28188,11 @@ "cimguiname": "igImStreolRange", "defaults": {}, "funcname": "ImStreolRange", +<<<<<<< HEAD "location": "imgui_internal:377", +======= + "location": "imgui_internal:390", +>>>>>>> docking_inter "ov_cimguiname": "igImStreolRange", "ret": "const char*", "signature": "(const char*,const char*)", @@ -22851,7 +28217,11 @@ "cimguiname": "igImStricmp", "defaults": {}, "funcname": "ImStricmp", +<<<<<<< HEAD "location": "imgui_internal:371", +======= + "location": "imgui_internal:384", +>>>>>>> docking_inter "ov_cimguiname": "igImStricmp", "ret": "int", "signature": "(const char*,const char*)", @@ -22884,7 +28254,11 @@ "cimguiname": "igImStristr", "defaults": {}, "funcname": "ImStristr", +<<<<<<< HEAD "location": "imgui_internal:378", +======= + "location": "imgui_internal:391", +>>>>>>> docking_inter "ov_cimguiname": "igImStristr", "ret": "const char*", "signature": "(const char*,const char*,const char*,const char*)", @@ -22905,7 +28279,11 @@ "cimguiname": "igImStrlenW", "defaults": {}, "funcname": "ImStrlenW", +<<<<<<< HEAD "location": "imgui_internal:381", +======= + "location": "imgui_internal:394", +>>>>>>> docking_inter "ov_cimguiname": "igImStrlenW", "ret": "int", "signature": "(const ImWchar*)", @@ -22934,7 +28312,11 @@ "cimguiname": "igImStrncpy", "defaults": {}, "funcname": "ImStrncpy", +<<<<<<< HEAD "location": "imgui_internal:373", +======= + "location": "imgui_internal:386", +>>>>>>> docking_inter "ov_cimguiname": "igImStrncpy", "ret": "void", "signature": "(char*,const char*,size_t)", @@ -22963,7 +28345,11 @@ "cimguiname": "igImStrnicmp", "defaults": {}, "funcname": "ImStrnicmp", +<<<<<<< HEAD "location": "imgui_internal:372", +======= + "location": "imgui_internal:385", +>>>>>>> docking_inter "ov_cimguiname": "igImStrnicmp", "ret": "int", "signature": "(const char*,const char*,size_t)", @@ -22992,7 +28378,11 @@ "cimguiname": "igImTextCharFromUtf8", "defaults": {}, "funcname": "ImTextCharFromUtf8", +<<<<<<< HEAD "location": "imgui_internal:404", +======= + "location": "imgui_internal:417", +>>>>>>> docking_inter "ov_cimguiname": "igImTextCharFromUtf8", "ret": "int", "signature": "(unsigned int*,const char*,const char*)", @@ -23017,7 +28407,11 @@ "cimguiname": "igImTextCharToUtf8", "defaults": {}, "funcname": "ImTextCharToUtf8", +<<<<<<< HEAD "location": "imgui_internal:402", +======= + "location": "imgui_internal:415", +>>>>>>> docking_inter "ov_cimguiname": "igImTextCharToUtf8", "ret": "const char*", "signature": "(char[5],unsigned int)", @@ -23042,7 +28436,11 @@ "cimguiname": "igImTextCountCharsFromUtf8", "defaults": {}, "funcname": "ImTextCountCharsFromUtf8", +<<<<<<< HEAD "location": "imgui_internal:406", +======= + "location": "imgui_internal:419", +>>>>>>> docking_inter "ov_cimguiname": "igImTextCountCharsFromUtf8", "ret": "int", "signature": "(const char*,const char*)", @@ -23067,7 +28465,11 @@ "cimguiname": "igImTextCountLines", "defaults": {}, "funcname": "ImTextCountLines", +<<<<<<< HEAD "location": "imgui_internal:410", +======= + "location": "imgui_internal:423", +>>>>>>> docking_inter "ov_cimguiname": "igImTextCountLines", "ret": "int", "signature": "(const char*,const char*)", @@ -23092,7 +28494,11 @@ "cimguiname": "igImTextCountUtf8BytesFromChar", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromChar", +<<<<<<< HEAD "location": "imgui_internal:407", +======= + "location": "imgui_internal:420", +>>>>>>> docking_inter "ov_cimguiname": "igImTextCountUtf8BytesFromChar", "ret": "int", "signature": "(const char*,const char*)", @@ -23117,7 +28523,11 @@ "cimguiname": "igImTextCountUtf8BytesFromStr", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromStr", +<<<<<<< HEAD "location": "imgui_internal:408", +======= + "location": "imgui_internal:421", +>>>>>>> docking_inter "ov_cimguiname": "igImTextCountUtf8BytesFromStr", "ret": "int", "signature": "(const ImWchar*,const ImWchar*)", @@ -23142,7 +28552,11 @@ "cimguiname": "igImTextFindPreviousUtf8Codepoint", "defaults": {}, "funcname": "ImTextFindPreviousUtf8Codepoint", +<<<<<<< HEAD "location": "imgui_internal:409", +======= + "location": "imgui_internal:422", +>>>>>>> docking_inter "ov_cimguiname": "igImTextFindPreviousUtf8Codepoint", "ret": "const char*", "signature": "(const char*,const char*)", @@ -23181,7 +28595,11 @@ "in_remaining": "NULL" }, "funcname": "ImTextStrFromUtf8", +<<<<<<< HEAD "location": "imgui_internal:405", +======= + "location": "imgui_internal:418", +>>>>>>> docking_inter "ov_cimguiname": "igImTextStrFromUtf8", "ret": "int", "signature": "(ImWchar*,int,const char*,const char*,const char**)", @@ -23214,7 +28632,11 @@ "cimguiname": "igImTextStrToUtf8", "defaults": {}, "funcname": "ImTextStrToUtf8", +<<<<<<< HEAD "location": "imgui_internal:403", +======= + "location": "imgui_internal:416", +>>>>>>> docking_inter "ov_cimguiname": "igImTextStrToUtf8", "ret": "int", "signature": "(char*,int,const ImWchar*,const ImWchar*)", @@ -23235,7 +28657,11 @@ "cimguiname": "igImToUpper", "defaults": {}, "funcname": "ImToUpper", +<<<<<<< HEAD "location": "imgui_internal:384", +======= + "location": "imgui_internal:397", +>>>>>>> docking_inter "ov_cimguiname": "igImToUpper", "ret": "char", "signature": "(char)", @@ -23264,7 +28690,11 @@ "cimguiname": "igImTriangleArea", "defaults": {}, "funcname": "ImTriangleArea", +<<<<<<< HEAD "location": "imgui_internal:505", +======= + "location": "imgui_internal:518", +>>>>>>> docking_inter "ov_cimguiname": "igImTriangleArea", "ret": "float", "signature": "(const ImVec2,const ImVec2,const ImVec2)", @@ -23312,7 +28742,11 @@ "cimguiname": "igImTriangleBarycentricCoords", "defaults": {}, "funcname": "ImTriangleBarycentricCoords", +<<<<<<< HEAD "location": "imgui_internal:504", +======= + "location": "imgui_internal:517", +>>>>>>> docking_inter "ov_cimguiname": "igImTriangleBarycentricCoords", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,float*,float*,float*)", @@ -23349,7 +28783,11 @@ "cimguiname": "igImTriangleClosestPoint", "defaults": {}, "funcname": "ImTriangleClosestPoint", +<<<<<<< HEAD "location": "imgui_internal:503", +======= + "location": "imgui_internal:516", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "igImTriangleClosestPoint", "ret": "void", @@ -23383,7 +28821,11 @@ "cimguiname": "igImTriangleContainsPoint", "defaults": {}, "funcname": "ImTriangleContainsPoint", +<<<<<<< HEAD "location": "imgui_internal:502", +======= + "location": "imgui_internal:515", +>>>>>>> docking_inter "ov_cimguiname": "igImTriangleContainsPoint", "ret": "bool", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)", @@ -23412,7 +28854,11 @@ "cimguiname": "igImTriangleIsClockwise", "defaults": {}, "funcname": "ImTriangleIsClockwise", +<<<<<<< HEAD "location": "imgui_internal:506", +======= + "location": "imgui_internal:519", +>>>>>>> docking_inter "ov_cimguiname": "igImTriangleIsClockwise", "ret": "bool", "signature": "(const ImVec2,const ImVec2,const ImVec2)", @@ -23433,7 +28879,11 @@ "cimguiname": "igImTrunc", "defaults": {}, "funcname": "ImTrunc", +<<<<<<< HEAD "location": "imgui_internal:483", +======= + "location": "imgui_internal:496", +>>>>>>> docking_inter "ov_cimguiname": "igImTrunc_Float", "ret": "float", "signature": "(float)", @@ -23456,7 +28906,11 @@ "cimguiname": "igImTrunc", "defaults": {}, "funcname": "ImTrunc", +<<<<<<< HEAD "location": "imgui_internal:484", +======= + "location": "imgui_internal:497", +>>>>>>> docking_inter "nonUDT": 1, "ov_cimguiname": "igImTrunc_Vec2", "ret": "void", @@ -23478,7 +28932,11 @@ "cimguiname": "igImUpperPowerOfTwo", "defaults": {}, "funcname": "ImUpperPowerOfTwo", +<<<<<<< HEAD "location": "imgui_internal:368", +======= + "location": "imgui_internal:381", +>>>>>>> docking_inter "ov_cimguiname": "igImUpperPowerOfTwo", "ret": "int", "signature": "(int)", @@ -23524,7 +28982,11 @@ "uv1": "ImVec2(1,1)" }, "funcname": "Image", +<<<<<<< HEAD "location": "imgui:550", +======= + "location": "imgui:560", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igImage", "ret": "void", @@ -23575,7 +29037,11 @@ "uv1": "ImVec2(1,1)" }, "funcname": "ImageButton", +<<<<<<< HEAD "location": "imgui:551", +======= + "location": "imgui:561", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igImageButton", "ret": "bool", @@ -23627,7 +29093,11 @@ "flags": "0" }, "funcname": "ImageButtonEx", +<<<<<<< HEAD "location": "imgui_internal:3424", +======= + "location": "imgui_internal:3756", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igImageButtonEx", "ret": "bool", @@ -23651,7 +29121,11 @@ "indent_w": "0.0f" }, "funcname": "Indent", +<<<<<<< HEAD "location": "imgui:485", +======= + "location": "imgui:495", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIndent", "ret": "void", @@ -23668,7 +29142,11 @@ "cimguiname": "igInitialize", "defaults": {}, "funcname": "Initialize", +<<<<<<< HEAD "location": "imgui_internal:3051", +======= + "location": "imgui_internal:3314", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igInitialize", "ret": "void", @@ -23715,7 +29193,11 @@ "step_fast": "0.0" }, "funcname": "InputDouble", +<<<<<<< HEAD "location": "imgui:622", +======= + "location": "imgui:632", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igInputDouble", "ret": "bool", @@ -23762,7 +29244,11 @@ "step_fast": "0.0f" }, "funcname": "InputFloat", +<<<<<<< HEAD "location": "imgui:614", +======= + "location": "imgui:624", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igInputFloat", "ret": "bool", @@ -23799,7 +29285,11 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat2", +<<<<<<< HEAD "location": "imgui:615", +======= + "location": "imgui:625", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igInputFloat2", "ret": "bool", @@ -23836,7 +29326,11 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat3", +<<<<<<< HEAD "location": "imgui:616", +======= + "location": "imgui:626", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igInputFloat3", "ret": "bool", @@ -23873,7 +29367,11 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat4", +<<<<<<< HEAD "location": "imgui:617", +======= + "location": "imgui:627", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igInputFloat4", "ret": "bool", @@ -23915,7 +29413,11 @@ "step_fast": "100" }, "funcname": "InputInt", +<<<<<<< HEAD "location": "imgui:618", +======= + "location": "imgui:628", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igInputInt", "ret": "bool", @@ -23947,7 +29449,11 @@ "flags": "0" }, "funcname": "InputInt2", +<<<<<<< HEAD "location": "imgui:619", +======= + "location": "imgui:629", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igInputInt2", "ret": "bool", @@ -23979,7 +29485,11 @@ "flags": "0" }, "funcname": "InputInt3", +<<<<<<< HEAD "location": "imgui:620", +======= + "location": "imgui:630", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igInputInt3", "ret": "bool", @@ -24011,7 +29521,11 @@ "flags": "0" }, "funcname": "InputInt4", +<<<<<<< HEAD "location": "imgui:621", +======= + "location": "imgui:631", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igInputInt4", "ret": "bool", @@ -24062,7 +29576,11 @@ "p_step_fast": "NULL" }, "funcname": "InputScalar", +<<<<<<< HEAD "location": "imgui:623", +======= + "location": "imgui:633", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igInputScalar", "ret": "bool", @@ -24117,7 +29635,11 @@ "p_step_fast": "NULL" }, "funcname": "InputScalarN", +<<<<<<< HEAD "location": "imgui:624", +======= + "location": "imgui:634", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igInputScalarN", "ret": "bool", @@ -24163,7 +29685,11 @@ "user_data": "NULL" }, "funcname": "InputText", +<<<<<<< HEAD "location": "imgui:611", +======= + "location": "imgui:621", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igInputText", "ret": "bool", @@ -24185,7 +29711,11 @@ "cimguiname": "igInputTextDeactivateHook", "defaults": {}, "funcname": "InputTextDeactivateHook", +<<<<<<< HEAD "location": "imgui_internal:3471", +======= + "location": "imgui_internal:3803", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igInputTextDeactivateHook", "ret": "void", @@ -24238,7 +29768,11 @@ "user_data": "NULL" }, "funcname": "InputTextEx", +<<<<<<< HEAD "location": "imgui_internal:3470", +======= + "location": "imgui_internal:3802", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igInputTextEx", "ret": "bool", @@ -24289,7 +29823,11 @@ "user_data": "NULL" }, "funcname": "InputTextMultiline", +<<<<<<< HEAD "location": "imgui:612", +======= + "location": "imgui:622", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igInputTextMultiline", "ret": "bool", @@ -24339,7 +29877,11 @@ "user_data": "NULL" }, "funcname": "InputTextWithHint", +<<<<<<< HEAD "location": "imgui:613", +======= + "location": "imgui:623", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igInputTextWithHint", "ret": "bool", @@ -24371,7 +29913,11 @@ "flags": "0" }, "funcname": "InvisibleButton", +<<<<<<< HEAD "location": "imgui:536", +======= + "location": "imgui:546", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igInvisibleButton", "ret": "bool", @@ -24393,7 +29939,11 @@ "cimguiname": "igIsActiveIdUsingNavDir", "defaults": {}, "funcname": "IsActiveIdUsingNavDir", +<<<<<<< HEAD "location": "imgui_internal:3229", +======= + "location": "imgui_internal:3503", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingNavDir", "ret": "bool", @@ -24415,7 +29965,11 @@ "cimguiname": "igIsAliasKey", "defaults": {}, "funcname": "IsAliasKey", +<<<<<<< HEAD "location": "imgui_internal:3206", +======= + "location": "imgui_internal:3480", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsAliasKey", "ret": "bool", @@ -24432,7 +29986,11 @@ "cimguiname": "igIsAnyItemActive", "defaults": {}, "funcname": "IsAnyItemActive", +<<<<<<< HEAD "location": "imgui:893", +======= + "location": "imgui:925", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemActive", "ret": "bool", @@ -24449,7 +30007,11 @@ "cimguiname": "igIsAnyItemFocused", "defaults": {}, "funcname": "IsAnyItemFocused", +<<<<<<< HEAD "location": "imgui:894", +======= + "location": "imgui:926", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemFocused", "ret": "bool", @@ -24466,7 +30028,11 @@ "cimguiname": "igIsAnyItemHovered", "defaults": {}, "funcname": "IsAnyItemHovered", +<<<<<<< HEAD "location": "imgui:892", +======= + "location": "imgui:924", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemHovered", "ret": "bool", @@ -24483,7 +30049,11 @@ "cimguiname": "igIsAnyMouseDown", "defaults": {}, "funcname": "IsAnyMouseDown", +<<<<<<< HEAD "location": "imgui:971", +======= + "location": "imgui:1003", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsAnyMouseDown", "ret": "bool", @@ -24509,7 +30079,11 @@ "cimguiname": "igIsClippedEx", "defaults": {}, "funcname": "IsClippedEx", +<<<<<<< HEAD "location": "imgui_internal:3124", +======= + "location": "imgui_internal:3394", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsClippedEx", "ret": "bool", @@ -24526,7 +30100,11 @@ "cimguiname": "igIsDragDropActive", "defaults": {}, "funcname": "IsDragDropActive", +<<<<<<< HEAD "location": "imgui_internal:3296", +======= + "location": "imgui_internal:3625", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsDragDropActive", "ret": "bool", @@ -24543,7 +30121,11 @@ "cimguiname": "igIsDragDropPayloadBeingAccepted", "defaults": {}, "funcname": "IsDragDropPayloadBeingAccepted", +<<<<<<< HEAD "location": "imgui_internal:3299", +======= + "location": "imgui_internal:3628", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsDragDropPayloadBeingAccepted", "ret": "bool", @@ -24565,7 +30147,11 @@ "cimguiname": "igIsGamepadKey", "defaults": {}, "funcname": "IsGamepadKey", +<<<<<<< HEAD "location": "imgui_internal:3204", +======= + "location": "imgui_internal:3478", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsGamepadKey", "ret": "bool", @@ -24582,7 +30168,11 @@ "cimguiname": "igIsItemActivated", "defaults": {}, "funcname": "IsItemActivated", +<<<<<<< HEAD "location": "imgui:888", +======= + "location": "imgui:920", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsItemActivated", "ret": "bool", @@ -24599,7 +30189,11 @@ "cimguiname": "igIsItemActive", "defaults": {}, "funcname": "IsItemActive", +<<<<<<< HEAD "location": "imgui:883", +======= + "location": "imgui:915", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsItemActive", "ret": "bool", @@ -24623,7 +30217,11 @@ "mouse_button": "0" }, "funcname": "IsItemClicked", +<<<<<<< HEAD "location": "imgui:885", +======= + "location": "imgui:917", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsItemClicked", "ret": "bool", @@ -24640,7 +30238,11 @@ "cimguiname": "igIsItemDeactivated", "defaults": {}, "funcname": "IsItemDeactivated", +<<<<<<< HEAD "location": "imgui:889", +======= + "location": "imgui:921", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivated", "ret": "bool", @@ -24657,7 +30259,11 @@ "cimguiname": "igIsItemDeactivatedAfterEdit", "defaults": {}, "funcname": "IsItemDeactivatedAfterEdit", +<<<<<<< HEAD "location": "imgui:890", +======= + "location": "imgui:922", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivatedAfterEdit", "ret": "bool", @@ -24674,7 +30280,11 @@ "cimguiname": "igIsItemEdited", "defaults": {}, "funcname": "IsItemEdited", +<<<<<<< HEAD "location": "imgui:887", +======= + "location": "imgui:919", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsItemEdited", "ret": "bool", @@ -24691,7 +30301,11 @@ "cimguiname": "igIsItemFocused", "defaults": {}, "funcname": "IsItemFocused", +<<<<<<< HEAD "location": "imgui:884", +======= + "location": "imgui:916", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsItemFocused", "ret": "bool", @@ -24715,7 +30329,11 @@ "flags": "0" }, "funcname": "IsItemHovered", +<<<<<<< HEAD "location": "imgui:882", +======= + "location": "imgui:914", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsItemHovered", "ret": "bool", @@ -24732,7 +30350,11 @@ "cimguiname": "igIsItemToggledOpen", "defaults": {}, "funcname": "IsItemToggledOpen", +<<<<<<< HEAD "location": "imgui:891", +======= + "location": "imgui:923", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledOpen", "ret": "bool", @@ -24749,7 +30371,11 @@ "cimguiname": "igIsItemToggledSelection", "defaults": {}, "funcname": "IsItemToggledSelection", +<<<<<<< HEAD "location": "imgui_internal:3129", +======= + "location": "imgui_internal:3399", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledSelection", "ret": "bool", @@ -24766,7 +30392,11 @@ "cimguiname": "igIsItemVisible", "defaults": {}, "funcname": "IsItemVisible", +<<<<<<< HEAD "location": "imgui:886", +======= + "location": "imgui:918", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsItemVisible", "ret": "bool", @@ -24788,7 +30418,11 @@ "cimguiname": "igIsKeyChordPressed", "defaults": {}, "funcname": "IsKeyChordPressed", +<<<<<<< HEAD "location": "imgui:937", +======= + "location": "imgui:969", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsKeyChordPressed_Nil", "ret": "bool", @@ -24818,7 +30452,11 @@ "owner_id": "0" }, "funcname": "IsKeyChordPressed", +<<<<<<< HEAD "location": "imgui_internal:3258", +======= + "location": "imgui_internal:3532", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsKeyChordPressed_InputFlags", "ret": "bool", @@ -24840,7 +30478,11 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", +<<<<<<< HEAD "location": "imgui:934", +======= + "location": "imgui:966", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown_Nil", "ret": "bool", @@ -24864,7 +30506,11 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", +<<<<<<< HEAD "location": "imgui_internal:3255", +======= + "location": "imgui_internal:3529", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown_ID", "ret": "bool", @@ -24892,7 +30538,11 @@ "repeat": "true" }, "funcname": "IsKeyPressed", +<<<<<<< HEAD "location": "imgui:935", +======= + "location": "imgui:967", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed_Bool", "ret": "bool", @@ -24922,7 +30572,11 @@ "owner_id": "0" }, "funcname": "IsKeyPressed", +<<<<<<< HEAD "location": "imgui_internal:3256", +======= + "location": "imgui_internal:3530", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed_InputFlags", "ret": "bool", @@ -24944,7 +30598,11 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", +<<<<<<< HEAD "location": "imgui:936", +======= + "location": "imgui:968", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased_Nil", "ret": "bool", @@ -24968,7 +30626,11 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", +<<<<<<< HEAD "location": "imgui_internal:3257", +======= + "location": "imgui_internal:3531", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased_ID", "ret": "bool", @@ -24990,7 +30652,11 @@ "cimguiname": "igIsKeyboardKey", "defaults": {}, "funcname": "IsKeyboardKey", +<<<<<<< HEAD "location": "imgui_internal:3203", +======= + "location": "imgui_internal:3477", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsKeyboardKey", "ret": "bool", @@ -25012,7 +30678,11 @@ "cimguiname": "igIsLegacyKey", "defaults": {}, "funcname": "IsLegacyKey", +<<<<<<< HEAD "location": "imgui_internal:3202", +======= + "location": "imgui_internal:3476", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsLegacyKey", "ret": "bool", @@ -25034,7 +30704,11 @@ "cimguiname": "igIsModKey", "defaults": {}, "funcname": "IsModKey", +<<<<<<< HEAD "location": "imgui_internal:3207", +======= + "location": "imgui_internal:3481", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsModKey", "ret": "bool", @@ -25062,7 +30736,11 @@ "repeat": "false" }, "funcname": "IsMouseClicked", +<<<<<<< HEAD "location": "imgui:965", +======= + "location": "imgui:997", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked_Bool", "ret": "bool", @@ -25092,7 +30770,11 @@ "owner_id": "0" }, "funcname": "IsMouseClicked", +<<<<<<< HEAD "location": "imgui_internal:3260", +======= + "location": "imgui_internal:3534", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked_InputFlags", "ret": "bool", @@ -25114,7 +30796,11 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", +<<<<<<< HEAD "location": "imgui:967", +======= + "location": "imgui:999", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked_Nil", "ret": "bool", @@ -25138,7 +30824,11 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", +<<<<<<< HEAD "location": "imgui_internal:3262", +======= + "location": "imgui_internal:3536", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked_ID", "ret": "bool", @@ -25160,7 +30850,11 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", +<<<<<<< HEAD "location": "imgui:964", +======= + "location": "imgui:996", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown_Nil", "ret": "bool", @@ -25184,7 +30878,11 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", +<<<<<<< HEAD "location": "imgui_internal:3259", +======= + "location": "imgui_internal:3533", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown_ID", "ret": "bool", @@ -25212,7 +30910,11 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragPastThreshold", +<<<<<<< HEAD "location": "imgui_internal:3222", +======= + "location": "imgui_internal:3496", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragPastThreshold", "ret": "bool", @@ -25240,7 +30942,11 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragging", +<<<<<<< HEAD "location": "imgui:974", +======= + "location": "imgui:1006", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragging", "ret": "bool", @@ -25272,7 +30978,11 @@ "clip": "true" }, "funcname": "IsMouseHoveringRect", +<<<<<<< HEAD "location": "imgui:969", +======= + "location": "imgui:1001", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsMouseHoveringRect", "ret": "bool", @@ -25294,7 +31004,11 @@ "cimguiname": "igIsMouseKey", "defaults": {}, "funcname": "IsMouseKey", +<<<<<<< HEAD "location": "imgui_internal:3205", +======= + "location": "imgui_internal:3479", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsMouseKey", "ret": "bool", @@ -25318,7 +31032,11 @@ "mouse_pos": "NULL" }, "funcname": "IsMousePosValid", +<<<<<<< HEAD "location": "imgui:970", +======= + "location": "imgui:1002", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsMousePosValid", "ret": "bool", @@ -25340,7 +31058,11 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", +<<<<<<< HEAD "location": "imgui:966", +======= + "location": "imgui:998", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased_Nil", "ret": "bool", @@ -25364,7 +31086,11 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", +<<<<<<< HEAD "location": "imgui_internal:3261", +======= + "location": "imgui_internal:3535", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased_ID", "ret": "bool", @@ -25386,7 +31112,11 @@ "cimguiname": "igIsNamedKey", "defaults": {}, "funcname": "IsNamedKey", +<<<<<<< HEAD "location": "imgui_internal:3200", +======= + "location": "imgui_internal:3474", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsNamedKey", "ret": "bool", @@ -25408,7 +31138,11 @@ "cimguiname": "igIsNamedKeyOrMod", "defaults": {}, "funcname": "IsNamedKeyOrMod", +<<<<<<< HEAD "location": "imgui_internal:3201", +======= + "location": "imgui_internal:3475", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsNamedKeyOrMod", "ret": "bool", @@ -25436,7 +31170,11 @@ "flags": "0" }, "funcname": "IsPopupOpen", +<<<<<<< HEAD "location": "imgui:758", +======= + "location": "imgui:768", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen_Str", "ret": "bool", @@ -25460,7 +31198,11 @@ "cimguiname": "igIsPopupOpen", "defaults": {}, "funcname": "IsPopupOpen", +<<<<<<< HEAD "location": "imgui_internal:3152", +======= + "location": "imgui_internal:3425", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen_ID", "ret": "bool", @@ -25482,7 +31224,11 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", +<<<<<<< HEAD "location": "imgui:911", +======= + "location": "imgui:943", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Nil", "ret": "bool", @@ -25506,7 +31252,11 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", +<<<<<<< HEAD "location": "imgui:912", +======= + "location": "imgui:944", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Vec2", "ret": "bool", @@ -25532,7 +31282,11 @@ "cimguiname": "igIsWindowAbove", "defaults": {}, "funcname": "IsWindowAbove", +<<<<<<< HEAD "location": "imgui_internal:3017", +======= + "location": "imgui_internal:3282", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsWindowAbove", "ret": "bool", @@ -25549,7 +31303,11 @@ "cimguiname": "igIsWindowAppearing", "defaults": {}, "funcname": "IsWindowAppearing", +<<<<<<< HEAD "location": "imgui:377", +======= + "location": "imgui:384", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsWindowAppearing", "ret": "bool", @@ -25579,7 +31337,11 @@ "cimguiname": "igIsWindowChildOf", "defaults": {}, "funcname": "IsWindowChildOf", +<<<<<<< HEAD "location": "imgui_internal:3015", +======= + "location": "imgui_internal:3280", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsWindowChildOf", "ret": "bool", @@ -25596,7 +31358,11 @@ "cimguiname": "igIsWindowCollapsed", "defaults": {}, "funcname": "IsWindowCollapsed", +<<<<<<< HEAD "location": "imgui:378", +======= + "location": "imgui:385", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsWindowCollapsed", "ret": "bool", @@ -25624,7 +31390,11 @@ "flags": "0" }, "funcname": "IsWindowContentHoverable", +<<<<<<< HEAD "location": "imgui_internal:3123", +======= + "location": "imgui_internal:3393", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsWindowContentHoverable", "ret": "bool", @@ -25632,6 +31402,26 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igIsWindowDocked": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igIsWindowDocked", + "defaults": {}, + "funcname": "IsWindowDocked", + "location": "imgui:865", + "namespace": "ImGui", + "ov_cimguiname": "igIsWindowDocked", + "ret": "bool", + "signature": "()", + "stname": "" + } + ], +>>>>>>> docking_inter "igIsWindowFocused": [ { "args": "(ImGuiFocusedFlags flags)", @@ -25648,7 +31438,11 @@ "flags": "0" }, "funcname": "IsWindowFocused", +<<<<<<< HEAD "location": "imgui:379", +======= + "location": "imgui:386", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsWindowFocused", "ret": "bool", @@ -25672,7 +31466,11 @@ "flags": "0" }, "funcname": "IsWindowHovered", +<<<<<<< HEAD "location": "imgui:380", +======= + "location": "imgui:387", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsWindowHovered", "ret": "bool", @@ -25694,7 +31492,11 @@ "cimguiname": "igIsWindowNavFocusable", "defaults": {}, "funcname": "IsWindowNavFocusable", +<<<<<<< HEAD "location": "imgui_internal:3018", +======= + "location": "imgui_internal:3283", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsWindowNavFocusable", "ret": "bool", @@ -25720,7 +31522,11 @@ "cimguiname": "igIsWindowWithinBeginStackOf", "defaults": {}, "funcname": "IsWindowWithinBeginStackOf", +<<<<<<< HEAD "location": "imgui_internal:3016", +======= + "location": "imgui_internal:3281", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igIsWindowWithinBeginStackOf", "ret": "bool", @@ -25757,7 +31563,11 @@ "nav_bb": "NULL" }, "funcname": "ItemAdd", +<<<<<<< HEAD "location": "imgui_internal:3121", +======= + "location": "imgui_internal:3391", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igItemAdd", "ret": "bool", @@ -25787,7 +31597,11 @@ "cimguiname": "igItemHoverable", "defaults": {}, "funcname": "ItemHoverable", +<<<<<<< HEAD "location": "imgui_internal:3122", +======= + "location": "imgui_internal:3392", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igItemHoverable", "ret": "bool", @@ -25815,7 +31629,11 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", +<<<<<<< HEAD "location": "imgui_internal:3119", +======= + "location": "imgui_internal:3389", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igItemSize_Vec2", "ret": "void", @@ -25841,7 +31659,11 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", +<<<<<<< HEAD "location": "imgui_internal:3120", +======= + "location": "imgui_internal:3390", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igItemSize_Rect", "ret": "void", @@ -25863,7 +31685,11 @@ "cimguiname": "igKeepAliveID", "defaults": {}, "funcname": "KeepAliveID", +<<<<<<< HEAD "location": "imgui_internal:3112", +======= + "location": "imgui_internal:3382", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igKeepAliveID", "ret": "void", @@ -25894,7 +31720,11 @@ "defaults": {}, "funcname": "LabelText", "isvararg": "...)", +<<<<<<< HEAD "location": "imgui:525", +======= + "location": "imgui:535", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igLabelText", "ret": "void", @@ -25924,7 +31754,11 @@ "cimguiname": "igLabelTextV", "defaults": {}, "funcname": "LabelTextV", +<<<<<<< HEAD "location": "imgui:526", +======= + "location": "imgui:536", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igLabelTextV", "ret": "void", @@ -25964,7 +31798,11 @@ "height_in_items": "-1" }, "funcname": "ListBox", +<<<<<<< HEAD "location": "imgui:670", +======= + "location": "imgui:680", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igListBox_Str_arr", "ret": "bool", @@ -26008,7 +31846,11 @@ "height_in_items": "-1" }, "funcname": "ListBox", +<<<<<<< HEAD "location": "imgui:671", +======= + "location": "imgui:681", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igListBox_FnStrPtr", "ret": "bool", @@ -26030,7 +31872,11 @@ "cimguiname": "igLoadIniSettingsFromDisk", "defaults": {}, "funcname": "LoadIniSettingsFromDisk", +<<<<<<< HEAD "location": "imgui:990", +======= + "location": "imgui:1022", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromDisk", "ret": "void", @@ -26058,7 +31904,11 @@ "ini_size": "0" }, "funcname": "LoadIniSettingsFromMemory", +<<<<<<< HEAD "location": "imgui:991", +======= + "location": "imgui:1023", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromMemory", "ret": "void", @@ -26080,7 +31930,11 @@ "cimguiname": "igLocalizeGetMsg", "defaults": {}, "funcname": "LocalizeGetMsg", +<<<<<<< HEAD "location": "imgui_internal:3086", +======= + "location": "imgui_internal:3356", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igLocalizeGetMsg", "ret": "const char*", @@ -26106,7 +31960,11 @@ "cimguiname": "igLocalizeRegisterEntries", "defaults": {}, "funcname": "LocalizeRegisterEntries", +<<<<<<< HEAD "location": "imgui_internal:3085", +======= + "location": "imgui_internal:3355", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igLocalizeRegisterEntries", "ret": "void", @@ -26132,7 +31990,11 @@ "cimguiname": "igLogBegin", "defaults": {}, "funcname": "LogBegin", +<<<<<<< HEAD "location": "imgui_internal:3141", +======= + "location": "imgui_internal:3411", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igLogBegin", "ret": "void", @@ -26149,7 +32011,11 @@ "cimguiname": "igLogButtons", "defaults": {}, "funcname": "LogButtons", +<<<<<<< HEAD "location": "imgui:842", +======= + "location": "imgui:873", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igLogButtons", "ret": "void", @@ -26166,7 +32032,11 @@ "cimguiname": "igLogFinish", "defaults": {}, "funcname": "LogFinish", +<<<<<<< HEAD "location": "imgui:841", +======= + "location": "imgui:872", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igLogFinish", "ret": "void", @@ -26198,7 +32068,11 @@ "text_end": "NULL" }, "funcname": "LogRenderedText", +<<<<<<< HEAD "location": "imgui_internal:3143", +======= + "location": "imgui_internal:3413", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igLogRenderedText", "ret": "void", @@ -26224,7 +32098,11 @@ "cimguiname": "igLogSetNextTextDecoration", "defaults": {}, "funcname": "LogSetNextTextDecoration", +<<<<<<< HEAD "location": "imgui_internal:3144", +======= + "location": "imgui_internal:3414", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igLogSetNextTextDecoration", "ret": "void", @@ -26251,7 +32129,11 @@ "defaults": {}, "funcname": "LogText", "isvararg": "...)", +<<<<<<< HEAD "location": "imgui:843", +======= + "location": "imgui:874", +>>>>>>> docking_inter "manual": true, "namespace": "ImGui", "ov_cimguiname": "igLogText", @@ -26278,7 +32160,11 @@ "cimguiname": "igLogTextV", "defaults": {}, "funcname": "LogTextV", +<<<<<<< HEAD "location": "imgui:844", +======= + "location": "imgui:875", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igLogTextV", "ret": "void", @@ -26302,7 +32188,11 @@ "auto_open_depth": "-1" }, "funcname": "LogToBuffer", +<<<<<<< HEAD "location": "imgui_internal:3142", +======= + "location": "imgui_internal:3412", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igLogToBuffer", "ret": "void", @@ -26326,7 +32216,11 @@ "auto_open_depth": "-1" }, "funcname": "LogToClipboard", +<<<<<<< HEAD "location": "imgui:840", +======= + "location": "imgui:871", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igLogToClipboard", "ret": "void", @@ -26355,7 +32249,11 @@ "filename": "NULL" }, "funcname": "LogToFile", +<<<<<<< HEAD "location": "imgui:839", +======= + "location": "imgui:870", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igLogToFile", "ret": "void", @@ -26379,7 +32277,11 @@ "auto_open_depth": "-1" }, "funcname": "LogToTTY", +<<<<<<< HEAD "location": "imgui:838", +======= + "location": "imgui:869", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igLogToTTY", "ret": "void", @@ -26396,7 +32298,11 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", +<<<<<<< HEAD "location": "imgui_internal:3071", +======= + "location": "imgui_internal:3341", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_Nil", "ret": "void", @@ -26416,7 +32322,11 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", +<<<<<<< HEAD "location": "imgui_internal:3072", +======= + "location": "imgui_internal:3342", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_WindowPtr", "ret": "void", @@ -26438,7 +32348,11 @@ "cimguiname": "igMarkItemEdited", "defaults": {}, "funcname": "MarkItemEdited", +<<<<<<< HEAD "location": "imgui_internal:3113", +======= + "location": "imgui_internal:3383", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igMarkItemEdited", "ret": "void", @@ -26460,7 +32374,11 @@ "cimguiname": "igMemAlloc", "defaults": {}, "funcname": "MemAlloc", +<<<<<<< HEAD "location": "imgui:1008", +======= + "location": "imgui:1040", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igMemAlloc", "ret": "void*", @@ -26482,7 +32400,11 @@ "cimguiname": "igMemFree", "defaults": {}, "funcname": "MemFree", +<<<<<<< HEAD "location": "imgui:1009", +======= + "location": "imgui:1041", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igMemFree", "ret": "void", @@ -26520,7 +32442,11 @@ "shortcut": "NULL" }, "funcname": "MenuItem", +<<<<<<< HEAD "location": "imgui:698", +======= + "location": "imgui:708", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igMenuItem_Bool", "ret": "bool", @@ -26554,7 +32480,11 @@ "enabled": "true" }, "funcname": "MenuItem", +<<<<<<< HEAD "location": "imgui:699", +======= + "location": "imgui:709", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igMenuItem_BoolPtr", "ret": "bool", @@ -26596,7 +32526,11 @@ "shortcut": "NULL" }, "funcname": "MenuItemEx", +<<<<<<< HEAD "location": "imgui_internal:3166", +======= + "location": "imgui_internal:3440", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igMenuItemEx", "ret": "bool", @@ -26618,7 +32552,11 @@ "cimguiname": "igMouseButtonToKey", "defaults": {}, "funcname": "MouseButtonToKey", +<<<<<<< HEAD "location": "imgui_internal:3221", +======= + "location": "imgui_internal:3495", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igMouseButtonToKey", "ret": "ImGuiKey", @@ -26640,7 +32578,11 @@ "cimguiname": "igNavClearPreferredPosForAxis", "defaults": {}, "funcname": "NavClearPreferredPosForAxis", +<<<<<<< HEAD "location": "imgui_internal:3185", +======= + "location": "imgui_internal:3459", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igNavClearPreferredPosForAxis", "ret": "void", @@ -26662,7 +32604,11 @@ "cimguiname": "igNavHighlightActivated", "defaults": {}, "funcname": "NavHighlightActivated", +<<<<<<< HEAD "location": "imgui_internal:3184", +======= + "location": "imgui_internal:3458", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igNavHighlightActivated", "ret": "void", @@ -26679,7 +32625,11 @@ "cimguiname": "igNavInitRequestApplyResult", "defaults": {}, "funcname": "NavInitRequestApplyResult", +<<<<<<< HEAD "location": "imgui_internal:3175", +======= + "location": "imgui_internal:3449", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igNavInitRequestApplyResult", "ret": "void", @@ -26705,7 +32655,11 @@ "cimguiname": "igNavInitWindow", "defaults": {}, "funcname": "NavInitWindow", +<<<<<<< HEAD "location": "imgui_internal:3174", +======= + "location": "imgui_internal:3448", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igNavInitWindow", "ret": "void", @@ -26722,7 +32676,11 @@ "cimguiname": "igNavMoveRequestApplyResult", "defaults": {}, "funcname": "NavMoveRequestApplyResult", +<<<<<<< HEAD "location": "imgui_internal:3182", +======= + "location": "imgui_internal:3456", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestApplyResult", "ret": "void", @@ -26739,7 +32697,11 @@ "cimguiname": "igNavMoveRequestButNoResultYet", "defaults": {}, "funcname": "NavMoveRequestButNoResultYet", +<<<<<<< HEAD "location": "imgui_internal:3176", +======= + "location": "imgui_internal:3450", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestButNoResultYet", "ret": "bool", @@ -26756,7 +32718,11 @@ "cimguiname": "igNavMoveRequestCancel", "defaults": {}, "funcname": "NavMoveRequestCancel", +<<<<<<< HEAD "location": "imgui_internal:3181", +======= + "location": "imgui_internal:3455", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestCancel", "ret": "void", @@ -26790,7 +32756,11 @@ "cimguiname": "igNavMoveRequestForward", "defaults": {}, "funcname": "NavMoveRequestForward", +<<<<<<< HEAD "location": "imgui_internal:3178", +======= + "location": "imgui_internal:3452", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestForward", "ret": "void", @@ -26812,7 +32782,11 @@ "cimguiname": "igNavMoveRequestResolveWithLastItem", "defaults": {}, "funcname": "NavMoveRequestResolveWithLastItem", +<<<<<<< HEAD "location": "imgui_internal:3179", +======= + "location": "imgui_internal:3453", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestResolveWithLastItem", "ret": "void", @@ -26838,7 +32812,11 @@ "cimguiname": "igNavMoveRequestResolveWithPastTreeNode", "defaults": {}, "funcname": "NavMoveRequestResolveWithPastTreeNode", +<<<<<<< HEAD "location": "imgui_internal:3180", +======= + "location": "imgui_internal:3454", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestResolveWithPastTreeNode", "ret": "void", @@ -26872,7 +32850,11 @@ "cimguiname": "igNavMoveRequestSubmit", "defaults": {}, "funcname": "NavMoveRequestSubmit", +<<<<<<< HEAD "location": "imgui_internal:3177", +======= + "location": "imgui_internal:3451", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestSubmit", "ret": "void", @@ -26898,7 +32880,11 @@ "cimguiname": "igNavMoveRequestTryWrapping", "defaults": {}, "funcname": "NavMoveRequestTryWrapping", +<<<<<<< HEAD "location": "imgui_internal:3183", +======= + "location": "imgui_internal:3457", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestTryWrapping", "ret": "void", @@ -26915,7 +32901,11 @@ "cimguiname": "igNavRestoreHighlightAfterMove", "defaults": {}, "funcname": "NavRestoreHighlightAfterMove", +<<<<<<< HEAD "location": "imgui_internal:3186", +======= + "location": "imgui_internal:3460", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igNavRestoreHighlightAfterMove", "ret": "void", @@ -26932,7 +32922,11 @@ "cimguiname": "igNavUpdateCurrentWindowIsScrollPushableX", "defaults": {}, "funcname": "NavUpdateCurrentWindowIsScrollPushableX", +<<<<<<< HEAD "location": "imgui_internal:3187", +======= + "location": "imgui_internal:3461", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igNavUpdateCurrentWindowIsScrollPushableX", "ret": "void", @@ -26949,7 +32943,11 @@ "cimguiname": "igNewFrame", "defaults": {}, "funcname": "NewFrame", +<<<<<<< HEAD "location": "imgui:316", +======= + "location": "imgui:323", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igNewFrame", "ret": "void", @@ -26966,7 +32964,11 @@ "cimguiname": "igNewLine", "defaults": {}, "funcname": "NewLine", +<<<<<<< HEAD "location": "imgui:482", +======= + "location": "imgui:492", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igNewLine", "ret": "void", @@ -26983,7 +32985,11 @@ "cimguiname": "igNextColumn", "defaults": {}, "funcname": "NextColumn", +<<<<<<< HEAD "location": "imgui:819", +======= + "location": "imgui:830", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igNextColumn", "ret": "void", @@ -27011,7 +33017,11 @@ "popup_flags": "0" }, "funcname": "OpenPopup", +<<<<<<< HEAD "location": "imgui:740", +======= + "location": "imgui:750", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_Str", "ret": "void", @@ -27037,7 +33047,11 @@ "popup_flags": "0" }, "funcname": "OpenPopup", +<<<<<<< HEAD "location": "imgui:741", +======= + "location": "imgui:751", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_ID", "ret": "void", @@ -27065,7 +33079,11 @@ "popup_flags": "ImGuiPopupFlags_None" }, "funcname": "OpenPopupEx", +<<<<<<< HEAD "location": "imgui_internal:3148", +======= + "location": "imgui_internal:3421", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igOpenPopupEx", "ret": "void", @@ -27094,7 +33112,11 @@ "str_id": "NULL" }, "funcname": "OpenPopupOnItemClick", +<<<<<<< HEAD "location": "imgui:742", +======= + "location": "imgui:752", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igOpenPopupOnItemClick", "ret": "void", @@ -27154,7 +33176,11 @@ "cimguiname": "igPlotEx", "defaults": {}, "funcname": "PlotEx", +<<<<<<< HEAD "location": "imgui_internal:3484", +======= + "location": "imgui_internal:3816", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPlotEx", "ret": "int", @@ -27215,7 +33241,11 @@ "values_offset": "0" }, "funcname": "PlotHistogram", +<<<<<<< HEAD "location": "imgui:677", +======= + "location": "imgui:687", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FloatPtr", "ret": "void", @@ -27275,7 +33305,11 @@ "values_offset": "0" }, "funcname": "PlotHistogram", +<<<<<<< HEAD "location": "imgui:678", +======= + "location": "imgui:688", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FnFloatPtr", "ret": "void", @@ -27336,7 +33370,11 @@ "values_offset": "0" }, "funcname": "PlotLines", +<<<<<<< HEAD "location": "imgui:675", +======= + "location": "imgui:685", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FloatPtr", "ret": "void", @@ -27396,7 +33434,11 @@ "values_offset": "0" }, "funcname": "PlotLines", +<<<<<<< HEAD "location": "imgui:676", +======= + "location": "imgui:686", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FnFloatPtr", "ret": "void", @@ -27413,7 +33455,11 @@ "cimguiname": "igPopButtonRepeat", "defaults": {}, "funcname": "PopButtonRepeat", +<<<<<<< HEAD "location": "imgui:441", +======= + "location": "imgui:451", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPopButtonRepeat", "ret": "void", @@ -27430,7 +33476,11 @@ "cimguiname": "igPopClipRect", "defaults": {}, "funcname": "PopClipRect", +<<<<<<< HEAD "location": "imgui:869", +======= + "location": "imgui:901", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPopClipRect", "ret": "void", @@ -27447,7 +33497,11 @@ "cimguiname": "igPopColumnsBackground", "defaults": {}, "funcname": "PopColumnsBackground", +<<<<<<< HEAD "location": "imgui_internal:3314", +======= + "location": "imgui_internal:3643", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPopColumnsBackground", "ret": "void", @@ -27464,7 +33518,11 @@ "cimguiname": "igPopFocusScope", "defaults": {}, "funcname": "PopFocusScope", +<<<<<<< HEAD "location": "imgui_internal:3292", +======= + "location": "imgui_internal:3621", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPopFocusScope", "ret": "void", @@ -27481,7 +33539,11 @@ "cimguiname": "igPopFont", "defaults": {}, "funcname": "PopFont", +<<<<<<< HEAD "location": "imgui:431", +======= + "location": "imgui:441", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPopFont", "ret": "void", @@ -27498,7 +33560,11 @@ "cimguiname": "igPopID", "defaults": {}, "funcname": "PopID", +<<<<<<< HEAD "location": "imgui:510", +======= + "location": "imgui:520", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPopID", "ret": "void", @@ -27515,7 +33581,11 @@ "cimguiname": "igPopItemFlag", "defaults": {}, "funcname": "PopItemFlag", +<<<<<<< HEAD "location": "imgui_internal:3135", +======= + "location": "imgui_internal:3405", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPopItemFlag", "ret": "void", @@ -27532,7 +33602,11 @@ "cimguiname": "igPopItemWidth", "defaults": {}, "funcname": "PopItemWidth", +<<<<<<< HEAD "location": "imgui:445", +======= + "location": "imgui:455", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPopItemWidth", "ret": "void", @@ -27556,7 +33630,11 @@ "count": "1" }, "funcname": "PopStyleColor", +<<<<<<< HEAD "location": "imgui:434", +======= + "location": "imgui:444", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPopStyleColor", "ret": "void", @@ -27580,7 +33658,11 @@ "count": "1" }, "funcname": "PopStyleVar", +<<<<<<< HEAD "location": "imgui:437", +======= + "location": "imgui:447", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPopStyleVar", "ret": "void", @@ -27597,7 +33679,11 @@ "cimguiname": "igPopTabStop", "defaults": {}, "funcname": "PopTabStop", +<<<<<<< HEAD "location": "imgui:439", +======= + "location": "imgui:449", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPopTabStop", "ret": "void", @@ -27614,7 +33700,11 @@ "cimguiname": "igPopTextWrapPos", "defaults": {}, "funcname": "PopTextWrapPos", +<<<<<<< HEAD "location": "imgui:449", +======= + "location": "imgui:459", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPopTextWrapPos", "ret": "void", @@ -27647,7 +33737,11 @@ "size_arg": "ImVec2(-FLT_MIN,0)" }, "funcname": "ProgressBar", +<<<<<<< HEAD "location": "imgui:543", +======= + "location": "imgui:553", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igProgressBar", "ret": "void", @@ -27669,7 +33763,11 @@ "cimguiname": "igPushButtonRepeat", "defaults": {}, "funcname": "PushButtonRepeat", +<<<<<<< HEAD "location": "imgui:440", +======= + "location": "imgui:450", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushButtonRepeat", "ret": "void", @@ -27699,7 +33797,11 @@ "cimguiname": "igPushClipRect", "defaults": {}, "funcname": "PushClipRect", +<<<<<<< HEAD "location": "imgui:868", +======= + "location": "imgui:900", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushClipRect", "ret": "void", @@ -27721,7 +33823,11 @@ "cimguiname": "igPushColumnClipRect", "defaults": {}, "funcname": "PushColumnClipRect", +<<<<<<< HEAD "location": "imgui_internal:3312", +======= + "location": "imgui_internal:3641", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushColumnClipRect", "ret": "void", @@ -27738,7 +33844,11 @@ "cimguiname": "igPushColumnsBackground", "defaults": {}, "funcname": "PushColumnsBackground", +<<<<<<< HEAD "location": "imgui_internal:3313", +======= + "location": "imgui_internal:3642", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushColumnsBackground", "ret": "void", @@ -27760,7 +33870,11 @@ "cimguiname": "igPushFocusScope", "defaults": {}, "funcname": "PushFocusScope", +<<<<<<< HEAD "location": "imgui_internal:3291", +======= + "location": "imgui_internal:3620", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushFocusScope", "ret": "void", @@ -27782,7 +33896,11 @@ "cimguiname": "igPushFont", "defaults": {}, "funcname": "PushFont", +<<<<<<< HEAD "location": "imgui:430", +======= + "location": "imgui:440", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushFont", "ret": "void", @@ -27804,7 +33922,11 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", +<<<<<<< HEAD "location": "imgui:506", +======= + "location": "imgui:516", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushID_Str", "ret": "void", @@ -27828,7 +33950,11 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", +<<<<<<< HEAD "location": "imgui:507", +======= + "location": "imgui:517", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushID_StrStr", "ret": "void", @@ -27848,7 +33974,11 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", +<<<<<<< HEAD "location": "imgui:508", +======= + "location": "imgui:518", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushID_Ptr", "ret": "void", @@ -27868,7 +33998,11 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", +<<<<<<< HEAD "location": "imgui:509", +======= + "location": "imgui:519", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushID_Int", "ret": "void", @@ -27894,7 +34028,11 @@ "cimguiname": "igPushItemFlag", "defaults": {}, "funcname": "PushItemFlag", +<<<<<<< HEAD "location": "imgui_internal:3134", +======= + "location": "imgui_internal:3404", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushItemFlag", "ret": "void", @@ -27916,7 +34054,11 @@ "cimguiname": "igPushItemWidth", "defaults": {}, "funcname": "PushItemWidth", +<<<<<<< HEAD "location": "imgui:444", +======= + "location": "imgui:454", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushItemWidth", "ret": "void", @@ -27942,7 +34084,11 @@ "cimguiname": "igPushMultiItemsWidths", "defaults": {}, "funcname": "PushMultiItemsWidths", +<<<<<<< HEAD "location": "imgui_internal:3128", +======= + "location": "imgui_internal:3398", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushMultiItemsWidths", "ret": "void", @@ -27964,7 +34110,11 @@ "cimguiname": "igPushOverrideID", "defaults": {}, "funcname": "PushOverrideID", +<<<<<<< HEAD "location": "imgui_internal:3114", +======= + "location": "imgui_internal:3384", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushOverrideID", "ret": "void", @@ -27990,7 +34140,11 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", +<<<<<<< HEAD "location": "imgui:432", +======= + "location": "imgui:442", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor_U32", "ret": "void", @@ -28014,7 +34168,11 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", +<<<<<<< HEAD "location": "imgui:433", +======= + "location": "imgui:443", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor_Vec4", "ret": "void", @@ -28040,7 +34198,11 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", +<<<<<<< HEAD "location": "imgui:435", +======= + "location": "imgui:445", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushStyleVar_Float", "ret": "void", @@ -28064,7 +34226,11 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", +<<<<<<< HEAD "location": "imgui:436", +======= + "location": "imgui:446", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushStyleVar_Vec2", "ret": "void", @@ -28086,7 +34252,11 @@ "cimguiname": "igPushTabStop", "defaults": {}, "funcname": "PushTabStop", +<<<<<<< HEAD "location": "imgui:438", +======= + "location": "imgui:448", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushTabStop", "ret": "void", @@ -28110,7 +34280,11 @@ "wrap_local_pos_x": "0.0f" }, "funcname": "PushTextWrapPos", +<<<<<<< HEAD "location": "imgui:448", +======= + "location": "imgui:458", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igPushTextWrapPos", "ret": "void", @@ -28136,7 +34310,11 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", +<<<<<<< HEAD "location": "imgui:541", +======= + "location": "imgui:551", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRadioButton_Bool", "ret": "bool", @@ -28164,7 +34342,11 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", +<<<<<<< HEAD "location": "imgui:542", +======= + "location": "imgui:552", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRadioButton_IntPtr", "ret": "bool", @@ -28190,7 +34372,11 @@ "cimguiname": "igRemoveContextHook", "defaults": {}, "funcname": "RemoveContextHook", +<<<<<<< HEAD "location": "imgui_internal:3064", +======= + "location": "imgui_internal:3328", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRemoveContextHook", "ret": "void", @@ -28212,7 +34398,11 @@ "cimguiname": "igRemoveSettingsHandler", "defaults": {}, "funcname": "RemoveSettingsHandler", +<<<<<<< HEAD "location": "imgui_internal:3075", +======= + "location": "imgui_internal:3345", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRemoveSettingsHandler", "ret": "void", @@ -28229,7 +34419,11 @@ "cimguiname": "igRender", "defaults": {}, "funcname": "Render", +<<<<<<< HEAD "location": "imgui:318", +======= + "location": "imgui:325", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRender", "ret": "void", @@ -28269,7 +34463,11 @@ "scale": "1.0f" }, "funcname": "RenderArrow", +<<<<<<< HEAD "location": "imgui_internal:3413", +======= + "location": "imgui_internal:3743", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRenderArrow", "ret": "void", @@ -28277,6 +34475,43 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igRenderArrowDockMenu": [ + { + "args": "(ImDrawList* draw_list,ImVec2 p_min,float sz,ImU32 col)", + "argsT": [ + { + "name": "draw_list", + "type": "ImDrawList*" + }, + { + "name": "p_min", + "type": "ImVec2" + }, + { + "name": "sz", + "type": "float" + }, + { + "name": "col", + "type": "ImU32" + } + ], + "argsoriginal": "(ImDrawList* draw_list,ImVec2 p_min,float sz,ImU32 col)", + "call_args": "(draw_list,p_min,sz,col)", + "cimguiname": "igRenderArrowDockMenu", + "defaults": {}, + "funcname": "RenderArrowDockMenu", + "location": "imgui_internal:3747", + "namespace": "ImGui", + "ov_cimguiname": "igRenderArrowDockMenu", + "ret": "void", + "signature": "(ImDrawList*,ImVec2,float,ImU32)", + "stname": "" + } + ], +>>>>>>> docking_inter "igRenderArrowPointingAt": [ { "args": "(ImDrawList* draw_list,ImVec2 pos,ImVec2 half_sz,ImGuiDir direction,ImU32 col)", @@ -28307,7 +34542,11 @@ "cimguiname": "igRenderArrowPointingAt", "defaults": {}, "funcname": "RenderArrowPointingAt", +<<<<<<< HEAD "location": "imgui_internal:3416", +======= + "location": "imgui_internal:3746", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRenderArrowPointingAt", "ret": "void", @@ -28337,7 +34576,11 @@ "cimguiname": "igRenderBullet", "defaults": {}, "funcname": "RenderBullet", +<<<<<<< HEAD "location": "imgui_internal:3414", +======= + "location": "imgui_internal:3744", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRenderBullet", "ret": "void", @@ -28371,7 +34614,11 @@ "cimguiname": "igRenderCheckMark", "defaults": {}, "funcname": "RenderCheckMark", +<<<<<<< HEAD "location": "imgui_internal:3415", +======= + "location": "imgui_internal:3745", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRenderCheckMark", "ret": "void", @@ -28424,7 +34671,11 @@ "rounding": "0.0f" }, "funcname": "RenderColorRectWithAlphaCheckerboard", +<<<<<<< HEAD "location": "imgui_internal:3407", +======= + "location": "imgui_internal:3737", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRenderColorRectWithAlphaCheckerboard", "ret": "void", @@ -28450,7 +34701,11 @@ "cimguiname": "igRenderDragDropTargetRect", "defaults": {}, "funcname": "RenderDragDropTargetRect", +<<<<<<< HEAD "location": "imgui_internal:3300", +======= + "location": "imgui_internal:3629", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRenderDragDropTargetRect", "ret": "void", @@ -28491,7 +34746,11 @@ "rounding": "0.0f" }, "funcname": "RenderFrame", +<<<<<<< HEAD "location": "imgui_internal:3405", +======= + "location": "imgui_internal:3735", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRenderFrame", "ret": "void", @@ -28523,7 +34782,11 @@ "rounding": "0.0f" }, "funcname": "RenderFrameBorder", +<<<<<<< HEAD "location": "imgui_internal:3406", +======= + "location": "imgui_internal:3736", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRenderFrameBorder", "ret": "void", @@ -28565,7 +34828,11 @@ "cimguiname": "igRenderMouseCursor", "defaults": {}, "funcname": "RenderMouseCursor", +<<<<<<< HEAD "location": "imgui_internal:3410", +======= + "location": "imgui_internal:3740", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRenderMouseCursor", "ret": "void", @@ -28597,7 +34864,11 @@ "flags": "ImGuiNavHighlightFlags_None" }, "funcname": "RenderNavHighlight", +<<<<<<< HEAD "location": "imgui_internal:3408", +======= + "location": "imgui_internal:3738", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRenderNavHighlight", "ret": "void", @@ -28605,6 +34876,38 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igRenderPlatformWindowsDefault": [ + { + "args": "(void* platform_render_arg,void* renderer_render_arg)", + "argsT": [ + { + "name": "platform_render_arg", + "type": "void*" + }, + { + "name": "renderer_render_arg", + "type": "void*" + } + ], + "argsoriginal": "(void* platform_render_arg=((void*)0),void* renderer_render_arg=((void*)0))", + "call_args": "(platform_render_arg,renderer_render_arg)", + "cimguiname": "igRenderPlatformWindowsDefault", + "defaults": { + "platform_render_arg": "NULL", + "renderer_render_arg": "NULL" + }, + "funcname": "RenderPlatformWindowsDefault", + "location": "imgui:1048", + "namespace": "ImGui", + "ov_cimguiname": "igRenderPlatformWindowsDefault", + "ret": "void", + "signature": "(void*,void*)", + "stname": "" + } + ], +>>>>>>> docking_inter "igRenderRectFilledRangeH": [ { "args": "(ImDrawList* draw_list,const ImRect rect,ImU32 col,float x_start_norm,float x_end_norm,float rounding)", @@ -28639,7 +34942,11 @@ "cimguiname": "igRenderRectFilledRangeH", "defaults": {}, "funcname": "RenderRectFilledRangeH", +<<<<<<< HEAD "location": "imgui_internal:3417", +======= + "location": "imgui_internal:3748", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledRangeH", "ret": "void", @@ -28677,7 +34984,11 @@ "cimguiname": "igRenderRectFilledWithHole", "defaults": {}, "funcname": "RenderRectFilledWithHole", +<<<<<<< HEAD "location": "imgui_internal:3418", +======= + "location": "imgui_internal:3749", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledWithHole", "ret": "void", @@ -28714,7 +35025,11 @@ "text_end": "NULL" }, "funcname": "RenderText", +<<<<<<< HEAD "location": "imgui_internal:3400", +======= + "location": "imgui_internal:3730", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRenderText", "ret": "void", @@ -28763,7 +35078,11 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClipped", +<<<<<<< HEAD "location": "imgui_internal:3402", +======= + "location": "imgui_internal:3732", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRenderTextClipped", "ret": "void", @@ -28816,7 +35135,11 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClippedEx", +<<<<<<< HEAD "location": "imgui_internal:3403", +======= + "location": "imgui_internal:3733", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRenderTextClippedEx", "ret": "void", @@ -28866,7 +35189,11 @@ "cimguiname": "igRenderTextEllipsis", "defaults": {}, "funcname": "RenderTextEllipsis", +<<<<<<< HEAD "location": "imgui_internal:3404", +======= + "location": "imgui_internal:3734", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRenderTextEllipsis", "ret": "void", @@ -28900,7 +35227,11 @@ "cimguiname": "igRenderTextWrapped", "defaults": {}, "funcname": "RenderTextWrapped", +<<<<<<< HEAD "location": "imgui_internal:3401", +======= + "location": "imgui_internal:3731", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igRenderTextWrapped", "ret": "void", @@ -28924,7 +35255,11 @@ "button": "0" }, "funcname": "ResetMouseDragDelta", +<<<<<<< HEAD "location": "imgui:976", +======= + "location": "imgui:1008", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igResetMouseDragDelta", "ret": "void", @@ -28953,7 +35288,11 @@ "spacing": "-1.0f" }, "funcname": "SameLine", +<<<<<<< HEAD "location": "imgui:481", +======= + "location": "imgui:491", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSameLine", "ret": "void", @@ -28975,7 +35314,11 @@ "cimguiname": "igSaveIniSettingsToDisk", "defaults": {}, "funcname": "SaveIniSettingsToDisk", +<<<<<<< HEAD "location": "imgui:992", +======= + "location": "imgui:1024", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToDisk", "ret": "void", @@ -28999,7 +35342,11 @@ "out_ini_size": "NULL" }, "funcname": "SaveIniSettingsToMemory", +<<<<<<< HEAD "location": "imgui:993", +======= + "location": "imgui:1025", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToMemory", "ret": "const char*", @@ -29007,6 +35354,35 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igScaleWindowsInViewport": [ + { + "args": "(ImGuiViewportP* viewport,float scale)", + "argsT": [ + { + "name": "viewport", + "type": "ImGuiViewportP*" + }, + { + "name": "scale", + "type": "float" + } + ], + "argsoriginal": "(ImGuiViewportP* viewport,float scale)", + "call_args": "(viewport,scale)", + "cimguiname": "igScaleWindowsInViewport", + "defaults": {}, + "funcname": "ScaleWindowsInViewport", + "location": "imgui_internal:3333", + "namespace": "ImGui", + "ov_cimguiname": "igScaleWindowsInViewport", + "ret": "void", + "signature": "(ImGuiViewportP*,float)", + "stname": "" + } + ], +>>>>>>> docking_inter "igScrollToBringRectIntoView": [ { "args": "(ImGuiWindow* window,const ImRect rect)", @@ -29025,7 +35401,11 @@ "cimguiname": "igScrollToBringRectIntoView", "defaults": {}, "funcname": "ScrollToBringRectIntoView", +<<<<<<< HEAD "location": "imgui_internal:3099", +======= + "location": "imgui_internal:3369", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igScrollToBringRectIntoView", "ret": "void", @@ -29049,7 +35429,11 @@ "flags": "0" }, "funcname": "ScrollToItem", +<<<<<<< HEAD "location": "imgui_internal:3095", +======= + "location": "imgui_internal:3365", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igScrollToItem", "ret": "void", @@ -29081,7 +35465,11 @@ "flags": "0" }, "funcname": "ScrollToRect", +<<<<<<< HEAD "location": "imgui_internal:3096", +======= + "location": "imgui_internal:3366", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igScrollToRect", "ret": "void", @@ -29117,7 +35505,11 @@ "flags": "0" }, "funcname": "ScrollToRectEx", +<<<<<<< HEAD "location": "imgui_internal:3097", +======= + "location": "imgui_internal:3367", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igScrollToRectEx", @@ -29140,7 +35532,11 @@ "cimguiname": "igScrollbar", "defaults": {}, "funcname": "Scrollbar", +<<<<<<< HEAD "location": "imgui_internal:3433", +======= + "location": "imgui_internal:3765", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igScrollbar", "ret": "void", @@ -29186,7 +35582,11 @@ "cimguiname": "igScrollbarEx", "defaults": {}, "funcname": "ScrollbarEx", +<<<<<<< HEAD "location": "imgui_internal:3434", +======= + "location": "imgui_internal:3766", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igScrollbarEx", "ret": "bool", @@ -29224,7 +35624,11 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", +<<<<<<< HEAD "location": "imgui:659", +======= + "location": "imgui:669", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSelectable_Bool", "ret": "bool", @@ -29259,7 +35663,11 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", +<<<<<<< HEAD "location": "imgui:660", +======= + "location": "imgui:670", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSelectable_BoolPtr", "ret": "bool", @@ -29276,7 +35684,11 @@ "cimguiname": "igSeparator", "defaults": {}, "funcname": "Separator", +<<<<<<< HEAD "location": "imgui:480", +======= + "location": "imgui:490", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSeparator", "ret": "void", @@ -29304,7 +35716,11 @@ "thickness": "1.0f" }, "funcname": "SeparatorEx", +<<<<<<< HEAD "location": "imgui_internal:3425", +======= + "location": "imgui_internal:3757", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSeparatorEx", "ret": "void", @@ -29326,7 +35742,11 @@ "cimguiname": "igSeparatorText", "defaults": {}, "funcname": "SeparatorText", +<<<<<<< HEAD "location": "imgui:529", +======= + "location": "imgui:539", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSeparatorText", "ret": "void", @@ -29360,7 +35780,11 @@ "cimguiname": "igSeparatorTextEx", "defaults": {}, "funcname": "SeparatorTextEx", +<<<<<<< HEAD "location": "imgui_internal:3426", +======= + "location": "imgui_internal:3758", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSeparatorTextEx", "ret": "void", @@ -29386,7 +35810,11 @@ "cimguiname": "igSetActiveID", "defaults": {}, "funcname": "SetActiveID", +<<<<<<< HEAD "location": "imgui_internal:3107", +======= + "location": "imgui_internal:3377", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetActiveID", "ret": "void", @@ -29403,7 +35831,11 @@ "cimguiname": "igSetActiveIdUsingAllKeyboardKeys", "defaults": {}, "funcname": "SetActiveIdUsingAllKeyboardKeys", +<<<<<<< HEAD "location": "imgui_internal:3228", +======= + "location": "imgui_internal:3502", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetActiveIdUsingAllKeyboardKeys", "ret": "void", @@ -29435,7 +35867,11 @@ "user_data": "NULL" }, "funcname": "SetAllocatorFunctions", +<<<<<<< HEAD "location": "imgui:1006", +======= + "location": "imgui:1038", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetAllocatorFunctions", "ret": "void", @@ -29457,7 +35893,11 @@ "cimguiname": "igSetClipboardText", "defaults": {}, "funcname": "SetClipboardText", +<<<<<<< HEAD "location": "imgui:984", +======= + "location": "imgui:1016", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetClipboardText", "ret": "void", @@ -29479,7 +35919,11 @@ "cimguiname": "igSetColorEditOptions", "defaults": {}, "funcname": "SetColorEditOptions", +<<<<<<< HEAD "location": "imgui:634", +======= + "location": "imgui:644", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetColorEditOptions", "ret": "void", @@ -29505,7 +35949,11 @@ "cimguiname": "igSetColumnOffset", "defaults": {}, "funcname": "SetColumnOffset", +<<<<<<< HEAD "location": "imgui:824", +======= + "location": "imgui:835", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetColumnOffset", "ret": "void", @@ -29531,7 +35979,11 @@ "cimguiname": "igSetColumnWidth", "defaults": {}, "funcname": "SetColumnWidth", +<<<<<<< HEAD "location": "imgui:822", +======= + "location": "imgui:833", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetColumnWidth", "ret": "void", @@ -29553,7 +36005,11 @@ "cimguiname": "igSetCurrentContext", "defaults": {}, "funcname": "SetCurrentContext", +<<<<<<< HEAD "location": "imgui:311", +======= + "location": "imgui:318", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetCurrentContext", "ret": "void", @@ -29575,7 +36031,11 @@ "cimguiname": "igSetCurrentFont", "defaults": {}, "funcname": "SetCurrentFont", +<<<<<<< HEAD "location": "imgui_internal:3043", +======= + "location": "imgui_internal:3308", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetCurrentFont", "ret": "void", @@ -29583,6 +36043,35 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igSetCurrentViewport": [ + { + "args": "(ImGuiWindow* window,ImGuiViewportP* viewport)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "viewport", + "type": "ImGuiViewportP*" + } + ], + "argsoriginal": "(ImGuiWindow* window,ImGuiViewportP* viewport)", + "call_args": "(window,viewport)", + "cimguiname": "igSetCurrentViewport", + "defaults": {}, + "funcname": "SetCurrentViewport", + "location": "imgui_internal:3336", + "namespace": "ImGui", + "ov_cimguiname": "igSetCurrentViewport", + "ret": "void", + "signature": "(ImGuiWindow*,ImGuiViewportP*)", + "stname": "" + } + ], +>>>>>>> docking_inter "igSetCursorPos": [ { "args": "(const ImVec2 local_pos)", @@ -29597,7 +36086,11 @@ "cimguiname": "igSetCursorPos", "defaults": {}, "funcname": "SetCursorPos", +<<<<<<< HEAD "location": "imgui:474", +======= + "location": "imgui:484", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetCursorPos", "ret": "void", @@ -29619,7 +36112,11 @@ "cimguiname": "igSetCursorPosX", "defaults": {}, "funcname": "SetCursorPosX", +<<<<<<< HEAD "location": "imgui:475", +======= + "location": "imgui:485", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosX", "ret": "void", @@ -29641,7 +36138,11 @@ "cimguiname": "igSetCursorPosY", "defaults": {}, "funcname": "SetCursorPosY", +<<<<<<< HEAD "location": "imgui:476", +======= + "location": "imgui:486", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosY", "ret": "void", @@ -29663,7 +36164,11 @@ "cimguiname": "igSetCursorScreenPos", "defaults": {}, "funcname": "SetCursorScreenPos", +<<<<<<< HEAD "location": "imgui:470", +======= + "location": "imgui:480", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetCursorScreenPos", "ret": "void", @@ -29699,7 +36204,11 @@ "cond": "0" }, "funcname": "SetDragDropPayload", +<<<<<<< HEAD "location": "imgui:852", +======= + "location": "imgui:883", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetDragDropPayload", "ret": "bool", @@ -29725,7 +36234,11 @@ "cimguiname": "igSetFocusID", "defaults": {}, "funcname": "SetFocusID", +<<<<<<< HEAD "location": "imgui_internal:3108", +======= + "location": "imgui_internal:3378", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetFocusID", "ret": "void", @@ -29747,7 +36260,11 @@ "cimguiname": "igSetHoveredID", "defaults": {}, "funcname": "SetHoveredID", +<<<<<<< HEAD "location": "imgui_internal:3111", +======= + "location": "imgui_internal:3381", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetHoveredID", "ret": "void", @@ -29764,7 +36281,11 @@ "cimguiname": "igSetItemDefaultFocus", "defaults": {}, "funcname": "SetItemDefaultFocus", +<<<<<<< HEAD "location": "imgui:873", +======= + "location": "imgui:905", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetItemDefaultFocus", "ret": "void", @@ -29792,7 +36313,11 @@ "flags": "0" }, "funcname": "SetItemKeyOwner", +<<<<<<< HEAD "location": "imgui_internal:3245", +======= + "location": "imgui_internal:3519", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetItemKeyOwner", "ret": "void", @@ -29819,7 +36344,11 @@ "defaults": {}, "funcname": "SetItemTooltip", "isvararg": "...)", +<<<<<<< HEAD "location": "imgui:715", +======= + "location": "imgui:725", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetItemTooltip", "ret": "void", @@ -29845,7 +36374,11 @@ "cimguiname": "igSetItemTooltipV", "defaults": {}, "funcname": "SetItemTooltipV", +<<<<<<< HEAD "location": "imgui:716", +======= + "location": "imgui:726", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetItemTooltipV", "ret": "void", @@ -29877,7 +36410,11 @@ "flags": "0" }, "funcname": "SetKeyOwner", +<<<<<<< HEAD "location": "imgui_internal:3243", +======= + "location": "imgui_internal:3517", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetKeyOwner", "ret": "void", @@ -29909,7 +36446,11 @@ "flags": "0" }, "funcname": "SetKeyOwnersForKeyChord", +<<<<<<< HEAD "location": "imgui_internal:3244", +======= + "location": "imgui_internal:3518", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetKeyOwnersForKeyChord", "ret": "void", @@ -29933,7 +36474,11 @@ "offset": "0" }, "funcname": "SetKeyboardFocusHere", +<<<<<<< HEAD "location": "imgui:874", +======= + "location": "imgui:906", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetKeyboardFocusHere", "ret": "void", @@ -29967,7 +36512,11 @@ "cimguiname": "igSetLastItemData", "defaults": {}, "funcname": "SetLastItemData", +<<<<<<< HEAD "location": "imgui_internal:3125", +======= + "location": "imgui_internal:3395", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetLastItemData", "ret": "void", @@ -29989,7 +36538,11 @@ "cimguiname": "igSetMouseCursor", "defaults": {}, "funcname": "SetMouseCursor", +<<<<<<< HEAD "location": "imgui:978", +======= + "location": "imgui:1010", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetMouseCursor", "ret": "void", @@ -30011,7 +36564,11 @@ "cimguiname": "igSetNavFocusScope", "defaults": {}, "funcname": "SetNavFocusScope", +<<<<<<< HEAD "location": "imgui_internal:3190", +======= + "location": "imgui_internal:3464", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNavFocusScope", "ret": "void", @@ -30045,7 +36602,11 @@ "cimguiname": "igSetNavID", "defaults": {}, "funcname": "SetNavID", +<<<<<<< HEAD "location": "imgui_internal:3189", +======= + "location": "imgui_internal:3463", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNavID", "ret": "void", @@ -30067,7 +36628,11 @@ "cimguiname": "igSetNavWindow", "defaults": {}, "funcname": "SetNavWindow", +<<<<<<< HEAD "location": "imgui_internal:3188", +======= + "location": "imgui_internal:3462", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNavWindow", "ret": "void", @@ -30089,7 +36654,11 @@ "cimguiname": "igSetNextFrameWantCaptureKeyboard", "defaults": {}, "funcname": "SetNextFrameWantCaptureKeyboard", +<<<<<<< HEAD "location": "imgui:940", +======= + "location": "imgui:972", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureKeyboard", "ret": "void", @@ -30111,7 +36680,11 @@ "cimguiname": "igSetNextFrameWantCaptureMouse", "defaults": {}, "funcname": "SetNextFrameWantCaptureMouse", +<<<<<<< HEAD "location": "imgui:979", +======= + "location": "imgui:1011", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureMouse", "ret": "void", @@ -30128,7 +36701,11 @@ "cimguiname": "igSetNextItemAllowOverlap", "defaults": {}, "funcname": "SetNextItemAllowOverlap", +<<<<<<< HEAD "location": "imgui:877", +======= + "location": "imgui:909", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNextItemAllowOverlap", "ret": "void", @@ -30156,7 +36733,11 @@ "cond": "0" }, "funcname": "SetNextItemOpen", +<<<<<<< HEAD "location": "imgui:654", +======= + "location": "imgui:664", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNextItemOpen", "ret": "void", @@ -30182,7 +36763,11 @@ "cimguiname": "igSetNextItemRefVal", "defaults": {}, "funcname": "SetNextItemRefVal", +<<<<<<< HEAD "location": "imgui_internal:3476", +======= + "location": "imgui_internal:3808", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNextItemRefVal", "ret": "void", @@ -30204,7 +36789,11 @@ "cimguiname": "igSetNextItemSelectionUserData", "defaults": {}, "funcname": "SetNextItemSelectionUserData", +<<<<<<< HEAD "location": "imgui_internal:3449", +======= + "location": "imgui_internal:3781", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNextItemSelectionUserData", "ret": "void", @@ -30232,7 +36821,11 @@ "flags": "0" }, "funcname": "SetNextItemShortcut", +<<<<<<< HEAD "location": "imgui:958", +======= + "location": "imgui:990", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNextItemShortcut", "ret": "void", @@ -30254,7 +36847,11 @@ "cimguiname": "igSetNextItemWidth", "defaults": {}, "funcname": "SetNextItemWidth", +<<<<<<< HEAD "location": "imgui:446", +======= + "location": "imgui:456", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNextItemWidth", "ret": "void", @@ -30276,7 +36873,11 @@ "cimguiname": "igSetNextWindowBgAlpha", "defaults": {}, "funcname": "SetNextWindowBgAlpha", +<<<<<<< HEAD "location": "imgui:396", +======= + "location": "imgui:405", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowBgAlpha", "ret": "void", @@ -30284,6 +36885,31 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igSetNextWindowClass": [ + { + "args": "(const ImGuiWindowClass* window_class)", + "argsT": [ + { + "name": "window_class", + "type": "const ImGuiWindowClass*" + } + ], + "argsoriginal": "(const ImGuiWindowClass* window_class)", + "call_args": "(window_class)", + "cimguiname": "igSetNextWindowClass", + "defaults": {}, + "funcname": "SetNextWindowClass", + "location": "imgui:863", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowClass", + "ret": "void", + "signature": "(const ImGuiWindowClass*)", + "stname": "" + } + ], +>>>>>>> docking_inter "igSetNextWindowCollapsed": [ { "args": "(bool collapsed,ImGuiCond cond)", @@ -30304,7 +36930,11 @@ "cond": "0" }, "funcname": "SetNextWindowCollapsed", +<<<<<<< HEAD "location": "imgui:393", +======= + "location": "imgui:402", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowCollapsed", "ret": "void", @@ -30326,7 +36956,11 @@ "cimguiname": "igSetNextWindowContentSize", "defaults": {}, "funcname": "SetNextWindowContentSize", +<<<<<<< HEAD "location": "imgui:392", +======= + "location": "imgui:401", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowContentSize", "ret": "void", @@ -30334,6 +36968,37 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igSetNextWindowDockID": [ + { + "args": "(ImGuiID dock_id,ImGuiCond cond)", + "argsT": [ + { + "name": "dock_id", + "type": "ImGuiID" + }, + { + "name": "cond", + "type": "ImGuiCond" + } + ], + "argsoriginal": "(ImGuiID dock_id,ImGuiCond cond=0)", + "call_args": "(dock_id,cond)", + "cimguiname": "igSetNextWindowDockID", + "defaults": { + "cond": "0" + }, + "funcname": "SetNextWindowDockID", + "location": "imgui:862", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowDockID", + "ret": "void", + "signature": "(ImGuiID,ImGuiCond)", + "stname": "" + } + ], +>>>>>>> docking_inter "igSetNextWindowFocus": [ { "args": "()", @@ -30343,7 +37008,11 @@ "cimguiname": "igSetNextWindowFocus", "defaults": {}, "funcname": "SetNextWindowFocus", +<<<<<<< HEAD "location": "imgui:394", +======= + "location": "imgui:403", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowFocus", "ret": "void", @@ -30376,7 +37045,11 @@ "pivot": "ImVec2(0,0)" }, "funcname": "SetNextWindowPos", +<<<<<<< HEAD "location": "imgui:389", +======= + "location": "imgui:398", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowPos", "ret": "void", @@ -30398,7 +37071,11 @@ "cimguiname": "igSetNextWindowRefreshPolicy", "defaults": {}, "funcname": "SetNextWindowRefreshPolicy", +<<<<<<< HEAD "location": "imgui_internal:3040", +======= + "location": "imgui_internal:3305", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowRefreshPolicy", "ret": "void", @@ -30420,7 +37097,11 @@ "cimguiname": "igSetNextWindowScroll", "defaults": {}, "funcname": "SetNextWindowScroll", +<<<<<<< HEAD "location": "imgui:395", +======= + "location": "imgui:404", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowScroll", "ret": "void", @@ -30448,7 +37129,11 @@ "cond": "0" }, "funcname": "SetNextWindowSize", +<<<<<<< HEAD "location": "imgui:390", +======= + "location": "imgui:399", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSize", "ret": "void", @@ -30485,7 +37170,11 @@ "custom_callback_data": "NULL" }, "funcname": "SetNextWindowSizeConstraints", +<<<<<<< HEAD "location": "imgui:391", +======= + "location": "imgui:400", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSizeConstraints", "ret": "void", @@ -30493,6 +37182,31 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igSetNextWindowViewport": [ + { + "args": "(ImGuiID viewport_id)", + "argsT": [ + { + "name": "viewport_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID viewport_id)", + "call_args": "(viewport_id)", + "cimguiname": "igSetNextWindowViewport", + "defaults": {}, + "funcname": "SetNextWindowViewport", + "location": "imgui:406", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowViewport", + "ret": "void", + "signature": "(ImGuiID)", + "stname": "" + } + ], +>>>>>>> docking_inter "igSetScrollFromPosX": [ { "args": "(float local_x,float center_x_ratio)", @@ -30513,7 +37227,11 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollFromPosX", +<<<<<<< HEAD "location": "imgui:426", +======= + "location": "imgui:436", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX_Float", "ret": "void", @@ -30541,7 +37259,11 @@ "cimguiname": "igSetScrollFromPosX", "defaults": {}, "funcname": "SetScrollFromPosX", +<<<<<<< HEAD "location": "imgui_internal:3091", +======= + "location": "imgui_internal:3361", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX_WindowPtr", "ret": "void", @@ -30569,7 +37291,11 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollFromPosY", +<<<<<<< HEAD "location": "imgui:427", +======= + "location": "imgui:437", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY_Float", "ret": "void", @@ -30597,7 +37323,11 @@ "cimguiname": "igSetScrollFromPosY", "defaults": {}, "funcname": "SetScrollFromPosY", +<<<<<<< HEAD "location": "imgui_internal:3092", +======= + "location": "imgui_internal:3362", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY_WindowPtr", "ret": "void", @@ -30621,7 +37351,11 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollHereX", +<<<<<<< HEAD "location": "imgui:424", +======= + "location": "imgui:434", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereX", "ret": "void", @@ -30645,7 +37379,11 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollHereY", +<<<<<<< HEAD "location": "imgui:425", +======= + "location": "imgui:435", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereY", "ret": "void", @@ -30667,7 +37405,11 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", +<<<<<<< HEAD "location": "imgui:420", +======= + "location": "imgui:430", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetScrollX_Float", "ret": "void", @@ -30691,7 +37433,11 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", +<<<<<<< HEAD "location": "imgui_internal:3089", +======= + "location": "imgui_internal:3359", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetScrollX_WindowPtr", "ret": "void", @@ -30713,7 +37459,11 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", +<<<<<<< HEAD "location": "imgui:421", +======= + "location": "imgui:431", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetScrollY_Float", "ret": "void", @@ -30737,7 +37487,11 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", +<<<<<<< HEAD "location": "imgui_internal:3090", +======= + "location": "imgui_internal:3360", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetScrollY_WindowPtr", "ret": "void", @@ -30767,7 +37521,11 @@ "cimguiname": "igSetShortcutRouting", "defaults": {}, "funcname": "SetShortcutRouting", +<<<<<<< HEAD "location": "imgui_internal:3279", +======= + "location": "imgui_internal:3553", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetShortcutRouting", "ret": "bool", @@ -30789,7 +37547,11 @@ "cimguiname": "igSetStateStorage", "defaults": {}, "funcname": "SetStateStorage", +<<<<<<< HEAD "location": "imgui:917", +======= + "location": "imgui:949", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetStateStorage", "ret": "void", @@ -30811,7 +37573,11 @@ "cimguiname": "igSetTabItemClosed", "defaults": {}, "funcname": "SetTabItemClosed", +<<<<<<< HEAD "location": "imgui:834", +======= + "location": "imgui:845", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetTabItemClosed", "ret": "void", @@ -30838,7 +37604,11 @@ "defaults": {}, "funcname": "SetTooltip", "isvararg": "...)", +<<<<<<< HEAD "location": "imgui:707", +======= + "location": "imgui:717", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetTooltip", "ret": "void", @@ -30864,7 +37634,11 @@ "cimguiname": "igSetTooltipV", "defaults": {}, "funcname": "SetTooltipV", +<<<<<<< HEAD "location": "imgui:708", +======= + "location": "imgui:718", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetTooltipV", "ret": "void", @@ -30890,7 +37664,11 @@ "cimguiname": "igSetWindowClipRectBeforeSetChannel", "defaults": {}, "funcname": "SetWindowClipRectBeforeSetChannel", +<<<<<<< HEAD "location": "imgui_internal:3309", +======= + "location": "imgui_internal:3638", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetWindowClipRectBeforeSetChannel", "ret": "void", @@ -30918,7 +37696,11 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", +<<<<<<< HEAD "location": "imgui:399", +======= + "location": "imgui:409", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_Bool", "ret": "void", @@ -30948,7 +37730,11 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", +<<<<<<< HEAD "location": "imgui:404", +======= + "location": "imgui:414", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_Str", "ret": "void", @@ -30978,7 +37764,11 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", +<<<<<<< HEAD "location": "imgui_internal:3021", +======= + "location": "imgui_internal:3286", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_WindowPtr", "ret": "void", @@ -30986,6 +37776,39 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igSetWindowDock": [ + { + "args": "(ImGuiWindow* window,ImGuiID dock_id,ImGuiCond cond)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "dock_id", + "type": "ImGuiID" + }, + { + "name": "cond", + "type": "ImGuiCond" + } + ], + "argsoriginal": "(ImGuiWindow* window,ImGuiID dock_id,ImGuiCond cond)", + "call_args": "(window,dock_id,cond)", + "cimguiname": "igSetWindowDock", + "defaults": {}, + "funcname": "SetWindowDock", + "location": "imgui_internal:3586", + "namespace": "ImGui", + "ov_cimguiname": "igSetWindowDock", + "ret": "void", + "signature": "(ImGuiWindow*,ImGuiID,ImGuiCond)", + "stname": "" + } + ], +>>>>>>> docking_inter "igSetWindowFocus": [ { "args": "()", @@ -30995,7 +37818,11 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", +<<<<<<< HEAD "location": "imgui:400", +======= + "location": "imgui:410", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus_Nil", "ret": "void", @@ -31015,7 +37842,11 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", +<<<<<<< HEAD "location": "imgui:405", +======= + "location": "imgui:415", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus_Str", "ret": "void", @@ -31037,7 +37868,11 @@ "cimguiname": "igSetWindowFontScale", "defaults": {}, "funcname": "SetWindowFontScale", +<<<<<<< HEAD "location": "imgui:401", +======= + "location": "imgui:411", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetWindowFontScale", "ret": "void", @@ -31059,7 +37894,11 @@ "cimguiname": "igSetWindowHiddenAndSkipItemsForCurrentFrame", "defaults": {}, "funcname": "SetWindowHiddenAndSkipItemsForCurrentFrame", +<<<<<<< HEAD "location": "imgui_internal:3023", +======= + "location": "imgui_internal:3288", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetWindowHiddenAndSkipItemsForCurrentFrame", "ret": "void", @@ -31089,7 +37928,11 @@ "cimguiname": "igSetWindowHitTestHole", "defaults": {}, "funcname": "SetWindowHitTestHole", +<<<<<<< HEAD "location": "imgui_internal:3022", +======= + "location": "imgui_internal:3287", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetWindowHitTestHole", "ret": "void", @@ -31115,7 +37958,11 @@ "cimguiname": "igSetWindowParentWindowForFocusRoute", "defaults": {}, "funcname": "SetWindowParentWindowForFocusRoute", +<<<<<<< HEAD "location": "imgui_internal:3024", +======= + "location": "imgui_internal:3289", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetWindowParentWindowForFocusRoute", "ret": "void", @@ -31143,7 +37990,11 @@ "cond": "0" }, "funcname": "SetWindowPos", +<<<<<<< HEAD "location": "imgui:397", +======= + "location": "imgui:407", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_Vec2", "ret": "void", @@ -31173,7 +38024,11 @@ "cond": "0" }, "funcname": "SetWindowPos", +<<<<<<< HEAD "location": "imgui:402", +======= + "location": "imgui:412", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_Str", "ret": "void", @@ -31203,7 +38058,11 @@ "cond": "0" }, "funcname": "SetWindowPos", +<<<<<<< HEAD "location": "imgui_internal:3019", +======= + "location": "imgui_internal:3284", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_WindowPtr", "ret": "void", @@ -31231,7 +38090,11 @@ "cond": "0" }, "funcname": "SetWindowSize", +<<<<<<< HEAD "location": "imgui:398", +======= + "location": "imgui:408", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_Vec2", "ret": "void", @@ -31261,7 +38124,11 @@ "cond": "0" }, "funcname": "SetWindowSize", +<<<<<<< HEAD "location": "imgui:403", +======= + "location": "imgui:413", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_Str", "ret": "void", @@ -31291,7 +38158,11 @@ "cond": "0" }, "funcname": "SetWindowSize", +<<<<<<< HEAD "location": "imgui_internal:3020", +======= + "location": "imgui_internal:3285", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_WindowPtr", "ret": "void", @@ -31317,7 +38188,11 @@ "cimguiname": "igSetWindowViewport", "defaults": {}, "funcname": "SetWindowViewport", +<<<<<<< HEAD "location": "imgui_internal:3068", +======= + "location": "imgui_internal:3335", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSetWindowViewport", "ret": "void", @@ -31363,7 +38238,11 @@ "cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "defaults": {}, "funcname": "ShadeVertsLinearColorGradientKeepAlpha", +<<<<<<< HEAD "location": "imgui_internal:3487", +======= + "location": "imgui_internal:3819", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "ret": "void", @@ -31413,7 +38292,11 @@ "cimguiname": "igShadeVertsLinearUV", "defaults": {}, "funcname": "ShadeVertsLinearUV", +<<<<<<< HEAD "location": "imgui_internal:3488", +======= + "location": "imgui_internal:3820", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearUV", "ret": "void", @@ -31459,7 +38342,11 @@ "cimguiname": "igShadeVertsTransformPos", "defaults": {}, "funcname": "ShadeVertsTransformPos", +<<<<<<< HEAD "location": "imgui_internal:3489", +======= + "location": "imgui_internal:3821", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igShadeVertsTransformPos", "ret": "void", @@ -31487,7 +38374,11 @@ "flags": "0" }, "funcname": "Shortcut", +<<<<<<< HEAD "location": "imgui:957", +======= + "location": "imgui:989", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igShortcut_Nil", "ret": "bool", @@ -31515,7 +38406,11 @@ "cimguiname": "igShortcut", "defaults": {}, "funcname": "Shortcut", +<<<<<<< HEAD "location": "imgui_internal:3278", +======= + "location": "imgui_internal:3552", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igShortcut_ID", "ret": "bool", @@ -31539,7 +38434,11 @@ "p_open": "NULL" }, "funcname": "ShowAboutWindow", +<<<<<<< HEAD "location": "imgui:326", +======= + "location": "imgui:333", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igShowAboutWindow", "ret": "void", @@ -31563,7 +38462,11 @@ "p_open": "NULL" }, "funcname": "ShowDebugLogWindow", +<<<<<<< HEAD "location": "imgui:324", +======= + "location": "imgui:331", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igShowDebugLogWindow", "ret": "void", @@ -31587,7 +38490,11 @@ "p_open": "NULL" }, "funcname": "ShowDemoWindow", +<<<<<<< HEAD "location": "imgui:322", +======= + "location": "imgui:329", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igShowDemoWindow", "ret": "void", @@ -31609,7 +38516,11 @@ "cimguiname": "igShowFontAtlas", "defaults": {}, "funcname": "ShowFontAtlas", +<<<<<<< HEAD "location": "imgui_internal:3515", +======= + "location": "imgui_internal:3847", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igShowFontAtlas", "ret": "void", @@ -31631,7 +38542,11 @@ "cimguiname": "igShowFontSelector", "defaults": {}, "funcname": "ShowFontSelector", +<<<<<<< HEAD "location": "imgui:329", +======= + "location": "imgui:336", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igShowFontSelector", "ret": "void", @@ -31655,7 +38570,11 @@ "p_open": "NULL" }, "funcname": "ShowIDStackToolWindow", +<<<<<<< HEAD "location": "imgui:325", +======= + "location": "imgui:332", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igShowIDStackToolWindow", "ret": "void", @@ -31679,7 +38598,11 @@ "p_open": "NULL" }, "funcname": "ShowMetricsWindow", +<<<<<<< HEAD "location": "imgui:323", +======= + "location": "imgui:330", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igShowMetricsWindow", "ret": "void", @@ -31703,7 +38626,11 @@ "ref": "NULL" }, "funcname": "ShowStyleEditor", +<<<<<<< HEAD "location": "imgui:327", +======= + "location": "imgui:334", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igShowStyleEditor", "ret": "void", @@ -31725,7 +38652,11 @@ "cimguiname": "igShowStyleSelector", "defaults": {}, "funcname": "ShowStyleSelector", +<<<<<<< HEAD "location": "imgui:328", +======= + "location": "imgui:335", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igShowStyleSelector", "ret": "bool", @@ -31742,7 +38673,11 @@ "cimguiname": "igShowUserGuide", "defaults": {}, "funcname": "ShowUserGuide", +<<<<<<< HEAD "location": "imgui:330", +======= + "location": "imgui:337", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igShowUserGuide", "ret": "void", @@ -31772,7 +38707,11 @@ "cimguiname": "igShrinkWidths", "defaults": {}, "funcname": "ShrinkWidths", +<<<<<<< HEAD "location": "imgui_internal:3131", +======= + "location": "imgui_internal:3401", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igShrinkWidths", "ret": "void", @@ -31789,7 +38728,11 @@ "cimguiname": "igShutdown", "defaults": {}, "funcname": "Shutdown", +<<<<<<< HEAD "location": "imgui_internal:3052", +======= + "location": "imgui_internal:3315", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igShutdown", "ret": "void", @@ -31836,7 +38779,11 @@ "v_degrees_min": "-360.0f" }, "funcname": "SliderAngle", +<<<<<<< HEAD "location": "imgui:597", +======= + "location": "imgui:607", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSliderAngle", "ret": "bool", @@ -31890,7 +38837,11 @@ "cimguiname": "igSliderBehavior", "defaults": {}, "funcname": "SliderBehavior", +<<<<<<< HEAD "location": "imgui_internal:3443", +======= + "location": "imgui_internal:3775", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSliderBehavior", "ret": "bool", @@ -31935,7 +38886,11 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat", +<<<<<<< HEAD "location": "imgui:593", +======= + "location": "imgui:603", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSliderFloat", "ret": "bool", @@ -31980,7 +38935,11 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat2", +<<<<<<< HEAD "location": "imgui:594", +======= + "location": "imgui:604", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSliderFloat2", "ret": "bool", @@ -32025,7 +38984,11 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat3", +<<<<<<< HEAD "location": "imgui:595", +======= + "location": "imgui:605", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSliderFloat3", "ret": "bool", @@ -32070,7 +39033,11 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat4", +<<<<<<< HEAD "location": "imgui:596", +======= + "location": "imgui:606", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSliderFloat4", "ret": "bool", @@ -32115,7 +39082,11 @@ "format": "\"%d\"" }, "funcname": "SliderInt", +<<<<<<< HEAD "location": "imgui:598", +======= + "location": "imgui:608", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSliderInt", "ret": "bool", @@ -32160,7 +39131,11 @@ "format": "\"%d\"" }, "funcname": "SliderInt2", +<<<<<<< HEAD "location": "imgui:599", +======= + "location": "imgui:609", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSliderInt2", "ret": "bool", @@ -32205,7 +39180,11 @@ "format": "\"%d\"" }, "funcname": "SliderInt3", +<<<<<<< HEAD "location": "imgui:600", +======= + "location": "imgui:610", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSliderInt3", "ret": "bool", @@ -32250,7 +39229,11 @@ "format": "\"%d\"" }, "funcname": "SliderInt4", +<<<<<<< HEAD "location": "imgui:601", +======= + "location": "imgui:611", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSliderInt4", "ret": "bool", @@ -32299,7 +39282,11 @@ "format": "NULL" }, "funcname": "SliderScalar", +<<<<<<< HEAD "location": "imgui:602", +======= + "location": "imgui:612", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSliderScalar", "ret": "bool", @@ -32352,7 +39339,11 @@ "format": "NULL" }, "funcname": "SliderScalarN", +<<<<<<< HEAD "location": "imgui:603", +======= + "location": "imgui:613", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSliderScalarN", "ret": "bool", @@ -32374,7 +39365,11 @@ "cimguiname": "igSmallButton", "defaults": {}, "funcname": "SmallButton", +<<<<<<< HEAD "location": "imgui:535", +======= + "location": "imgui:545", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSmallButton", "ret": "bool", @@ -32391,7 +39386,11 @@ "cimguiname": "igSpacing", "defaults": {}, "funcname": "Spacing", +<<<<<<< HEAD "location": "imgui:483", +======= + "location": "imgui:493", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSpacing", "ret": "void", @@ -32453,7 +39452,11 @@ "hover_visibility_delay": "0.0f" }, "funcname": "SplitterBehavior", +<<<<<<< HEAD "location": "imgui_internal:3444", +======= + "location": "imgui_internal:3776", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igSplitterBehavior", "ret": "bool", @@ -32475,7 +39478,11 @@ "cimguiname": "igStartMouseMovingWindow", "defaults": {}, "funcname": "StartMouseMovingWindow", +<<<<<<< HEAD "location": "imgui_internal:3058", +======= + "location": "imgui_internal:3321", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindow", "ret": "void", @@ -32483,6 +39490,39 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igStartMouseMovingWindowOrNode": [ + { + "args": "(ImGuiWindow* window,ImGuiDockNode* node,bool undock)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "node", + "type": "ImGuiDockNode*" + }, + { + "name": "undock", + "type": "bool" + } + ], + "argsoriginal": "(ImGuiWindow* window,ImGuiDockNode* node,bool undock)", + "call_args": "(window,node,undock)", + "cimguiname": "igStartMouseMovingWindowOrNode", + "defaults": {}, + "funcname": "StartMouseMovingWindowOrNode", + "location": "imgui_internal:3322", + "namespace": "ImGui", + "ov_cimguiname": "igStartMouseMovingWindowOrNode", + "ret": "void", + "signature": "(ImGuiWindow*,ImGuiDockNode*,bool)", + "stname": "" + } + ], +>>>>>>> docking_inter "igStyleColorsClassic": [ { "args": "(ImGuiStyle* dst)", @@ -32499,7 +39539,11 @@ "dst": "NULL" }, "funcname": "StyleColorsClassic", +<<<<<<< HEAD "location": "imgui:336", +======= + "location": "imgui:343", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igStyleColorsClassic", "ret": "void", @@ -32523,7 +39567,11 @@ "dst": "NULL" }, "funcname": "StyleColorsDark", +<<<<<<< HEAD "location": "imgui:334", +======= + "location": "imgui:341", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igStyleColorsDark", "ret": "void", @@ -32547,7 +39595,11 @@ "dst": "NULL" }, "funcname": "StyleColorsLight", +<<<<<<< HEAD "location": "imgui:335", +======= + "location": "imgui:342", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igStyleColorsLight", "ret": "void", @@ -32555,6 +39607,39 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igTabBarAddTab": [ + { + "args": "(ImGuiTabBar* tab_bar,ImGuiTabItemFlags tab_flags,ImGuiWindow* window)", + "argsT": [ + { + "name": "tab_bar", + "type": "ImGuiTabBar*" + }, + { + "name": "tab_flags", + "type": "ImGuiTabItemFlags" + }, + { + "name": "window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiTabBar* tab_bar,ImGuiTabItemFlags tab_flags,ImGuiWindow* window)", + "call_args": "(tab_bar,tab_flags,window)", + "cimguiname": "igTabBarAddTab", + "defaults": {}, + "funcname": "TabBarAddTab", + "location": "imgui_internal:3714", + "namespace": "ImGui", + "ov_cimguiname": "igTabBarAddTab", + "ret": "void", + "signature": "(ImGuiTabBar*,ImGuiTabItemFlags,ImGuiWindow*)", + "stname": "" + } + ], +>>>>>>> docking_inter "igTabBarCloseTab": [ { "args": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)", @@ -32573,7 +39658,11 @@ "cimguiname": "igTabBarCloseTab", "defaults": {}, "funcname": "TabBarCloseTab", +<<<<<<< HEAD "location": "imgui_internal:3386", +======= + "location": "imgui_internal:3716", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTabBarCloseTab", "ret": "void", @@ -32581,6 +39670,31 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igTabBarFindMostRecentlySelectedTabForActiveWindow": [ + { + "args": "(ImGuiTabBar* tab_bar)", + "argsT": [ + { + "name": "tab_bar", + "type": "ImGuiTabBar*" + } + ], + "argsoriginal": "(ImGuiTabBar* tab_bar)", + "call_args": "(tab_bar)", + "cimguiname": "igTabBarFindMostRecentlySelectedTabForActiveWindow", + "defaults": {}, + "funcname": "TabBarFindMostRecentlySelectedTabForActiveWindow", + "location": "imgui_internal:3710", + "namespace": "ImGui", + "ov_cimguiname": "igTabBarFindMostRecentlySelectedTabForActiveWindow", + "ret": "ImGuiTabItem*", + "signature": "(ImGuiTabBar*)", + "stname": "" + } + ], +>>>>>>> docking_inter "igTabBarFindTabByID": [ { "args": "(ImGuiTabBar* tab_bar,ImGuiID tab_id)", @@ -32599,7 +39713,11 @@ "cimguiname": "igTabBarFindTabByID", "defaults": {}, "funcname": "TabBarFindTabByID", +<<<<<<< HEAD "location": "imgui_internal:3380", +======= + "location": "imgui_internal:3708", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTabBarFindTabByID", "ret": "ImGuiTabItem*", @@ -32625,7 +39743,11 @@ "cimguiname": "igTabBarFindTabByOrder", "defaults": {}, "funcname": "TabBarFindTabByOrder", +<<<<<<< HEAD "location": "imgui_internal:3381", +======= + "location": "imgui_internal:3709", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTabBarFindTabByOrder", "ret": "ImGuiTabItem*", @@ -32647,7 +39769,11 @@ "cimguiname": "igTabBarGetCurrentTab", "defaults": {}, "funcname": "TabBarGetCurrentTab", +<<<<<<< HEAD "location": "imgui_internal:3382", +======= + "location": "imgui_internal:3711", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTabBarGetCurrentTab", "ret": "ImGuiTabItem*", @@ -32673,7 +39799,11 @@ "cimguiname": "igTabBarGetTabName", "defaults": {}, "funcname": "TabBarGetTabName", +<<<<<<< HEAD "location": "imgui_internal:3384", +======= + "location": "imgui_internal:3713", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTabBarGetTabName", "ret": "const char*", @@ -32699,7 +39829,11 @@ "cimguiname": "igTabBarGetTabOrder", "defaults": {}, "funcname": "TabBarGetTabOrder", +<<<<<<< HEAD "location": "imgui_internal:3383", +======= + "location": "imgui_internal:3712", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTabBarGetTabOrder", "ret": "int", @@ -32721,7 +39855,11 @@ "cimguiname": "igTabBarProcessReorder", "defaults": {}, "funcname": "TabBarProcessReorder", +<<<<<<< HEAD "location": "imgui_internal:3390", +======= + "location": "imgui_internal:3720", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTabBarProcessReorder", "ret": "bool", @@ -32747,7 +39885,11 @@ "cimguiname": "igTabBarQueueFocus", "defaults": {}, "funcname": "TabBarQueueFocus", +<<<<<<< HEAD "location": "imgui_internal:3387", +======= + "location": "imgui_internal:3717", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueFocus", "ret": "void", @@ -32777,7 +39919,11 @@ "cimguiname": "igTabBarQueueReorder", "defaults": {}, "funcname": "TabBarQueueReorder", +<<<<<<< HEAD "location": "imgui_internal:3388", +======= + "location": "imgui_internal:3718", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorder", "ret": "void", @@ -32807,7 +39953,11 @@ "cimguiname": "igTabBarQueueReorderFromMousePos", "defaults": {}, "funcname": "TabBarQueueReorderFromMousePos", +<<<<<<< HEAD "location": "imgui_internal:3389", +======= + "location": "imgui_internal:3719", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorderFromMousePos", "ret": "void", @@ -32833,7 +39983,11 @@ "cimguiname": "igTabBarRemoveTab", "defaults": {}, "funcname": "TabBarRemoveTab", +<<<<<<< HEAD "location": "imgui_internal:3385", +======= + "location": "imgui_internal:3715", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTabBarRemoveTab", "ret": "void", @@ -32867,7 +40021,11 @@ "cimguiname": "igTabItemBackground", "defaults": {}, "funcname": "TabItemBackground", +<<<<<<< HEAD "location": "imgui_internal:3394", +======= + "location": "imgui_internal:3724", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTabItemBackground", "ret": "void", @@ -32895,7 +40053,11 @@ "flags": "0" }, "funcname": "TabItemButton", +<<<<<<< HEAD "location": "imgui:833", +======= + "location": "imgui:844", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTabItemButton", "ret": "bool", @@ -32925,7 +40087,11 @@ "cimguiname": "igTabItemCalcSize", "defaults": {}, "funcname": "TabItemCalcSize", +<<<<<<< HEAD "location": "imgui_internal:3392", +======= + "location": "imgui_internal:3722", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize_Str", @@ -32950,7 +40116,11 @@ "cimguiname": "igTabItemCalcSize", "defaults": {}, "funcname": "TabItemCalcSize", +<<<<<<< HEAD "location": "imgui_internal:3393", +======= + "location": "imgui_internal:3723", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize_WindowPtr", @@ -32989,7 +40159,11 @@ "cimguiname": "igTabItemEx", "defaults": {}, "funcname": "TabItemEx", +<<<<<<< HEAD "location": "imgui_internal:3391", +======= + "location": "imgui_internal:3721", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTabItemEx", "ret": "bool", @@ -33047,7 +40221,11 @@ "cimguiname": "igTabItemLabelAndCloseButton", "defaults": {}, "funcname": "TabItemLabelAndCloseButton", +<<<<<<< HEAD "location": "imgui_internal:3395", +======= + "location": "imgui_internal:3725", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTabItemLabelAndCloseButton", "ret": "void", @@ -33064,7 +40242,11 @@ "cimguiname": "igTableAngledHeadersRow", "defaults": {}, "funcname": "TableAngledHeadersRow", +<<<<<<< HEAD "location": "imgui:799", +======= + "location": "imgui:809", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableAngledHeadersRow", "ret": "void", @@ -33102,7 +40284,11 @@ "cimguiname": "igTableAngledHeadersRowEx", "defaults": {}, "funcname": "TableAngledHeadersRowEx", +<<<<<<< HEAD "location": "imgui_internal:3330", +======= + "location": "imgui_internal:3658", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableAngledHeadersRowEx", "ret": "void", @@ -33124,7 +40310,11 @@ "cimguiname": "igTableBeginApplyRequests", "defaults": {}, "funcname": "TableBeginApplyRequests", +<<<<<<< HEAD "location": "imgui_internal:3337", +======= + "location": "imgui_internal:3665", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableBeginApplyRequests", "ret": "void", @@ -33150,7 +40340,11 @@ "cimguiname": "igTableBeginCell", "defaults": {}, "funcname": "TableBeginCell", +<<<<<<< HEAD "location": "imgui_internal:3355", +======= + "location": "imgui_internal:3683", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableBeginCell", "ret": "void", @@ -33172,7 +40366,11 @@ "cimguiname": "igTableBeginContextMenuPopup", "defaults": {}, "funcname": "TableBeginContextMenuPopup", +<<<<<<< HEAD "location": "imgui_internal:3344", +======= + "location": "imgui_internal:3672", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableBeginContextMenuPopup", "ret": "bool", @@ -33198,7 +40396,11 @@ "cimguiname": "igTableBeginInitMemory", "defaults": {}, "funcname": "TableBeginInitMemory", +<<<<<<< HEAD "location": "imgui_internal:3336", +======= + "location": "imgui_internal:3664", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableBeginInitMemory", "ret": "void", @@ -33220,7 +40422,11 @@ "cimguiname": "igTableBeginRow", "defaults": {}, "funcname": "TableBeginRow", +<<<<<<< HEAD "location": "imgui_internal:3353", +======= + "location": "imgui_internal:3681", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableBeginRow", "ret": "void", @@ -33242,7 +40448,11 @@ "cimguiname": "igTableDrawBorders", "defaults": {}, "funcname": "TableDrawBorders", +<<<<<<< HEAD "location": "imgui_internal:3342", +======= + "location": "imgui_internal:3670", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableDrawBorders", "ret": "void", @@ -33268,7 +40478,11 @@ "cimguiname": "igTableDrawDefaultContextMenu", "defaults": {}, "funcname": "TableDrawDefaultContextMenu", +<<<<<<< HEAD "location": "imgui_internal:3343", +======= + "location": "imgui_internal:3671", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableDrawDefaultContextMenu", "ret": "void", @@ -33290,7 +40504,11 @@ "cimguiname": "igTableEndCell", "defaults": {}, "funcname": "TableEndCell", +<<<<<<< HEAD "location": "imgui_internal:3356", +======= + "location": "imgui_internal:3684", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableEndCell", "ret": "void", @@ -33312,7 +40530,11 @@ "cimguiname": "igTableEndRow", "defaults": {}, "funcname": "TableEndRow", +<<<<<<< HEAD "location": "imgui_internal:3354", +======= + "location": "imgui_internal:3682", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableEndRow", "ret": "void", @@ -33334,7 +40556,11 @@ "cimguiname": "igTableFindByID", "defaults": {}, "funcname": "TableFindByID", +<<<<<<< HEAD "location": "imgui_internal:3334", +======= + "location": "imgui_internal:3662", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableFindByID", "ret": "ImGuiTable*", @@ -33360,7 +40586,11 @@ "cimguiname": "igTableFixColumnSortDirection", "defaults": {}, "funcname": "TableFixColumnSortDirection", +<<<<<<< HEAD "location": "imgui_internal:3351", +======= + "location": "imgui_internal:3679", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableFixColumnSortDirection", "ret": "void", @@ -33377,7 +40607,11 @@ "cimguiname": "igTableGcCompactSettings", "defaults": {}, "funcname": "TableGcCompactSettings", +<<<<<<< HEAD "location": "imgui_internal:3366", +======= + "location": "imgui_internal:3694", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactSettings", "ret": "void", @@ -33399,7 +40633,11 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", +<<<<<<< HEAD "location": "imgui_internal:3364", +======= + "location": "imgui_internal:3692", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TablePtr", "ret": "void", @@ -33419,7 +40657,11 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", +<<<<<<< HEAD "location": "imgui_internal:3365", +======= + "location": "imgui_internal:3693", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TableTempDataPtr", "ret": "void", @@ -33441,7 +40683,11 @@ "cimguiname": "igTableGetBoundSettings", "defaults": {}, "funcname": "TableGetBoundSettings", +<<<<<<< HEAD "location": "imgui_internal:3372", +======= + "location": "imgui_internal:3700", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGetBoundSettings", "ret": "ImGuiTableSettings*", @@ -33471,7 +40717,11 @@ "cimguiname": "igTableGetCellBgRect", "defaults": {}, "funcname": "TableGetCellBgRect", +<<<<<<< HEAD "location": "imgui_internal:3357", +======= + "location": "imgui_internal:3685", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTableGetCellBgRect", @@ -33489,7 +40739,11 @@ "cimguiname": "igTableGetColumnCount", "defaults": {}, "funcname": "TableGetColumnCount", +<<<<<<< HEAD "location": "imgui:808", +======= + "location": "imgui:818", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnCount", "ret": "int", @@ -33513,7 +40767,11 @@ "column_n": "-1" }, "funcname": "TableGetColumnFlags", +<<<<<<< HEAD "location": "imgui:812", +======= + "location": "imgui:822", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnFlags", "ret": "ImGuiTableColumnFlags", @@ -33530,7 +40788,11 @@ "cimguiname": "igTableGetColumnIndex", "defaults": {}, "funcname": "TableGetColumnIndex", +<<<<<<< HEAD "location": "imgui:809", +======= + "location": "imgui:819", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnIndex", "ret": "int", @@ -33554,7 +40816,11 @@ "column_n": "-1" }, "funcname": "TableGetColumnName", +<<<<<<< HEAD "location": "imgui:811", +======= + "location": "imgui:821", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName_Int", "ret": "const char*", @@ -33578,7 +40844,11 @@ "cimguiname": "igTableGetColumnName", "defaults": {}, "funcname": "TableGetColumnName", +<<<<<<< HEAD "location": "imgui_internal:3358", +======= + "location": "imgui_internal:3686", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName_TablePtr", "ret": "const char*", @@ -33600,7 +40870,11 @@ "cimguiname": "igTableGetColumnNextSortDirection", "defaults": {}, "funcname": "TableGetColumnNextSortDirection", +<<<<<<< HEAD "location": "imgui_internal:3350", +======= + "location": "imgui_internal:3678", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnNextSortDirection", "ret": "ImGuiSortDirection", @@ -33632,7 +40906,11 @@ "instance_no": "0" }, "funcname": "TableGetColumnResizeID", +<<<<<<< HEAD "location": "imgui_internal:3359", +======= + "location": "imgui_internal:3687", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnResizeID", "ret": "ImGuiID", @@ -33658,7 +40936,11 @@ "cimguiname": "igTableGetColumnWidthAuto", "defaults": {}, "funcname": "TableGetColumnWidthAuto", +<<<<<<< HEAD "location": "imgui_internal:3352", +======= + "location": "imgui_internal:3680", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnWidthAuto", "ret": "float", @@ -33675,7 +40957,11 @@ "cimguiname": "igTableGetHeaderAngledMaxLabelWidth", "defaults": {}, "funcname": "TableGetHeaderAngledMaxLabelWidth", +<<<<<<< HEAD "location": "imgui_internal:3327", +======= + "location": "imgui_internal:3655", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGetHeaderAngledMaxLabelWidth", "ret": "float", @@ -33692,7 +40978,11 @@ "cimguiname": "igTableGetHeaderRowHeight", "defaults": {}, "funcname": "TableGetHeaderRowHeight", +<<<<<<< HEAD "location": "imgui_internal:3326", +======= + "location": "imgui_internal:3654", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGetHeaderRowHeight", "ret": "float", @@ -33709,7 +40999,11 @@ "cimguiname": "igTableGetHoveredColumn", "defaults": {}, "funcname": "TableGetHoveredColumn", +<<<<<<< HEAD "location": "imgui_internal:3324", +======= + "location": "imgui:824", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGetHoveredColumn", "ret": "int", @@ -33726,7 +41020,11 @@ "cimguiname": "igTableGetHoveredRow", "defaults": {}, "funcname": "TableGetHoveredRow", +<<<<<<< HEAD "location": "imgui_internal:3325", +======= + "location": "imgui_internal:3653", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGetHoveredRow", "ret": "int", @@ -33752,7 +41050,11 @@ "cimguiname": "igTableGetInstanceData", "defaults": {}, "funcname": "TableGetInstanceData", +<<<<<<< HEAD "location": "imgui_internal:3346", +======= + "location": "imgui_internal:3674", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGetInstanceData", "ret": "ImGuiTableInstanceData*", @@ -33778,7 +41080,11 @@ "cimguiname": "igTableGetInstanceID", "defaults": {}, "funcname": "TableGetInstanceID", +<<<<<<< HEAD "location": "imgui_internal:3347", +======= + "location": "imgui_internal:3675", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGetInstanceID", "ret": "ImGuiID", @@ -33804,7 +41110,11 @@ "cimguiname": "igTableGetMaxColumnWidth", "defaults": {}, "funcname": "TableGetMaxColumnWidth", +<<<<<<< HEAD "location": "imgui_internal:3360", +======= + "location": "imgui_internal:3688", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGetMaxColumnWidth", "ret": "float", @@ -33821,7 +41131,11 @@ "cimguiname": "igTableGetRowIndex", "defaults": {}, "funcname": "TableGetRowIndex", +<<<<<<< HEAD "location": "imgui:810", +======= + "location": "imgui:820", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGetRowIndex", "ret": "int", @@ -33838,7 +41152,11 @@ "cimguiname": "igTableGetSortSpecs", "defaults": {}, "funcname": "TableGetSortSpecs", +<<<<<<< HEAD "location": "imgui:807", +======= + "location": "imgui:817", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableGetSortSpecs", "ret": "ImGuiTableSortSpecs*", @@ -33860,7 +41178,11 @@ "cimguiname": "igTableHeader", "defaults": {}, "funcname": "TableHeader", +<<<<<<< HEAD "location": "imgui:797", +======= + "location": "imgui:807", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableHeader", "ret": "void", @@ -33877,7 +41199,11 @@ "cimguiname": "igTableHeadersRow", "defaults": {}, "funcname": "TableHeadersRow", +<<<<<<< HEAD "location": "imgui:798", +======= + "location": "imgui:808", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableHeadersRow", "ret": "void", @@ -33899,7 +41225,11 @@ "cimguiname": "igTableLoadSettings", "defaults": {}, "funcname": "TableLoadSettings", +<<<<<<< HEAD "location": "imgui_internal:3369", +======= + "location": "imgui_internal:3697", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableLoadSettings", "ret": "void", @@ -33921,7 +41251,11 @@ "cimguiname": "igTableMergeDrawChannels", "defaults": {}, "funcname": "TableMergeDrawChannels", +<<<<<<< HEAD "location": "imgui_internal:3345", +======= + "location": "imgui_internal:3673", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableMergeDrawChannels", "ret": "void", @@ -33938,7 +41272,11 @@ "cimguiname": "igTableNextColumn", "defaults": {}, "funcname": "TableNextColumn", +<<<<<<< HEAD "location": "imgui:784", +======= + "location": "imgui:794", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableNextColumn", "ret": "bool", @@ -33967,7 +41305,11 @@ "row_flags": "0" }, "funcname": "TableNextRow", +<<<<<<< HEAD "location": "imgui:783", +======= + "location": "imgui:793", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableNextRow", "ret": "void", @@ -33991,7 +41333,11 @@ "column_n": "-1" }, "funcname": "TableOpenContextMenu", +<<<<<<< HEAD "location": "imgui_internal:3321", +======= + "location": "imgui_internal:3650", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableOpenContextMenu", "ret": "void", @@ -34008,7 +41354,11 @@ "cimguiname": "igTablePopBackgroundChannel", "defaults": {}, "funcname": "TablePopBackgroundChannel", +<<<<<<< HEAD "location": "imgui_internal:3329", +======= + "location": "imgui_internal:3657", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTablePopBackgroundChannel", "ret": "void", @@ -34025,7 +41375,11 @@ "cimguiname": "igTablePushBackgroundChannel", "defaults": {}, "funcname": "TablePushBackgroundChannel", +<<<<<<< HEAD "location": "imgui_internal:3328", +======= + "location": "imgui_internal:3656", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTablePushBackgroundChannel", "ret": "void", @@ -34047,7 +41401,11 @@ "cimguiname": "igTableRemove", "defaults": {}, "funcname": "TableRemove", +<<<<<<< HEAD "location": "imgui_internal:3363", +======= + "location": "imgui_internal:3691", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableRemove", "ret": "void", @@ -34069,7 +41427,11 @@ "cimguiname": "igTableResetSettings", "defaults": {}, "funcname": "TableResetSettings", +<<<<<<< HEAD "location": "imgui_internal:3371", +======= + "location": "imgui_internal:3699", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableResetSettings", "ret": "void", @@ -34091,7 +41453,11 @@ "cimguiname": "igTableSaveSettings", "defaults": {}, "funcname": "TableSaveSettings", +<<<<<<< HEAD "location": "imgui_internal:3370", +======= + "location": "imgui_internal:3698", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableSaveSettings", "ret": "void", @@ -34123,7 +41489,11 @@ "column_n": "-1" }, "funcname": "TableSetBgColor", +<<<<<<< HEAD "location": "imgui:814", +======= + "location": "imgui:825", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableSetBgColor", "ret": "void", @@ -34149,7 +41519,11 @@ "cimguiname": "igTableSetColumnEnabled", "defaults": {}, "funcname": "TableSetColumnEnabled", +<<<<<<< HEAD "location": "imgui:813", +======= + "location": "imgui:823", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnEnabled", "ret": "void", @@ -34171,7 +41545,11 @@ "cimguiname": "igTableSetColumnIndex", "defaults": {}, "funcname": "TableSetColumnIndex", +<<<<<<< HEAD "location": "imgui:785", +======= + "location": "imgui:795", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnIndex", "ret": "bool", @@ -34201,7 +41579,11 @@ "cimguiname": "igTableSetColumnSortDirection", "defaults": {}, "funcname": "TableSetColumnSortDirection", +<<<<<<< HEAD "location": "imgui_internal:3323", +======= + "location": "imgui_internal:3652", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnSortDirection", "ret": "void", @@ -34227,7 +41609,11 @@ "cimguiname": "igTableSetColumnWidth", "defaults": {}, "funcname": "TableSetColumnWidth", +<<<<<<< HEAD "location": "imgui_internal:3322", +======= + "location": "imgui_internal:3651", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidth", "ret": "void", @@ -34249,7 +41635,11 @@ "cimguiname": "igTableSetColumnWidthAutoAll", "defaults": {}, "funcname": "TableSetColumnWidthAutoAll", +<<<<<<< HEAD "location": "imgui_internal:3362", +======= + "location": "imgui_internal:3690", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoAll", "ret": "void", @@ -34275,7 +41665,11 @@ "cimguiname": "igTableSetColumnWidthAutoSingle", "defaults": {}, "funcname": "TableSetColumnWidthAutoSingle", +<<<<<<< HEAD "location": "imgui_internal:3361", +======= + "location": "imgui_internal:3689", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoSingle", "ret": "void", @@ -34292,7 +41686,11 @@ "cimguiname": "igTableSettingsAddSettingsHandler", "defaults": {}, "funcname": "TableSettingsAddSettingsHandler", +<<<<<<< HEAD "location": "imgui_internal:3373", +======= + "location": "imgui_internal:3701", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableSettingsAddSettingsHandler", "ret": "void", @@ -34318,7 +41716,11 @@ "cimguiname": "igTableSettingsCreate", "defaults": {}, "funcname": "TableSettingsCreate", +<<<<<<< HEAD "location": "imgui_internal:3374", +======= + "location": "imgui_internal:3702", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableSettingsCreate", "ret": "ImGuiTableSettings*", @@ -34340,7 +41742,11 @@ "cimguiname": "igTableSettingsFindByID", "defaults": {}, "funcname": "TableSettingsFindByID", +<<<<<<< HEAD "location": "imgui_internal:3375", +======= + "location": "imgui_internal:3703", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableSettingsFindByID", "ret": "ImGuiTableSettings*", @@ -34378,7 +41784,11 @@ "user_id": "0" }, "funcname": "TableSetupColumn", +<<<<<<< HEAD "location": "imgui:795", +======= + "location": "imgui:805", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableSetupColumn", "ret": "void", @@ -34400,7 +41810,11 @@ "cimguiname": "igTableSetupDrawChannels", "defaults": {}, "funcname": "TableSetupDrawChannels", +<<<<<<< HEAD "location": "imgui_internal:3338", +======= + "location": "imgui_internal:3666", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableSetupDrawChannels", "ret": "void", @@ -34426,7 +41840,11 @@ "cimguiname": "igTableSetupScrollFreeze", "defaults": {}, "funcname": "TableSetupScrollFreeze", +<<<<<<< HEAD "location": "imgui:796", +======= + "location": "imgui:806", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableSetupScrollFreeze", "ret": "void", @@ -34448,7 +41866,11 @@ "cimguiname": "igTableSortSpecsBuild", "defaults": {}, "funcname": "TableSortSpecsBuild", +<<<<<<< HEAD "location": "imgui_internal:3349", +======= + "location": "imgui_internal:3677", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsBuild", "ret": "void", @@ -34470,7 +41892,11 @@ "cimguiname": "igTableSortSpecsSanitize", "defaults": {}, "funcname": "TableSortSpecsSanitize", +<<<<<<< HEAD "location": "imgui_internal:3348", +======= + "location": "imgui_internal:3676", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsSanitize", "ret": "void", @@ -34492,7 +41918,11 @@ "cimguiname": "igTableUpdateBorders", "defaults": {}, "funcname": "TableUpdateBorders", +<<<<<<< HEAD "location": "imgui_internal:3340", +======= + "location": "imgui_internal:3668", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableUpdateBorders", "ret": "void", @@ -34514,7 +41944,11 @@ "cimguiname": "igTableUpdateColumnsWeightFromWidth", "defaults": {}, "funcname": "TableUpdateColumnsWeightFromWidth", +<<<<<<< HEAD "location": "imgui_internal:3341", +======= + "location": "imgui_internal:3669", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableUpdateColumnsWeightFromWidth", "ret": "void", @@ -34536,7 +41970,11 @@ "cimguiname": "igTableUpdateLayout", "defaults": {}, "funcname": "TableUpdateLayout", +<<<<<<< HEAD "location": "imgui_internal:3339", +======= + "location": "imgui_internal:3667", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTableUpdateLayout", "ret": "void", @@ -34558,7 +41996,11 @@ "cimguiname": "igTeleportMousePos", "defaults": {}, "funcname": "TeleportMousePos", +<<<<<<< HEAD "location": "imgui_internal:3227", +======= + "location": "imgui_internal:3501", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTeleportMousePos", "ret": "void", @@ -34580,7 +42022,11 @@ "cimguiname": "igTempInputIsActive", "defaults": {}, "funcname": "TempInputIsActive", +<<<<<<< HEAD "location": "imgui_internal:3474", +======= + "location": "imgui_internal:3806", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTempInputIsActive", "ret": "bool", @@ -34633,7 +42079,11 @@ "p_clamp_min": "NULL" }, "funcname": "TempInputScalar", +<<<<<<< HEAD "location": "imgui_internal:3473", +======= + "location": "imgui_internal:3805", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTempInputScalar", "ret": "bool", @@ -34675,7 +42125,11 @@ "cimguiname": "igTempInputText", "defaults": {}, "funcname": "TempInputText", +<<<<<<< HEAD "location": "imgui_internal:3472", +======= + "location": "imgui_internal:3804", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTempInputText", "ret": "bool", @@ -34701,7 +42155,11 @@ "cimguiname": "igTestKeyOwner", "defaults": {}, "funcname": "TestKeyOwner", +<<<<<<< HEAD "location": "imgui_internal:3246", +======= + "location": "imgui_internal:3520", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTestKeyOwner", "ret": "bool", @@ -34727,7 +42185,11 @@ "cimguiname": "igTestShortcutRouting", "defaults": {}, "funcname": "TestShortcutRouting", +<<<<<<< HEAD "location": "imgui_internal:3280", +======= + "location": "imgui_internal:3554", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTestShortcutRouting", "ret": "bool", @@ -34754,7 +42216,11 @@ "defaults": {}, "funcname": "Text", "isvararg": "...)", +<<<<<<< HEAD "location": "imgui:517", +======= + "location": "imgui:527", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igText", "ret": "void", @@ -34785,7 +42251,11 @@ "defaults": {}, "funcname": "TextColored", "isvararg": "...)", +<<<<<<< HEAD "location": "imgui:519", +======= + "location": "imgui:529", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTextColored", "ret": "void", @@ -34815,7 +42285,11 @@ "cimguiname": "igTextColoredV", "defaults": {}, "funcname": "TextColoredV", +<<<<<<< HEAD "location": "imgui:520", +======= + "location": "imgui:530", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTextColoredV", "ret": "void", @@ -34842,7 +42316,11 @@ "defaults": {}, "funcname": "TextDisabled", "isvararg": "...)", +<<<<<<< HEAD "location": "imgui:521", +======= + "location": "imgui:531", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTextDisabled", "ret": "void", @@ -34868,7 +42346,11 @@ "cimguiname": "igTextDisabledV", "defaults": {}, "funcname": "TextDisabledV", +<<<<<<< HEAD "location": "imgui:522", +======= + "location": "imgui:532", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTextDisabledV", "ret": "void", @@ -34901,7 +42383,11 @@ "text_end": "NULL" }, "funcname": "TextEx", +<<<<<<< HEAD "location": "imgui_internal:3421", +======= + "location": "imgui_internal:3753", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTextEx", "ret": "void", @@ -34929,7 +42415,11 @@ "text_end": "NULL" }, "funcname": "TextUnformatted", +<<<<<<< HEAD "location": "imgui:516", +======= + "location": "imgui:526", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTextUnformatted", "ret": "void", @@ -34955,7 +42445,11 @@ "cimguiname": "igTextV", "defaults": {}, "funcname": "TextV", +<<<<<<< HEAD "location": "imgui:518", +======= + "location": "imgui:528", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTextV", "ret": "void", @@ -34982,7 +42476,11 @@ "defaults": {}, "funcname": "TextWrapped", "isvararg": "...)", +<<<<<<< HEAD "location": "imgui:523", +======= + "location": "imgui:533", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTextWrapped", "ret": "void", @@ -35008,7 +42506,11 @@ "cimguiname": "igTextWrappedV", "defaults": {}, "funcname": "TextWrappedV", +<<<<<<< HEAD "location": "imgui:524", +======= + "location": "imgui:534", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTextWrappedV", "ret": "void", @@ -35016,6 +42518,39 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igTranslateWindowsInViewport": [ + { + "args": "(ImGuiViewportP* viewport,const ImVec2 old_pos,const ImVec2 new_pos)", + "argsT": [ + { + "name": "viewport", + "type": "ImGuiViewportP*" + }, + { + "name": "old_pos", + "type": "const ImVec2" + }, + { + "name": "new_pos", + "type": "const ImVec2" + } + ], + "argsoriginal": "(ImGuiViewportP* viewport,const ImVec2& old_pos,const ImVec2& new_pos)", + "call_args": "(viewport,old_pos,new_pos)", + "cimguiname": "igTranslateWindowsInViewport", + "defaults": {}, + "funcname": "TranslateWindowsInViewport", + "location": "imgui_internal:3332", + "namespace": "ImGui", + "ov_cimguiname": "igTranslateWindowsInViewport", + "ret": "void", + "signature": "(ImGuiViewportP*,const ImVec2,const ImVec2)", + "stname": "" + } + ], +>>>>>>> docking_inter "igTreeNode": [ { "args": "(const char* label)", @@ -35030,7 +42565,11 @@ "cimguiname": "igTreeNode", "defaults": {}, "funcname": "TreeNode", +<<<<<<< HEAD "location": "imgui:638", +======= + "location": "imgui:648", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Str", "ret": "bool", @@ -35059,7 +42598,11 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", +<<<<<<< HEAD "location": "imgui:639", +======= + "location": "imgui:649", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTreeNode_StrStr", "ret": "bool", @@ -35088,7 +42631,11 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", +<<<<<<< HEAD "location": "imgui:640", +======= + "location": "imgui:650", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Ptr", "ret": "bool", @@ -35124,7 +42671,11 @@ "label_end": "NULL" }, "funcname": "TreeNodeBehavior", +<<<<<<< HEAD "location": "imgui_internal:3445", +======= + "location": "imgui_internal:3777", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTreeNodeBehavior", "ret": "bool", @@ -35152,7 +42703,11 @@ "flags": "0" }, "funcname": "TreeNodeEx", +<<<<<<< HEAD "location": "imgui:643", +======= + "location": "imgui:653", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Str", "ret": "bool", @@ -35185,7 +42740,11 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", +<<<<<<< HEAD "location": "imgui:644", +======= + "location": "imgui:654", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_StrStr", "ret": "bool", @@ -35218,7 +42777,11 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", +<<<<<<< HEAD "location": "imgui:645", +======= + "location": "imgui:655", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Ptr", "ret": "bool", @@ -35252,7 +42815,11 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", +<<<<<<< HEAD "location": "imgui:646", +======= + "location": "imgui:656", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Str", "ret": "bool", @@ -35284,7 +42851,11 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", +<<<<<<< HEAD "location": "imgui:647", +======= + "location": "imgui:657", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Ptr", "ret": "bool", @@ -35310,7 +42881,11 @@ "cimguiname": "igTreeNodeSetOpen", "defaults": {}, "funcname": "TreeNodeSetOpen", +<<<<<<< HEAD "location": "imgui_internal:3447", +======= + "location": "imgui_internal:3779", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTreeNodeSetOpen", "ret": "void", @@ -35336,7 +42911,11 @@ "cimguiname": "igTreeNodeUpdateNextOpen", "defaults": {}, "funcname": "TreeNodeUpdateNextOpen", +<<<<<<< HEAD "location": "imgui_internal:3448", +======= + "location": "imgui_internal:3780", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTreeNodeUpdateNextOpen", "ret": "bool", @@ -35366,7 +42945,11 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", +<<<<<<< HEAD "location": "imgui:641", +======= + "location": "imgui:651", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Str", "ret": "bool", @@ -35394,7 +42977,11 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", +<<<<<<< HEAD "location": "imgui:642", +======= + "location": "imgui:652", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Ptr", "ret": "bool", @@ -35411,7 +42998,11 @@ "cimguiname": "igTreePop", "defaults": {}, "funcname": "TreePop", +<<<<<<< HEAD "location": "imgui:650", +======= + "location": "imgui:660", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTreePop", "ret": "void", @@ -35433,7 +43024,11 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", +<<<<<<< HEAD "location": "imgui:648", +======= + "location": "imgui:658", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTreePush_Str", "ret": "void", @@ -35453,7 +43048,11 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", +<<<<<<< HEAD "location": "imgui:649", +======= + "location": "imgui:659", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTreePush_Ptr", "ret": "void", @@ -35475,7 +43074,11 @@ "cimguiname": "igTreePushOverrideID", "defaults": {}, "funcname": "TreePushOverrideID", +<<<<<<< HEAD "location": "imgui_internal:3446", +======= + "location": "imgui_internal:3778", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTreePushOverrideID", "ret": "void", @@ -35511,7 +43114,11 @@ "cimguiname": "igTypingSelectFindBestLeadingMatch", "defaults": {}, "funcname": "TypingSelectFindBestLeadingMatch", +<<<<<<< HEAD "location": "imgui_internal:3306", +======= + "location": "imgui_internal:3635", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTypingSelectFindBestLeadingMatch", "ret": "int", @@ -35551,7 +43158,11 @@ "cimguiname": "igTypingSelectFindMatch", "defaults": {}, "funcname": "TypingSelectFindMatch", +<<<<<<< HEAD "location": "imgui_internal:3304", +======= + "location": "imgui_internal:3633", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTypingSelectFindMatch", "ret": "int", @@ -35591,7 +43202,11 @@ "cimguiname": "igTypingSelectFindNextSingleCharMatch", "defaults": {}, "funcname": "TypingSelectFindNextSingleCharMatch", +<<<<<<< HEAD "location": "imgui_internal:3305", +======= + "location": "imgui_internal:3634", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igTypingSelectFindNextSingleCharMatch", "ret": "int", @@ -35615,7 +43230,11 @@ "indent_w": "0.0f" }, "funcname": "Unindent", +<<<<<<< HEAD "location": "imgui:486", +======= + "location": "imgui:496", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igUnindent", "ret": "void", @@ -35632,7 +43251,11 @@ "cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "defaults": {}, "funcname": "UpdateHoveredWindowAndCaptureFlags", +<<<<<<< HEAD "location": "imgui_internal:3056", +======= + "location": "imgui_internal:3319", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "ret": "void", @@ -35654,7 +43277,11 @@ "cimguiname": "igUpdateInputEvents", "defaults": {}, "funcname": "UpdateInputEvents", +<<<<<<< HEAD "location": "imgui_internal:3055", +======= + "location": "imgui_internal:3318", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igUpdateInputEvents", "ret": "void", @@ -35671,7 +43298,11 @@ "cimguiname": "igUpdateMouseMovingWindowEndFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowEndFrame", +<<<<<<< HEAD "location": "imgui_internal:3060", +======= + "location": "imgui_internal:3324", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowEndFrame", "ret": "void", @@ -35688,7 +43319,11 @@ "cimguiname": "igUpdateMouseMovingWindowNewFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowNewFrame", +<<<<<<< HEAD "location": "imgui_internal:3059", +======= + "location": "imgui_internal:3323", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowNewFrame", "ret": "void", @@ -35696,6 +43331,26 @@ "stname": "" } ], +<<<<<<< HEAD +======= + "igUpdatePlatformWindows": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igUpdatePlatformWindows", + "defaults": {}, + "funcname": "UpdatePlatformWindows", + "location": "imgui:1047", + "namespace": "ImGui", + "ov_cimguiname": "igUpdatePlatformWindows", + "ret": "void", + "signature": "()", + "stname": "" + } + ], +>>>>>>> docking_inter "igUpdateWindowParentAndRootLinks": [ { "args": "(ImGuiWindow* window,ImGuiWindowFlags flags,ImGuiWindow* parent_window)", @@ -35718,7 +43373,11 @@ "cimguiname": "igUpdateWindowParentAndRootLinks", "defaults": {}, "funcname": "UpdateWindowParentAndRootLinks", +<<<<<<< HEAD "location": "imgui_internal:3012", +======= + "location": "imgui_internal:3277", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igUpdateWindowParentAndRootLinks", "ret": "void", @@ -35740,7 +43399,11 @@ "cimguiname": "igUpdateWindowSkipRefresh", "defaults": {}, "funcname": "UpdateWindowSkipRefresh", +<<<<<<< HEAD "location": "imgui_internal:3013", +======= + "location": "imgui_internal:3278", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igUpdateWindowSkipRefresh", "ret": "void", @@ -35789,7 +43452,11 @@ "format": "\"%.3f\"" }, "funcname": "VSliderFloat", +<<<<<<< HEAD "location": "imgui:604", +======= + "location": "imgui:614", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igVSliderFloat", "ret": "bool", @@ -35838,7 +43505,11 @@ "format": "\"%d\"" }, "funcname": "VSliderInt", +<<<<<<< HEAD "location": "imgui:605", +======= + "location": "imgui:615", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igVSliderInt", "ret": "bool", @@ -35891,7 +43562,11 @@ "format": "NULL" }, "funcname": "VSliderScalar", +<<<<<<< HEAD "location": "imgui:606", +======= + "location": "imgui:616", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igVSliderScalar", "ret": "bool", @@ -35917,7 +43592,11 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", +<<<<<<< HEAD "location": "imgui:682", +======= + "location": "imgui:692", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igValue_Bool", "ret": "void", @@ -35941,7 +43620,11 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", +<<<<<<< HEAD "location": "imgui:683", +======= + "location": "imgui:693", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igValue_Int", "ret": "void", @@ -35965,7 +43648,11 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", +<<<<<<< HEAD "location": "imgui:684", +======= + "location": "imgui:694", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igValue_Uint", "ret": "void", @@ -35995,7 +43682,11 @@ "float_format": "NULL" }, "funcname": "Value", +<<<<<<< HEAD "location": "imgui:685", +======= + "location": "imgui:695", +>>>>>>> docking_inter "namespace": "ImGui", "ov_cimguiname": "igValue_Float", "ret": "void", @@ -36025,7 +43716,11 @@ "cimguiname": "igWindowPosRelToAbs", "defaults": {}, "funcname": "WindowPosRelToAbs", +<<<<<<< HEAD "location": "imgui_internal:3027", +======= + "location": "imgui_internal:3292", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowPosRelToAbs", @@ -36056,7 +43751,11 @@ "cimguiname": "igWindowRectAbsToRel", "defaults": {}, "funcname": "WindowRectAbsToRel", +<<<<<<< HEAD "location": "imgui_internal:3025", +======= + "location": "imgui_internal:3290", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowRectAbsToRel", @@ -36087,7 +43786,11 @@ "cimguiname": "igWindowRectRelToAbs", "defaults": {}, "funcname": "WindowRectRelToAbs", +<<<<<<< HEAD "location": "imgui_internal:3026", +======= + "location": "imgui_internal:3291", +>>>>>>> docking_inter "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowRectRelToAbs", diff --git a/generator/output/definitions.lua b/generator/output/definitions.lua index c044bbd..e2cf91b 100644 --- a/generator/output/definitions.lua +++ b/generator/output/definitions.lua @@ -11,7 +11,11 @@ defs["ImBitArray_ClearAllBits"][1]["call_args"] = "()" defs["ImBitArray_ClearAllBits"][1]["cimguiname"] = "ImBitArray_ClearAllBits" defs["ImBitArray_ClearAllBits"][1]["defaults"] = {} defs["ImBitArray_ClearAllBits"][1]["funcname"] = "ClearAllBits" +<<<<<<< HEAD defs["ImBitArray_ClearAllBits"][1]["location"] = "imgui_internal:596" +======= +defs["ImBitArray_ClearAllBits"][1]["location"] = "imgui_internal:609" +>>>>>>> docking_inter defs["ImBitArray_ClearAllBits"][1]["ov_cimguiname"] = "ImBitArray_ClearAllBits" defs["ImBitArray_ClearAllBits"][1]["ret"] = "void" defs["ImBitArray_ClearAllBits"][1]["signature"] = "()" @@ -33,7 +37,11 @@ defs["ImBitArray_ClearBit"][1]["call_args"] = "(n)" defs["ImBitArray_ClearBit"][1]["cimguiname"] = "ImBitArray_ClearBit" defs["ImBitArray_ClearBit"][1]["defaults"] = {} defs["ImBitArray_ClearBit"][1]["funcname"] = "ClearBit" +<<<<<<< HEAD defs["ImBitArray_ClearBit"][1]["location"] = "imgui_internal:600" +======= +defs["ImBitArray_ClearBit"][1]["location"] = "imgui_internal:613" +>>>>>>> docking_inter defs["ImBitArray_ClearBit"][1]["ov_cimguiname"] = "ImBitArray_ClearBit" defs["ImBitArray_ClearBit"][1]["ret"] = "void" defs["ImBitArray_ClearBit"][1]["signature"] = "(int)" @@ -50,7 +58,11 @@ defs["ImBitArray_ImBitArray"][1]["cimguiname"] = "ImBitArray_ImBitArray" defs["ImBitArray_ImBitArray"][1]["constructor"] = true defs["ImBitArray_ImBitArray"][1]["defaults"] = {} defs["ImBitArray_ImBitArray"][1]["funcname"] = "ImBitArray" +<<<<<<< HEAD defs["ImBitArray_ImBitArray"][1]["location"] = "imgui_internal:595" +======= +defs["ImBitArray_ImBitArray"][1]["location"] = "imgui_internal:608" +>>>>>>> docking_inter defs["ImBitArray_ImBitArray"][1]["ov_cimguiname"] = "ImBitArray_ImBitArray" defs["ImBitArray_ImBitArray"][1]["signature"] = "()" defs["ImBitArray_ImBitArray"][1]["stname"] = "ImBitArray" @@ -68,7 +80,11 @@ defs["ImBitArray_SetAllBits"][1]["call_args"] = "()" defs["ImBitArray_SetAllBits"][1]["cimguiname"] = "ImBitArray_SetAllBits" defs["ImBitArray_SetAllBits"][1]["defaults"] = {} defs["ImBitArray_SetAllBits"][1]["funcname"] = "SetAllBits" +<<<<<<< HEAD defs["ImBitArray_SetAllBits"][1]["location"] = "imgui_internal:597" +======= +defs["ImBitArray_SetAllBits"][1]["location"] = "imgui_internal:610" +>>>>>>> docking_inter defs["ImBitArray_SetAllBits"][1]["ov_cimguiname"] = "ImBitArray_SetAllBits" defs["ImBitArray_SetAllBits"][1]["ret"] = "void" defs["ImBitArray_SetAllBits"][1]["signature"] = "()" @@ -90,7 +106,11 @@ defs["ImBitArray_SetBit"][1]["call_args"] = "(n)" defs["ImBitArray_SetBit"][1]["cimguiname"] = "ImBitArray_SetBit" defs["ImBitArray_SetBit"][1]["defaults"] = {} defs["ImBitArray_SetBit"][1]["funcname"] = "SetBit" +<<<<<<< HEAD defs["ImBitArray_SetBit"][1]["location"] = "imgui_internal:599" +======= +defs["ImBitArray_SetBit"][1]["location"] = "imgui_internal:612" +>>>>>>> docking_inter defs["ImBitArray_SetBit"][1]["ov_cimguiname"] = "ImBitArray_SetBit" defs["ImBitArray_SetBit"][1]["ret"] = "void" defs["ImBitArray_SetBit"][1]["signature"] = "(int)" @@ -115,7 +135,11 @@ defs["ImBitArray_SetBitRange"][1]["call_args"] = "(n,n2)" defs["ImBitArray_SetBitRange"][1]["cimguiname"] = "ImBitArray_SetBitRange" defs["ImBitArray_SetBitRange"][1]["defaults"] = {} defs["ImBitArray_SetBitRange"][1]["funcname"] = "SetBitRange" +<<<<<<< HEAD defs["ImBitArray_SetBitRange"][1]["location"] = "imgui_internal:601" +======= +defs["ImBitArray_SetBitRange"][1]["location"] = "imgui_internal:614" +>>>>>>> docking_inter defs["ImBitArray_SetBitRange"][1]["ov_cimguiname"] = "ImBitArray_SetBitRange" defs["ImBitArray_SetBitRange"][1]["ret"] = "void" defs["ImBitArray_SetBitRange"][1]["signature"] = "(int,int)" @@ -137,7 +161,11 @@ defs["ImBitArray_TestBit"][1]["call_args"] = "(n)" defs["ImBitArray_TestBit"][1]["cimguiname"] = "ImBitArray_TestBit" defs["ImBitArray_TestBit"][1]["defaults"] = {} defs["ImBitArray_TestBit"][1]["funcname"] = "TestBit" +<<<<<<< HEAD defs["ImBitArray_TestBit"][1]["location"] = "imgui_internal:598" +======= +defs["ImBitArray_TestBit"][1]["location"] = "imgui_internal:611" +>>>>>>> docking_inter defs["ImBitArray_TestBit"][1]["ov_cimguiname"] = "ImBitArray_TestBit" defs["ImBitArray_TestBit"][1]["ret"] = "bool" defs["ImBitArray_TestBit"][1]["signature"] = "(int)const" @@ -173,7 +201,11 @@ defs["ImBitVector_Clear"][1]["call_args"] = "()" defs["ImBitVector_Clear"][1]["cimguiname"] = "ImBitVector_Clear" defs["ImBitVector_Clear"][1]["defaults"] = {} defs["ImBitVector_Clear"][1]["funcname"] = "Clear" +<<<<<<< HEAD defs["ImBitVector_Clear"][1]["location"] = "imgui_internal:611" +======= +defs["ImBitVector_Clear"][1]["location"] = "imgui_internal:624" +>>>>>>> docking_inter defs["ImBitVector_Clear"][1]["ov_cimguiname"] = "ImBitVector_Clear" defs["ImBitVector_Clear"][1]["ret"] = "void" defs["ImBitVector_Clear"][1]["signature"] = "()" @@ -194,7 +226,11 @@ defs["ImBitVector_ClearBit"][1]["call_args"] = "(n)" defs["ImBitVector_ClearBit"][1]["cimguiname"] = "ImBitVector_ClearBit" defs["ImBitVector_ClearBit"][1]["defaults"] = {} defs["ImBitVector_ClearBit"][1]["funcname"] = "ClearBit" +<<<<<<< HEAD defs["ImBitVector_ClearBit"][1]["location"] = "imgui_internal:614" +======= +defs["ImBitVector_ClearBit"][1]["location"] = "imgui_internal:627" +>>>>>>> docking_inter defs["ImBitVector_ClearBit"][1]["ov_cimguiname"] = "ImBitVector_ClearBit" defs["ImBitVector_ClearBit"][1]["ret"] = "void" defs["ImBitVector_ClearBit"][1]["signature"] = "(int)" @@ -215,7 +251,11 @@ defs["ImBitVector_Create"][1]["call_args"] = "(sz)" defs["ImBitVector_Create"][1]["cimguiname"] = "ImBitVector_Create" defs["ImBitVector_Create"][1]["defaults"] = {} defs["ImBitVector_Create"][1]["funcname"] = "Create" +<<<<<<< HEAD defs["ImBitVector_Create"][1]["location"] = "imgui_internal:610" +======= +defs["ImBitVector_Create"][1]["location"] = "imgui_internal:623" +>>>>>>> docking_inter defs["ImBitVector_Create"][1]["ov_cimguiname"] = "ImBitVector_Create" defs["ImBitVector_Create"][1]["ret"] = "void" defs["ImBitVector_Create"][1]["signature"] = "(int)" @@ -236,7 +276,11 @@ defs["ImBitVector_SetBit"][1]["call_args"] = "(n)" defs["ImBitVector_SetBit"][1]["cimguiname"] = "ImBitVector_SetBit" defs["ImBitVector_SetBit"][1]["defaults"] = {} defs["ImBitVector_SetBit"][1]["funcname"] = "SetBit" +<<<<<<< HEAD defs["ImBitVector_SetBit"][1]["location"] = "imgui_internal:613" +======= +defs["ImBitVector_SetBit"][1]["location"] = "imgui_internal:626" +>>>>>>> docking_inter defs["ImBitVector_SetBit"][1]["ov_cimguiname"] = "ImBitVector_SetBit" defs["ImBitVector_SetBit"][1]["ret"] = "void" defs["ImBitVector_SetBit"][1]["signature"] = "(int)" @@ -257,7 +301,11 @@ defs["ImBitVector_TestBit"][1]["call_args"] = "(n)" defs["ImBitVector_TestBit"][1]["cimguiname"] = "ImBitVector_TestBit" defs["ImBitVector_TestBit"][1]["defaults"] = {} defs["ImBitVector_TestBit"][1]["funcname"] = "TestBit" +<<<<<<< HEAD defs["ImBitVector_TestBit"][1]["location"] = "imgui_internal:612" +======= +defs["ImBitVector_TestBit"][1]["location"] = "imgui_internal:625" +>>>>>>> docking_inter defs["ImBitVector_TestBit"][1]["ov_cimguiname"] = "ImBitVector_TestBit" defs["ImBitVector_TestBit"][1]["ret"] = "bool" defs["ImBitVector_TestBit"][1]["signature"] = "(int)const" @@ -278,7 +326,11 @@ defs["ImChunkStream_alloc_chunk"][1]["call_args"] = "(sz)" defs["ImChunkStream_alloc_chunk"][1]["cimguiname"] = "ImChunkStream_alloc_chunk" defs["ImChunkStream_alloc_chunk"][1]["defaults"] = {} defs["ImChunkStream_alloc_chunk"][1]["funcname"] = "alloc_chunk" +<<<<<<< HEAD defs["ImChunkStream_alloc_chunk"][1]["location"] = "imgui_internal:715" +======= +defs["ImChunkStream_alloc_chunk"][1]["location"] = "imgui_internal:728" +>>>>>>> docking_inter defs["ImChunkStream_alloc_chunk"][1]["ov_cimguiname"] = "ImChunkStream_alloc_chunk" defs["ImChunkStream_alloc_chunk"][1]["ret"] = "T*" defs["ImChunkStream_alloc_chunk"][1]["signature"] = "(size_t)" @@ -297,7 +349,11 @@ defs["ImChunkStream_begin"][1]["call_args"] = "()" defs["ImChunkStream_begin"][1]["cimguiname"] = "ImChunkStream_begin" defs["ImChunkStream_begin"][1]["defaults"] = {} defs["ImChunkStream_begin"][1]["funcname"] = "begin" +<<<<<<< HEAD defs["ImChunkStream_begin"][1]["location"] = "imgui_internal:716" +======= +defs["ImChunkStream_begin"][1]["location"] = "imgui_internal:729" +>>>>>>> docking_inter defs["ImChunkStream_begin"][1]["ov_cimguiname"] = "ImChunkStream_begin" defs["ImChunkStream_begin"][1]["ret"] = "T*" defs["ImChunkStream_begin"][1]["signature"] = "()" @@ -319,7 +375,11 @@ defs["ImChunkStream_chunk_size"][1]["call_args"] = "(p)" defs["ImChunkStream_chunk_size"][1]["cimguiname"] = "ImChunkStream_chunk_size" defs["ImChunkStream_chunk_size"][1]["defaults"] = {} defs["ImChunkStream_chunk_size"][1]["funcname"] = "chunk_size" +<<<<<<< HEAD defs["ImChunkStream_chunk_size"][1]["location"] = "imgui_internal:718" +======= +defs["ImChunkStream_chunk_size"][1]["location"] = "imgui_internal:731" +>>>>>>> docking_inter defs["ImChunkStream_chunk_size"][1]["ov_cimguiname"] = "ImChunkStream_chunk_size" defs["ImChunkStream_chunk_size"][1]["ret"] = "int" defs["ImChunkStream_chunk_size"][1]["signature"] = "(const T*)" @@ -338,7 +398,11 @@ defs["ImChunkStream_clear"][1]["call_args"] = "()" defs["ImChunkStream_clear"][1]["cimguiname"] = "ImChunkStream_clear" defs["ImChunkStream_clear"][1]["defaults"] = {} defs["ImChunkStream_clear"][1]["funcname"] = "clear" +<<<<<<< HEAD defs["ImChunkStream_clear"][1]["location"] = "imgui_internal:712" +======= +defs["ImChunkStream_clear"][1]["location"] = "imgui_internal:725" +>>>>>>> docking_inter defs["ImChunkStream_clear"][1]["ov_cimguiname"] = "ImChunkStream_clear" defs["ImChunkStream_clear"][1]["ret"] = "void" defs["ImChunkStream_clear"][1]["signature"] = "()" @@ -357,7 +421,11 @@ defs["ImChunkStream_empty"][1]["call_args"] = "()" defs["ImChunkStream_empty"][1]["cimguiname"] = "ImChunkStream_empty" defs["ImChunkStream_empty"][1]["defaults"] = {} defs["ImChunkStream_empty"][1]["funcname"] = "empty" +<<<<<<< HEAD defs["ImChunkStream_empty"][1]["location"] = "imgui_internal:713" +======= +defs["ImChunkStream_empty"][1]["location"] = "imgui_internal:726" +>>>>>>> docking_inter defs["ImChunkStream_empty"][1]["ov_cimguiname"] = "ImChunkStream_empty" defs["ImChunkStream_empty"][1]["ret"] = "bool" defs["ImChunkStream_empty"][1]["signature"] = "()const" @@ -376,7 +444,11 @@ defs["ImChunkStream_end"][1]["call_args"] = "()" defs["ImChunkStream_end"][1]["cimguiname"] = "ImChunkStream_end" defs["ImChunkStream_end"][1]["defaults"] = {} defs["ImChunkStream_end"][1]["funcname"] = "end" +<<<<<<< HEAD defs["ImChunkStream_end"][1]["location"] = "imgui_internal:719" +======= +defs["ImChunkStream_end"][1]["location"] = "imgui_internal:732" +>>>>>>> docking_inter defs["ImChunkStream_end"][1]["ov_cimguiname"] = "ImChunkStream_end" defs["ImChunkStream_end"][1]["ret"] = "T*" defs["ImChunkStream_end"][1]["signature"] = "()" @@ -398,7 +470,11 @@ defs["ImChunkStream_next_chunk"][1]["call_args"] = "(p)" defs["ImChunkStream_next_chunk"][1]["cimguiname"] = "ImChunkStream_next_chunk" defs["ImChunkStream_next_chunk"][1]["defaults"] = {} defs["ImChunkStream_next_chunk"][1]["funcname"] = "next_chunk" +<<<<<<< HEAD defs["ImChunkStream_next_chunk"][1]["location"] = "imgui_internal:717" +======= +defs["ImChunkStream_next_chunk"][1]["location"] = "imgui_internal:730" +>>>>>>> docking_inter defs["ImChunkStream_next_chunk"][1]["ov_cimguiname"] = "ImChunkStream_next_chunk" defs["ImChunkStream_next_chunk"][1]["ret"] = "T*" defs["ImChunkStream_next_chunk"][1]["signature"] = "(T*)" @@ -420,7 +496,11 @@ defs["ImChunkStream_offset_from_ptr"][1]["call_args"] = "(p)" defs["ImChunkStream_offset_from_ptr"][1]["cimguiname"] = "ImChunkStream_offset_from_ptr" defs["ImChunkStream_offset_from_ptr"][1]["defaults"] = {} defs["ImChunkStream_offset_from_ptr"][1]["funcname"] = "offset_from_ptr" +<<<<<<< HEAD defs["ImChunkStream_offset_from_ptr"][1]["location"] = "imgui_internal:720" +======= +defs["ImChunkStream_offset_from_ptr"][1]["location"] = "imgui_internal:733" +>>>>>>> docking_inter defs["ImChunkStream_offset_from_ptr"][1]["ov_cimguiname"] = "ImChunkStream_offset_from_ptr" defs["ImChunkStream_offset_from_ptr"][1]["ret"] = "int" defs["ImChunkStream_offset_from_ptr"][1]["signature"] = "(const T*)" @@ -442,7 +522,11 @@ defs["ImChunkStream_ptr_from_offset"][1]["call_args"] = "(off)" defs["ImChunkStream_ptr_from_offset"][1]["cimguiname"] = "ImChunkStream_ptr_from_offset" defs["ImChunkStream_ptr_from_offset"][1]["defaults"] = {} defs["ImChunkStream_ptr_from_offset"][1]["funcname"] = "ptr_from_offset" +<<<<<<< HEAD defs["ImChunkStream_ptr_from_offset"][1]["location"] = "imgui_internal:721" +======= +defs["ImChunkStream_ptr_from_offset"][1]["location"] = "imgui_internal:734" +>>>>>>> docking_inter defs["ImChunkStream_ptr_from_offset"][1]["ov_cimguiname"] = "ImChunkStream_ptr_from_offset" defs["ImChunkStream_ptr_from_offset"][1]["ret"] = "T*" defs["ImChunkStream_ptr_from_offset"][1]["signature"] = "(int)" @@ -461,7 +545,11 @@ defs["ImChunkStream_size"][1]["call_args"] = "()" defs["ImChunkStream_size"][1]["cimguiname"] = "ImChunkStream_size" defs["ImChunkStream_size"][1]["defaults"] = {} defs["ImChunkStream_size"][1]["funcname"] = "size" +<<<<<<< HEAD defs["ImChunkStream_size"][1]["location"] = "imgui_internal:714" +======= +defs["ImChunkStream_size"][1]["location"] = "imgui_internal:727" +>>>>>>> docking_inter defs["ImChunkStream_size"][1]["ov_cimguiname"] = "ImChunkStream_size" defs["ImChunkStream_size"][1]["ret"] = "int" defs["ImChunkStream_size"][1]["signature"] = "()const" @@ -484,7 +572,11 @@ defs["ImChunkStream_swap"][1]["call_args"] = "(*rhs)" defs["ImChunkStream_swap"][1]["cimguiname"] = "ImChunkStream_swap" defs["ImChunkStream_swap"][1]["defaults"] = {} defs["ImChunkStream_swap"][1]["funcname"] = "swap" +<<<<<<< HEAD defs["ImChunkStream_swap"][1]["location"] = "imgui_internal:722" +======= +defs["ImChunkStream_swap"][1]["location"] = "imgui_internal:735" +>>>>>>> docking_inter defs["ImChunkStream_swap"][1]["ov_cimguiname"] = "ImChunkStream_swap" defs["ImChunkStream_swap"][1]["ret"] = "void" defs["ImChunkStream_swap"][1]["signature"] = "(ImChunkStream_T *)" @@ -517,7 +609,11 @@ defs["ImColor_HSV"][1]["defaults"] = {} defs["ImColor_HSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_HSV"][1]["funcname"] = "HSV" defs["ImColor_HSV"][1]["is_static_function"] = true +<<<<<<< HEAD defs["ImColor_HSV"][1]["location"] = "imgui:2633" +======= +defs["ImColor_HSV"][1]["location"] = "imgui:2777" +>>>>>>> docking_inter defs["ImColor_HSV"][1]["nonUDT"] = 1 defs["ImColor_HSV"][1]["ov_cimguiname"] = "ImColor_HSV" defs["ImColor_HSV"][1]["ret"] = "void" @@ -534,7 +630,11 @@ defs["ImColor_ImColor"][1]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][1]["constructor"] = true defs["ImColor_ImColor"][1]["defaults"] = {} defs["ImColor_ImColor"][1]["funcname"] = "ImColor" +<<<<<<< HEAD defs["ImColor_ImColor"][1]["location"] = "imgui:2623" +======= +defs["ImColor_ImColor"][1]["location"] = "imgui:2767" +>>>>>>> docking_inter defs["ImColor_ImColor"][1]["ov_cimguiname"] = "ImColor_ImColor_Nil" defs["ImColor_ImColor"][1]["signature"] = "()" defs["ImColor_ImColor"][1]["stname"] = "ImColor" @@ -560,7 +660,11 @@ defs["ImColor_ImColor"][2]["constructor"] = true defs["ImColor_ImColor"][2]["defaults"] = {} defs["ImColor_ImColor"][2]["defaults"]["a"] = "1.0f" defs["ImColor_ImColor"][2]["funcname"] = "ImColor" +<<<<<<< HEAD defs["ImColor_ImColor"][2]["location"] = "imgui:2624" +======= +defs["ImColor_ImColor"][2]["location"] = "imgui:2768" +>>>>>>> docking_inter defs["ImColor_ImColor"][2]["ov_cimguiname"] = "ImColor_ImColor_Float" defs["ImColor_ImColor"][2]["signature"] = "(float,float,float,float)" defs["ImColor_ImColor"][2]["stname"] = "ImColor" @@ -576,7 +680,11 @@ defs["ImColor_ImColor"][3]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][3]["constructor"] = true defs["ImColor_ImColor"][3]["defaults"] = {} defs["ImColor_ImColor"][3]["funcname"] = "ImColor" +<<<<<<< HEAD defs["ImColor_ImColor"][3]["location"] = "imgui:2625" +======= +defs["ImColor_ImColor"][3]["location"] = "imgui:2769" +>>>>>>> docking_inter defs["ImColor_ImColor"][3]["ov_cimguiname"] = "ImColor_ImColor_Vec4" defs["ImColor_ImColor"][3]["signature"] = "(const ImVec4)" defs["ImColor_ImColor"][3]["stname"] = "ImColor" @@ -602,7 +710,11 @@ defs["ImColor_ImColor"][4]["constructor"] = true defs["ImColor_ImColor"][4]["defaults"] = {} defs["ImColor_ImColor"][4]["defaults"]["a"] = "255" defs["ImColor_ImColor"][4]["funcname"] = "ImColor" +<<<<<<< HEAD defs["ImColor_ImColor"][4]["location"] = "imgui:2626" +======= +defs["ImColor_ImColor"][4]["location"] = "imgui:2770" +>>>>>>> docking_inter defs["ImColor_ImColor"][4]["ov_cimguiname"] = "ImColor_ImColor_Int" defs["ImColor_ImColor"][4]["signature"] = "(int,int,int,int)" defs["ImColor_ImColor"][4]["stname"] = "ImColor" @@ -618,7 +730,11 @@ defs["ImColor_ImColor"][5]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][5]["constructor"] = true defs["ImColor_ImColor"][5]["defaults"] = {} defs["ImColor_ImColor"][5]["funcname"] = "ImColor" +<<<<<<< HEAD defs["ImColor_ImColor"][5]["location"] = "imgui:2627" +======= +defs["ImColor_ImColor"][5]["location"] = "imgui:2771" +>>>>>>> docking_inter defs["ImColor_ImColor"][5]["ov_cimguiname"] = "ImColor_ImColor_U32" defs["ImColor_ImColor"][5]["signature"] = "(ImU32)" defs["ImColor_ImColor"][5]["stname"] = "ImColor" @@ -652,7 +768,11 @@ defs["ImColor_SetHSV"][1]["cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["defaults"] = {} defs["ImColor_SetHSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_SetHSV"][1]["funcname"] = "SetHSV" +<<<<<<< HEAD defs["ImColor_SetHSV"][1]["location"] = "imgui:2632" +======= +defs["ImColor_SetHSV"][1]["location"] = "imgui:2776" +>>>>>>> docking_inter defs["ImColor_SetHSV"][1]["ov_cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["ret"] = "void" defs["ImColor_SetHSV"][1]["signature"] = "(float,float,float,float)" @@ -686,7 +806,11 @@ defs["ImDrawCmd_GetTexID"][1]["call_args"] = "()" defs["ImDrawCmd_GetTexID"][1]["cimguiname"] = "ImDrawCmd_GetTexID" defs["ImDrawCmd_GetTexID"][1]["defaults"] = {} defs["ImDrawCmd_GetTexID"][1]["funcname"] = "GetTexID" +<<<<<<< HEAD defs["ImDrawCmd_GetTexID"][1]["location"] = "imgui:2681" +======= +defs["ImDrawCmd_GetTexID"][1]["location"] = "imgui:2825" +>>>>>>> docking_inter defs["ImDrawCmd_GetTexID"][1]["ov_cimguiname"] = "ImDrawCmd_GetTexID" defs["ImDrawCmd_GetTexID"][1]["ret"] = "ImTextureID" defs["ImDrawCmd_GetTexID"][1]["signature"] = "()const" @@ -702,7 +826,11 @@ defs["ImDrawCmd_ImDrawCmd"][1]["cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["constructor"] = true defs["ImDrawCmd_ImDrawCmd"][1]["defaults"] = {} defs["ImDrawCmd_ImDrawCmd"][1]["funcname"] = "ImDrawCmd" +<<<<<<< HEAD defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:2678" +======= +defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:2822" +>>>>>>> docking_inter defs["ImDrawCmd_ImDrawCmd"][1]["ov_cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["signature"] = "()" defs["ImDrawCmd_ImDrawCmd"][1]["stname"] = "ImDrawCmd" @@ -733,7 +861,11 @@ defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["cimguiname"] = "ImDrawDataBuilde defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["constructor"] = true defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["defaults"] = {} defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["funcname"] = "ImDrawDataBuilder" +<<<<<<< HEAD defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["location"] = "imgui_internal:798" +======= +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["location"] = "imgui_internal:813" +>>>>>>> docking_inter defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["ov_cimguiname"] = "ImDrawDataBuilder_ImDrawDataBuilder" defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["signature"] = "()" defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["stname"] = "ImDrawDataBuilder" @@ -769,7 +901,11 @@ defs["ImDrawData_AddDrawList"][1]["call_args"] = "(draw_list)" defs["ImDrawData_AddDrawList"][1]["cimguiname"] = "ImDrawData_AddDrawList" defs["ImDrawData_AddDrawList"][1]["defaults"] = {} defs["ImDrawData_AddDrawList"][1]["funcname"] = "AddDrawList" +<<<<<<< HEAD defs["ImDrawData_AddDrawList"][1]["location"] = "imgui:2928" +======= +defs["ImDrawData_AddDrawList"][1]["location"] = "imgui:3072" +>>>>>>> docking_inter defs["ImDrawData_AddDrawList"][1]["ov_cimguiname"] = "ImDrawData_AddDrawList" defs["ImDrawData_AddDrawList"][1]["ret"] = "void" defs["ImDrawData_AddDrawList"][1]["signature"] = "(ImDrawList*)" @@ -787,7 +923,11 @@ defs["ImDrawData_Clear"][1]["call_args"] = "()" defs["ImDrawData_Clear"][1]["cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["defaults"] = {} defs["ImDrawData_Clear"][1]["funcname"] = "Clear" +<<<<<<< HEAD defs["ImDrawData_Clear"][1]["location"] = "imgui:2927" +======= +defs["ImDrawData_Clear"][1]["location"] = "imgui:3071" +>>>>>>> docking_inter defs["ImDrawData_Clear"][1]["ov_cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["ret"] = "void" defs["ImDrawData_Clear"][1]["signature"] = "()" @@ -805,7 +945,11 @@ defs["ImDrawData_DeIndexAllBuffers"][1]["call_args"] = "()" defs["ImDrawData_DeIndexAllBuffers"][1]["cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["defaults"] = {} defs["ImDrawData_DeIndexAllBuffers"][1]["funcname"] = "DeIndexAllBuffers" +<<<<<<< HEAD defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui:2929" +======= +defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui:3073" +>>>>>>> docking_inter defs["ImDrawData_DeIndexAllBuffers"][1]["ov_cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["ret"] = "void" defs["ImDrawData_DeIndexAllBuffers"][1]["signature"] = "()" @@ -821,7 +965,11 @@ defs["ImDrawData_ImDrawData"][1]["cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["constructor"] = true defs["ImDrawData_ImDrawData"][1]["defaults"] = {} defs["ImDrawData_ImDrawData"][1]["funcname"] = "ImDrawData" +<<<<<<< HEAD defs["ImDrawData_ImDrawData"][1]["location"] = "imgui:2926" +======= +defs["ImDrawData_ImDrawData"][1]["location"] = "imgui:3070" +>>>>>>> docking_inter defs["ImDrawData_ImDrawData"][1]["ov_cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["signature"] = "()" defs["ImDrawData_ImDrawData"][1]["stname"] = "ImDrawData" @@ -841,7 +989,11 @@ defs["ImDrawData_ScaleClipRects"][1]["call_args"] = "(fb_scale)" defs["ImDrawData_ScaleClipRects"][1]["cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["defaults"] = {} defs["ImDrawData_ScaleClipRects"][1]["funcname"] = "ScaleClipRects" +<<<<<<< HEAD defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui:2930" +======= +defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui:3074" +>>>>>>> docking_inter defs["ImDrawData_ScaleClipRects"][1]["ov_cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["ret"] = "void" defs["ImDrawData_ScaleClipRects"][1]["signature"] = "(const ImVec2)" @@ -873,7 +1025,11 @@ defs["ImDrawListSharedData_ImDrawListSharedData"][1]["cimguiname"] = "ImDrawList defs["ImDrawListSharedData_ImDrawListSharedData"][1]["constructor"] = true defs["ImDrawListSharedData_ImDrawListSharedData"][1]["defaults"] = {} defs["ImDrawListSharedData_ImDrawListSharedData"][1]["funcname"] = "ImDrawListSharedData" +<<<<<<< HEAD defs["ImDrawListSharedData_ImDrawListSharedData"][1]["location"] = "imgui_internal:789" +======= +defs["ImDrawListSharedData_ImDrawListSharedData"][1]["location"] = "imgui_internal:804" +>>>>>>> docking_inter defs["ImDrawListSharedData_ImDrawListSharedData"][1]["ov_cimguiname"] = "ImDrawListSharedData_ImDrawListSharedData" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["signature"] = "()" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["stname"] = "ImDrawListSharedData" @@ -893,7 +1049,11 @@ defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["call_args"] = "(m defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["cimguiname"] = "ImDrawListSharedData_SetCircleTessellationMaxError" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["defaults"] = {} defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["funcname"] = "SetCircleTessellationMaxError" +<<<<<<< HEAD defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["location"] = "imgui_internal:790" +======= +defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["location"] = "imgui_internal:805" +>>>>>>> docking_inter defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["ov_cimguiname"] = "ImDrawListSharedData_SetCircleTessellationMaxError" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["ret"] = "void" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["signature"] = "(float)" @@ -927,7 +1087,11 @@ defs["ImDrawListSplitter_Clear"][1]["call_args"] = "()" defs["ImDrawListSplitter_Clear"][1]["cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["defaults"] = {} defs["ImDrawListSplitter_Clear"][1]["funcname"] = "Clear" +<<<<<<< HEAD defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:2726" +======= +defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:2870" +>>>>>>> docking_inter defs["ImDrawListSplitter_Clear"][1]["ov_cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["ret"] = "void" defs["ImDrawListSplitter_Clear"][1]["signature"] = "()" @@ -945,7 +1109,11 @@ defs["ImDrawListSplitter_ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawListSplitter_ClearFreeMemory"][1]["cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawListSplitter_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" +<<<<<<< HEAD defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:2727" +======= +defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:2871" +>>>>>>> docking_inter defs["ImDrawListSplitter_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawListSplitter_ClearFreeMemory"][1]["signature"] = "()" @@ -961,7 +1129,11 @@ defs["ImDrawListSplitter_ImDrawListSplitter"][1]["cimguiname"] = "ImDrawListSpli defs["ImDrawListSplitter_ImDrawListSplitter"][1]["constructor"] = true defs["ImDrawListSplitter_ImDrawListSplitter"][1]["defaults"] = {} defs["ImDrawListSplitter_ImDrawListSplitter"][1]["funcname"] = "ImDrawListSplitter" +<<<<<<< HEAD defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:2724" +======= +defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:2868" +>>>>>>> docking_inter defs["ImDrawListSplitter_ImDrawListSplitter"][1]["ov_cimguiname"] = "ImDrawListSplitter_ImDrawListSplitter" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["signature"] = "()" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["stname"] = "ImDrawListSplitter" @@ -981,7 +1153,11 @@ defs["ImDrawListSplitter_Merge"][1]["call_args"] = "(draw_list)" defs["ImDrawListSplitter_Merge"][1]["cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["defaults"] = {} defs["ImDrawListSplitter_Merge"][1]["funcname"] = "Merge" +<<<<<<< HEAD defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:2729" +======= +defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:2873" +>>>>>>> docking_inter defs["ImDrawListSplitter_Merge"][1]["ov_cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["ret"] = "void" defs["ImDrawListSplitter_Merge"][1]["signature"] = "(ImDrawList*)" @@ -1005,7 +1181,11 @@ defs["ImDrawListSplitter_SetCurrentChannel"][1]["call_args"] = "(draw_list,chann defs["ImDrawListSplitter_SetCurrentChannel"][1]["cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["defaults"] = {} defs["ImDrawListSplitter_SetCurrentChannel"][1]["funcname"] = "SetCurrentChannel" +<<<<<<< HEAD defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:2730" +======= +defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:2874" +>>>>>>> docking_inter defs["ImDrawListSplitter_SetCurrentChannel"][1]["ov_cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ret"] = "void" defs["ImDrawListSplitter_SetCurrentChannel"][1]["signature"] = "(ImDrawList*,int)" @@ -1029,7 +1209,11 @@ defs["ImDrawListSplitter_Split"][1]["call_args"] = "(draw_list,count)" defs["ImDrawListSplitter_Split"][1]["cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["defaults"] = {} defs["ImDrawListSplitter_Split"][1]["funcname"] = "Split" +<<<<<<< HEAD defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:2728" +======= +defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:2872" +>>>>>>> docking_inter defs["ImDrawListSplitter_Split"][1]["ov_cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["ret"] = "void" defs["ImDrawListSplitter_Split"][1]["signature"] = "(ImDrawList*,int)" @@ -1046,7 +1230,11 @@ defs["ImDrawListSplitter_destroy"][1]["call_args"] = "(self)" defs["ImDrawListSplitter_destroy"][1]["cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["defaults"] = {} defs["ImDrawListSplitter_destroy"][1]["destructor"] = true +<<<<<<< HEAD defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:2725" +======= +defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:2869" +>>>>>>> docking_inter defs["ImDrawListSplitter_destroy"][1]["ov_cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["realdestructor"] = true defs["ImDrawListSplitter_destroy"][1]["ret"] = "void" @@ -1087,7 +1275,11 @@ defs["ImDrawList_AddBezierCubic"][1]["cimguiname"] = "ImDrawList_AddBezierCubic" defs["ImDrawList_AddBezierCubic"][1]["defaults"] = {} defs["ImDrawList_AddBezierCubic"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierCubic"][1]["funcname"] = "AddBezierCubic" +<<<<<<< HEAD defs["ImDrawList_AddBezierCubic"][1]["location"] = "imgui:2829" +======= +defs["ImDrawList_AddBezierCubic"][1]["location"] = "imgui:2973" +>>>>>>> docking_inter defs["ImDrawList_AddBezierCubic"][1]["ov_cimguiname"] = "ImDrawList_AddBezierCubic" defs["ImDrawList_AddBezierCubic"][1]["ret"] = "void" defs["ImDrawList_AddBezierCubic"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" @@ -1124,7 +1316,11 @@ defs["ImDrawList_AddBezierQuadratic"][1]["cimguiname"] = "ImDrawList_AddBezierQu defs["ImDrawList_AddBezierQuadratic"][1]["defaults"] = {} defs["ImDrawList_AddBezierQuadratic"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierQuadratic"][1]["funcname"] = "AddBezierQuadratic" +<<<<<<< HEAD defs["ImDrawList_AddBezierQuadratic"][1]["location"] = "imgui:2830" +======= +defs["ImDrawList_AddBezierQuadratic"][1]["location"] = "imgui:2974" +>>>>>>> docking_inter defs["ImDrawList_AddBezierQuadratic"][1]["ov_cimguiname"] = "ImDrawList_AddBezierQuadratic" defs["ImDrawList_AddBezierQuadratic"][1]["ret"] = "void" defs["ImDrawList_AddBezierQuadratic"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" @@ -1148,7 +1344,11 @@ defs["ImDrawList_AddCallback"][1]["call_args"] = "(callback,callback_data)" defs["ImDrawList_AddCallback"][1]["cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["defaults"] = {} defs["ImDrawList_AddCallback"][1]["funcname"] = "AddCallback" +<<<<<<< HEAD defs["ImDrawList_AddCallback"][1]["location"] = "imgui:2864" +======= +defs["ImDrawList_AddCallback"][1]["location"] = "imgui:3008" +>>>>>>> docking_inter defs["ImDrawList_AddCallback"][1]["ov_cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["ret"] = "void" defs["ImDrawList_AddCallback"][1]["signature"] = "(ImDrawCallback,void*)" @@ -1183,7 +1383,11 @@ defs["ImDrawList_AddCircle"][1]["defaults"] = {} defs["ImDrawList_AddCircle"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddCircle"][1]["funcname"] = "AddCircle" +<<<<<<< HEAD defs["ImDrawList_AddCircle"][1]["location"] = "imgui:2821" +======= +defs["ImDrawList_AddCircle"][1]["location"] = "imgui:2965" +>>>>>>> docking_inter defs["ImDrawList_AddCircle"][1]["ov_cimguiname"] = "ImDrawList_AddCircle" defs["ImDrawList_AddCircle"][1]["ret"] = "void" defs["ImDrawList_AddCircle"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -1214,7 +1418,11 @@ defs["ImDrawList_AddCircleFilled"][1]["cimguiname"] = "ImDrawList_AddCircleFille defs["ImDrawList_AddCircleFilled"][1]["defaults"] = {} defs["ImDrawList_AddCircleFilled"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircleFilled"][1]["funcname"] = "AddCircleFilled" +<<<<<<< HEAD defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:2822" +======= +defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:2966" +>>>>>>> docking_inter defs["ImDrawList_AddCircleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddCircleFilled" defs["ImDrawList_AddCircleFilled"][1]["ret"] = "void" defs["ImDrawList_AddCircleFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -1241,7 +1449,11 @@ defs["ImDrawList_AddConcavePolyFilled"][1]["call_args"] = "(points,num_points,co defs["ImDrawList_AddConcavePolyFilled"][1]["cimguiname"] = "ImDrawList_AddConcavePolyFilled" defs["ImDrawList_AddConcavePolyFilled"][1]["defaults"] = {} defs["ImDrawList_AddConcavePolyFilled"][1]["funcname"] = "AddConcavePolyFilled" +<<<<<<< HEAD defs["ImDrawList_AddConcavePolyFilled"][1]["location"] = "imgui:2837" +======= +defs["ImDrawList_AddConcavePolyFilled"][1]["location"] = "imgui:2981" +>>>>>>> docking_inter defs["ImDrawList_AddConcavePolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConcavePolyFilled" defs["ImDrawList_AddConcavePolyFilled"][1]["ret"] = "void" defs["ImDrawList_AddConcavePolyFilled"][1]["signature"] = "(const ImVec2*,int,ImU32)" @@ -1268,7 +1480,11 @@ defs["ImDrawList_AddConvexPolyFilled"][1]["call_args"] = "(points,num_points,col defs["ImDrawList_AddConvexPolyFilled"][1]["cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["defaults"] = {} defs["ImDrawList_AddConvexPolyFilled"][1]["funcname"] = "AddConvexPolyFilled" +<<<<<<< HEAD defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:2836" +======= +defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:2980" +>>>>>>> docking_inter defs["ImDrawList_AddConvexPolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["ret"] = "void" defs["ImDrawList_AddConvexPolyFilled"][1]["signature"] = "(const ImVec2*,int,ImU32)" @@ -1286,7 +1502,11 @@ defs["ImDrawList_AddDrawCmd"][1]["call_args"] = "()" defs["ImDrawList_AddDrawCmd"][1]["cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["defaults"] = {} defs["ImDrawList_AddDrawCmd"][1]["funcname"] = "AddDrawCmd" +<<<<<<< HEAD defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:2865" +======= +defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:3009" +>>>>>>> docking_inter defs["ImDrawList_AddDrawCmd"][1]["ov_cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["ret"] = "void" defs["ImDrawList_AddDrawCmd"][1]["signature"] = "()" @@ -1325,7 +1545,11 @@ defs["ImDrawList_AddEllipse"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddEllipse"][1]["defaults"]["rot"] = "0.0f" defs["ImDrawList_AddEllipse"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddEllipse"][1]["funcname"] = "AddEllipse" +<<<<<<< HEAD defs["ImDrawList_AddEllipse"][1]["location"] = "imgui:2825" +======= +defs["ImDrawList_AddEllipse"][1]["location"] = "imgui:2969" +>>>>>>> docking_inter defs["ImDrawList_AddEllipse"][1]["ov_cimguiname"] = "ImDrawList_AddEllipse" defs["ImDrawList_AddEllipse"][1]["ret"] = "void" defs["ImDrawList_AddEllipse"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,int,float)" @@ -1360,7 +1584,11 @@ defs["ImDrawList_AddEllipseFilled"][1]["defaults"] = {} defs["ImDrawList_AddEllipseFilled"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddEllipseFilled"][1]["defaults"]["rot"] = "0.0f" defs["ImDrawList_AddEllipseFilled"][1]["funcname"] = "AddEllipseFilled" +<<<<<<< HEAD defs["ImDrawList_AddEllipseFilled"][1]["location"] = "imgui:2826" +======= +defs["ImDrawList_AddEllipseFilled"][1]["location"] = "imgui:2970" +>>>>>>> docking_inter defs["ImDrawList_AddEllipseFilled"][1]["ov_cimguiname"] = "ImDrawList_AddEllipseFilled" defs["ImDrawList_AddEllipseFilled"][1]["ret"] = "void" defs["ImDrawList_AddEllipseFilled"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,int)" @@ -1399,7 +1627,11 @@ defs["ImDrawList_AddImage"][1]["defaults"]["col"] = "4294967295" defs["ImDrawList_AddImage"][1]["defaults"]["uv_max"] = "ImVec2(1,1)" defs["ImDrawList_AddImage"][1]["defaults"]["uv_min"] = "ImVec2(0,0)" defs["ImDrawList_AddImage"][1]["funcname"] = "AddImage" +<<<<<<< HEAD defs["ImDrawList_AddImage"][1]["location"] = "imgui:2843" +======= +defs["ImDrawList_AddImage"][1]["location"] = "imgui:2987" +>>>>>>> docking_inter defs["ImDrawList_AddImage"][1]["ov_cimguiname"] = "ImDrawList_AddImage" defs["ImDrawList_AddImage"][1]["ret"] = "void" defs["ImDrawList_AddImage"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1452,7 +1684,11 @@ defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv2"] = "ImVec2(1,0)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv3"] = "ImVec2(1,1)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv4"] = "ImVec2(0,1)" defs["ImDrawList_AddImageQuad"][1]["funcname"] = "AddImageQuad" +<<<<<<< HEAD defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:2844" +======= +defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:2988" +>>>>>>> docking_inter defs["ImDrawList_AddImageQuad"][1]["ov_cimguiname"] = "ImDrawList_AddImageQuad" defs["ImDrawList_AddImageQuad"][1]["ret"] = "void" defs["ImDrawList_AddImageQuad"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1495,7 +1731,11 @@ defs["ImDrawList_AddImageRounded"][1]["cimguiname"] = "ImDrawList_AddImageRounde defs["ImDrawList_AddImageRounded"][1]["defaults"] = {} defs["ImDrawList_AddImageRounded"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddImageRounded"][1]["funcname"] = "AddImageRounded" +<<<<<<< HEAD defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:2845" +======= +defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:2989" +>>>>>>> docking_inter defs["ImDrawList_AddImageRounded"][1]["ov_cimguiname"] = "ImDrawList_AddImageRounded" defs["ImDrawList_AddImageRounded"][1]["ret"] = "void" defs["ImDrawList_AddImageRounded"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)" @@ -1526,7 +1766,11 @@ defs["ImDrawList_AddLine"][1]["cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["defaults"] = {} defs["ImDrawList_AddLine"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddLine"][1]["funcname"] = "AddLine" +<<<<<<< HEAD defs["ImDrawList_AddLine"][1]["location"] = "imgui:2813" +======= +defs["ImDrawList_AddLine"][1]["location"] = "imgui:2957" +>>>>>>> docking_inter defs["ImDrawList_AddLine"][1]["ov_cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["ret"] = "void" defs["ImDrawList_AddLine"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float)" @@ -1560,7 +1804,11 @@ defs["ImDrawList_AddNgon"][1]["cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["defaults"] = {} defs["ImDrawList_AddNgon"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddNgon"][1]["funcname"] = "AddNgon" +<<<<<<< HEAD defs["ImDrawList_AddNgon"][1]["location"] = "imgui:2823" +======= +defs["ImDrawList_AddNgon"][1]["location"] = "imgui:2967" +>>>>>>> docking_inter defs["ImDrawList_AddNgon"][1]["ov_cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["ret"] = "void" defs["ImDrawList_AddNgon"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -1590,7 +1838,11 @@ defs["ImDrawList_AddNgonFilled"][1]["call_args"] = "(center,radius,col,num_segme defs["ImDrawList_AddNgonFilled"][1]["cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["defaults"] = {} defs["ImDrawList_AddNgonFilled"][1]["funcname"] = "AddNgonFilled" +<<<<<<< HEAD defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:2824" +======= +defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:2968" +>>>>>>> docking_inter defs["ImDrawList_AddNgonFilled"][1]["ov_cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["ret"] = "void" defs["ImDrawList_AddNgonFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -1623,7 +1875,11 @@ defs["ImDrawList_AddPolyline"][1]["call_args"] = "(points,num_points,col,flags,t defs["ImDrawList_AddPolyline"][1]["cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["defaults"] = {} defs["ImDrawList_AddPolyline"][1]["funcname"] = "AddPolyline" +<<<<<<< HEAD defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:2835" +======= +defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:2979" +>>>>>>> docking_inter defs["ImDrawList_AddPolyline"][1]["ov_cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["ret"] = "void" defs["ImDrawList_AddPolyline"][1]["signature"] = "(const ImVec2*,int,ImU32,ImDrawFlags,float)" @@ -1660,7 +1916,11 @@ defs["ImDrawList_AddQuad"][1]["cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["defaults"] = {} defs["ImDrawList_AddQuad"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddQuad"][1]["funcname"] = "AddQuad" +<<<<<<< HEAD defs["ImDrawList_AddQuad"][1]["location"] = "imgui:2817" +======= +defs["ImDrawList_AddQuad"][1]["location"] = "imgui:2961" +>>>>>>> docking_inter defs["ImDrawList_AddQuad"][1]["ov_cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["ret"] = "void" defs["ImDrawList_AddQuad"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -1693,7 +1953,11 @@ defs["ImDrawList_AddQuadFilled"][1]["call_args"] = "(p1,p2,p3,p4,col)" defs["ImDrawList_AddQuadFilled"][1]["cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["defaults"] = {} defs["ImDrawList_AddQuadFilled"][1]["funcname"] = "AddQuadFilled" +<<<<<<< HEAD defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:2818" +======= +defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:2962" +>>>>>>> docking_inter defs["ImDrawList_AddQuadFilled"][1]["ov_cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["ret"] = "void" defs["ImDrawList_AddQuadFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1732,7 +1996,11 @@ defs["ImDrawList_AddRect"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRect"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddRect"][1]["funcname"] = "AddRect" +<<<<<<< HEAD defs["ImDrawList_AddRect"][1]["location"] = "imgui:2814" +======= +defs["ImDrawList_AddRect"][1]["location"] = "imgui:2958" +>>>>>>> docking_inter defs["ImDrawList_AddRect"][1]["ov_cimguiname"] = "ImDrawList_AddRect" defs["ImDrawList_AddRect"][1]["ret"] = "void" defs["ImDrawList_AddRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)" @@ -1767,7 +2035,11 @@ defs["ImDrawList_AddRectFilled"][1]["defaults"] = {} defs["ImDrawList_AddRectFilled"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddRectFilled"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRectFilled"][1]["funcname"] = "AddRectFilled" +<<<<<<< HEAD defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:2815" +======= +defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:2959" +>>>>>>> docking_inter defs["ImDrawList_AddRectFilled"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilled" defs["ImDrawList_AddRectFilled"][1]["ret"] = "void" defs["ImDrawList_AddRectFilled"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)" @@ -1803,7 +2075,11 @@ defs["ImDrawList_AddRectFilledMultiColor"][1]["call_args"] = "(p_min,p_max,col_u defs["ImDrawList_AddRectFilledMultiColor"][1]["cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["defaults"] = {} defs["ImDrawList_AddRectFilledMultiColor"][1]["funcname"] = "AddRectFilledMultiColor" +<<<<<<< HEAD defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:2816" +======= +defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:2960" +>>>>>>> docking_inter defs["ImDrawList_AddRectFilledMultiColor"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["ret"] = "void" defs["ImDrawList_AddRectFilledMultiColor"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)" @@ -1834,7 +2110,11 @@ defs["ImDrawList_AddText"][1]["cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][1]["defaults"] = {} defs["ImDrawList_AddText"][1]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][1]["funcname"] = "AddText" +<<<<<<< HEAD defs["ImDrawList_AddText"][1]["location"] = "imgui:2827" +======= +defs["ImDrawList_AddText"][1]["location"] = "imgui:2971" +>>>>>>> docking_inter defs["ImDrawList_AddText"][1]["ov_cimguiname"] = "ImDrawList_AddText_Vec2" defs["ImDrawList_AddText"][1]["ret"] = "void" defs["ImDrawList_AddText"][1]["signature"] = "(const ImVec2,ImU32,const char*,const char*)" @@ -1877,7 +2157,11 @@ defs["ImDrawList_AddText"][2]["defaults"]["cpu_fine_clip_rect"] = "NULL" defs["ImDrawList_AddText"][2]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][2]["defaults"]["wrap_width"] = "0.0f" defs["ImDrawList_AddText"][2]["funcname"] = "AddText" +<<<<<<< HEAD defs["ImDrawList_AddText"][2]["location"] = "imgui:2828" +======= +defs["ImDrawList_AddText"][2]["location"] = "imgui:2972" +>>>>>>> docking_inter defs["ImDrawList_AddText"][2]["ov_cimguiname"] = "ImDrawList_AddText_FontPtr" defs["ImDrawList_AddText"][2]["ret"] = "void" defs["ImDrawList_AddText"][2]["signature"] = "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)" @@ -1912,7 +2196,11 @@ defs["ImDrawList_AddTriangle"][1]["cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["defaults"] = {} defs["ImDrawList_AddTriangle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddTriangle"][1]["funcname"] = "AddTriangle" +<<<<<<< HEAD defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:2819" +======= +defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:2963" +>>>>>>> docking_inter defs["ImDrawList_AddTriangle"][1]["ov_cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["ret"] = "void" defs["ImDrawList_AddTriangle"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -1942,7 +2230,11 @@ defs["ImDrawList_AddTriangleFilled"][1]["call_args"] = "(p1,p2,p3,col)" defs["ImDrawList_AddTriangleFilled"][1]["cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["defaults"] = {} defs["ImDrawList_AddTriangleFilled"][1]["funcname"] = "AddTriangleFilled" +<<<<<<< HEAD defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:2820" +======= +defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:2964" +>>>>>>> docking_inter defs["ImDrawList_AddTriangleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["ret"] = "void" defs["ImDrawList_AddTriangleFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1960,7 +2252,11 @@ defs["ImDrawList_ChannelsMerge"][1]["call_args"] = "()" defs["ImDrawList_ChannelsMerge"][1]["cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["defaults"] = {} defs["ImDrawList_ChannelsMerge"][1]["funcname"] = "ChannelsMerge" +<<<<<<< HEAD defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:2875" +======= +defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:3019" +>>>>>>> docking_inter defs["ImDrawList_ChannelsMerge"][1]["ov_cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["ret"] = "void" defs["ImDrawList_ChannelsMerge"][1]["signature"] = "()" @@ -1981,7 +2277,11 @@ defs["ImDrawList_ChannelsSetCurrent"][1]["call_args"] = "(n)" defs["ImDrawList_ChannelsSetCurrent"][1]["cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["defaults"] = {} defs["ImDrawList_ChannelsSetCurrent"][1]["funcname"] = "ChannelsSetCurrent" +<<<<<<< HEAD defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:2876" +======= +defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:3020" +>>>>>>> docking_inter defs["ImDrawList_ChannelsSetCurrent"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["ret"] = "void" defs["ImDrawList_ChannelsSetCurrent"][1]["signature"] = "(int)" @@ -2002,7 +2302,11 @@ defs["ImDrawList_ChannelsSplit"][1]["call_args"] = "(count)" defs["ImDrawList_ChannelsSplit"][1]["cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["defaults"] = {} defs["ImDrawList_ChannelsSplit"][1]["funcname"] = "ChannelsSplit" +<<<<<<< HEAD defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:2874" +======= +defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:3018" +>>>>>>> docking_inter defs["ImDrawList_ChannelsSplit"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["ret"] = "void" defs["ImDrawList_ChannelsSplit"][1]["signature"] = "(int)" @@ -2020,7 +2324,11 @@ defs["ImDrawList_CloneOutput"][1]["call_args"] = "()" defs["ImDrawList_CloneOutput"][1]["cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["defaults"] = {} defs["ImDrawList_CloneOutput"][1]["funcname"] = "CloneOutput" +<<<<<<< HEAD defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:2866" +======= +defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:3010" +>>>>>>> docking_inter defs["ImDrawList_CloneOutput"][1]["ov_cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["ret"] = "ImDrawList*" defs["ImDrawList_CloneOutput"][1]["signature"] = "()const" @@ -2041,7 +2349,11 @@ defs["ImDrawList_GetClipRectMax"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMax"][1]["cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMax"][1]["funcname"] = "GetClipRectMax" +<<<<<<< HEAD defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:2804" +======= +defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:2948" +>>>>>>> docking_inter defs["ImDrawList_GetClipRectMax"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMax"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["ret"] = "void" @@ -2063,7 +2375,11 @@ defs["ImDrawList_GetClipRectMin"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMin"][1]["cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMin"][1]["funcname"] = "GetClipRectMin" +<<<<<<< HEAD defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:2803" +======= +defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:2947" +>>>>>>> docking_inter defs["ImDrawList_GetClipRectMin"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMin"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["ret"] = "void" @@ -2083,7 +2399,11 @@ defs["ImDrawList_ImDrawList"][1]["cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["constructor"] = true defs["ImDrawList_ImDrawList"][1]["defaults"] = {} defs["ImDrawList_ImDrawList"][1]["funcname"] = "ImDrawList" +<<<<<<< HEAD defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:2795" +======= +defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:2939" +>>>>>>> docking_inter defs["ImDrawList_ImDrawList"][1]["ov_cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["signature"] = "(ImDrawListSharedData*)" defs["ImDrawList_ImDrawList"][1]["stname"] = "ImDrawList" @@ -2116,7 +2436,11 @@ defs["ImDrawList_PathArcTo"][1]["cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["defaults"] = {} defs["ImDrawList_PathArcTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathArcTo"][1]["funcname"] = "PathArcTo" +<<<<<<< HEAD defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:2856" +======= +defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:3000" +>>>>>>> docking_inter defs["ImDrawList_PathArcTo"][1]["ov_cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["ret"] = "void" defs["ImDrawList_PathArcTo"][1]["signature"] = "(const ImVec2,float,float,float,int)" @@ -2146,7 +2470,11 @@ defs["ImDrawList_PathArcToFast"][1]["call_args"] = "(center,radius,a_min_of_12,a defs["ImDrawList_PathArcToFast"][1]["cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["defaults"] = {} defs["ImDrawList_PathArcToFast"][1]["funcname"] = "PathArcToFast" +<<<<<<< HEAD defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:2857" +======= +defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:3001" +>>>>>>> docking_inter defs["ImDrawList_PathArcToFast"][1]["ov_cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["ret"] = "void" defs["ImDrawList_PathArcToFast"][1]["signature"] = "(const ImVec2,float,int,int)" @@ -2177,7 +2505,11 @@ defs["ImDrawList_PathBezierCubicCurveTo"][1]["cimguiname"] = "ImDrawList_PathBez defs["ImDrawList_PathBezierCubicCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierCubicCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierCubicCurveTo"][1]["funcname"] = "PathBezierCubicCurveTo" +<<<<<<< HEAD defs["ImDrawList_PathBezierCubicCurveTo"][1]["location"] = "imgui:2859" +======= +defs["ImDrawList_PathBezierCubicCurveTo"][1]["location"] = "imgui:3003" +>>>>>>> docking_inter defs["ImDrawList_PathBezierCubicCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierCubicCurveTo" defs["ImDrawList_PathBezierCubicCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierCubicCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,int)" @@ -2205,7 +2537,11 @@ defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["cimguiname"] = "ImDrawList_Pat defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["funcname"] = "PathBezierQuadraticCurveTo" +<<<<<<< HEAD defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["location"] = "imgui:2860" +======= +defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["location"] = "imgui:3004" +>>>>>>> docking_inter defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierQuadraticCurveTo" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,int)" @@ -2223,7 +2559,11 @@ defs["ImDrawList_PathClear"][1]["call_args"] = "()" defs["ImDrawList_PathClear"][1]["cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["defaults"] = {} defs["ImDrawList_PathClear"][1]["funcname"] = "PathClear" +<<<<<<< HEAD defs["ImDrawList_PathClear"][1]["location"] = "imgui:2850" +======= +defs["ImDrawList_PathClear"][1]["location"] = "imgui:2994" +>>>>>>> docking_inter defs["ImDrawList_PathClear"][1]["ov_cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["ret"] = "void" defs["ImDrawList_PathClear"][1]["signature"] = "()" @@ -2260,7 +2600,11 @@ defs["ImDrawList_PathEllipticalArcTo"][1]["cimguiname"] = "ImDrawList_PathEllipt defs["ImDrawList_PathEllipticalArcTo"][1]["defaults"] = {} defs["ImDrawList_PathEllipticalArcTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathEllipticalArcTo"][1]["funcname"] = "PathEllipticalArcTo" +<<<<<<< HEAD defs["ImDrawList_PathEllipticalArcTo"][1]["location"] = "imgui:2858" +======= +defs["ImDrawList_PathEllipticalArcTo"][1]["location"] = "imgui:3002" +>>>>>>> docking_inter defs["ImDrawList_PathEllipticalArcTo"][1]["ov_cimguiname"] = "ImDrawList_PathEllipticalArcTo" defs["ImDrawList_PathEllipticalArcTo"][1]["ret"] = "void" defs["ImDrawList_PathEllipticalArcTo"][1]["signature"] = "(const ImVec2,const ImVec2,float,float,float,int)" @@ -2281,7 +2625,11 @@ defs["ImDrawList_PathFillConcave"][1]["call_args"] = "(col)" defs["ImDrawList_PathFillConcave"][1]["cimguiname"] = "ImDrawList_PathFillConcave" defs["ImDrawList_PathFillConcave"][1]["defaults"] = {} defs["ImDrawList_PathFillConcave"][1]["funcname"] = "PathFillConcave" +<<<<<<< HEAD defs["ImDrawList_PathFillConcave"][1]["location"] = "imgui:2854" +======= +defs["ImDrawList_PathFillConcave"][1]["location"] = "imgui:2998" +>>>>>>> docking_inter defs["ImDrawList_PathFillConcave"][1]["ov_cimguiname"] = "ImDrawList_PathFillConcave" defs["ImDrawList_PathFillConcave"][1]["ret"] = "void" defs["ImDrawList_PathFillConcave"][1]["signature"] = "(ImU32)" @@ -2302,7 +2650,11 @@ defs["ImDrawList_PathFillConvex"][1]["call_args"] = "(col)" defs["ImDrawList_PathFillConvex"][1]["cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["defaults"] = {} defs["ImDrawList_PathFillConvex"][1]["funcname"] = "PathFillConvex" +<<<<<<< HEAD defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:2853" +======= +defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:2997" +>>>>>>> docking_inter defs["ImDrawList_PathFillConvex"][1]["ov_cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["ret"] = "void" defs["ImDrawList_PathFillConvex"][1]["signature"] = "(ImU32)" @@ -2323,7 +2675,11 @@ defs["ImDrawList_PathLineTo"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineTo"][1]["cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["defaults"] = {} defs["ImDrawList_PathLineTo"][1]["funcname"] = "PathLineTo" +<<<<<<< HEAD defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:2851" +======= +defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:2995" +>>>>>>> docking_inter defs["ImDrawList_PathLineTo"][1]["ov_cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["ret"] = "void" defs["ImDrawList_PathLineTo"][1]["signature"] = "(const ImVec2)" @@ -2344,7 +2700,11 @@ defs["ImDrawList_PathLineToMergeDuplicate"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineToMergeDuplicate"][1]["cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["defaults"] = {} defs["ImDrawList_PathLineToMergeDuplicate"][1]["funcname"] = "PathLineToMergeDuplicate" +<<<<<<< HEAD defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:2852" +======= +defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:2996" +>>>>>>> docking_inter defs["ImDrawList_PathLineToMergeDuplicate"][1]["ov_cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ret"] = "void" defs["ImDrawList_PathLineToMergeDuplicate"][1]["signature"] = "(const ImVec2)" @@ -2376,7 +2736,11 @@ defs["ImDrawList_PathRect"][1]["defaults"] = {} defs["ImDrawList_PathRect"][1]["defaults"]["flags"] = "0" defs["ImDrawList_PathRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_PathRect"][1]["funcname"] = "PathRect" +<<<<<<< HEAD defs["ImDrawList_PathRect"][1]["location"] = "imgui:2861" +======= +defs["ImDrawList_PathRect"][1]["location"] = "imgui:3005" +>>>>>>> docking_inter defs["ImDrawList_PathRect"][1]["ov_cimguiname"] = "ImDrawList_PathRect" defs["ImDrawList_PathRect"][1]["ret"] = "void" defs["ImDrawList_PathRect"][1]["signature"] = "(const ImVec2,const ImVec2,float,ImDrawFlags)" @@ -2405,7 +2769,11 @@ defs["ImDrawList_PathStroke"][1]["defaults"] = {} defs["ImDrawList_PathStroke"][1]["defaults"]["flags"] = "0" defs["ImDrawList_PathStroke"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_PathStroke"][1]["funcname"] = "PathStroke" +<<<<<<< HEAD defs["ImDrawList_PathStroke"][1]["location"] = "imgui:2855" +======= +defs["ImDrawList_PathStroke"][1]["location"] = "imgui:2999" +>>>>>>> docking_inter defs["ImDrawList_PathStroke"][1]["ov_cimguiname"] = "ImDrawList_PathStroke" defs["ImDrawList_PathStroke"][1]["ret"] = "void" defs["ImDrawList_PathStroke"][1]["signature"] = "(ImU32,ImDrawFlags,float)" @@ -2423,7 +2791,11 @@ defs["ImDrawList_PopClipRect"][1]["call_args"] = "()" defs["ImDrawList_PopClipRect"][1]["cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["defaults"] = {} defs["ImDrawList_PopClipRect"][1]["funcname"] = "PopClipRect" +<<<<<<< HEAD defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:2800" +======= +defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:2944" +>>>>>>> docking_inter defs["ImDrawList_PopClipRect"][1]["ov_cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["ret"] = "void" defs["ImDrawList_PopClipRect"][1]["signature"] = "()" @@ -2441,7 +2813,11 @@ defs["ImDrawList_PopTextureID"][1]["call_args"] = "()" defs["ImDrawList_PopTextureID"][1]["cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["defaults"] = {} defs["ImDrawList_PopTextureID"][1]["funcname"] = "PopTextureID" +<<<<<<< HEAD defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:2802" +======= +defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:2946" +>>>>>>> docking_inter defs["ImDrawList_PopTextureID"][1]["ov_cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["ret"] = "void" defs["ImDrawList_PopTextureID"][1]["signature"] = "()" @@ -2486,7 +2862,11 @@ defs["ImDrawList_PrimQuadUV"][1]["call_args"] = "(a,b,c,d,uv_a,uv_b,uv_c,uv_d,co defs["ImDrawList_PrimQuadUV"][1]["cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["defaults"] = {} defs["ImDrawList_PrimQuadUV"][1]["funcname"] = "PrimQuadUV" +<<<<<<< HEAD defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:2885" +======= +defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:3029" +>>>>>>> docking_inter defs["ImDrawList_PrimQuadUV"][1]["ov_cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["ret"] = "void" defs["ImDrawList_PrimQuadUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -2513,7 +2893,11 @@ defs["ImDrawList_PrimRect"][1]["call_args"] = "(a,b,col)" defs["ImDrawList_PrimRect"][1]["cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["defaults"] = {} defs["ImDrawList_PrimRect"][1]["funcname"] = "PrimRect" +<<<<<<< HEAD defs["ImDrawList_PrimRect"][1]["location"] = "imgui:2883" +======= +defs["ImDrawList_PrimRect"][1]["location"] = "imgui:3027" +>>>>>>> docking_inter defs["ImDrawList_PrimRect"][1]["ov_cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["ret"] = "void" defs["ImDrawList_PrimRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2546,7 +2930,11 @@ defs["ImDrawList_PrimRectUV"][1]["call_args"] = "(a,b,uv_a,uv_b,col)" defs["ImDrawList_PrimRectUV"][1]["cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["defaults"] = {} defs["ImDrawList_PrimRectUV"][1]["funcname"] = "PrimRectUV" +<<<<<<< HEAD defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:2884" +======= +defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:3028" +>>>>>>> docking_inter defs["ImDrawList_PrimRectUV"][1]["ov_cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["ret"] = "void" defs["ImDrawList_PrimRectUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -2570,7 +2958,11 @@ defs["ImDrawList_PrimReserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimReserve"][1]["cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["defaults"] = {} defs["ImDrawList_PrimReserve"][1]["funcname"] = "PrimReserve" +<<<<<<< HEAD defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:2881" +======= +defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:3025" +>>>>>>> docking_inter defs["ImDrawList_PrimReserve"][1]["ov_cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["ret"] = "void" defs["ImDrawList_PrimReserve"][1]["signature"] = "(int,int)" @@ -2594,7 +2986,11 @@ defs["ImDrawList_PrimUnreserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimUnreserve"][1]["cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["defaults"] = {} defs["ImDrawList_PrimUnreserve"][1]["funcname"] = "PrimUnreserve" +<<<<<<< HEAD defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:2882" +======= +defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:3026" +>>>>>>> docking_inter defs["ImDrawList_PrimUnreserve"][1]["ov_cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["ret"] = "void" defs["ImDrawList_PrimUnreserve"][1]["signature"] = "(int,int)" @@ -2621,7 +3017,11 @@ defs["ImDrawList_PrimVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimVtx"][1]["cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["defaults"] = {} defs["ImDrawList_PrimVtx"][1]["funcname"] = "PrimVtx" +<<<<<<< HEAD defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:2888" +======= +defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:3032" +>>>>>>> docking_inter defs["ImDrawList_PrimVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["ret"] = "void" defs["ImDrawList_PrimVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2642,7 +3042,11 @@ defs["ImDrawList_PrimWriteIdx"][1]["call_args"] = "(idx)" defs["ImDrawList_PrimWriteIdx"][1]["cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteIdx"][1]["funcname"] = "PrimWriteIdx" +<<<<<<< HEAD defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:2887" +======= +defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:3031" +>>>>>>> docking_inter defs["ImDrawList_PrimWriteIdx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteIdx"][1]["signature"] = "(ImDrawIdx)" @@ -2669,7 +3073,11 @@ defs["ImDrawList_PrimWriteVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimWriteVtx"][1]["cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteVtx"][1]["funcname"] = "PrimWriteVtx" +<<<<<<< HEAD defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:2886" +======= +defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:3030" +>>>>>>> docking_inter defs["ImDrawList_PrimWriteVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2697,7 +3105,11 @@ defs["ImDrawList_PushClipRect"][1]["cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["defaults"] = {} defs["ImDrawList_PushClipRect"][1]["defaults"]["intersect_with_current_clip_rect"] = "false" defs["ImDrawList_PushClipRect"][1]["funcname"] = "PushClipRect" +<<<<<<< HEAD defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:2798" +======= +defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:2942" +>>>>>>> docking_inter defs["ImDrawList_PushClipRect"][1]["ov_cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["ret"] = "void" defs["ImDrawList_PushClipRect"][1]["signature"] = "(const ImVec2,const ImVec2,bool)" @@ -2715,7 +3127,11 @@ defs["ImDrawList_PushClipRectFullScreen"][1]["call_args"] = "()" defs["ImDrawList_PushClipRectFullScreen"][1]["cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["defaults"] = {} defs["ImDrawList_PushClipRectFullScreen"][1]["funcname"] = "PushClipRectFullScreen" +<<<<<<< HEAD defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:2799" +======= +defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:2943" +>>>>>>> docking_inter defs["ImDrawList_PushClipRectFullScreen"][1]["ov_cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["ret"] = "void" defs["ImDrawList_PushClipRectFullScreen"][1]["signature"] = "()" @@ -2736,7 +3152,11 @@ defs["ImDrawList_PushTextureID"][1]["call_args"] = "(texture_id)" defs["ImDrawList_PushTextureID"][1]["cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["defaults"] = {} defs["ImDrawList_PushTextureID"][1]["funcname"] = "PushTextureID" +<<<<<<< HEAD defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:2801" +======= +defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:2945" +>>>>>>> docking_inter defs["ImDrawList_PushTextureID"][1]["ov_cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["ret"] = "void" defs["ImDrawList_PushTextureID"][1]["signature"] = "(ImTextureID)" @@ -2757,7 +3177,11 @@ defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["call_args"] = "(radius)" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["cimguiname"] = "ImDrawList__CalcCircleAutoSegmentCount" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["defaults"] = {} defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["funcname"] = "_CalcCircleAutoSegmentCount" +<<<<<<< HEAD defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["location"] = "imgui:2905" +======= +defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["location"] = "imgui:3049" +>>>>>>> docking_inter defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["ov_cimguiname"] = "ImDrawList__CalcCircleAutoSegmentCount" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["ret"] = "int" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["signature"] = "(float)const" @@ -2775,7 +3199,11 @@ defs["ImDrawList__ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawList__ClearFreeMemory"][1]["cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawList__ClearFreeMemory"][1]["funcname"] = "_ClearFreeMemory" +<<<<<<< HEAD defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:2899" +======= +defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:3043" +>>>>>>> docking_inter defs["ImDrawList__ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawList__ClearFreeMemory"][1]["signature"] = "()" @@ -2793,7 +3221,11 @@ defs["ImDrawList__OnChangedClipRect"][1]["call_args"] = "()" defs["ImDrawList__OnChangedClipRect"][1]["cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["defaults"] = {} defs["ImDrawList__OnChangedClipRect"][1]["funcname"] = "_OnChangedClipRect" +<<<<<<< HEAD defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:2902" +======= +defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:3046" +>>>>>>> docking_inter defs["ImDrawList__OnChangedClipRect"][1]["ov_cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["ret"] = "void" defs["ImDrawList__OnChangedClipRect"][1]["signature"] = "()" @@ -2811,7 +3243,11 @@ defs["ImDrawList__OnChangedTextureID"][1]["call_args"] = "()" defs["ImDrawList__OnChangedTextureID"][1]["cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["defaults"] = {} defs["ImDrawList__OnChangedTextureID"][1]["funcname"] = "_OnChangedTextureID" +<<<<<<< HEAD defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:2903" +======= +defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:3047" +>>>>>>> docking_inter defs["ImDrawList__OnChangedTextureID"][1]["ov_cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["ret"] = "void" defs["ImDrawList__OnChangedTextureID"][1]["signature"] = "()" @@ -2829,7 +3265,11 @@ defs["ImDrawList__OnChangedVtxOffset"][1]["call_args"] = "()" defs["ImDrawList__OnChangedVtxOffset"][1]["cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["defaults"] = {} defs["ImDrawList__OnChangedVtxOffset"][1]["funcname"] = "_OnChangedVtxOffset" +<<<<<<< HEAD defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:2904" +======= +defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:3048" +>>>>>>> docking_inter defs["ImDrawList__OnChangedVtxOffset"][1]["ov_cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["ret"] = "void" defs["ImDrawList__OnChangedVtxOffset"][1]["signature"] = "()" @@ -2862,7 +3302,11 @@ defs["ImDrawList__PathArcToFastEx"][1]["call_args"] = "(center,radius,a_min_samp defs["ImDrawList__PathArcToFastEx"][1]["cimguiname"] = "ImDrawList__PathArcToFastEx" defs["ImDrawList__PathArcToFastEx"][1]["defaults"] = {} defs["ImDrawList__PathArcToFastEx"][1]["funcname"] = "_PathArcToFastEx" +<<<<<<< HEAD defs["ImDrawList__PathArcToFastEx"][1]["location"] = "imgui:2906" +======= +defs["ImDrawList__PathArcToFastEx"][1]["location"] = "imgui:3050" +>>>>>>> docking_inter defs["ImDrawList__PathArcToFastEx"][1]["ov_cimguiname"] = "ImDrawList__PathArcToFastEx" defs["ImDrawList__PathArcToFastEx"][1]["ret"] = "void" defs["ImDrawList__PathArcToFastEx"][1]["signature"] = "(const ImVec2,float,int,int,int)" @@ -2895,7 +3339,11 @@ defs["ImDrawList__PathArcToN"][1]["call_args"] = "(center,radius,a_min,a_max,num defs["ImDrawList__PathArcToN"][1]["cimguiname"] = "ImDrawList__PathArcToN" defs["ImDrawList__PathArcToN"][1]["defaults"] = {} defs["ImDrawList__PathArcToN"][1]["funcname"] = "_PathArcToN" +<<<<<<< HEAD defs["ImDrawList__PathArcToN"][1]["location"] = "imgui:2907" +======= +defs["ImDrawList__PathArcToN"][1]["location"] = "imgui:3051" +>>>>>>> docking_inter defs["ImDrawList__PathArcToN"][1]["ov_cimguiname"] = "ImDrawList__PathArcToN" defs["ImDrawList__PathArcToN"][1]["ret"] = "void" defs["ImDrawList__PathArcToN"][1]["signature"] = "(const ImVec2,float,float,float,int)" @@ -2913,7 +3361,11 @@ defs["ImDrawList__PopUnusedDrawCmd"][1]["call_args"] = "()" defs["ImDrawList__PopUnusedDrawCmd"][1]["cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["defaults"] = {} defs["ImDrawList__PopUnusedDrawCmd"][1]["funcname"] = "_PopUnusedDrawCmd" +<<<<<<< HEAD defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:2900" +======= +defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:3044" +>>>>>>> docking_inter defs["ImDrawList__PopUnusedDrawCmd"][1]["ov_cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["ret"] = "void" defs["ImDrawList__PopUnusedDrawCmd"][1]["signature"] = "()" @@ -2931,7 +3383,11 @@ defs["ImDrawList__ResetForNewFrame"][1]["call_args"] = "()" defs["ImDrawList__ResetForNewFrame"][1]["cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["defaults"] = {} defs["ImDrawList__ResetForNewFrame"][1]["funcname"] = "_ResetForNewFrame" +<<<<<<< HEAD defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:2898" +======= +defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:3042" +>>>>>>> docking_inter defs["ImDrawList__ResetForNewFrame"][1]["ov_cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["ret"] = "void" defs["ImDrawList__ResetForNewFrame"][1]["signature"] = "()" @@ -2949,7 +3405,11 @@ defs["ImDrawList__TryMergeDrawCmds"][1]["call_args"] = "()" defs["ImDrawList__TryMergeDrawCmds"][1]["cimguiname"] = "ImDrawList__TryMergeDrawCmds" defs["ImDrawList__TryMergeDrawCmds"][1]["defaults"] = {} defs["ImDrawList__TryMergeDrawCmds"][1]["funcname"] = "_TryMergeDrawCmds" +<<<<<<< HEAD defs["ImDrawList__TryMergeDrawCmds"][1]["location"] = "imgui:2901" +======= +defs["ImDrawList__TryMergeDrawCmds"][1]["location"] = "imgui:3045" +>>>>>>> docking_inter defs["ImDrawList__TryMergeDrawCmds"][1]["ov_cimguiname"] = "ImDrawList__TryMergeDrawCmds" defs["ImDrawList__TryMergeDrawCmds"][1]["ret"] = "void" defs["ImDrawList__TryMergeDrawCmds"][1]["signature"] = "()" @@ -2966,7 +3426,11 @@ defs["ImDrawList_destroy"][1]["call_args"] = "(self)" defs["ImDrawList_destroy"][1]["cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["defaults"] = {} defs["ImDrawList_destroy"][1]["destructor"] = true +<<<<<<< HEAD defs["ImDrawList_destroy"][1]["location"] = "imgui:2797" +======= +defs["ImDrawList_destroy"][1]["location"] = "imgui:2941" +>>>>>>> docking_inter defs["ImDrawList_destroy"][1]["ov_cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["realdestructor"] = true defs["ImDrawList_destroy"][1]["ret"] = "void" @@ -2983,7 +3447,11 @@ defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["cimguiname"] = "ImFontAt defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["constructor"] = true defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["funcname"] = "ImFontAtlasCustomRect" +<<<<<<< HEAD defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui:3002" +======= +defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui:3146" +>>>>>>> docking_inter defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_ImFontAtlasCustomRect" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["signature"] = "()" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["stname"] = "ImFontAtlasCustomRect" @@ -3000,7 +3468,11 @@ defs["ImFontAtlasCustomRect_IsPacked"][1]["call_args"] = "()" defs["ImFontAtlasCustomRect_IsPacked"][1]["cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_IsPacked"][1]["funcname"] = "IsPacked" +<<<<<<< HEAD defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui:3003" +======= +defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui:3147" +>>>>>>> docking_inter defs["ImFontAtlasCustomRect_IsPacked"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["ret"] = "bool" defs["ImFontAtlasCustomRect_IsPacked"][1]["signature"] = "()const" @@ -3053,7 +3525,11 @@ defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["cimguiname"] = "ImFontAtlas_AddCu defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"]["offset"] = "ImVec2(0,0)" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["funcname"] = "AddCustomRectFontGlyph" +<<<<<<< HEAD defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui:3088" +======= +defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui:3232" +>>>>>>> docking_inter defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectFontGlyph" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["signature"] = "(ImFont*,ImWchar,int,int,float,const ImVec2)" @@ -3077,7 +3553,11 @@ defs["ImFontAtlas_AddCustomRectRegular"][1]["call_args"] = "(width,height)" defs["ImFontAtlas_AddCustomRectRegular"][1]["cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectRegular"][1]["funcname"] = "AddCustomRectRegular" +<<<<<<< HEAD defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui:3087" +======= +defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui:3231" +>>>>>>> docking_inter defs["ImFontAtlas_AddCustomRectRegular"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectRegular"][1]["signature"] = "(int,int)" @@ -3098,7 +3578,11 @@ defs["ImFontAtlas_AddFont"][1]["call_args"] = "(font_cfg)" defs["ImFontAtlas_AddFont"][1]["cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["defaults"] = {} defs["ImFontAtlas_AddFont"][1]["funcname"] = "AddFont" +<<<<<<< HEAD defs["ImFontAtlas_AddFont"][1]["location"] = "imgui:3036" +======= +defs["ImFontAtlas_AddFont"][1]["location"] = "imgui:3180" +>>>>>>> docking_inter defs["ImFontAtlas_AddFont"][1]["ov_cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFont"][1]["signature"] = "(const ImFontConfig*)" @@ -3120,7 +3604,11 @@ defs["ImFontAtlas_AddFontDefault"][1]["cimguiname"] = "ImFontAtlas_AddFontDefaul defs["ImFontAtlas_AddFontDefault"][1]["defaults"] = {} defs["ImFontAtlas_AddFontDefault"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontDefault"][1]["funcname"] = "AddFontDefault" +<<<<<<< HEAD defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui:3037" +======= +defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui:3181" +>>>>>>> docking_inter defs["ImFontAtlas_AddFontDefault"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontDefault" defs["ImFontAtlas_AddFontDefault"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontDefault"][1]["signature"] = "(const ImFontConfig*)" @@ -3152,7 +3640,11 @@ defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromFileTTF"][1]["funcname"] = "AddFontFromFileTTF" +<<<<<<< HEAD defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui:3038" +======= +defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui:3182" +>>>>>>> docking_inter defs["ImFontAtlas_AddFontFromFileTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromFileTTF" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromFileTTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -3184,7 +3676,11 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["funcname"] = "AddFontFromMemoryCompressedBase85TTF" +<<<<<<< HEAD defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui:3041" +======= +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui:3185" +>>>>>>> docking_inter defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -3219,7 +3715,11 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["funcname"] = "AddFontFromMemoryCompressedTTF" +<<<<<<< HEAD defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui:3040" +======= +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui:3184" +>>>>>>> docking_inter defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["signature"] = "(const void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -3254,7 +3754,11 @@ defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["funcname"] = "AddFontFromMemoryTTF" +<<<<<<< HEAD defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui:3039" +======= +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui:3183" +>>>>>>> docking_inter defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["signature"] = "(void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -3272,7 +3776,11 @@ defs["ImFontAtlas_Build"][1]["call_args"] = "()" defs["ImFontAtlas_Build"][1]["cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["defaults"] = {} defs["ImFontAtlas_Build"][1]["funcname"] = "Build" +<<<<<<< HEAD defs["ImFontAtlas_Build"][1]["location"] = "imgui:3052" +======= +defs["ImFontAtlas_Build"][1]["location"] = "imgui:3196" +>>>>>>> docking_inter defs["ImFontAtlas_Build"][1]["ov_cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["ret"] = "bool" defs["ImFontAtlas_Build"][1]["signature"] = "()" @@ -3299,7 +3807,11 @@ defs["ImFontAtlas_CalcCustomRectUV"][1]["call_args"] = "(rect,out_uv_min,out_uv_ defs["ImFontAtlas_CalcCustomRectUV"][1]["cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["defaults"] = {} defs["ImFontAtlas_CalcCustomRectUV"][1]["funcname"] = "CalcCustomRectUV" +<<<<<<< HEAD defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui:3092" +======= +defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui:3236" +>>>>>>> docking_inter defs["ImFontAtlas_CalcCustomRectUV"][1]["ov_cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["ret"] = "void" defs["ImFontAtlas_CalcCustomRectUV"][1]["signature"] = "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const" @@ -3317,7 +3829,11 @@ defs["ImFontAtlas_Clear"][1]["call_args"] = "()" defs["ImFontAtlas_Clear"][1]["cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["defaults"] = {} defs["ImFontAtlas_Clear"][1]["funcname"] = "Clear" +<<<<<<< HEAD defs["ImFontAtlas_Clear"][1]["location"] = "imgui:3045" +======= +defs["ImFontAtlas_Clear"][1]["location"] = "imgui:3189" +>>>>>>> docking_inter defs["ImFontAtlas_Clear"][1]["ov_cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["ret"] = "void" defs["ImFontAtlas_Clear"][1]["signature"] = "()" @@ -3335,7 +3851,11 @@ defs["ImFontAtlas_ClearFonts"][1]["call_args"] = "()" defs["ImFontAtlas_ClearFonts"][1]["cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["defaults"] = {} defs["ImFontAtlas_ClearFonts"][1]["funcname"] = "ClearFonts" +<<<<<<< HEAD defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui:3044" +======= +defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui:3188" +>>>>>>> docking_inter defs["ImFontAtlas_ClearFonts"][1]["ov_cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["ret"] = "void" defs["ImFontAtlas_ClearFonts"][1]["signature"] = "()" @@ -3353,7 +3873,11 @@ defs["ImFontAtlas_ClearInputData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearInputData"][1]["cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["defaults"] = {} defs["ImFontAtlas_ClearInputData"][1]["funcname"] = "ClearInputData" +<<<<<<< HEAD defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui:3042" +======= +defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui:3186" +>>>>>>> docking_inter defs["ImFontAtlas_ClearInputData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["ret"] = "void" defs["ImFontAtlas_ClearInputData"][1]["signature"] = "()" @@ -3371,7 +3895,11 @@ defs["ImFontAtlas_ClearTexData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearTexData"][1]["cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["defaults"] = {} defs["ImFontAtlas_ClearTexData"][1]["funcname"] = "ClearTexData" +<<<<<<< HEAD defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui:3043" +======= +defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui:3187" +>>>>>>> docking_inter defs["ImFontAtlas_ClearTexData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["ret"] = "void" defs["ImFontAtlas_ClearTexData"][1]["signature"] = "()" @@ -3392,7 +3920,11 @@ defs["ImFontAtlas_GetCustomRectByIndex"][1]["call_args"] = "(index)" defs["ImFontAtlas_GetCustomRectByIndex"][1]["cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["defaults"] = {} defs["ImFontAtlas_GetCustomRectByIndex"][1]["funcname"] = "GetCustomRectByIndex" +<<<<<<< HEAD defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui:3089" +======= +defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui:3233" +>>>>>>> docking_inter defs["ImFontAtlas_GetCustomRectByIndex"][1]["ov_cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ret"] = "ImFontAtlasCustomRect*" defs["ImFontAtlas_GetCustomRectByIndex"][1]["signature"] = "(int)" @@ -3410,7 +3942,11 @@ defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["funcname"] = "GetGlyphRangesChineseFull" +<<<<<<< HEAD defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui:3070" +======= +defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui:3214" +>>>>>>> docking_inter defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["signature"] = "()" @@ -3428,7 +3964,11 @@ defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["funcname"] = "GetGlyphRangesChineseSimplifiedCommon" +<<<<<<< HEAD defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui:3071" +======= +defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui:3215" +>>>>>>> docking_inter defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["signature"] = "()" @@ -3446,7 +3986,11 @@ defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["funcname"] = "GetGlyphRangesCyrillic" +<<<<<<< HEAD defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui:3072" +======= +defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui:3216" +>>>>>>> docking_inter defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["signature"] = "()" @@ -3464,7 +4008,11 @@ defs["ImFontAtlas_GetGlyphRangesDefault"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesDefault"][1]["funcname"] = "GetGlyphRangesDefault" +<<<<<<< HEAD defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui:3066" +======= +defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui:3210" +>>>>>>> docking_inter defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["signature"] = "()" @@ -3482,7 +4030,11 @@ defs["ImFontAtlas_GetGlyphRangesGreek"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesGreek" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesGreek"][1]["funcname"] = "GetGlyphRangesGreek" +<<<<<<< HEAD defs["ImFontAtlas_GetGlyphRangesGreek"][1]["location"] = "imgui:3067" +======= +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["location"] = "imgui:3211" +>>>>>>> docking_inter defs["ImFontAtlas_GetGlyphRangesGreek"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesGreek" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["signature"] = "()" @@ -3500,7 +4052,11 @@ defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["funcname"] = "GetGlyphRangesJapanese" +<<<<<<< HEAD defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui:3069" +======= +defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui:3213" +>>>>>>> docking_inter defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["signature"] = "()" @@ -3518,7 +4074,11 @@ defs["ImFontAtlas_GetGlyphRangesKorean"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesKorean"][1]["funcname"] = "GetGlyphRangesKorean" +<<<<<<< HEAD defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui:3068" +======= +defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui:3212" +>>>>>>> docking_inter defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["signature"] = "()" @@ -3536,7 +4096,11 @@ defs["ImFontAtlas_GetGlyphRangesThai"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesThai"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesThai"][1]["funcname"] = "GetGlyphRangesThai" +<<<<<<< HEAD defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui:3073" +======= +defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui:3217" +>>>>>>> docking_inter defs["ImFontAtlas_GetGlyphRangesThai"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesThai"][1]["signature"] = "()" @@ -3554,7 +4118,11 @@ defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["funcname"] = "GetGlyphRangesVietnamese" +<<<<<<< HEAD defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui:3074" +======= +defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui:3218" +>>>>>>> docking_inter defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["signature"] = "()" @@ -3587,7 +4155,11 @@ defs["ImFontAtlas_GetMouseCursorTexData"][1]["call_args"] = "(cursor,out_offset, defs["ImFontAtlas_GetMouseCursorTexData"][1]["cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["defaults"] = {} defs["ImFontAtlas_GetMouseCursorTexData"][1]["funcname"] = "GetMouseCursorTexData" +<<<<<<< HEAD defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui:3093" +======= +defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui:3237" +>>>>>>> docking_inter defs["ImFontAtlas_GetMouseCursorTexData"][1]["ov_cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ret"] = "bool" defs["ImFontAtlas_GetMouseCursorTexData"][1]["signature"] = "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])" @@ -3618,7 +4190,11 @@ defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["cimguiname"] = "ImFontAtlas_GetTexDat defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"] = {} defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"]["out_bytes_per_pixel"] = "NULL" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["funcname"] = "GetTexDataAsAlpha8" +<<<<<<< HEAD defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui:3053" +======= +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui:3197" +>>>>>>> docking_inter defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsAlpha8" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -3649,7 +4225,11 @@ defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["cimguiname"] = "ImFontAtlas_GetTexDat defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"] = {} defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"]["out_bytes_per_pixel"] = "NULL" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["funcname"] = "GetTexDataAsRGBA32" +<<<<<<< HEAD defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui:3054" +======= +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui:3198" +>>>>>>> docking_inter defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsRGBA32" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -3665,7 +4245,11 @@ defs["ImFontAtlas_ImFontAtlas"][1]["cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["constructor"] = true defs["ImFontAtlas_ImFontAtlas"][1]["defaults"] = {} defs["ImFontAtlas_ImFontAtlas"][1]["funcname"] = "ImFontAtlas" +<<<<<<< HEAD defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui:3034" +======= +defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui:3178" +>>>>>>> docking_inter defs["ImFontAtlas_ImFontAtlas"][1]["ov_cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["signature"] = "()" defs["ImFontAtlas_ImFontAtlas"][1]["stname"] = "ImFontAtlas" @@ -3682,7 +4266,11 @@ defs["ImFontAtlas_IsBuilt"][1]["call_args"] = "()" defs["ImFontAtlas_IsBuilt"][1]["cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["defaults"] = {} defs["ImFontAtlas_IsBuilt"][1]["funcname"] = "IsBuilt" +<<<<<<< HEAD defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui:3055" +======= +defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui:3199" +>>>>>>> docking_inter defs["ImFontAtlas_IsBuilt"][1]["ov_cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["ret"] = "bool" defs["ImFontAtlas_IsBuilt"][1]["signature"] = "()const" @@ -3703,7 +4291,11 @@ defs["ImFontAtlas_SetTexID"][1]["call_args"] = "(id)" defs["ImFontAtlas_SetTexID"][1]["cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["defaults"] = {} defs["ImFontAtlas_SetTexID"][1]["funcname"] = "SetTexID" +<<<<<<< HEAD defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui:3056" +======= +defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui:3200" +>>>>>>> docking_inter defs["ImFontAtlas_SetTexID"][1]["ov_cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["ret"] = "void" defs["ImFontAtlas_SetTexID"][1]["signature"] = "(ImTextureID)" @@ -3720,7 +4312,11 @@ defs["ImFontAtlas_destroy"][1]["call_args"] = "(self)" defs["ImFontAtlas_destroy"][1]["cimguiname"] = "ImFontAtlas_destroy" defs["ImFontAtlas_destroy"][1]["defaults"] = {} defs["ImFontAtlas_destroy"][1]["destructor"] = true +<<<<<<< HEAD defs["ImFontAtlas_destroy"][1]["location"] = "imgui:3035" +======= +defs["ImFontAtlas_destroy"][1]["location"] = "imgui:3179" +>>>>>>> docking_inter defs["ImFontAtlas_destroy"][1]["ov_cimguiname"] = "ImFontAtlas_destroy" defs["ImFontAtlas_destroy"][1]["realdestructor"] = true defs["ImFontAtlas_destroy"][1]["ret"] = "void" @@ -3737,7 +4333,11 @@ defs["ImFontConfig_ImFontConfig"][1]["cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["constructor"] = true defs["ImFontConfig_ImFontConfig"][1]["defaults"] = {} defs["ImFontConfig_ImFontConfig"][1]["funcname"] = "ImFontConfig" +<<<<<<< HEAD defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui:2962" +======= +defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui:3106" +>>>>>>> docking_inter defs["ImFontConfig_ImFontConfig"][1]["ov_cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["signature"] = "()" defs["ImFontConfig_ImFontConfig"][1]["stname"] = "ImFontConfig" @@ -3773,7 +4373,11 @@ defs["ImFontGlyphRangesBuilder_AddChar"][1]["call_args"] = "(c)" defs["ImFontGlyphRangesBuilder_AddChar"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddChar"][1]["funcname"] = "AddChar" +<<<<<<< HEAD defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui:2987" +======= +defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui:3131" +>>>>>>> docking_inter defs["ImFontGlyphRangesBuilder_AddChar"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddChar"][1]["signature"] = "(ImWchar)" @@ -3794,7 +4398,11 @@ defs["ImFontGlyphRangesBuilder_AddRanges"][1]["call_args"] = "(ranges)" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddRanges"][1]["funcname"] = "AddRanges" +<<<<<<< HEAD defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui:2989" +======= +defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui:3133" +>>>>>>> docking_inter defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["signature"] = "(const ImWchar*)" @@ -3819,7 +4427,11 @@ defs["ImFontGlyphRangesBuilder_AddText"][1]["cimguiname"] = "ImFontGlyphRangesBu defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"]["text_end"] = "NULL" defs["ImFontGlyphRangesBuilder_AddText"][1]["funcname"] = "AddText" +<<<<<<< HEAD defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui:2988" +======= +defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui:3132" +>>>>>>> docking_inter defs["ImFontGlyphRangesBuilder_AddText"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddText" defs["ImFontGlyphRangesBuilder_AddText"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddText"][1]["signature"] = "(const char*,const char*)" @@ -3840,7 +4452,11 @@ defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["call_args"] = "(out_ranges)" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["funcname"] = "BuildRanges" +<<<<<<< HEAD defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui:2990" +======= +defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui:3134" +>>>>>>> docking_inter defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["signature"] = "(ImVector_ImWchar*)" @@ -3858,7 +4474,11 @@ defs["ImFontGlyphRangesBuilder_Clear"][1]["call_args"] = "()" defs["ImFontGlyphRangesBuilder_Clear"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_Clear"][1]["funcname"] = "Clear" +<<<<<<< HEAD defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui:2984" +======= +defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui:3128" +>>>>>>> docking_inter defs["ImFontGlyphRangesBuilder_Clear"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_Clear"][1]["signature"] = "()" @@ -3879,7 +4499,11 @@ defs["ImFontGlyphRangesBuilder_GetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_GetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_GetBit"][1]["funcname"] = "GetBit" +<<<<<<< HEAD defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui:2985" +======= +defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui:3129" +>>>>>>> docking_inter defs["ImFontGlyphRangesBuilder_GetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ret"] = "bool" defs["ImFontGlyphRangesBuilder_GetBit"][1]["signature"] = "(size_t)const" @@ -3895,7 +4519,11 @@ defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["cimguiname"] = "Im defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["constructor"] = true defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["funcname"] = "ImFontGlyphRangesBuilder" +<<<<<<< HEAD defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui:2983" +======= +defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui:3127" +>>>>>>> docking_inter defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["signature"] = "()" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -3915,7 +4543,11 @@ defs["ImFontGlyphRangesBuilder_SetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_SetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_SetBit"][1]["funcname"] = "SetBit" +<<<<<<< HEAD defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui:2986" +======= +defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui:3130" +>>>>>>> docking_inter defs["ImFontGlyphRangesBuilder_SetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_SetBit"][1]["signature"] = "(size_t)" @@ -3982,7 +4614,11 @@ defs["ImFont_AddGlyph"][1]["call_args"] = "(src_cfg,c,x0,y0,x1,y1,u0,v0,u1,v1,ad defs["ImFont_AddGlyph"][1]["cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["defaults"] = {} defs["ImFont_AddGlyph"][1]["funcname"] = "AddGlyph" +<<<<<<< HEAD defs["ImFont_AddGlyph"][1]["location"] = "imgui:3183" +======= +defs["ImFont_AddGlyph"][1]["location"] = "imgui:3327" +>>>>>>> docking_inter defs["ImFont_AddGlyph"][1]["ov_cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["ret"] = "void" defs["ImFont_AddGlyph"][1]["signature"] = "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)" @@ -4010,7 +4646,11 @@ defs["ImFont_AddRemapChar"][1]["cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["defaults"] = {} defs["ImFont_AddRemapChar"][1]["defaults"]["overwrite_dst"] = "true" defs["ImFont_AddRemapChar"][1]["funcname"] = "AddRemapChar" +<<<<<<< HEAD defs["ImFont_AddRemapChar"][1]["location"] = "imgui:3184" +======= +defs["ImFont_AddRemapChar"][1]["location"] = "imgui:3328" +>>>>>>> docking_inter defs["ImFont_AddRemapChar"][1]["ov_cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["ret"] = "void" defs["ImFont_AddRemapChar"][1]["signature"] = "(ImWchar,ImWchar,bool)" @@ -4028,7 +4668,11 @@ defs["ImFont_BuildLookupTable"][1]["call_args"] = "()" defs["ImFont_BuildLookupTable"][1]["cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["defaults"] = {} defs["ImFont_BuildLookupTable"][1]["funcname"] = "BuildLookupTable" +<<<<<<< HEAD defs["ImFont_BuildLookupTable"][1]["location"] = "imgui:3180" +======= +defs["ImFont_BuildLookupTable"][1]["location"] = "imgui:3324" +>>>>>>> docking_inter defs["ImFont_BuildLookupTable"][1]["ov_cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["ret"] = "void" defs["ImFont_BuildLookupTable"][1]["signature"] = "()" @@ -4069,7 +4713,11 @@ defs["ImFont_CalcTextSizeA"][1]["defaults"] = {} defs["ImFont_CalcTextSizeA"][1]["defaults"]["remaining"] = "NULL" defs["ImFont_CalcTextSizeA"][1]["defaults"]["text_end"] = "NULL" defs["ImFont_CalcTextSizeA"][1]["funcname"] = "CalcTextSizeA" +<<<<<<< HEAD defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui:3174" +======= +defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui:3318" +>>>>>>> docking_inter defs["ImFont_CalcTextSizeA"][1]["nonUDT"] = 1 defs["ImFont_CalcTextSizeA"][1]["ov_cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["ret"] = "void" @@ -4100,7 +4748,11 @@ defs["ImFont_CalcWordWrapPositionA"][1]["call_args"] = "(scale,text,text_end,wra defs["ImFont_CalcWordWrapPositionA"][1]["cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["defaults"] = {} defs["ImFont_CalcWordWrapPositionA"][1]["funcname"] = "CalcWordWrapPositionA" +<<<<<<< HEAD defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui:3175" +======= +defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui:3319" +>>>>>>> docking_inter defs["ImFont_CalcWordWrapPositionA"][1]["ov_cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["ret"] = "const char*" defs["ImFont_CalcWordWrapPositionA"][1]["signature"] = "(float,const char*,const char*,float)const" @@ -4118,7 +4770,11 @@ defs["ImFont_ClearOutputData"][1]["call_args"] = "()" defs["ImFont_ClearOutputData"][1]["cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["defaults"] = {} defs["ImFont_ClearOutputData"][1]["funcname"] = "ClearOutputData" +<<<<<<< HEAD defs["ImFont_ClearOutputData"][1]["location"] = "imgui:3181" +======= +defs["ImFont_ClearOutputData"][1]["location"] = "imgui:3325" +>>>>>>> docking_inter defs["ImFont_ClearOutputData"][1]["ov_cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["ret"] = "void" defs["ImFont_ClearOutputData"][1]["signature"] = "()" @@ -4139,7 +4795,11 @@ defs["ImFont_FindGlyph"][1]["call_args"] = "(c)" defs["ImFont_FindGlyph"][1]["cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["defaults"] = {} defs["ImFont_FindGlyph"][1]["funcname"] = "FindGlyph" +<<<<<<< HEAD defs["ImFont_FindGlyph"][1]["location"] = "imgui:3166" +======= +defs["ImFont_FindGlyph"][1]["location"] = "imgui:3310" +>>>>>>> docking_inter defs["ImFont_FindGlyph"][1]["ov_cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyph"][1]["signature"] = "(ImWchar)const" @@ -4160,7 +4820,11 @@ defs["ImFont_FindGlyphNoFallback"][1]["call_args"] = "(c)" defs["ImFont_FindGlyphNoFallback"][1]["cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["defaults"] = {} defs["ImFont_FindGlyphNoFallback"][1]["funcname"] = "FindGlyphNoFallback" +<<<<<<< HEAD defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui:3167" +======= +defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui:3311" +>>>>>>> docking_inter defs["ImFont_FindGlyphNoFallback"][1]["ov_cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyphNoFallback"][1]["signature"] = "(ImWchar)const" @@ -4181,7 +4845,11 @@ defs["ImFont_GetCharAdvance"][1]["call_args"] = "(c)" defs["ImFont_GetCharAdvance"][1]["cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["defaults"] = {} defs["ImFont_GetCharAdvance"][1]["funcname"] = "GetCharAdvance" +<<<<<<< HEAD defs["ImFont_GetCharAdvance"][1]["location"] = "imgui:3168" +======= +defs["ImFont_GetCharAdvance"][1]["location"] = "imgui:3312" +>>>>>>> docking_inter defs["ImFont_GetCharAdvance"][1]["ov_cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["ret"] = "float" defs["ImFont_GetCharAdvance"][1]["signature"] = "(ImWchar)const" @@ -4199,7 +4867,11 @@ defs["ImFont_GetDebugName"][1]["call_args"] = "()" defs["ImFont_GetDebugName"][1]["cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["defaults"] = {} defs["ImFont_GetDebugName"][1]["funcname"] = "GetDebugName" +<<<<<<< HEAD defs["ImFont_GetDebugName"][1]["location"] = "imgui:3170" +======= +defs["ImFont_GetDebugName"][1]["location"] = "imgui:3314" +>>>>>>> docking_inter defs["ImFont_GetDebugName"][1]["ov_cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["ret"] = "const char*" defs["ImFont_GetDebugName"][1]["signature"] = "()const" @@ -4220,7 +4892,11 @@ defs["ImFont_GrowIndex"][1]["call_args"] = "(new_size)" defs["ImFont_GrowIndex"][1]["cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["defaults"] = {} defs["ImFont_GrowIndex"][1]["funcname"] = "GrowIndex" +<<<<<<< HEAD defs["ImFont_GrowIndex"][1]["location"] = "imgui:3182" +======= +defs["ImFont_GrowIndex"][1]["location"] = "imgui:3326" +>>>>>>> docking_inter defs["ImFont_GrowIndex"][1]["ov_cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["ret"] = "void" defs["ImFont_GrowIndex"][1]["signature"] = "(int)" @@ -4236,7 +4912,11 @@ defs["ImFont_ImFont"][1]["cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["constructor"] = true defs["ImFont_ImFont"][1]["defaults"] = {} defs["ImFont_ImFont"][1]["funcname"] = "ImFont" +<<<<<<< HEAD defs["ImFont_ImFont"][1]["location"] = "imgui:3164" +======= +defs["ImFont_ImFont"][1]["location"] = "imgui:3308" +>>>>>>> docking_inter defs["ImFont_ImFont"][1]["ov_cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["signature"] = "()" defs["ImFont_ImFont"][1]["stname"] = "ImFont" @@ -4259,7 +4939,11 @@ defs["ImFont_IsGlyphRangeUnused"][1]["call_args"] = "(c_begin,c_last)" defs["ImFont_IsGlyphRangeUnused"][1]["cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["defaults"] = {} defs["ImFont_IsGlyphRangeUnused"][1]["funcname"] = "IsGlyphRangeUnused" +<<<<<<< HEAD defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui:3186" +======= +defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui:3330" +>>>>>>> docking_inter defs["ImFont_IsGlyphRangeUnused"][1]["ov_cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["ret"] = "bool" defs["ImFont_IsGlyphRangeUnused"][1]["signature"] = "(unsigned int,unsigned int)" @@ -4277,7 +4961,11 @@ defs["ImFont_IsLoaded"][1]["call_args"] = "()" defs["ImFont_IsLoaded"][1]["cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["defaults"] = {} defs["ImFont_IsLoaded"][1]["funcname"] = "IsLoaded" +<<<<<<< HEAD defs["ImFont_IsLoaded"][1]["location"] = "imgui:3169" +======= +defs["ImFont_IsLoaded"][1]["location"] = "imgui:3313" +>>>>>>> docking_inter defs["ImFont_IsLoaded"][1]["ov_cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["ret"] = "bool" defs["ImFont_IsLoaded"][1]["signature"] = "()const" @@ -4310,7 +4998,11 @@ defs["ImFont_RenderChar"][1]["call_args"] = "(draw_list,size,pos,col,c)" defs["ImFont_RenderChar"][1]["cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["defaults"] = {} defs["ImFont_RenderChar"][1]["funcname"] = "RenderChar" +<<<<<<< HEAD defs["ImFont_RenderChar"][1]["location"] = "imgui:3176" +======= +defs["ImFont_RenderChar"][1]["location"] = "imgui:3320" +>>>>>>> docking_inter defs["ImFont_RenderChar"][1]["ov_cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["ret"] = "void" defs["ImFont_RenderChar"][1]["signature"] = "(ImDrawList*,float,const ImVec2,ImU32,ImWchar)const" @@ -4357,7 +5049,11 @@ defs["ImFont_RenderText"][1]["defaults"] = {} defs["ImFont_RenderText"][1]["defaults"]["cpu_fine_clip"] = "false" defs["ImFont_RenderText"][1]["defaults"]["wrap_width"] = "0.0f" defs["ImFont_RenderText"][1]["funcname"] = "RenderText" +<<<<<<< HEAD defs["ImFont_RenderText"][1]["location"] = "imgui:3177" +======= +defs["ImFont_RenderText"][1]["location"] = "imgui:3321" +>>>>>>> docking_inter defs["ImFont_RenderText"][1]["ov_cimguiname"] = "ImFont_RenderText" defs["ImFont_RenderText"][1]["ret"] = "void" defs["ImFont_RenderText"][1]["signature"] = "(ImDrawList*,float,const ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const" @@ -4381,7 +5077,11 @@ defs["ImFont_SetGlyphVisible"][1]["call_args"] = "(c,visible)" defs["ImFont_SetGlyphVisible"][1]["cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["defaults"] = {} defs["ImFont_SetGlyphVisible"][1]["funcname"] = "SetGlyphVisible" +<<<<<<< HEAD defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui:3185" +======= +defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui:3329" +>>>>>>> docking_inter defs["ImFont_SetGlyphVisible"][1]["ov_cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["ret"] = "void" defs["ImFont_SetGlyphVisible"][1]["signature"] = "(ImWchar,bool)" @@ -4398,7 +5098,11 @@ defs["ImFont_destroy"][1]["call_args"] = "(self)" defs["ImFont_destroy"][1]["cimguiname"] = "ImFont_destroy" defs["ImFont_destroy"][1]["defaults"] = {} defs["ImFont_destroy"][1]["destructor"] = true +<<<<<<< HEAD defs["ImFont_destroy"][1]["location"] = "imgui:3165" +======= +defs["ImFont_destroy"][1]["location"] = "imgui:3309" +>>>>>>> docking_inter defs["ImFont_destroy"][1]["ov_cimguiname"] = "ImFont_destroy" defs["ImFont_destroy"][1]["realdestructor"] = true defs["ImFont_destroy"][1]["ret"] = "void" @@ -4415,7 +5119,11 @@ defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["cimguiname"] = "ImGuiCom defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["constructor"] = true defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["defaults"] = {} defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["funcname"] = "ImGuiComboPreviewData" +<<<<<<< HEAD defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["location"] = "imgui_internal:1056" +======= +defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["location"] = "imgui_internal:1071" +>>>>>>> docking_inter defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["ov_cimguiname"] = "ImGuiComboPreviewData_ImGuiComboPreviewData" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["signature"] = "()" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["stname"] = "ImGuiComboPreviewData" @@ -4446,7 +5154,11 @@ defs["ImGuiContextHook_ImGuiContextHook"][1]["cimguiname"] = "ImGuiContextHook_I defs["ImGuiContextHook_ImGuiContextHook"][1]["constructor"] = true defs["ImGuiContextHook_ImGuiContextHook"][1]["defaults"] = {} defs["ImGuiContextHook_ImGuiContextHook"][1]["funcname"] = "ImGuiContextHook" +<<<<<<< HEAD defs["ImGuiContextHook_ImGuiContextHook"][1]["location"] = "imgui_internal:1911" +======= +defs["ImGuiContextHook_ImGuiContextHook"][1]["location"] = "imgui_internal:2106" +>>>>>>> docking_inter defs["ImGuiContextHook_ImGuiContextHook"][1]["ov_cimguiname"] = "ImGuiContextHook_ImGuiContextHook" defs["ImGuiContextHook_ImGuiContextHook"][1]["signature"] = "()" defs["ImGuiContextHook_ImGuiContextHook"][1]["stname"] = "ImGuiContextHook" @@ -4480,7 +5192,11 @@ defs["ImGuiContext_ImGuiContext"][1]["cimguiname"] = "ImGuiContext_ImGuiContext" defs["ImGuiContext_ImGuiContext"][1]["constructor"] = true defs["ImGuiContext_ImGuiContext"][1]["defaults"] = {} defs["ImGuiContext_ImGuiContext"][1]["funcname"] = "ImGuiContext" +<<<<<<< HEAD defs["ImGuiContext_ImGuiContext"][1]["location"] = "imgui_internal:2249" +======= +defs["ImGuiContext_ImGuiContext"][1]["location"] = "imgui_internal:2471" +>>>>>>> docking_inter defs["ImGuiContext_ImGuiContext"][1]["ov_cimguiname"] = "ImGuiContext_ImGuiContext" defs["ImGuiContext_ImGuiContext"][1]["signature"] = "(ImFontAtlas*)" defs["ImGuiContext_ImGuiContext"][1]["stname"] = "ImGuiContext" @@ -4516,7 +5232,11 @@ defs["ImGuiDataVarInfo_GetVarPtr"][1]["call_args"] = "(parent)" defs["ImGuiDataVarInfo_GetVarPtr"][1]["cimguiname"] = "ImGuiDataVarInfo_GetVarPtr" defs["ImGuiDataVarInfo_GetVarPtr"][1]["defaults"] = {} defs["ImGuiDataVarInfo_GetVarPtr"][1]["funcname"] = "GetVarPtr" +<<<<<<< HEAD defs["ImGuiDataVarInfo_GetVarPtr"][1]["location"] = "imgui_internal:810" +======= +defs["ImGuiDataVarInfo_GetVarPtr"][1]["location"] = "imgui_internal:825" +>>>>>>> docking_inter defs["ImGuiDataVarInfo_GetVarPtr"][1]["ov_cimguiname"] = "ImGuiDataVarInfo_GetVarPtr" defs["ImGuiDataVarInfo_GetVarPtr"][1]["ret"] = "void*" defs["ImGuiDataVarInfo_GetVarPtr"][1]["signature"] = "(void*)const" @@ -4532,7 +5252,11 @@ defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["cimguiname"] = "ImGuiDebugAl defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["constructor"] = true defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["defaults"] = {} defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["funcname"] = "ImGuiDebugAllocInfo" +<<<<<<< HEAD defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["location"] = "imgui_internal:1852" +======= +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["location"] = "imgui_internal:2046" +>>>>>>> docking_inter defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["ov_cimguiname"] = "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo" defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["signature"] = "()" defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["stname"] = "ImGuiDebugAllocInfo" @@ -4553,6 +5277,299 @@ defs["ImGuiDebugAllocInfo_destroy"][1]["ret"] = "void" defs["ImGuiDebugAllocInfo_destroy"][1]["signature"] = "(ImGuiDebugAllocInfo*)" defs["ImGuiDebugAllocInfo_destroy"][1]["stname"] = "ImGuiDebugAllocInfo" defs["ImGuiDebugAllocInfo_destroy"]["(ImGuiDebugAllocInfo*)"] = defs["ImGuiDebugAllocInfo_destroy"][1] +<<<<<<< HEAD +======= +defs["ImGuiDockContext_ImGuiDockContext"] = {} +defs["ImGuiDockContext_ImGuiDockContext"][1] = {} +defs["ImGuiDockContext_ImGuiDockContext"][1]["args"] = "()" +defs["ImGuiDockContext_ImGuiDockContext"][1]["argsT"] = {} +defs["ImGuiDockContext_ImGuiDockContext"][1]["argsoriginal"] = "()" +defs["ImGuiDockContext_ImGuiDockContext"][1]["call_args"] = "()" +defs["ImGuiDockContext_ImGuiDockContext"][1]["cimguiname"] = "ImGuiDockContext_ImGuiDockContext" +defs["ImGuiDockContext_ImGuiDockContext"][1]["constructor"] = true +defs["ImGuiDockContext_ImGuiDockContext"][1]["defaults"] = {} +defs["ImGuiDockContext_ImGuiDockContext"][1]["funcname"] = "ImGuiDockContext" +defs["ImGuiDockContext_ImGuiDockContext"][1]["location"] = "imgui_internal:1889" +defs["ImGuiDockContext_ImGuiDockContext"][1]["ov_cimguiname"] = "ImGuiDockContext_ImGuiDockContext" +defs["ImGuiDockContext_ImGuiDockContext"][1]["signature"] = "()" +defs["ImGuiDockContext_ImGuiDockContext"][1]["stname"] = "ImGuiDockContext" +defs["ImGuiDockContext_ImGuiDockContext"]["()"] = defs["ImGuiDockContext_ImGuiDockContext"][1] +defs["ImGuiDockContext_destroy"] = {} +defs["ImGuiDockContext_destroy"][1] = {} +defs["ImGuiDockContext_destroy"][1]["args"] = "(ImGuiDockContext* self)" +defs["ImGuiDockContext_destroy"][1]["argsT"] = {} +defs["ImGuiDockContext_destroy"][1]["argsT"][1] = {} +defs["ImGuiDockContext_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiDockContext_destroy"][1]["argsT"][1]["type"] = "ImGuiDockContext*" +defs["ImGuiDockContext_destroy"][1]["call_args"] = "(self)" +defs["ImGuiDockContext_destroy"][1]["cimguiname"] = "ImGuiDockContext_destroy" +defs["ImGuiDockContext_destroy"][1]["defaults"] = {} +defs["ImGuiDockContext_destroy"][1]["destructor"] = true +defs["ImGuiDockContext_destroy"][1]["ov_cimguiname"] = "ImGuiDockContext_destroy" +defs["ImGuiDockContext_destroy"][1]["ret"] = "void" +defs["ImGuiDockContext_destroy"][1]["signature"] = "(ImGuiDockContext*)" +defs["ImGuiDockContext_destroy"][1]["stname"] = "ImGuiDockContext" +defs["ImGuiDockContext_destroy"]["(ImGuiDockContext*)"] = defs["ImGuiDockContext_destroy"][1] +defs["ImGuiDockNode_ImGuiDockNode"] = {} +defs["ImGuiDockNode_ImGuiDockNode"][1] = {} +defs["ImGuiDockNode_ImGuiDockNode"][1]["args"] = "(ImGuiID id)" +defs["ImGuiDockNode_ImGuiDockNode"][1]["argsT"] = {} +defs["ImGuiDockNode_ImGuiDockNode"][1]["argsT"][1] = {} +defs["ImGuiDockNode_ImGuiDockNode"][1]["argsT"][1]["name"] = "id" +defs["ImGuiDockNode_ImGuiDockNode"][1]["argsT"][1]["type"] = "ImGuiID" +defs["ImGuiDockNode_ImGuiDockNode"][1]["argsoriginal"] = "(ImGuiID id)" +defs["ImGuiDockNode_ImGuiDockNode"][1]["call_args"] = "(id)" +defs["ImGuiDockNode_ImGuiDockNode"][1]["cimguiname"] = "ImGuiDockNode_ImGuiDockNode" +defs["ImGuiDockNode_ImGuiDockNode"][1]["constructor"] = true +defs["ImGuiDockNode_ImGuiDockNode"][1]["defaults"] = {} +defs["ImGuiDockNode_ImGuiDockNode"][1]["funcname"] = "ImGuiDockNode" +defs["ImGuiDockNode_ImGuiDockNode"][1]["location"] = "imgui_internal:1843" +defs["ImGuiDockNode_ImGuiDockNode"][1]["ov_cimguiname"] = "ImGuiDockNode_ImGuiDockNode" +defs["ImGuiDockNode_ImGuiDockNode"][1]["signature"] = "(ImGuiID)" +defs["ImGuiDockNode_ImGuiDockNode"][1]["stname"] = "ImGuiDockNode" +defs["ImGuiDockNode_ImGuiDockNode"]["(ImGuiID)"] = defs["ImGuiDockNode_ImGuiDockNode"][1] +defs["ImGuiDockNode_IsCentralNode"] = {} +defs["ImGuiDockNode_IsCentralNode"][1] = {} +defs["ImGuiDockNode_IsCentralNode"][1]["args"] = "(ImGuiDockNode* self)" +defs["ImGuiDockNode_IsCentralNode"][1]["argsT"] = {} +defs["ImGuiDockNode_IsCentralNode"][1]["argsT"][1] = {} +defs["ImGuiDockNode_IsCentralNode"][1]["argsT"][1]["name"] = "self" +defs["ImGuiDockNode_IsCentralNode"][1]["argsT"][1]["type"] = "ImGuiDockNode*" +defs["ImGuiDockNode_IsCentralNode"][1]["argsoriginal"] = "()" +defs["ImGuiDockNode_IsCentralNode"][1]["call_args"] = "()" +defs["ImGuiDockNode_IsCentralNode"][1]["cimguiname"] = "ImGuiDockNode_IsCentralNode" +defs["ImGuiDockNode_IsCentralNode"][1]["defaults"] = {} +defs["ImGuiDockNode_IsCentralNode"][1]["funcname"] = "IsCentralNode" +defs["ImGuiDockNode_IsCentralNode"][1]["location"] = "imgui_internal:1848" +defs["ImGuiDockNode_IsCentralNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsCentralNode" +defs["ImGuiDockNode_IsCentralNode"][1]["ret"] = "bool" +defs["ImGuiDockNode_IsCentralNode"][1]["signature"] = "()const" +defs["ImGuiDockNode_IsCentralNode"][1]["stname"] = "ImGuiDockNode" +defs["ImGuiDockNode_IsCentralNode"]["()const"] = defs["ImGuiDockNode_IsCentralNode"][1] +defs["ImGuiDockNode_IsDockSpace"] = {} +defs["ImGuiDockNode_IsDockSpace"][1] = {} +defs["ImGuiDockNode_IsDockSpace"][1]["args"] = "(ImGuiDockNode* self)" +defs["ImGuiDockNode_IsDockSpace"][1]["argsT"] = {} +defs["ImGuiDockNode_IsDockSpace"][1]["argsT"][1] = {} +defs["ImGuiDockNode_IsDockSpace"][1]["argsT"][1]["name"] = "self" +defs["ImGuiDockNode_IsDockSpace"][1]["argsT"][1]["type"] = "ImGuiDockNode*" +defs["ImGuiDockNode_IsDockSpace"][1]["argsoriginal"] = "()" +defs["ImGuiDockNode_IsDockSpace"][1]["call_args"] = "()" +defs["ImGuiDockNode_IsDockSpace"][1]["cimguiname"] = "ImGuiDockNode_IsDockSpace" +defs["ImGuiDockNode_IsDockSpace"][1]["defaults"] = {} +defs["ImGuiDockNode_IsDockSpace"][1]["funcname"] = "IsDockSpace" +defs["ImGuiDockNode_IsDockSpace"][1]["location"] = "imgui_internal:1846" +defs["ImGuiDockNode_IsDockSpace"][1]["ov_cimguiname"] = "ImGuiDockNode_IsDockSpace" +defs["ImGuiDockNode_IsDockSpace"][1]["ret"] = "bool" +defs["ImGuiDockNode_IsDockSpace"][1]["signature"] = "()const" +defs["ImGuiDockNode_IsDockSpace"][1]["stname"] = "ImGuiDockNode" +defs["ImGuiDockNode_IsDockSpace"]["()const"] = defs["ImGuiDockNode_IsDockSpace"][1] +defs["ImGuiDockNode_IsEmpty"] = {} +defs["ImGuiDockNode_IsEmpty"][1] = {} +defs["ImGuiDockNode_IsEmpty"][1]["args"] = "(ImGuiDockNode* self)" +defs["ImGuiDockNode_IsEmpty"][1]["argsT"] = {} +defs["ImGuiDockNode_IsEmpty"][1]["argsT"][1] = {} +defs["ImGuiDockNode_IsEmpty"][1]["argsT"][1]["name"] = "self" +defs["ImGuiDockNode_IsEmpty"][1]["argsT"][1]["type"] = "ImGuiDockNode*" +defs["ImGuiDockNode_IsEmpty"][1]["argsoriginal"] = "()" +defs["ImGuiDockNode_IsEmpty"][1]["call_args"] = "()" +defs["ImGuiDockNode_IsEmpty"][1]["cimguiname"] = "ImGuiDockNode_IsEmpty" +defs["ImGuiDockNode_IsEmpty"][1]["defaults"] = {} +defs["ImGuiDockNode_IsEmpty"][1]["funcname"] = "IsEmpty" +defs["ImGuiDockNode_IsEmpty"][1]["location"] = "imgui_internal:1853" +defs["ImGuiDockNode_IsEmpty"][1]["ov_cimguiname"] = "ImGuiDockNode_IsEmpty" +defs["ImGuiDockNode_IsEmpty"][1]["ret"] = "bool" +defs["ImGuiDockNode_IsEmpty"][1]["signature"] = "()const" +defs["ImGuiDockNode_IsEmpty"][1]["stname"] = "ImGuiDockNode" +defs["ImGuiDockNode_IsEmpty"]["()const"] = defs["ImGuiDockNode_IsEmpty"][1] +defs["ImGuiDockNode_IsFloatingNode"] = {} +defs["ImGuiDockNode_IsFloatingNode"][1] = {} +defs["ImGuiDockNode_IsFloatingNode"][1]["args"] = "(ImGuiDockNode* self)" +defs["ImGuiDockNode_IsFloatingNode"][1]["argsT"] = {} +defs["ImGuiDockNode_IsFloatingNode"][1]["argsT"][1] = {} +defs["ImGuiDockNode_IsFloatingNode"][1]["argsT"][1]["name"] = "self" +defs["ImGuiDockNode_IsFloatingNode"][1]["argsT"][1]["type"] = "ImGuiDockNode*" +defs["ImGuiDockNode_IsFloatingNode"][1]["argsoriginal"] = "()" +defs["ImGuiDockNode_IsFloatingNode"][1]["call_args"] = "()" +defs["ImGuiDockNode_IsFloatingNode"][1]["cimguiname"] = "ImGuiDockNode_IsFloatingNode" +defs["ImGuiDockNode_IsFloatingNode"][1]["defaults"] = {} +defs["ImGuiDockNode_IsFloatingNode"][1]["funcname"] = "IsFloatingNode" +defs["ImGuiDockNode_IsFloatingNode"][1]["location"] = "imgui_internal:1847" +defs["ImGuiDockNode_IsFloatingNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsFloatingNode" +defs["ImGuiDockNode_IsFloatingNode"][1]["ret"] = "bool" +defs["ImGuiDockNode_IsFloatingNode"][1]["signature"] = "()const" +defs["ImGuiDockNode_IsFloatingNode"][1]["stname"] = "ImGuiDockNode" +defs["ImGuiDockNode_IsFloatingNode"]["()const"] = defs["ImGuiDockNode_IsFloatingNode"][1] +defs["ImGuiDockNode_IsHiddenTabBar"] = {} +defs["ImGuiDockNode_IsHiddenTabBar"][1] = {} +defs["ImGuiDockNode_IsHiddenTabBar"][1]["args"] = "(ImGuiDockNode* self)" +defs["ImGuiDockNode_IsHiddenTabBar"][1]["argsT"] = {} +defs["ImGuiDockNode_IsHiddenTabBar"][1]["argsT"][1] = {} +defs["ImGuiDockNode_IsHiddenTabBar"][1]["argsT"][1]["name"] = "self" +defs["ImGuiDockNode_IsHiddenTabBar"][1]["argsT"][1]["type"] = "ImGuiDockNode*" +defs["ImGuiDockNode_IsHiddenTabBar"][1]["argsoriginal"] = "()" +defs["ImGuiDockNode_IsHiddenTabBar"][1]["call_args"] = "()" +defs["ImGuiDockNode_IsHiddenTabBar"][1]["cimguiname"] = "ImGuiDockNode_IsHiddenTabBar" +defs["ImGuiDockNode_IsHiddenTabBar"][1]["defaults"] = {} +defs["ImGuiDockNode_IsHiddenTabBar"][1]["funcname"] = "IsHiddenTabBar" +defs["ImGuiDockNode_IsHiddenTabBar"][1]["location"] = "imgui_internal:1849" +defs["ImGuiDockNode_IsHiddenTabBar"][1]["ov_cimguiname"] = "ImGuiDockNode_IsHiddenTabBar" +defs["ImGuiDockNode_IsHiddenTabBar"][1]["ret"] = "bool" +defs["ImGuiDockNode_IsHiddenTabBar"][1]["signature"] = "()const" +defs["ImGuiDockNode_IsHiddenTabBar"][1]["stname"] = "ImGuiDockNode" +defs["ImGuiDockNode_IsHiddenTabBar"]["()const"] = defs["ImGuiDockNode_IsHiddenTabBar"][1] +defs["ImGuiDockNode_IsLeafNode"] = {} +defs["ImGuiDockNode_IsLeafNode"][1] = {} +defs["ImGuiDockNode_IsLeafNode"][1]["args"] = "(ImGuiDockNode* self)" +defs["ImGuiDockNode_IsLeafNode"][1]["argsT"] = {} +defs["ImGuiDockNode_IsLeafNode"][1]["argsT"][1] = {} +defs["ImGuiDockNode_IsLeafNode"][1]["argsT"][1]["name"] = "self" +defs["ImGuiDockNode_IsLeafNode"][1]["argsT"][1]["type"] = "ImGuiDockNode*" +defs["ImGuiDockNode_IsLeafNode"][1]["argsoriginal"] = "()" +defs["ImGuiDockNode_IsLeafNode"][1]["call_args"] = "()" +defs["ImGuiDockNode_IsLeafNode"][1]["cimguiname"] = "ImGuiDockNode_IsLeafNode" +defs["ImGuiDockNode_IsLeafNode"][1]["defaults"] = {} +defs["ImGuiDockNode_IsLeafNode"][1]["funcname"] = "IsLeafNode" +defs["ImGuiDockNode_IsLeafNode"][1]["location"] = "imgui_internal:1852" +defs["ImGuiDockNode_IsLeafNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsLeafNode" +defs["ImGuiDockNode_IsLeafNode"][1]["ret"] = "bool" +defs["ImGuiDockNode_IsLeafNode"][1]["signature"] = "()const" +defs["ImGuiDockNode_IsLeafNode"][1]["stname"] = "ImGuiDockNode" +defs["ImGuiDockNode_IsLeafNode"]["()const"] = defs["ImGuiDockNode_IsLeafNode"][1] +defs["ImGuiDockNode_IsNoTabBar"] = {} +defs["ImGuiDockNode_IsNoTabBar"][1] = {} +defs["ImGuiDockNode_IsNoTabBar"][1]["args"] = "(ImGuiDockNode* self)" +defs["ImGuiDockNode_IsNoTabBar"][1]["argsT"] = {} +defs["ImGuiDockNode_IsNoTabBar"][1]["argsT"][1] = {} +defs["ImGuiDockNode_IsNoTabBar"][1]["argsT"][1]["name"] = "self" +defs["ImGuiDockNode_IsNoTabBar"][1]["argsT"][1]["type"] = "ImGuiDockNode*" +defs["ImGuiDockNode_IsNoTabBar"][1]["argsoriginal"] = "()" +defs["ImGuiDockNode_IsNoTabBar"][1]["call_args"] = "()" +defs["ImGuiDockNode_IsNoTabBar"][1]["cimguiname"] = "ImGuiDockNode_IsNoTabBar" +defs["ImGuiDockNode_IsNoTabBar"][1]["defaults"] = {} +defs["ImGuiDockNode_IsNoTabBar"][1]["funcname"] = "IsNoTabBar" +defs["ImGuiDockNode_IsNoTabBar"][1]["location"] = "imgui_internal:1850" +defs["ImGuiDockNode_IsNoTabBar"][1]["ov_cimguiname"] = "ImGuiDockNode_IsNoTabBar" +defs["ImGuiDockNode_IsNoTabBar"][1]["ret"] = "bool" +defs["ImGuiDockNode_IsNoTabBar"][1]["signature"] = "()const" +defs["ImGuiDockNode_IsNoTabBar"][1]["stname"] = "ImGuiDockNode" +defs["ImGuiDockNode_IsNoTabBar"]["()const"] = defs["ImGuiDockNode_IsNoTabBar"][1] +defs["ImGuiDockNode_IsRootNode"] = {} +defs["ImGuiDockNode_IsRootNode"][1] = {} +defs["ImGuiDockNode_IsRootNode"][1]["args"] = "(ImGuiDockNode* self)" +defs["ImGuiDockNode_IsRootNode"][1]["argsT"] = {} +defs["ImGuiDockNode_IsRootNode"][1]["argsT"][1] = {} +defs["ImGuiDockNode_IsRootNode"][1]["argsT"][1]["name"] = "self" +defs["ImGuiDockNode_IsRootNode"][1]["argsT"][1]["type"] = "ImGuiDockNode*" +defs["ImGuiDockNode_IsRootNode"][1]["argsoriginal"] = "()" +defs["ImGuiDockNode_IsRootNode"][1]["call_args"] = "()" +defs["ImGuiDockNode_IsRootNode"][1]["cimguiname"] = "ImGuiDockNode_IsRootNode" +defs["ImGuiDockNode_IsRootNode"][1]["defaults"] = {} +defs["ImGuiDockNode_IsRootNode"][1]["funcname"] = "IsRootNode" +defs["ImGuiDockNode_IsRootNode"][1]["location"] = "imgui_internal:1845" +defs["ImGuiDockNode_IsRootNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsRootNode" +defs["ImGuiDockNode_IsRootNode"][1]["ret"] = "bool" +defs["ImGuiDockNode_IsRootNode"][1]["signature"] = "()const" +defs["ImGuiDockNode_IsRootNode"][1]["stname"] = "ImGuiDockNode" +defs["ImGuiDockNode_IsRootNode"]["()const"] = defs["ImGuiDockNode_IsRootNode"][1] +defs["ImGuiDockNode_IsSplitNode"] = {} +defs["ImGuiDockNode_IsSplitNode"][1] = {} +defs["ImGuiDockNode_IsSplitNode"][1]["args"] = "(ImGuiDockNode* self)" +defs["ImGuiDockNode_IsSplitNode"][1]["argsT"] = {} +defs["ImGuiDockNode_IsSplitNode"][1]["argsT"][1] = {} +defs["ImGuiDockNode_IsSplitNode"][1]["argsT"][1]["name"] = "self" +defs["ImGuiDockNode_IsSplitNode"][1]["argsT"][1]["type"] = "ImGuiDockNode*" +defs["ImGuiDockNode_IsSplitNode"][1]["argsoriginal"] = "()" +defs["ImGuiDockNode_IsSplitNode"][1]["call_args"] = "()" +defs["ImGuiDockNode_IsSplitNode"][1]["cimguiname"] = "ImGuiDockNode_IsSplitNode" +defs["ImGuiDockNode_IsSplitNode"][1]["defaults"] = {} +defs["ImGuiDockNode_IsSplitNode"][1]["funcname"] = "IsSplitNode" +defs["ImGuiDockNode_IsSplitNode"][1]["location"] = "imgui_internal:1851" +defs["ImGuiDockNode_IsSplitNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsSplitNode" +defs["ImGuiDockNode_IsSplitNode"][1]["ret"] = "bool" +defs["ImGuiDockNode_IsSplitNode"][1]["signature"] = "()const" +defs["ImGuiDockNode_IsSplitNode"][1]["stname"] = "ImGuiDockNode" +defs["ImGuiDockNode_IsSplitNode"]["()const"] = defs["ImGuiDockNode_IsSplitNode"][1] +defs["ImGuiDockNode_Rect"] = {} +defs["ImGuiDockNode_Rect"][1] = {} +defs["ImGuiDockNode_Rect"][1]["args"] = "(ImRect *pOut,ImGuiDockNode* self)" +defs["ImGuiDockNode_Rect"][1]["argsT"] = {} +defs["ImGuiDockNode_Rect"][1]["argsT"][1] = {} +defs["ImGuiDockNode_Rect"][1]["argsT"][1]["name"] = "pOut" +defs["ImGuiDockNode_Rect"][1]["argsT"][1]["type"] = "ImRect*" +defs["ImGuiDockNode_Rect"][1]["argsT"][2] = {} +defs["ImGuiDockNode_Rect"][1]["argsT"][2]["name"] = "self" +defs["ImGuiDockNode_Rect"][1]["argsT"][2]["type"] = "ImGuiDockNode*" +defs["ImGuiDockNode_Rect"][1]["argsoriginal"] = "()" +defs["ImGuiDockNode_Rect"][1]["call_args"] = "()" +defs["ImGuiDockNode_Rect"][1]["cimguiname"] = "ImGuiDockNode_Rect" +defs["ImGuiDockNode_Rect"][1]["defaults"] = {} +defs["ImGuiDockNode_Rect"][1]["funcname"] = "Rect" +defs["ImGuiDockNode_Rect"][1]["location"] = "imgui_internal:1854" +defs["ImGuiDockNode_Rect"][1]["nonUDT"] = 1 +defs["ImGuiDockNode_Rect"][1]["ov_cimguiname"] = "ImGuiDockNode_Rect" +defs["ImGuiDockNode_Rect"][1]["ret"] = "void" +defs["ImGuiDockNode_Rect"][1]["signature"] = "()const" +defs["ImGuiDockNode_Rect"][1]["stname"] = "ImGuiDockNode" +defs["ImGuiDockNode_Rect"]["()const"] = defs["ImGuiDockNode_Rect"][1] +defs["ImGuiDockNode_SetLocalFlags"] = {} +defs["ImGuiDockNode_SetLocalFlags"][1] = {} +defs["ImGuiDockNode_SetLocalFlags"][1]["args"] = "(ImGuiDockNode* self,ImGuiDockNodeFlags flags)" +defs["ImGuiDockNode_SetLocalFlags"][1]["argsT"] = {} +defs["ImGuiDockNode_SetLocalFlags"][1]["argsT"][1] = {} +defs["ImGuiDockNode_SetLocalFlags"][1]["argsT"][1]["name"] = "self" +defs["ImGuiDockNode_SetLocalFlags"][1]["argsT"][1]["type"] = "ImGuiDockNode*" +defs["ImGuiDockNode_SetLocalFlags"][1]["argsT"][2] = {} +defs["ImGuiDockNode_SetLocalFlags"][1]["argsT"][2]["name"] = "flags" +defs["ImGuiDockNode_SetLocalFlags"][1]["argsT"][2]["type"] = "ImGuiDockNodeFlags" +defs["ImGuiDockNode_SetLocalFlags"][1]["argsoriginal"] = "(ImGuiDockNodeFlags flags)" +defs["ImGuiDockNode_SetLocalFlags"][1]["call_args"] = "(flags)" +defs["ImGuiDockNode_SetLocalFlags"][1]["cimguiname"] = "ImGuiDockNode_SetLocalFlags" +defs["ImGuiDockNode_SetLocalFlags"][1]["defaults"] = {} +defs["ImGuiDockNode_SetLocalFlags"][1]["funcname"] = "SetLocalFlags" +defs["ImGuiDockNode_SetLocalFlags"][1]["location"] = "imgui_internal:1856" +defs["ImGuiDockNode_SetLocalFlags"][1]["ov_cimguiname"] = "ImGuiDockNode_SetLocalFlags" +defs["ImGuiDockNode_SetLocalFlags"][1]["ret"] = "void" +defs["ImGuiDockNode_SetLocalFlags"][1]["signature"] = "(ImGuiDockNodeFlags)" +defs["ImGuiDockNode_SetLocalFlags"][1]["stname"] = "ImGuiDockNode" +defs["ImGuiDockNode_SetLocalFlags"]["(ImGuiDockNodeFlags)"] = defs["ImGuiDockNode_SetLocalFlags"][1] +defs["ImGuiDockNode_UpdateMergedFlags"] = {} +defs["ImGuiDockNode_UpdateMergedFlags"][1] = {} +defs["ImGuiDockNode_UpdateMergedFlags"][1]["args"] = "(ImGuiDockNode* self)" +defs["ImGuiDockNode_UpdateMergedFlags"][1]["argsT"] = {} +defs["ImGuiDockNode_UpdateMergedFlags"][1]["argsT"][1] = {} +defs["ImGuiDockNode_UpdateMergedFlags"][1]["argsT"][1]["name"] = "self" +defs["ImGuiDockNode_UpdateMergedFlags"][1]["argsT"][1]["type"] = "ImGuiDockNode*" +defs["ImGuiDockNode_UpdateMergedFlags"][1]["argsoriginal"] = "()" +defs["ImGuiDockNode_UpdateMergedFlags"][1]["call_args"] = "()" +defs["ImGuiDockNode_UpdateMergedFlags"][1]["cimguiname"] = "ImGuiDockNode_UpdateMergedFlags" +defs["ImGuiDockNode_UpdateMergedFlags"][1]["defaults"] = {} +defs["ImGuiDockNode_UpdateMergedFlags"][1]["funcname"] = "UpdateMergedFlags" +defs["ImGuiDockNode_UpdateMergedFlags"][1]["location"] = "imgui_internal:1857" +defs["ImGuiDockNode_UpdateMergedFlags"][1]["ov_cimguiname"] = "ImGuiDockNode_UpdateMergedFlags" +defs["ImGuiDockNode_UpdateMergedFlags"][1]["ret"] = "void" +defs["ImGuiDockNode_UpdateMergedFlags"][1]["signature"] = "()" +defs["ImGuiDockNode_UpdateMergedFlags"][1]["stname"] = "ImGuiDockNode" +defs["ImGuiDockNode_UpdateMergedFlags"]["()"] = defs["ImGuiDockNode_UpdateMergedFlags"][1] +defs["ImGuiDockNode_destroy"] = {} +defs["ImGuiDockNode_destroy"][1] = {} +defs["ImGuiDockNode_destroy"][1]["args"] = "(ImGuiDockNode* self)" +defs["ImGuiDockNode_destroy"][1]["argsT"] = {} +defs["ImGuiDockNode_destroy"][1]["argsT"][1] = {} +defs["ImGuiDockNode_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiDockNode_destroy"][1]["argsT"][1]["type"] = "ImGuiDockNode*" +defs["ImGuiDockNode_destroy"][1]["call_args"] = "(self)" +defs["ImGuiDockNode_destroy"][1]["cimguiname"] = "ImGuiDockNode_destroy" +defs["ImGuiDockNode_destroy"][1]["defaults"] = {} +defs["ImGuiDockNode_destroy"][1]["destructor"] = true +defs["ImGuiDockNode_destroy"][1]["location"] = "imgui_internal:1844" +defs["ImGuiDockNode_destroy"][1]["ov_cimguiname"] = "ImGuiDockNode_destroy" +defs["ImGuiDockNode_destroy"][1]["realdestructor"] = true +defs["ImGuiDockNode_destroy"][1]["ret"] = "void" +defs["ImGuiDockNode_destroy"][1]["signature"] = "(ImGuiDockNode*)" +defs["ImGuiDockNode_destroy"][1]["stname"] = "ImGuiDockNode" +defs["ImGuiDockNode_destroy"]["(ImGuiDockNode*)"] = defs["ImGuiDockNode_destroy"][1] +>>>>>>> docking_inter defs["ImGuiIDStackTool_ImGuiIDStackTool"] = {} defs["ImGuiIDStackTool_ImGuiIDStackTool"][1] = {} defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["args"] = "()" @@ -4563,7 +5580,11 @@ defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["cimguiname"] = "ImGuiIDStackTool_I defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["constructor"] = true defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["defaults"] = {} defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["funcname"] = "ImGuiIDStackTool" +<<<<<<< HEAD defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["location"] = "imgui_internal:1893" +======= +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["location"] = "imgui_internal:2088" +>>>>>>> docking_inter defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["ov_cimguiname"] = "ImGuiIDStackTool_ImGuiIDStackTool" defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["signature"] = "()" defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["stname"] = "ImGuiIDStackTool" @@ -4599,7 +5620,11 @@ defs["ImGuiIO_AddFocusEvent"][1]["call_args"] = "(focused)" defs["ImGuiIO_AddFocusEvent"][1]["cimguiname"] = "ImGuiIO_AddFocusEvent" defs["ImGuiIO_AddFocusEvent"][1]["defaults"] = {} defs["ImGuiIO_AddFocusEvent"][1]["funcname"] = "AddFocusEvent" +<<<<<<< HEAD defs["ImGuiIO_AddFocusEvent"][1]["location"] = "imgui:2226" +======= +defs["ImGuiIO_AddFocusEvent"][1]["location"] = "imgui:2340" +>>>>>>> docking_inter defs["ImGuiIO_AddFocusEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddFocusEvent" defs["ImGuiIO_AddFocusEvent"][1]["ret"] = "void" defs["ImGuiIO_AddFocusEvent"][1]["signature"] = "(bool)" @@ -4620,7 +5645,11 @@ defs["ImGuiIO_AddInputCharacter"][1]["call_args"] = "(c)" defs["ImGuiIO_AddInputCharacter"][1]["cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacter"][1]["funcname"] = "AddInputCharacter" +<<<<<<< HEAD defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui:2227" +======= +defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui:2341" +>>>>>>> docking_inter defs["ImGuiIO_AddInputCharacter"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacter"][1]["signature"] = "(unsigned int)" @@ -4641,7 +5670,11 @@ defs["ImGuiIO_AddInputCharacterUTF16"][1]["call_args"] = "(c)" defs["ImGuiIO_AddInputCharacterUTF16"][1]["cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacterUTF16"][1]["funcname"] = "AddInputCharacterUTF16" +<<<<<<< HEAD defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui:2228" +======= +defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui:2342" +>>>>>>> docking_inter defs["ImGuiIO_AddInputCharacterUTF16"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacterUTF16"][1]["signature"] = "(ImWchar16)" @@ -4662,7 +5695,11 @@ defs["ImGuiIO_AddInputCharactersUTF8"][1]["call_args"] = "(str)" defs["ImGuiIO_AddInputCharactersUTF8"][1]["cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharactersUTF8"][1]["funcname"] = "AddInputCharactersUTF8" +<<<<<<< HEAD defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui:2229" +======= +defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui:2343" +>>>>>>> docking_inter defs["ImGuiIO_AddInputCharactersUTF8"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharactersUTF8"][1]["signature"] = "(const char*)" @@ -4689,7 +5726,11 @@ defs["ImGuiIO_AddKeyAnalogEvent"][1]["call_args"] = "(key,down,v)" defs["ImGuiIO_AddKeyAnalogEvent"][1]["cimguiname"] = "ImGuiIO_AddKeyAnalogEvent" defs["ImGuiIO_AddKeyAnalogEvent"][1]["defaults"] = {} defs["ImGuiIO_AddKeyAnalogEvent"][1]["funcname"] = "AddKeyAnalogEvent" +<<<<<<< HEAD defs["ImGuiIO_AddKeyAnalogEvent"][1]["location"] = "imgui:2221" +======= +defs["ImGuiIO_AddKeyAnalogEvent"][1]["location"] = "imgui:2334" +>>>>>>> docking_inter defs["ImGuiIO_AddKeyAnalogEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddKeyAnalogEvent" defs["ImGuiIO_AddKeyAnalogEvent"][1]["ret"] = "void" defs["ImGuiIO_AddKeyAnalogEvent"][1]["signature"] = "(ImGuiKey,bool,float)" @@ -4713,7 +5754,11 @@ defs["ImGuiIO_AddKeyEvent"][1]["call_args"] = "(key,down)" defs["ImGuiIO_AddKeyEvent"][1]["cimguiname"] = "ImGuiIO_AddKeyEvent" defs["ImGuiIO_AddKeyEvent"][1]["defaults"] = {} defs["ImGuiIO_AddKeyEvent"][1]["funcname"] = "AddKeyEvent" +<<<<<<< HEAD defs["ImGuiIO_AddKeyEvent"][1]["location"] = "imgui:2220" +======= +defs["ImGuiIO_AddKeyEvent"][1]["location"] = "imgui:2333" +>>>>>>> docking_inter defs["ImGuiIO_AddKeyEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddKeyEvent" defs["ImGuiIO_AddKeyEvent"][1]["ret"] = "void" defs["ImGuiIO_AddKeyEvent"][1]["signature"] = "(ImGuiKey,bool)" @@ -4737,7 +5782,11 @@ defs["ImGuiIO_AddMouseButtonEvent"][1]["call_args"] = "(button,down)" defs["ImGuiIO_AddMouseButtonEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseButtonEvent" defs["ImGuiIO_AddMouseButtonEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseButtonEvent"][1]["funcname"] = "AddMouseButtonEvent" +<<<<<<< HEAD defs["ImGuiIO_AddMouseButtonEvent"][1]["location"] = "imgui:2223" +======= +defs["ImGuiIO_AddMouseButtonEvent"][1]["location"] = "imgui:2336" +>>>>>>> docking_inter defs["ImGuiIO_AddMouseButtonEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseButtonEvent" defs["ImGuiIO_AddMouseButtonEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseButtonEvent"][1]["signature"] = "(int,bool)" @@ -4761,7 +5810,11 @@ defs["ImGuiIO_AddMousePosEvent"][1]["call_args"] = "(x,y)" defs["ImGuiIO_AddMousePosEvent"][1]["cimguiname"] = "ImGuiIO_AddMousePosEvent" defs["ImGuiIO_AddMousePosEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMousePosEvent"][1]["funcname"] = "AddMousePosEvent" +<<<<<<< HEAD defs["ImGuiIO_AddMousePosEvent"][1]["location"] = "imgui:2222" +======= +defs["ImGuiIO_AddMousePosEvent"][1]["location"] = "imgui:2335" +>>>>>>> docking_inter defs["ImGuiIO_AddMousePosEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMousePosEvent" defs["ImGuiIO_AddMousePosEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMousePosEvent"][1]["signature"] = "(float,float)" @@ -4782,12 +5835,40 @@ defs["ImGuiIO_AddMouseSourceEvent"][1]["call_args"] = "(source)" defs["ImGuiIO_AddMouseSourceEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseSourceEvent" defs["ImGuiIO_AddMouseSourceEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseSourceEvent"][1]["funcname"] = "AddMouseSourceEvent" +<<<<<<< HEAD defs["ImGuiIO_AddMouseSourceEvent"][1]["location"] = "imgui:2225" +======= +defs["ImGuiIO_AddMouseSourceEvent"][1]["location"] = "imgui:2338" +>>>>>>> docking_inter defs["ImGuiIO_AddMouseSourceEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseSourceEvent" defs["ImGuiIO_AddMouseSourceEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseSourceEvent"][1]["signature"] = "(ImGuiMouseSource)" defs["ImGuiIO_AddMouseSourceEvent"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_AddMouseSourceEvent"]["(ImGuiMouseSource)"] = defs["ImGuiIO_AddMouseSourceEvent"][1] +<<<<<<< HEAD +======= +defs["ImGuiIO_AddMouseViewportEvent"] = {} +defs["ImGuiIO_AddMouseViewportEvent"][1] = {} +defs["ImGuiIO_AddMouseViewportEvent"][1]["args"] = "(ImGuiIO* self,ImGuiID id)" +defs["ImGuiIO_AddMouseViewportEvent"][1]["argsT"] = {} +defs["ImGuiIO_AddMouseViewportEvent"][1]["argsT"][1] = {} +defs["ImGuiIO_AddMouseViewportEvent"][1]["argsT"][1]["name"] = "self" +defs["ImGuiIO_AddMouseViewportEvent"][1]["argsT"][1]["type"] = "ImGuiIO*" +defs["ImGuiIO_AddMouseViewportEvent"][1]["argsT"][2] = {} +defs["ImGuiIO_AddMouseViewportEvent"][1]["argsT"][2]["name"] = "id" +defs["ImGuiIO_AddMouseViewportEvent"][1]["argsT"][2]["type"] = "ImGuiID" +defs["ImGuiIO_AddMouseViewportEvent"][1]["argsoriginal"] = "(ImGuiID id)" +defs["ImGuiIO_AddMouseViewportEvent"][1]["call_args"] = "(id)" +defs["ImGuiIO_AddMouseViewportEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseViewportEvent" +defs["ImGuiIO_AddMouseViewportEvent"][1]["defaults"] = {} +defs["ImGuiIO_AddMouseViewportEvent"][1]["funcname"] = "AddMouseViewportEvent" +defs["ImGuiIO_AddMouseViewportEvent"][1]["location"] = "imgui:2339" +defs["ImGuiIO_AddMouseViewportEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseViewportEvent" +defs["ImGuiIO_AddMouseViewportEvent"][1]["ret"] = "void" +defs["ImGuiIO_AddMouseViewportEvent"][1]["signature"] = "(ImGuiID)" +defs["ImGuiIO_AddMouseViewportEvent"][1]["stname"] = "ImGuiIO" +defs["ImGuiIO_AddMouseViewportEvent"]["(ImGuiID)"] = defs["ImGuiIO_AddMouseViewportEvent"][1] +>>>>>>> docking_inter defs["ImGuiIO_AddMouseWheelEvent"] = {} defs["ImGuiIO_AddMouseWheelEvent"][1] = {} defs["ImGuiIO_AddMouseWheelEvent"][1]["args"] = "(ImGuiIO* self,float wheel_x,float wheel_y)" @@ -4806,7 +5887,11 @@ defs["ImGuiIO_AddMouseWheelEvent"][1]["call_args"] = "(wheel_x,wheel_y)" defs["ImGuiIO_AddMouseWheelEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseWheelEvent" defs["ImGuiIO_AddMouseWheelEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseWheelEvent"][1]["funcname"] = "AddMouseWheelEvent" +<<<<<<< HEAD defs["ImGuiIO_AddMouseWheelEvent"][1]["location"] = "imgui:2224" +======= +defs["ImGuiIO_AddMouseWheelEvent"][1]["location"] = "imgui:2337" +>>>>>>> docking_inter defs["ImGuiIO_AddMouseWheelEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseWheelEvent" defs["ImGuiIO_AddMouseWheelEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseWheelEvent"][1]["signature"] = "(float,float)" @@ -4824,7 +5909,11 @@ defs["ImGuiIO_ClearEventsQueue"][1]["call_args"] = "()" defs["ImGuiIO_ClearEventsQueue"][1]["cimguiname"] = "ImGuiIO_ClearEventsQueue" defs["ImGuiIO_ClearEventsQueue"][1]["defaults"] = {} defs["ImGuiIO_ClearEventsQueue"][1]["funcname"] = "ClearEventsQueue" +<<<<<<< HEAD defs["ImGuiIO_ClearEventsQueue"][1]["location"] = "imgui:2233" +======= +defs["ImGuiIO_ClearEventsQueue"][1]["location"] = "imgui:2347" +>>>>>>> docking_inter defs["ImGuiIO_ClearEventsQueue"][1]["ov_cimguiname"] = "ImGuiIO_ClearEventsQueue" defs["ImGuiIO_ClearEventsQueue"][1]["ret"] = "void" defs["ImGuiIO_ClearEventsQueue"][1]["signature"] = "()" @@ -4842,12 +5931,34 @@ defs["ImGuiIO_ClearInputKeys"][1]["call_args"] = "()" defs["ImGuiIO_ClearInputKeys"][1]["cimguiname"] = "ImGuiIO_ClearInputKeys" defs["ImGuiIO_ClearInputKeys"][1]["defaults"] = {} defs["ImGuiIO_ClearInputKeys"][1]["funcname"] = "ClearInputKeys" +<<<<<<< HEAD defs["ImGuiIO_ClearInputKeys"][1]["location"] = "imgui:2234" +======= +defs["ImGuiIO_ClearInputKeys"][1]["location"] = "imgui:2348" +>>>>>>> docking_inter defs["ImGuiIO_ClearInputKeys"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputKeys" defs["ImGuiIO_ClearInputKeys"][1]["ret"] = "void" defs["ImGuiIO_ClearInputKeys"][1]["signature"] = "()" defs["ImGuiIO_ClearInputKeys"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_ClearInputKeys"]["()"] = defs["ImGuiIO_ClearInputKeys"][1] +defs["ImGuiIO_ClearInputMouse"] = {} +defs["ImGuiIO_ClearInputMouse"][1] = {} +defs["ImGuiIO_ClearInputMouse"][1]["args"] = "(ImGuiIO* self)" +defs["ImGuiIO_ClearInputMouse"][1]["argsT"] = {} +defs["ImGuiIO_ClearInputMouse"][1]["argsT"][1] = {} +defs["ImGuiIO_ClearInputMouse"][1]["argsT"][1]["name"] = "self" +defs["ImGuiIO_ClearInputMouse"][1]["argsT"][1]["type"] = "ImGuiIO*" +defs["ImGuiIO_ClearInputMouse"][1]["argsoriginal"] = "()" +defs["ImGuiIO_ClearInputMouse"][1]["call_args"] = "()" +defs["ImGuiIO_ClearInputMouse"][1]["cimguiname"] = "ImGuiIO_ClearInputMouse" +defs["ImGuiIO_ClearInputMouse"][1]["defaults"] = {} +defs["ImGuiIO_ClearInputMouse"][1]["funcname"] = "ClearInputMouse" +defs["ImGuiIO_ClearInputMouse"][1]["location"] = "imgui:2349" +defs["ImGuiIO_ClearInputMouse"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputMouse" +defs["ImGuiIO_ClearInputMouse"][1]["ret"] = "void" +defs["ImGuiIO_ClearInputMouse"][1]["signature"] = "()" +defs["ImGuiIO_ClearInputMouse"][1]["stname"] = "ImGuiIO" +defs["ImGuiIO_ClearInputMouse"]["()"] = defs["ImGuiIO_ClearInputMouse"][1] defs["ImGuiIO_ImGuiIO"] = {} defs["ImGuiIO_ImGuiIO"][1] = {} defs["ImGuiIO_ImGuiIO"][1]["args"] = "()" @@ -4858,7 +5969,11 @@ defs["ImGuiIO_ImGuiIO"][1]["cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["constructor"] = true defs["ImGuiIO_ImGuiIO"][1]["defaults"] = {} defs["ImGuiIO_ImGuiIO"][1]["funcname"] = "ImGuiIO" +<<<<<<< HEAD defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui:2315" +======= +defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui:2432" +>>>>>>> docking_inter defs["ImGuiIO_ImGuiIO"][1]["ov_cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["signature"] = "()" defs["ImGuiIO_ImGuiIO"][1]["stname"] = "ImGuiIO" @@ -4878,7 +5993,11 @@ defs["ImGuiIO_SetAppAcceptingEvents"][1]["call_args"] = "(accepting_events)" defs["ImGuiIO_SetAppAcceptingEvents"][1]["cimguiname"] = "ImGuiIO_SetAppAcceptingEvents" defs["ImGuiIO_SetAppAcceptingEvents"][1]["defaults"] = {} defs["ImGuiIO_SetAppAcceptingEvents"][1]["funcname"] = "SetAppAcceptingEvents" +<<<<<<< HEAD defs["ImGuiIO_SetAppAcceptingEvents"][1]["location"] = "imgui:2232" +======= +defs["ImGuiIO_SetAppAcceptingEvents"][1]["location"] = "imgui:2346" +>>>>>>> docking_inter defs["ImGuiIO_SetAppAcceptingEvents"][1]["ov_cimguiname"] = "ImGuiIO_SetAppAcceptingEvents" defs["ImGuiIO_SetAppAcceptingEvents"][1]["ret"] = "void" defs["ImGuiIO_SetAppAcceptingEvents"][1]["signature"] = "(bool)" @@ -4909,7 +6028,11 @@ defs["ImGuiIO_SetKeyEventNativeData"][1]["cimguiname"] = "ImGuiIO_SetKeyEventNat defs["ImGuiIO_SetKeyEventNativeData"][1]["defaults"] = {} defs["ImGuiIO_SetKeyEventNativeData"][1]["defaults"]["native_legacy_index"] = "-1" defs["ImGuiIO_SetKeyEventNativeData"][1]["funcname"] = "SetKeyEventNativeData" +<<<<<<< HEAD defs["ImGuiIO_SetKeyEventNativeData"][1]["location"] = "imgui:2231" +======= +defs["ImGuiIO_SetKeyEventNativeData"][1]["location"] = "imgui:2345" +>>>>>>> docking_inter defs["ImGuiIO_SetKeyEventNativeData"][1]["ov_cimguiname"] = "ImGuiIO_SetKeyEventNativeData" defs["ImGuiIO_SetKeyEventNativeData"][1]["ret"] = "void" defs["ImGuiIO_SetKeyEventNativeData"][1]["signature"] = "(ImGuiKey,int,int,int)" @@ -4941,7 +6064,11 @@ defs["ImGuiInputEvent_ImGuiInputEvent"][1]["cimguiname"] = "ImGuiInputEvent_ImGu defs["ImGuiInputEvent_ImGuiInputEvent"][1]["constructor"] = true defs["ImGuiInputEvent_ImGuiInputEvent"][1]["defaults"] = {} defs["ImGuiInputEvent_ImGuiInputEvent"][1]["funcname"] = "ImGuiInputEvent" +<<<<<<< HEAD defs["ImGuiInputEvent_ImGuiInputEvent"][1]["location"] = "imgui_internal:1403" +======= +defs["ImGuiInputEvent_ImGuiInputEvent"][1]["location"] = "imgui_internal:1429" +>>>>>>> docking_inter defs["ImGuiInputEvent_ImGuiInputEvent"][1]["ov_cimguiname"] = "ImGuiInputEvent_ImGuiInputEvent" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["signature"] = "()" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["stname"] = "ImGuiInputEvent" @@ -4974,7 +6101,11 @@ defs["ImGuiInputTextCallbackData_ClearSelection"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_ClearSelection"][1]["funcname"] = "ClearSelection" +<<<<<<< HEAD defs["ImGuiInputTextCallbackData_ClearSelection"][1]["location"] = "imgui:2359" +======= +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["location"] = "imgui:2476" +>>>>>>> docking_inter defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["signature"] = "()" @@ -4998,7 +6129,11 @@ defs["ImGuiInputTextCallbackData_DeleteChars"][1]["call_args"] = "(pos,bytes_cou defs["ImGuiInputTextCallbackData_DeleteChars"][1]["cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_DeleteChars"][1]["funcname"] = "DeleteChars" +<<<<<<< HEAD defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui:2356" +======= +defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui:2473" +>>>>>>> docking_inter defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["signature"] = "(int,int)" @@ -5016,7 +6151,11 @@ defs["ImGuiInputTextCallbackData_HasSelection"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_HasSelection"][1]["cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_HasSelection"][1]["funcname"] = "HasSelection" +<<<<<<< HEAD defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui:2360" +======= +defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui:2477" +>>>>>>> docking_inter defs["ImGuiInputTextCallbackData_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextCallbackData_HasSelection"][1]["signature"] = "()const" @@ -5032,7 +6171,11 @@ defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["cimguiname"] = defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["constructor"] = true defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["funcname"] = "ImGuiInputTextCallbackData" +<<<<<<< HEAD defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui:2355" +======= +defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui:2472" +>>>>>>> docking_inter defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["signature"] = "()" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["stname"] = "ImGuiInputTextCallbackData" @@ -5059,7 +6202,11 @@ defs["ImGuiInputTextCallbackData_InsertChars"][1]["cimguiname"] = "ImGuiInputTex defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"]["text_end"] = "NULL" defs["ImGuiInputTextCallbackData_InsertChars"][1]["funcname"] = "InsertChars" +<<<<<<< HEAD defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:2357" +======= +defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:2474" +>>>>>>> docking_inter defs["ImGuiInputTextCallbackData_InsertChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_InsertChars"][1]["signature"] = "(int,const char*,const char*)" @@ -5077,7 +6224,11 @@ defs["ImGuiInputTextCallbackData_SelectAll"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_SelectAll"][1]["cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" defs["ImGuiInputTextCallbackData_SelectAll"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_SelectAll"][1]["funcname"] = "SelectAll" +<<<<<<< HEAD defs["ImGuiInputTextCallbackData_SelectAll"][1]["location"] = "imgui:2358" +======= +defs["ImGuiInputTextCallbackData_SelectAll"][1]["location"] = "imgui:2475" +>>>>>>> docking_inter defs["ImGuiInputTextCallbackData_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" defs["ImGuiInputTextCallbackData_SelectAll"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_SelectAll"][1]["signature"] = "()" @@ -5111,7 +6262,11 @@ defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["call_args"] = "()" defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["cimguiname"] = "ImGuiInputTextDeactivatedState_ClearFreeMemory" defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["defaults"] = {} defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" +<<<<<<< HEAD defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["location"] = "imgui_internal:1102" +======= +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["location"] = "imgui_internal:1117" +>>>>>>> docking_inter defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["ov_cimguiname"] = "ImGuiInputTextDeactivatedState_ClearFreeMemory" defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["ret"] = "void" defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["signature"] = "()" @@ -5127,7 +6282,11 @@ defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["cimgui defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["constructor"] = true defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["defaults"] = {} defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["funcname"] = "ImGuiInputTextDeactivatedState" +<<<<<<< HEAD defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["location"] = "imgui_internal:1101" +======= +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["location"] = "imgui_internal:1116" +>>>>>>> docking_inter defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["ov_cimguiname"] = "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState" defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["signature"] = "()" defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["stname"] = "ImGuiInputTextDeactivatedState" @@ -5160,7 +6319,11 @@ defs["ImGuiInputTextState_ClearFreeMemory"][1]["call_args"] = "()" defs["ImGuiInputTextState_ClearFreeMemory"][1]["cimguiname"] = "ImGuiInputTextState_ClearFreeMemory" defs["ImGuiInputTextState_ClearFreeMemory"][1]["defaults"] = {} defs["ImGuiInputTextState_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" +<<<<<<< HEAD defs["ImGuiInputTextState_ClearFreeMemory"][1]["location"] = "imgui_internal:1129" +======= +defs["ImGuiInputTextState_ClearFreeMemory"][1]["location"] = "imgui_internal:1144" +>>>>>>> docking_inter defs["ImGuiInputTextState_ClearFreeMemory"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearFreeMemory" defs["ImGuiInputTextState_ClearFreeMemory"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearFreeMemory"][1]["signature"] = "()" @@ -5178,7 +6341,11 @@ defs["ImGuiInputTextState_ClearSelection"][1]["call_args"] = "()" defs["ImGuiInputTextState_ClearSelection"][1]["cimguiname"] = "ImGuiInputTextState_ClearSelection" defs["ImGuiInputTextState_ClearSelection"][1]["defaults"] = {} defs["ImGuiInputTextState_ClearSelection"][1]["funcname"] = "ClearSelection" +<<<<<<< HEAD defs["ImGuiInputTextState_ClearSelection"][1]["location"] = "imgui_internal:1138" +======= +defs["ImGuiInputTextState_ClearSelection"][1]["location"] = "imgui_internal:1153" +>>>>>>> docking_inter defs["ImGuiInputTextState_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearSelection" defs["ImGuiInputTextState_ClearSelection"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearSelection"][1]["signature"] = "()" @@ -5196,7 +6363,11 @@ defs["ImGuiInputTextState_ClearText"][1]["call_args"] = "()" defs["ImGuiInputTextState_ClearText"][1]["cimguiname"] = "ImGuiInputTextState_ClearText" defs["ImGuiInputTextState_ClearText"][1]["defaults"] = {} defs["ImGuiInputTextState_ClearText"][1]["funcname"] = "ClearText" +<<<<<<< HEAD defs["ImGuiInputTextState_ClearText"][1]["location"] = "imgui_internal:1128" +======= +defs["ImGuiInputTextState_ClearText"][1]["location"] = "imgui_internal:1143" +>>>>>>> docking_inter defs["ImGuiInputTextState_ClearText"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearText" defs["ImGuiInputTextState_ClearText"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearText"][1]["signature"] = "()" @@ -5214,7 +6385,11 @@ defs["ImGuiInputTextState_CursorAnimReset"][1]["call_args"] = "()" defs["ImGuiInputTextState_CursorAnimReset"][1]["cimguiname"] = "ImGuiInputTextState_CursorAnimReset" defs["ImGuiInputTextState_CursorAnimReset"][1]["defaults"] = {} defs["ImGuiInputTextState_CursorAnimReset"][1]["funcname"] = "CursorAnimReset" +<<<<<<< HEAD defs["ImGuiInputTextState_CursorAnimReset"][1]["location"] = "imgui_internal:1135" +======= +defs["ImGuiInputTextState_CursorAnimReset"][1]["location"] = "imgui_internal:1150" +>>>>>>> docking_inter defs["ImGuiInputTextState_CursorAnimReset"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorAnimReset" defs["ImGuiInputTextState_CursorAnimReset"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorAnimReset"][1]["signature"] = "()" @@ -5232,7 +6407,11 @@ defs["ImGuiInputTextState_CursorClamp"][1]["call_args"] = "()" defs["ImGuiInputTextState_CursorClamp"][1]["cimguiname"] = "ImGuiInputTextState_CursorClamp" defs["ImGuiInputTextState_CursorClamp"][1]["defaults"] = {} defs["ImGuiInputTextState_CursorClamp"][1]["funcname"] = "CursorClamp" +<<<<<<< HEAD defs["ImGuiInputTextState_CursorClamp"][1]["location"] = "imgui_internal:1136" +======= +defs["ImGuiInputTextState_CursorClamp"][1]["location"] = "imgui_internal:1151" +>>>>>>> docking_inter defs["ImGuiInputTextState_CursorClamp"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorClamp" defs["ImGuiInputTextState_CursorClamp"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorClamp"][1]["signature"] = "()" @@ -5250,7 +6429,11 @@ defs["ImGuiInputTextState_GetCursorPos"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetCursorPos"][1]["cimguiname"] = "ImGuiInputTextState_GetCursorPos" defs["ImGuiInputTextState_GetCursorPos"][1]["defaults"] = {} defs["ImGuiInputTextState_GetCursorPos"][1]["funcname"] = "GetCursorPos" +<<<<<<< HEAD defs["ImGuiInputTextState_GetCursorPos"][1]["location"] = "imgui_internal:1139" +======= +defs["ImGuiInputTextState_GetCursorPos"][1]["location"] = "imgui_internal:1154" +>>>>>>> docking_inter defs["ImGuiInputTextState_GetCursorPos"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetCursorPos" defs["ImGuiInputTextState_GetCursorPos"][1]["ret"] = "int" defs["ImGuiInputTextState_GetCursorPos"][1]["signature"] = "()const" @@ -5268,7 +6451,11 @@ defs["ImGuiInputTextState_GetRedoAvailCount"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["cimguiname"] = "ImGuiInputTextState_GetRedoAvailCount" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["defaults"] = {} defs["ImGuiInputTextState_GetRedoAvailCount"][1]["funcname"] = "GetRedoAvailCount" +<<<<<<< HEAD defs["ImGuiInputTextState_GetRedoAvailCount"][1]["location"] = "imgui_internal:1131" +======= +defs["ImGuiInputTextState_GetRedoAvailCount"][1]["location"] = "imgui_internal:1146" +>>>>>>> docking_inter defs["ImGuiInputTextState_GetRedoAvailCount"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetRedoAvailCount" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["ret"] = "int" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["signature"] = "()const" @@ -5286,7 +6473,11 @@ defs["ImGuiInputTextState_GetSelectionEnd"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetSelectionEnd"][1]["cimguiname"] = "ImGuiInputTextState_GetSelectionEnd" defs["ImGuiInputTextState_GetSelectionEnd"][1]["defaults"] = {} defs["ImGuiInputTextState_GetSelectionEnd"][1]["funcname"] = "GetSelectionEnd" +<<<<<<< HEAD defs["ImGuiInputTextState_GetSelectionEnd"][1]["location"] = "imgui_internal:1141" +======= +defs["ImGuiInputTextState_GetSelectionEnd"][1]["location"] = "imgui_internal:1156" +>>>>>>> docking_inter defs["ImGuiInputTextState_GetSelectionEnd"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetSelectionEnd" defs["ImGuiInputTextState_GetSelectionEnd"][1]["ret"] = "int" defs["ImGuiInputTextState_GetSelectionEnd"][1]["signature"] = "()const" @@ -5304,7 +6495,11 @@ defs["ImGuiInputTextState_GetSelectionStart"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetSelectionStart"][1]["cimguiname"] = "ImGuiInputTextState_GetSelectionStart" defs["ImGuiInputTextState_GetSelectionStart"][1]["defaults"] = {} defs["ImGuiInputTextState_GetSelectionStart"][1]["funcname"] = "GetSelectionStart" +<<<<<<< HEAD defs["ImGuiInputTextState_GetSelectionStart"][1]["location"] = "imgui_internal:1140" +======= +defs["ImGuiInputTextState_GetSelectionStart"][1]["location"] = "imgui_internal:1155" +>>>>>>> docking_inter defs["ImGuiInputTextState_GetSelectionStart"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetSelectionStart" defs["ImGuiInputTextState_GetSelectionStart"][1]["ret"] = "int" defs["ImGuiInputTextState_GetSelectionStart"][1]["signature"] = "()const" @@ -5322,7 +6517,11 @@ defs["ImGuiInputTextState_GetUndoAvailCount"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["cimguiname"] = "ImGuiInputTextState_GetUndoAvailCount" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["defaults"] = {} defs["ImGuiInputTextState_GetUndoAvailCount"][1]["funcname"] = "GetUndoAvailCount" +<<<<<<< HEAD defs["ImGuiInputTextState_GetUndoAvailCount"][1]["location"] = "imgui_internal:1130" +======= +defs["ImGuiInputTextState_GetUndoAvailCount"][1]["location"] = "imgui_internal:1145" +>>>>>>> docking_inter defs["ImGuiInputTextState_GetUndoAvailCount"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetUndoAvailCount" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["ret"] = "int" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["signature"] = "()const" @@ -5340,7 +6539,11 @@ defs["ImGuiInputTextState_HasSelection"][1]["call_args"] = "()" defs["ImGuiInputTextState_HasSelection"][1]["cimguiname"] = "ImGuiInputTextState_HasSelection" defs["ImGuiInputTextState_HasSelection"][1]["defaults"] = {} defs["ImGuiInputTextState_HasSelection"][1]["funcname"] = "HasSelection" +<<<<<<< HEAD defs["ImGuiInputTextState_HasSelection"][1]["location"] = "imgui_internal:1137" +======= +defs["ImGuiInputTextState_HasSelection"][1]["location"] = "imgui_internal:1152" +>>>>>>> docking_inter defs["ImGuiInputTextState_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_HasSelection" defs["ImGuiInputTextState_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextState_HasSelection"][1]["signature"] = "()const" @@ -5356,7 +6559,11 @@ defs["ImGuiInputTextState_ImGuiInputTextState"][1]["cimguiname"] = "ImGuiInputTe defs["ImGuiInputTextState_ImGuiInputTextState"][1]["constructor"] = true defs["ImGuiInputTextState_ImGuiInputTextState"][1]["defaults"] = {} defs["ImGuiInputTextState_ImGuiInputTextState"][1]["funcname"] = "ImGuiInputTextState" +<<<<<<< HEAD defs["ImGuiInputTextState_ImGuiInputTextState"][1]["location"] = "imgui_internal:1127" +======= +defs["ImGuiInputTextState_ImGuiInputTextState"][1]["location"] = "imgui_internal:1142" +>>>>>>> docking_inter defs["ImGuiInputTextState_ImGuiInputTextState"][1]["ov_cimguiname"] = "ImGuiInputTextState_ImGuiInputTextState" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["signature"] = "()" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["stname"] = "ImGuiInputTextState" @@ -5376,7 +6583,11 @@ defs["ImGuiInputTextState_OnKeyPressed"][1]["call_args"] = "(key)" defs["ImGuiInputTextState_OnKeyPressed"][1]["cimguiname"] = "ImGuiInputTextState_OnKeyPressed" defs["ImGuiInputTextState_OnKeyPressed"][1]["defaults"] = {} defs["ImGuiInputTextState_OnKeyPressed"][1]["funcname"] = "OnKeyPressed" +<<<<<<< HEAD defs["ImGuiInputTextState_OnKeyPressed"][1]["location"] = "imgui_internal:1132" +======= +defs["ImGuiInputTextState_OnKeyPressed"][1]["location"] = "imgui_internal:1147" +>>>>>>> docking_inter defs["ImGuiInputTextState_OnKeyPressed"][1]["ov_cimguiname"] = "ImGuiInputTextState_OnKeyPressed" defs["ImGuiInputTextState_OnKeyPressed"][1]["ret"] = "void" defs["ImGuiInputTextState_OnKeyPressed"][1]["signature"] = "(int)" @@ -5394,7 +6605,11 @@ defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["call_args"] = "()" defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndKeepSelection" defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["defaults"] = {} defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["funcname"] = "ReloadUserBufAndKeepSelection" +<<<<<<< HEAD defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["location"] = "imgui_internal:1150" +======= +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["location"] = "imgui_internal:1165" +>>>>>>> docking_inter defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndKeepSelection" defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["ret"] = "void" defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["signature"] = "()" @@ -5412,7 +6627,11 @@ defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["call_args"] = "()" defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndMoveToEnd" defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["defaults"] = {} defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["funcname"] = "ReloadUserBufAndMoveToEnd" +<<<<<<< HEAD defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["location"] = "imgui_internal:1151" +======= +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["location"] = "imgui_internal:1166" +>>>>>>> docking_inter defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["ov_cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndMoveToEnd" defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["ret"] = "void" defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["signature"] = "()" @@ -5430,7 +6649,11 @@ defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["call_args"] = "()" defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndSelectAll" defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["defaults"] = {} defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["funcname"] = "ReloadUserBufAndSelectAll" +<<<<<<< HEAD defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["location"] = "imgui_internal:1149" +======= +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["location"] = "imgui_internal:1164" +>>>>>>> docking_inter defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndSelectAll" defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["ret"] = "void" defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["signature"] = "()" @@ -5448,7 +6671,11 @@ defs["ImGuiInputTextState_SelectAll"][1]["call_args"] = "()" defs["ImGuiInputTextState_SelectAll"][1]["cimguiname"] = "ImGuiInputTextState_SelectAll" defs["ImGuiInputTextState_SelectAll"][1]["defaults"] = {} defs["ImGuiInputTextState_SelectAll"][1]["funcname"] = "SelectAll" +<<<<<<< HEAD defs["ImGuiInputTextState_SelectAll"][1]["location"] = "imgui_internal:1142" +======= +defs["ImGuiInputTextState_SelectAll"][1]["location"] = "imgui_internal:1157" +>>>>>>> docking_inter defs["ImGuiInputTextState_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextState_SelectAll" defs["ImGuiInputTextState_SelectAll"][1]["ret"] = "void" defs["ImGuiInputTextState_SelectAll"][1]["signature"] = "()" @@ -5480,7 +6707,11 @@ defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["cimguiname"] = "ImGuiKeyOwnerDat defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["constructor"] = true defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["defaults"] = {} defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["funcname"] = "ImGuiKeyOwnerData" +<<<<<<< HEAD defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["location"] = "imgui_internal:1447" +======= +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["location"] = "imgui_internal:1473" +>>>>>>> docking_inter defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["ov_cimguiname"] = "ImGuiKeyOwnerData_ImGuiKeyOwnerData" defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["signature"] = "()" defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["stname"] = "ImGuiKeyOwnerData" @@ -5511,7 +6742,11 @@ defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["cimguiname"] = "ImGuiKeyRout defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["constructor"] = true defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["defaults"] = {} defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["funcname"] = "ImGuiKeyRoutingData" +<<<<<<< HEAD defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["location"] = "imgui_internal:1423" +======= +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["location"] = "imgui_internal:1449" +>>>>>>> docking_inter defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["ov_cimguiname"] = "ImGuiKeyRoutingData_ImGuiKeyRoutingData" defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["signature"] = "()" defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["stname"] = "ImGuiKeyRoutingData" @@ -5544,7 +6779,11 @@ defs["ImGuiKeyRoutingTable_Clear"][1]["call_args"] = "()" defs["ImGuiKeyRoutingTable_Clear"][1]["cimguiname"] = "ImGuiKeyRoutingTable_Clear" defs["ImGuiKeyRoutingTable_Clear"][1]["defaults"] = {} defs["ImGuiKeyRoutingTable_Clear"][1]["funcname"] = "Clear" +<<<<<<< HEAD defs["ImGuiKeyRoutingTable_Clear"][1]["location"] = "imgui_internal:1435" +======= +defs["ImGuiKeyRoutingTable_Clear"][1]["location"] = "imgui_internal:1461" +>>>>>>> docking_inter defs["ImGuiKeyRoutingTable_Clear"][1]["ov_cimguiname"] = "ImGuiKeyRoutingTable_Clear" defs["ImGuiKeyRoutingTable_Clear"][1]["ret"] = "void" defs["ImGuiKeyRoutingTable_Clear"][1]["signature"] = "()" @@ -5560,7 +6799,11 @@ defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["cimguiname"] = "ImGuiKeyRo defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["constructor"] = true defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["defaults"] = {} defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["funcname"] = "ImGuiKeyRoutingTable" +<<<<<<< HEAD defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["location"] = "imgui_internal:1434" +======= +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["location"] = "imgui_internal:1460" +>>>>>>> docking_inter defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["ov_cimguiname"] = "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable" defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["signature"] = "()" defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["stname"] = "ImGuiKeyRoutingTable" @@ -5591,7 +6834,11 @@ defs["ImGuiLastItemData_ImGuiLastItemData"][1]["cimguiname"] = "ImGuiLastItemDat defs["ImGuiLastItemData_ImGuiLastItemData"][1]["constructor"] = true defs["ImGuiLastItemData_ImGuiLastItemData"][1]["defaults"] = {} defs["ImGuiLastItemData_ImGuiLastItemData"][1]["funcname"] = "ImGuiLastItemData" +<<<<<<< HEAD defs["ImGuiLastItemData_ImGuiLastItemData"][1]["location"] = "imgui_internal:1247" +======= +defs["ImGuiLastItemData_ImGuiLastItemData"][1]["location"] = "imgui_internal:1270" +>>>>>>> docking_inter defs["ImGuiLastItemData_ImGuiLastItemData"][1]["ov_cimguiname"] = "ImGuiLastItemData_ImGuiLastItemData" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["signature"] = "()" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["stname"] = "ImGuiLastItemData" @@ -5622,7 +6869,11 @@ defs["ImGuiListClipperData_ImGuiListClipperData"][1]["cimguiname"] = "ImGuiListC defs["ImGuiListClipperData_ImGuiListClipperData"][1]["constructor"] = true defs["ImGuiListClipperData_ImGuiListClipperData"][1]["defaults"] = {} defs["ImGuiListClipperData_ImGuiListClipperData"][1]["funcname"] = "ImGuiListClipperData" +<<<<<<< HEAD defs["ImGuiListClipperData_ImGuiListClipperData"][1]["location"] = "imgui_internal:1518" +======= +defs["ImGuiListClipperData_ImGuiListClipperData"][1]["location"] = "imgui_internal:1544" +>>>>>>> docking_inter defs["ImGuiListClipperData_ImGuiListClipperData"][1]["ov_cimguiname"] = "ImGuiListClipperData_ImGuiListClipperData" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["signature"] = "()" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["stname"] = "ImGuiListClipperData" @@ -5642,7 +6893,11 @@ defs["ImGuiListClipperData_Reset"][1]["call_args"] = "(clipper)" defs["ImGuiListClipperData_Reset"][1]["cimguiname"] = "ImGuiListClipperData_Reset" defs["ImGuiListClipperData_Reset"][1]["defaults"] = {} defs["ImGuiListClipperData_Reset"][1]["funcname"] = "Reset" +<<<<<<< HEAD defs["ImGuiListClipperData_Reset"][1]["location"] = "imgui_internal:1519" +======= +defs["ImGuiListClipperData_Reset"][1]["location"] = "imgui_internal:1545" +>>>>>>> docking_inter defs["ImGuiListClipperData_Reset"][1]["ov_cimguiname"] = "ImGuiListClipperData_Reset" defs["ImGuiListClipperData_Reset"][1]["ret"] = "void" defs["ImGuiListClipperData_Reset"][1]["signature"] = "(ImGuiListClipper*)" @@ -5680,7 +6935,11 @@ defs["ImGuiListClipperRange_FromIndices"][1]["cimguiname"] = "ImGuiListClipperRa defs["ImGuiListClipperRange_FromIndices"][1]["defaults"] = {} defs["ImGuiListClipperRange_FromIndices"][1]["funcname"] = "FromIndices" defs["ImGuiListClipperRange_FromIndices"][1]["is_static_function"] = true +<<<<<<< HEAD defs["ImGuiListClipperRange_FromIndices"][1]["location"] = "imgui_internal:1505" +======= +defs["ImGuiListClipperRange_FromIndices"][1]["location"] = "imgui_internal:1531" +>>>>>>> docking_inter defs["ImGuiListClipperRange_FromIndices"][1]["ov_cimguiname"] = "ImGuiListClipperRange_FromIndices" defs["ImGuiListClipperRange_FromIndices"][1]["ret"] = "ImGuiListClipperRange" defs["ImGuiListClipperRange_FromIndices"][1]["signature"] = "(int,int)" @@ -5708,7 +6967,11 @@ defs["ImGuiListClipperRange_FromPositions"][1]["cimguiname"] = "ImGuiListClipper defs["ImGuiListClipperRange_FromPositions"][1]["defaults"] = {} defs["ImGuiListClipperRange_FromPositions"][1]["funcname"] = "FromPositions" defs["ImGuiListClipperRange_FromPositions"][1]["is_static_function"] = true +<<<<<<< HEAD defs["ImGuiListClipperRange_FromPositions"][1]["location"] = "imgui_internal:1506" +======= +defs["ImGuiListClipperRange_FromPositions"][1]["location"] = "imgui_internal:1532" +>>>>>>> docking_inter defs["ImGuiListClipperRange_FromPositions"][1]["ov_cimguiname"] = "ImGuiListClipperRange_FromPositions" defs["ImGuiListClipperRange_FromPositions"][1]["ret"] = "ImGuiListClipperRange" defs["ImGuiListClipperRange_FromPositions"][1]["signature"] = "(float,float,int,int)" @@ -5733,7 +6996,11 @@ defs["ImGuiListClipper_Begin"][1]["cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["defaults"] = {} defs["ImGuiListClipper_Begin"][1]["defaults"]["items_height"] = "-1.0f" defs["ImGuiListClipper_Begin"][1]["funcname"] = "Begin" +<<<<<<< HEAD defs["ImGuiListClipper_Begin"][1]["location"] = "imgui:2547" +======= +defs["ImGuiListClipper_Begin"][1]["location"] = "imgui:2691" +>>>>>>> docking_inter defs["ImGuiListClipper_Begin"][1]["ov_cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["ret"] = "void" defs["ImGuiListClipper_Begin"][1]["signature"] = "(int,float)" @@ -5751,7 +7018,11 @@ defs["ImGuiListClipper_End"][1]["call_args"] = "()" defs["ImGuiListClipper_End"][1]["cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["defaults"] = {} defs["ImGuiListClipper_End"][1]["funcname"] = "End" +<<<<<<< HEAD defs["ImGuiListClipper_End"][1]["location"] = "imgui:2548" +======= +defs["ImGuiListClipper_End"][1]["location"] = "imgui:2692" +>>>>>>> docking_inter defs["ImGuiListClipper_End"][1]["ov_cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["ret"] = "void" defs["ImGuiListClipper_End"][1]["signature"] = "()" @@ -5767,7 +7038,11 @@ defs["ImGuiListClipper_ImGuiListClipper"][1]["cimguiname"] = "ImGuiListClipper_I defs["ImGuiListClipper_ImGuiListClipper"][1]["constructor"] = true defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"] = {} defs["ImGuiListClipper_ImGuiListClipper"][1]["funcname"] = "ImGuiListClipper" +<<<<<<< HEAD defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:2545" +======= +defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:2689" +>>>>>>> docking_inter defs["ImGuiListClipper_ImGuiListClipper"][1]["ov_cimguiname"] = "ImGuiListClipper_ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"][1]["signature"] = "()" defs["ImGuiListClipper_ImGuiListClipper"][1]["stname"] = "ImGuiListClipper" @@ -5787,7 +7062,11 @@ defs["ImGuiListClipper_IncludeItemByIndex"][1]["call_args"] = "(item_index)" defs["ImGuiListClipper_IncludeItemByIndex"][1]["cimguiname"] = "ImGuiListClipper_IncludeItemByIndex" defs["ImGuiListClipper_IncludeItemByIndex"][1]["defaults"] = {} defs["ImGuiListClipper_IncludeItemByIndex"][1]["funcname"] = "IncludeItemByIndex" +<<<<<<< HEAD defs["ImGuiListClipper_IncludeItemByIndex"][1]["location"] = "imgui:2553" +======= +defs["ImGuiListClipper_IncludeItemByIndex"][1]["location"] = "imgui:2697" +>>>>>>> docking_inter defs["ImGuiListClipper_IncludeItemByIndex"][1]["ov_cimguiname"] = "ImGuiListClipper_IncludeItemByIndex" defs["ImGuiListClipper_IncludeItemByIndex"][1]["ret"] = "void" defs["ImGuiListClipper_IncludeItemByIndex"][1]["signature"] = "(int)" @@ -5811,7 +7090,11 @@ defs["ImGuiListClipper_IncludeItemsByIndex"][1]["call_args"] = "(item_begin,item defs["ImGuiListClipper_IncludeItemsByIndex"][1]["cimguiname"] = "ImGuiListClipper_IncludeItemsByIndex" defs["ImGuiListClipper_IncludeItemsByIndex"][1]["defaults"] = {} defs["ImGuiListClipper_IncludeItemsByIndex"][1]["funcname"] = "IncludeItemsByIndex" +<<<<<<< HEAD defs["ImGuiListClipper_IncludeItemsByIndex"][1]["location"] = "imgui:2554" +======= +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["location"] = "imgui:2698" +>>>>>>> docking_inter defs["ImGuiListClipper_IncludeItemsByIndex"][1]["ov_cimguiname"] = "ImGuiListClipper_IncludeItemsByIndex" defs["ImGuiListClipper_IncludeItemsByIndex"][1]["ret"] = "void" defs["ImGuiListClipper_IncludeItemsByIndex"][1]["signature"] = "(int,int)" @@ -5829,7 +7112,11 @@ defs["ImGuiListClipper_Step"][1]["call_args"] = "()" defs["ImGuiListClipper_Step"][1]["cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["defaults"] = {} defs["ImGuiListClipper_Step"][1]["funcname"] = "Step" +<<<<<<< HEAD defs["ImGuiListClipper_Step"][1]["location"] = "imgui:2549" +======= +defs["ImGuiListClipper_Step"][1]["location"] = "imgui:2693" +>>>>>>> docking_inter defs["ImGuiListClipper_Step"][1]["ov_cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["ret"] = "bool" defs["ImGuiListClipper_Step"][1]["signature"] = "()" @@ -5846,7 +7133,11 @@ defs["ImGuiListClipper_destroy"][1]["call_args"] = "(self)" defs["ImGuiListClipper_destroy"][1]["cimguiname"] = "ImGuiListClipper_destroy" defs["ImGuiListClipper_destroy"][1]["defaults"] = {} defs["ImGuiListClipper_destroy"][1]["destructor"] = true +<<<<<<< HEAD defs["ImGuiListClipper_destroy"][1]["location"] = "imgui:2546" +======= +defs["ImGuiListClipper_destroy"][1]["location"] = "imgui:2690" +>>>>>>> docking_inter defs["ImGuiListClipper_destroy"][1]["ov_cimguiname"] = "ImGuiListClipper_destroy" defs["ImGuiListClipper_destroy"][1]["realdestructor"] = true defs["ImGuiListClipper_destroy"][1]["ret"] = "void" @@ -5868,7 +7159,11 @@ defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["call_args"] = "(update_offsets)" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["cimguiname"] = "ImGuiMenuColumns_CalcNextTotalWidth" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["defaults"] = {} defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["funcname"] = "CalcNextTotalWidth" +<<<<<<< HEAD defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["location"] = "imgui_internal:1092" +======= +defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["location"] = "imgui_internal:1107" +>>>>>>> docking_inter defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["ov_cimguiname"] = "ImGuiMenuColumns_CalcNextTotalWidth" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["ret"] = "void" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["signature"] = "(bool)" @@ -5898,7 +7193,11 @@ defs["ImGuiMenuColumns_DeclColumns"][1]["call_args"] = "(w_icon,w_label,w_shortc defs["ImGuiMenuColumns_DeclColumns"][1]["cimguiname"] = "ImGuiMenuColumns_DeclColumns" defs["ImGuiMenuColumns_DeclColumns"][1]["defaults"] = {} defs["ImGuiMenuColumns_DeclColumns"][1]["funcname"] = "DeclColumns" +<<<<<<< HEAD defs["ImGuiMenuColumns_DeclColumns"][1]["location"] = "imgui_internal:1091" +======= +defs["ImGuiMenuColumns_DeclColumns"][1]["location"] = "imgui_internal:1106" +>>>>>>> docking_inter defs["ImGuiMenuColumns_DeclColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_DeclColumns" defs["ImGuiMenuColumns_DeclColumns"][1]["ret"] = "float" defs["ImGuiMenuColumns_DeclColumns"][1]["signature"] = "(float,float,float,float)" @@ -5914,7 +7213,11 @@ defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["cimguiname"] = "ImGuiMenuColumns_I defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["constructor"] = true defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["defaults"] = {} defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["funcname"] = "ImGuiMenuColumns" +<<<<<<< HEAD defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["location"] = "imgui_internal:1089" +======= +defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["location"] = "imgui_internal:1104" +>>>>>>> docking_inter defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_ImGuiMenuColumns" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["signature"] = "()" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["stname"] = "ImGuiMenuColumns" @@ -5937,7 +7240,11 @@ defs["ImGuiMenuColumns_Update"][1]["call_args"] = "(spacing,window_reappearing)" defs["ImGuiMenuColumns_Update"][1]["cimguiname"] = "ImGuiMenuColumns_Update" defs["ImGuiMenuColumns_Update"][1]["defaults"] = {} defs["ImGuiMenuColumns_Update"][1]["funcname"] = "Update" +<<<<<<< HEAD defs["ImGuiMenuColumns_Update"][1]["location"] = "imgui_internal:1090" +======= +defs["ImGuiMenuColumns_Update"][1]["location"] = "imgui_internal:1105" +>>>>>>> docking_inter defs["ImGuiMenuColumns_Update"][1]["ov_cimguiname"] = "ImGuiMenuColumns_Update" defs["ImGuiMenuColumns_Update"][1]["ret"] = "void" defs["ImGuiMenuColumns_Update"][1]["signature"] = "(float,bool)" @@ -5971,7 +7278,11 @@ defs["ImGuiNavItemData_Clear"][1]["call_args"] = "()" defs["ImGuiNavItemData_Clear"][1]["cimguiname"] = "ImGuiNavItemData_Clear" defs["ImGuiNavItemData_Clear"][1]["defaults"] = {} defs["ImGuiNavItemData_Clear"][1]["funcname"] = "Clear" +<<<<<<< HEAD defs["ImGuiNavItemData_Clear"][1]["location"] = "imgui_internal:1602" +======= +defs["ImGuiNavItemData_Clear"][1]["location"] = "imgui_internal:1628" +>>>>>>> docking_inter defs["ImGuiNavItemData_Clear"][1]["ov_cimguiname"] = "ImGuiNavItemData_Clear" defs["ImGuiNavItemData_Clear"][1]["ret"] = "void" defs["ImGuiNavItemData_Clear"][1]["signature"] = "()" @@ -5987,7 +7298,11 @@ defs["ImGuiNavItemData_ImGuiNavItemData"][1]["cimguiname"] = "ImGuiNavItemData_I defs["ImGuiNavItemData_ImGuiNavItemData"][1]["constructor"] = true defs["ImGuiNavItemData_ImGuiNavItemData"][1]["defaults"] = {} defs["ImGuiNavItemData_ImGuiNavItemData"][1]["funcname"] = "ImGuiNavItemData" +<<<<<<< HEAD defs["ImGuiNavItemData_ImGuiNavItemData"][1]["location"] = "imgui_internal:1601" +======= +defs["ImGuiNavItemData_ImGuiNavItemData"][1]["location"] = "imgui_internal:1627" +>>>>>>> docking_inter defs["ImGuiNavItemData_ImGuiNavItemData"][1]["ov_cimguiname"] = "ImGuiNavItemData_ImGuiNavItemData" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["signature"] = "()" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["stname"] = "ImGuiNavItemData" @@ -6020,7 +7335,11 @@ defs["ImGuiNextItemData_ClearFlags"][1]["call_args"] = "()" defs["ImGuiNextItemData_ClearFlags"][1]["cimguiname"] = "ImGuiNextItemData_ClearFlags" defs["ImGuiNextItemData_ClearFlags"][1]["defaults"] = {} defs["ImGuiNextItemData_ClearFlags"][1]["funcname"] = "ClearFlags" +<<<<<<< HEAD defs["ImGuiNextItemData_ClearFlags"][1]["location"] = "imgui_internal:1231" +======= +defs["ImGuiNextItemData_ClearFlags"][1]["location"] = "imgui_internal:1254" +>>>>>>> docking_inter defs["ImGuiNextItemData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextItemData_ClearFlags" defs["ImGuiNextItemData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextItemData_ClearFlags"][1]["signature"] = "()" @@ -6036,7 +7355,11 @@ defs["ImGuiNextItemData_ImGuiNextItemData"][1]["cimguiname"] = "ImGuiNextItemDat defs["ImGuiNextItemData_ImGuiNextItemData"][1]["constructor"] = true defs["ImGuiNextItemData_ImGuiNextItemData"][1]["defaults"] = {} defs["ImGuiNextItemData_ImGuiNextItemData"][1]["funcname"] = "ImGuiNextItemData" +<<<<<<< HEAD defs["ImGuiNextItemData_ImGuiNextItemData"][1]["location"] = "imgui_internal:1230" +======= +defs["ImGuiNextItemData_ImGuiNextItemData"][1]["location"] = "imgui_internal:1253" +>>>>>>> docking_inter defs["ImGuiNextItemData_ImGuiNextItemData"][1]["ov_cimguiname"] = "ImGuiNextItemData_ImGuiNextItemData" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["signature"] = "()" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["stname"] = "ImGuiNextItemData" @@ -6069,7 +7392,11 @@ defs["ImGuiNextWindowData_ClearFlags"][1]["call_args"] = "()" defs["ImGuiNextWindowData_ClearFlags"][1]["cimguiname"] = "ImGuiNextWindowData_ClearFlags" defs["ImGuiNextWindowData_ClearFlags"][1]["defaults"] = {} defs["ImGuiNextWindowData_ClearFlags"][1]["funcname"] = "ClearFlags" +<<<<<<< HEAD defs["ImGuiNextWindowData_ClearFlags"][1]["location"] = "imgui_internal:1201" +======= +defs["ImGuiNextWindowData_ClearFlags"][1]["location"] = "imgui_internal:1224" +>>>>>>> docking_inter defs["ImGuiNextWindowData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ClearFlags" defs["ImGuiNextWindowData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextWindowData_ClearFlags"][1]["signature"] = "()" @@ -6085,7 +7412,11 @@ defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["cimguiname"] = "ImGuiNextWin defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["constructor"] = true defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["defaults"] = {} defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["funcname"] = "ImGuiNextWindowData" +<<<<<<< HEAD defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["location"] = "imgui_internal:1200" +======= +defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["location"] = "imgui_internal:1223" +>>>>>>> docking_inter defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ImGuiNextWindowData" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["signature"] = "()" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["stname"] = "ImGuiNextWindowData" @@ -6116,7 +7447,11 @@ defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["cimguiname"] = "ImGuiOldColumn defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["constructor"] = true defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["defaults"] = {} defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["funcname"] = "ImGuiOldColumnData" +<<<<<<< HEAD defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["location"] = "imgui_internal:1681" +======= +defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["location"] = "imgui_internal:1707" +>>>>>>> docking_inter defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["ov_cimguiname"] = "ImGuiOldColumnData_ImGuiOldColumnData" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["signature"] = "()" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["stname"] = "ImGuiOldColumnData" @@ -6147,7 +7482,11 @@ defs["ImGuiOldColumns_ImGuiOldColumns"][1]["cimguiname"] = "ImGuiOldColumns_ImGu defs["ImGuiOldColumns_ImGuiOldColumns"][1]["constructor"] = true defs["ImGuiOldColumns_ImGuiOldColumns"][1]["defaults"] = {} defs["ImGuiOldColumns_ImGuiOldColumns"][1]["funcname"] = "ImGuiOldColumns" +<<<<<<< HEAD defs["ImGuiOldColumns_ImGuiOldColumns"][1]["location"] = "imgui_internal:1702" +======= +defs["ImGuiOldColumns_ImGuiOldColumns"][1]["location"] = "imgui_internal:1728" +>>>>>>> docking_inter defs["ImGuiOldColumns_ImGuiOldColumns"][1]["ov_cimguiname"] = "ImGuiOldColumns_ImGuiOldColumns" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["signature"] = "()" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["stname"] = "ImGuiOldColumns" @@ -6178,7 +7517,11 @@ defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["cimguiname"] = "ImGuiOnceUpo defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["constructor"] = true defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["defaults"] = {} defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["funcname"] = "ImGuiOnceUponAFrame" +<<<<<<< HEAD defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui:2411" +======= +defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui:2550" +>>>>>>> docking_inter defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["ov_cimguiname"] = "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["signature"] = "()" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["stname"] = "ImGuiOnceUponAFrame" @@ -6211,7 +7554,11 @@ defs["ImGuiPayload_Clear"][1]["call_args"] = "()" defs["ImGuiPayload_Clear"][1]["cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["defaults"] = {} defs["ImGuiPayload_Clear"][1]["funcname"] = "Clear" +<<<<<<< HEAD defs["ImGuiPayload_Clear"][1]["location"] = "imgui:2389" +======= +defs["ImGuiPayload_Clear"][1]["location"] = "imgui:2528" +>>>>>>> docking_inter defs["ImGuiPayload_Clear"][1]["ov_cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["ret"] = "void" defs["ImGuiPayload_Clear"][1]["signature"] = "()" @@ -6227,7 +7574,11 @@ defs["ImGuiPayload_ImGuiPayload"][1]["cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["constructor"] = true defs["ImGuiPayload_ImGuiPayload"][1]["defaults"] = {} defs["ImGuiPayload_ImGuiPayload"][1]["funcname"] = "ImGuiPayload" +<<<<<<< HEAD defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui:2388" +======= +defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui:2527" +>>>>>>> docking_inter defs["ImGuiPayload_ImGuiPayload"][1]["ov_cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["signature"] = "()" defs["ImGuiPayload_ImGuiPayload"][1]["stname"] = "ImGuiPayload" @@ -6247,7 +7598,11 @@ defs["ImGuiPayload_IsDataType"][1]["call_args"] = "(type)" defs["ImGuiPayload_IsDataType"][1]["cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["defaults"] = {} defs["ImGuiPayload_IsDataType"][1]["funcname"] = "IsDataType" +<<<<<<< HEAD defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui:2390" +======= +defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui:2529" +>>>>>>> docking_inter defs["ImGuiPayload_IsDataType"][1]["ov_cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["ret"] = "bool" defs["ImGuiPayload_IsDataType"][1]["signature"] = "(const char*)const" @@ -6265,7 +7620,11 @@ defs["ImGuiPayload_IsDelivery"][1]["call_args"] = "()" defs["ImGuiPayload_IsDelivery"][1]["cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["defaults"] = {} defs["ImGuiPayload_IsDelivery"][1]["funcname"] = "IsDelivery" +<<<<<<< HEAD defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui:2392" +======= +defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui:2531" +>>>>>>> docking_inter defs["ImGuiPayload_IsDelivery"][1]["ov_cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["ret"] = "bool" defs["ImGuiPayload_IsDelivery"][1]["signature"] = "()const" @@ -6283,7 +7642,11 @@ defs["ImGuiPayload_IsPreview"][1]["call_args"] = "()" defs["ImGuiPayload_IsPreview"][1]["cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["defaults"] = {} defs["ImGuiPayload_IsPreview"][1]["funcname"] = "IsPreview" +<<<<<<< HEAD defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui:2391" +======= +defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui:2530" +>>>>>>> docking_inter defs["ImGuiPayload_IsPreview"][1]["ov_cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["ret"] = "bool" defs["ImGuiPayload_IsPreview"][1]["signature"] = "()const" @@ -6305,6 +7668,40 @@ defs["ImGuiPayload_destroy"][1]["ret"] = "void" defs["ImGuiPayload_destroy"][1]["signature"] = "(ImGuiPayload*)" defs["ImGuiPayload_destroy"][1]["stname"] = "ImGuiPayload" defs["ImGuiPayload_destroy"]["(ImGuiPayload*)"] = defs["ImGuiPayload_destroy"][1] +<<<<<<< HEAD +======= +defs["ImGuiPlatformIO_ImGuiPlatformIO"] = {} +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1] = {} +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["args"] = "()" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["argsT"] = {} +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["argsoriginal"] = "()" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["call_args"] = "()" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["cimguiname"] = "ImGuiPlatformIO_ImGuiPlatformIO" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["constructor"] = true +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["defaults"] = {} +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["funcname"] = "ImGuiPlatformIO" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["location"] = "imgui:3508" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["ov_cimguiname"] = "ImGuiPlatformIO_ImGuiPlatformIO" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["signature"] = "()" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["stname"] = "ImGuiPlatformIO" +defs["ImGuiPlatformIO_ImGuiPlatformIO"]["()"] = defs["ImGuiPlatformIO_ImGuiPlatformIO"][1] +defs["ImGuiPlatformIO_destroy"] = {} +defs["ImGuiPlatformIO_destroy"][1] = {} +defs["ImGuiPlatformIO_destroy"][1]["args"] = "(ImGuiPlatformIO* self)" +defs["ImGuiPlatformIO_destroy"][1]["argsT"] = {} +defs["ImGuiPlatformIO_destroy"][1]["argsT"][1] = {} +defs["ImGuiPlatformIO_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiPlatformIO_destroy"][1]["argsT"][1]["type"] = "ImGuiPlatformIO*" +defs["ImGuiPlatformIO_destroy"][1]["call_args"] = "(self)" +defs["ImGuiPlatformIO_destroy"][1]["cimguiname"] = "ImGuiPlatformIO_destroy" +defs["ImGuiPlatformIO_destroy"][1]["defaults"] = {} +defs["ImGuiPlatformIO_destroy"][1]["destructor"] = true +defs["ImGuiPlatformIO_destroy"][1]["ov_cimguiname"] = "ImGuiPlatformIO_destroy" +defs["ImGuiPlatformIO_destroy"][1]["ret"] = "void" +defs["ImGuiPlatformIO_destroy"][1]["signature"] = "(ImGuiPlatformIO*)" +defs["ImGuiPlatformIO_destroy"][1]["stname"] = "ImGuiPlatformIO" +defs["ImGuiPlatformIO_destroy"]["(ImGuiPlatformIO*)"] = defs["ImGuiPlatformIO_destroy"][1] +>>>>>>> docking_inter defs["ImGuiPlatformImeData_ImGuiPlatformImeData"] = {} defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1] = {} defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["args"] = "()" @@ -6315,7 +7712,11 @@ defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["cimguiname"] = "ImGuiPlatf defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["constructor"] = true defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["defaults"] = {} defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["funcname"] = "ImGuiPlatformImeData" +<<<<<<< HEAD defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["location"] = "imgui:3239" +======= +defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["location"] = "imgui:3529" +>>>>>>> docking_inter defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["ov_cimguiname"] = "ImGuiPlatformImeData_ImGuiPlatformImeData" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["signature"] = "()" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["stname"] = "ImGuiPlatformImeData" @@ -6336,6 +7737,40 @@ defs["ImGuiPlatformImeData_destroy"][1]["ret"] = "void" defs["ImGuiPlatformImeData_destroy"][1]["signature"] = "(ImGuiPlatformImeData*)" defs["ImGuiPlatformImeData_destroy"][1]["stname"] = "ImGuiPlatformImeData" defs["ImGuiPlatformImeData_destroy"]["(ImGuiPlatformImeData*)"] = defs["ImGuiPlatformImeData_destroy"][1] +<<<<<<< HEAD +======= +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"] = {} +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1] = {} +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["args"] = "()" +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["argsT"] = {} +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["argsoriginal"] = "()" +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["call_args"] = "()" +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["cimguiname"] = "ImGuiPlatformMonitor_ImGuiPlatformMonitor" +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["constructor"] = true +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["defaults"] = {} +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["funcname"] = "ImGuiPlatformMonitor" +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["location"] = "imgui:3519" +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["ov_cimguiname"] = "ImGuiPlatformMonitor_ImGuiPlatformMonitor" +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["signature"] = "()" +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["stname"] = "ImGuiPlatformMonitor" +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"]["()"] = defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1] +defs["ImGuiPlatformMonitor_destroy"] = {} +defs["ImGuiPlatformMonitor_destroy"][1] = {} +defs["ImGuiPlatformMonitor_destroy"][1]["args"] = "(ImGuiPlatformMonitor* self)" +defs["ImGuiPlatformMonitor_destroy"][1]["argsT"] = {} +defs["ImGuiPlatformMonitor_destroy"][1]["argsT"][1] = {} +defs["ImGuiPlatformMonitor_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiPlatformMonitor_destroy"][1]["argsT"][1]["type"] = "ImGuiPlatformMonitor*" +defs["ImGuiPlatformMonitor_destroy"][1]["call_args"] = "(self)" +defs["ImGuiPlatformMonitor_destroy"][1]["cimguiname"] = "ImGuiPlatformMonitor_destroy" +defs["ImGuiPlatformMonitor_destroy"][1]["defaults"] = {} +defs["ImGuiPlatformMonitor_destroy"][1]["destructor"] = true +defs["ImGuiPlatformMonitor_destroy"][1]["ov_cimguiname"] = "ImGuiPlatformMonitor_destroy" +defs["ImGuiPlatformMonitor_destroy"][1]["ret"] = "void" +defs["ImGuiPlatformMonitor_destroy"][1]["signature"] = "(ImGuiPlatformMonitor*)" +defs["ImGuiPlatformMonitor_destroy"][1]["stname"] = "ImGuiPlatformMonitor" +defs["ImGuiPlatformMonitor_destroy"]["(ImGuiPlatformMonitor*)"] = defs["ImGuiPlatformMonitor_destroy"][1] +>>>>>>> docking_inter defs["ImGuiPopupData_ImGuiPopupData"] = {} defs["ImGuiPopupData_ImGuiPopupData"][1] = {} defs["ImGuiPopupData_ImGuiPopupData"][1]["args"] = "()" @@ -6346,7 +7781,11 @@ defs["ImGuiPopupData_ImGuiPopupData"][1]["cimguiname"] = "ImGuiPopupData_ImGuiPo defs["ImGuiPopupData_ImGuiPopupData"][1]["constructor"] = true defs["ImGuiPopupData_ImGuiPopupData"][1]["defaults"] = {} defs["ImGuiPopupData_ImGuiPopupData"][1]["funcname"] = "ImGuiPopupData" +<<<<<<< HEAD defs["ImGuiPopupData_ImGuiPopupData"][1]["location"] = "imgui_internal:1325" +======= +defs["ImGuiPopupData_ImGuiPopupData"][1]["location"] = "imgui_internal:1348" +>>>>>>> docking_inter defs["ImGuiPopupData_ImGuiPopupData"][1]["ov_cimguiname"] = "ImGuiPopupData_ImGuiPopupData" defs["ImGuiPopupData_ImGuiPopupData"][1]["signature"] = "()" defs["ImGuiPopupData_ImGuiPopupData"][1]["stname"] = "ImGuiPopupData" @@ -6380,7 +7819,11 @@ defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["cimguiname"] = "ImGuiPtrOrIndex_ImGu defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["constructor"] = true defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["defaults"] = {} defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["funcname"] = "ImGuiPtrOrIndex" +<<<<<<< HEAD defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["location"] = "imgui_internal:1298" +======= +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["location"] = "imgui_internal:1321" +>>>>>>> docking_inter defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["signature"] = "(void*)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["stname"] = "ImGuiPtrOrIndex" @@ -6396,7 +7839,11 @@ defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["cimguiname"] = "ImGuiPtrOrIndex_ImGu defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["constructor"] = true defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["defaults"] = {} defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["funcname"] = "ImGuiPtrOrIndex" +<<<<<<< HEAD defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["location"] = "imgui_internal:1299" +======= +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["location"] = "imgui_internal:1322" +>>>>>>> docking_inter defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["signature"] = "(int)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["stname"] = "ImGuiPtrOrIndex" @@ -6428,7 +7875,11 @@ defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["cimguiname"] = "ImGuiSetti defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["constructor"] = true defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["defaults"] = {} defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["funcname"] = "ImGuiSettingsHandler" +<<<<<<< HEAD defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["location"] = "imgui_internal:1788" +======= +defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["location"] = "imgui_internal:1977" +>>>>>>> docking_inter defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["ov_cimguiname"] = "ImGuiSettingsHandler_ImGuiSettingsHandler" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["signature"] = "()" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["stname"] = "ImGuiSettingsHandler" @@ -6459,7 +7910,11 @@ defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["cimguiname"] = "ImGuiStackLe defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["constructor"] = true defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["defaults"] = {} defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["funcname"] = "ImGuiStackLevelInfo" +<<<<<<< HEAD defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["location"] = "imgui_internal:1880" +======= +defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["location"] = "imgui_internal:2075" +>>>>>>> docking_inter defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["ov_cimguiname"] = "ImGuiStackLevelInfo_ImGuiStackLevelInfo" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["signature"] = "()" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["stname"] = "ImGuiStackLevelInfo" @@ -6495,7 +7950,11 @@ defs["ImGuiStackSizes_CompareWithContextState"][1]["call_args"] = "(ctx)" defs["ImGuiStackSizes_CompareWithContextState"][1]["cimguiname"] = "ImGuiStackSizes_CompareWithContextState" defs["ImGuiStackSizes_CompareWithContextState"][1]["defaults"] = {} defs["ImGuiStackSizes_CompareWithContextState"][1]["funcname"] = "CompareWithContextState" +<<<<<<< HEAD defs["ImGuiStackSizes_CompareWithContextState"][1]["location"] = "imgui_internal:1274" +======= +defs["ImGuiStackSizes_CompareWithContextState"][1]["location"] = "imgui_internal:1297" +>>>>>>> docking_inter defs["ImGuiStackSizes_CompareWithContextState"][1]["ov_cimguiname"] = "ImGuiStackSizes_CompareWithContextState" defs["ImGuiStackSizes_CompareWithContextState"][1]["ret"] = "void" defs["ImGuiStackSizes_CompareWithContextState"][1]["signature"] = "(ImGuiContext*)" @@ -6511,7 +7970,11 @@ defs["ImGuiStackSizes_ImGuiStackSizes"][1]["cimguiname"] = "ImGuiStackSizes_ImGu defs["ImGuiStackSizes_ImGuiStackSizes"][1]["constructor"] = true defs["ImGuiStackSizes_ImGuiStackSizes"][1]["defaults"] = {} defs["ImGuiStackSizes_ImGuiStackSizes"][1]["funcname"] = "ImGuiStackSizes" +<<<<<<< HEAD defs["ImGuiStackSizes_ImGuiStackSizes"][1]["location"] = "imgui_internal:1272" +======= +defs["ImGuiStackSizes_ImGuiStackSizes"][1]["location"] = "imgui_internal:1295" +>>>>>>> docking_inter defs["ImGuiStackSizes_ImGuiStackSizes"][1]["ov_cimguiname"] = "ImGuiStackSizes_ImGuiStackSizes" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["signature"] = "()" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["stname"] = "ImGuiStackSizes" @@ -6531,7 +7994,11 @@ defs["ImGuiStackSizes_SetToContextState"][1]["call_args"] = "(ctx)" defs["ImGuiStackSizes_SetToContextState"][1]["cimguiname"] = "ImGuiStackSizes_SetToContextState" defs["ImGuiStackSizes_SetToContextState"][1]["defaults"] = {} defs["ImGuiStackSizes_SetToContextState"][1]["funcname"] = "SetToContextState" +<<<<<<< HEAD defs["ImGuiStackSizes_SetToContextState"][1]["location"] = "imgui_internal:1273" +======= +defs["ImGuiStackSizes_SetToContextState"][1]["location"] = "imgui_internal:1296" +>>>>>>> docking_inter defs["ImGuiStackSizes_SetToContextState"][1]["ov_cimguiname"] = "ImGuiStackSizes_SetToContextState" defs["ImGuiStackSizes_SetToContextState"][1]["ret"] = "void" defs["ImGuiStackSizes_SetToContextState"][1]["signature"] = "(ImGuiContext*)" @@ -6569,7 +8036,11 @@ defs["ImGuiStoragePair_ImGuiStoragePair"][1]["cimguiname"] = "ImGuiStoragePair_I defs["ImGuiStoragePair_ImGuiStoragePair"][1]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][1]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1]["funcname"] = "ImGuiStoragePair" +<<<<<<< HEAD defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui:2478" +======= +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui:2607" +>>>>>>> docking_inter defs["ImGuiStoragePair_ImGuiStoragePair"][1]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Int" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["signature"] = "(ImGuiID,int)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["stname"] = "ImGuiStoragePair" @@ -6588,7 +8059,11 @@ defs["ImGuiStoragePair_ImGuiStoragePair"][2]["cimguiname"] = "ImGuiStoragePair_I defs["ImGuiStoragePair_ImGuiStoragePair"][2]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][2]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][2]["funcname"] = "ImGuiStoragePair" +<<<<<<< HEAD defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui:2479" +======= +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui:2608" +>>>>>>> docking_inter defs["ImGuiStoragePair_ImGuiStoragePair"][2]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Float" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["signature"] = "(ImGuiID,float)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["stname"] = "ImGuiStoragePair" @@ -6607,7 +8082,11 @@ defs["ImGuiStoragePair_ImGuiStoragePair"][3]["cimguiname"] = "ImGuiStoragePair_I defs["ImGuiStoragePair_ImGuiStoragePair"][3]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][3]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][3]["funcname"] = "ImGuiStoragePair" +<<<<<<< HEAD defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui:2480" +======= +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui:2609" +>>>>>>> docking_inter defs["ImGuiStoragePair_ImGuiStoragePair"][3]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Ptr" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["signature"] = "(ImGuiID,void*)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["stname"] = "ImGuiStoragePair" @@ -6642,7 +8121,11 @@ defs["ImGuiStorage_BuildSortByKey"][1]["call_args"] = "()" defs["ImGuiStorage_BuildSortByKey"][1]["cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["defaults"] = {} defs["ImGuiStorage_BuildSortByKey"][1]["funcname"] = "BuildSortByKey" +<<<<<<< HEAD defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui:2508" +======= +defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui:2648" +>>>>>>> docking_inter defs["ImGuiStorage_BuildSortByKey"][1]["ov_cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["ret"] = "void" defs["ImGuiStorage_BuildSortByKey"][1]["signature"] = "()" @@ -6660,7 +8143,11 @@ defs["ImGuiStorage_Clear"][1]["call_args"] = "()" defs["ImGuiStorage_Clear"][1]["cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["defaults"] = {} defs["ImGuiStorage_Clear"][1]["funcname"] = "Clear" +<<<<<<< HEAD defs["ImGuiStorage_Clear"][1]["location"] = "imgui:2488" +======= +defs["ImGuiStorage_Clear"][1]["location"] = "imgui:2628" +>>>>>>> docking_inter defs["ImGuiStorage_Clear"][1]["ov_cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["ret"] = "void" defs["ImGuiStorage_Clear"][1]["signature"] = "()" @@ -6685,7 +8172,11 @@ defs["ImGuiStorage_GetBool"][1]["cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["defaults"] = {} defs["ImGuiStorage_GetBool"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBool"][1]["funcname"] = "GetBool" +<<<<<<< HEAD defs["ImGuiStorage_GetBool"][1]["location"] = "imgui:2491" +======= +defs["ImGuiStorage_GetBool"][1]["location"] = "imgui:2631" +>>>>>>> docking_inter defs["ImGuiStorage_GetBool"][1]["ov_cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["ret"] = "bool" defs["ImGuiStorage_GetBool"][1]["signature"] = "(ImGuiID,bool)const" @@ -6710,7 +8201,11 @@ defs["ImGuiStorage_GetBoolRef"][1]["cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["defaults"] = {} defs["ImGuiStorage_GetBoolRef"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBoolRef"][1]["funcname"] = "GetBoolRef" +<<<<<<< HEAD defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui:2503" +======= +defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui:2643" +>>>>>>> docking_inter defs["ImGuiStorage_GetBoolRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["ret"] = "bool*" defs["ImGuiStorage_GetBoolRef"][1]["signature"] = "(ImGuiID,bool)" @@ -6735,7 +8230,11 @@ defs["ImGuiStorage_GetFloat"][1]["cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["defaults"] = {} defs["ImGuiStorage_GetFloat"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloat"][1]["funcname"] = "GetFloat" +<<<<<<< HEAD defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui:2493" +======= +defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui:2633" +>>>>>>> docking_inter defs["ImGuiStorage_GetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["ret"] = "float" defs["ImGuiStorage_GetFloat"][1]["signature"] = "(ImGuiID,float)const" @@ -6760,7 +8259,11 @@ defs["ImGuiStorage_GetFloatRef"][1]["cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["defaults"] = {} defs["ImGuiStorage_GetFloatRef"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloatRef"][1]["funcname"] = "GetFloatRef" +<<<<<<< HEAD defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui:2504" +======= +defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui:2644" +>>>>>>> docking_inter defs["ImGuiStorage_GetFloatRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["ret"] = "float*" defs["ImGuiStorage_GetFloatRef"][1]["signature"] = "(ImGuiID,float)" @@ -6785,7 +8288,11 @@ defs["ImGuiStorage_GetInt"][1]["cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["defaults"] = {} defs["ImGuiStorage_GetInt"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetInt"][1]["funcname"] = "GetInt" +<<<<<<< HEAD defs["ImGuiStorage_GetInt"][1]["location"] = "imgui:2489" +======= +defs["ImGuiStorage_GetInt"][1]["location"] = "imgui:2629" +>>>>>>> docking_inter defs["ImGuiStorage_GetInt"][1]["ov_cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["ret"] = "int" defs["ImGuiStorage_GetInt"][1]["signature"] = "(ImGuiID,int)const" @@ -6810,7 +8317,11 @@ defs["ImGuiStorage_GetIntRef"][1]["cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["defaults"] = {} defs["ImGuiStorage_GetIntRef"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetIntRef"][1]["funcname"] = "GetIntRef" +<<<<<<< HEAD defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui:2502" +======= +defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui:2642" +>>>>>>> docking_inter defs["ImGuiStorage_GetIntRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["ret"] = "int*" defs["ImGuiStorage_GetIntRef"][1]["signature"] = "(ImGuiID,int)" @@ -6831,7 +8342,11 @@ defs["ImGuiStorage_GetVoidPtr"][1]["call_args"] = "(key)" defs["ImGuiStorage_GetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtr"][1]["funcname"] = "GetVoidPtr" +<<<<<<< HEAD defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui:2495" +======= +defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui:2635" +>>>>>>> docking_inter defs["ImGuiStorage_GetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["ret"] = "void*" defs["ImGuiStorage_GetVoidPtr"][1]["signature"] = "(ImGuiID)const" @@ -6856,7 +8371,11 @@ defs["ImGuiStorage_GetVoidPtrRef"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtrRe defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"]["default_val"] = "NULL" defs["ImGuiStorage_GetVoidPtrRef"][1]["funcname"] = "GetVoidPtrRef" +<<<<<<< HEAD defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui:2505" +======= +defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui:2645" +>>>>>>> docking_inter defs["ImGuiStorage_GetVoidPtrRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["ret"] = "void**" defs["ImGuiStorage_GetVoidPtrRef"][1]["signature"] = "(ImGuiID,void*)" @@ -6877,7 +8396,11 @@ defs["ImGuiStorage_SetAllInt"][1]["call_args"] = "(val)" defs["ImGuiStorage_SetAllInt"][1]["cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["defaults"] = {} defs["ImGuiStorage_SetAllInt"][1]["funcname"] = "SetAllInt" +<<<<<<< HEAD defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui:2510" +======= +defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui:2650" +>>>>>>> docking_inter defs["ImGuiStorage_SetAllInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["ret"] = "void" defs["ImGuiStorage_SetAllInt"][1]["signature"] = "(int)" @@ -6901,7 +8424,11 @@ defs["ImGuiStorage_SetBool"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetBool"][1]["cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["defaults"] = {} defs["ImGuiStorage_SetBool"][1]["funcname"] = "SetBool" +<<<<<<< HEAD defs["ImGuiStorage_SetBool"][1]["location"] = "imgui:2492" +======= +defs["ImGuiStorage_SetBool"][1]["location"] = "imgui:2632" +>>>>>>> docking_inter defs["ImGuiStorage_SetBool"][1]["ov_cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["ret"] = "void" defs["ImGuiStorage_SetBool"][1]["signature"] = "(ImGuiID,bool)" @@ -6925,7 +8452,11 @@ defs["ImGuiStorage_SetFloat"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetFloat"][1]["cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["defaults"] = {} defs["ImGuiStorage_SetFloat"][1]["funcname"] = "SetFloat" +<<<<<<< HEAD defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui:2494" +======= +defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui:2634" +>>>>>>> docking_inter defs["ImGuiStorage_SetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["ret"] = "void" defs["ImGuiStorage_SetFloat"][1]["signature"] = "(ImGuiID,float)" @@ -6949,7 +8480,11 @@ defs["ImGuiStorage_SetInt"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetInt"][1]["cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["defaults"] = {} defs["ImGuiStorage_SetInt"][1]["funcname"] = "SetInt" +<<<<<<< HEAD defs["ImGuiStorage_SetInt"][1]["location"] = "imgui:2490" +======= +defs["ImGuiStorage_SetInt"][1]["location"] = "imgui:2630" +>>>>>>> docking_inter defs["ImGuiStorage_SetInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["ret"] = "void" defs["ImGuiStorage_SetInt"][1]["signature"] = "(ImGuiID,int)" @@ -6973,7 +8508,11 @@ defs["ImGuiStorage_SetVoidPtr"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_SetVoidPtr"][1]["funcname"] = "SetVoidPtr" +<<<<<<< HEAD defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui:2496" +======= +defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui:2636" +>>>>>>> docking_inter defs["ImGuiStorage_SetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["ret"] = "void" defs["ImGuiStorage_SetVoidPtr"][1]["signature"] = "(ImGuiID,void*)" @@ -6995,7 +8534,11 @@ defs["ImGuiStyleMod_ImGuiStyleMod"][1]["cimguiname"] = "ImGuiStyleMod_ImGuiStyle defs["ImGuiStyleMod_ImGuiStyleMod"][1]["constructor"] = true defs["ImGuiStyleMod_ImGuiStyleMod"][1]["defaults"] = {} defs["ImGuiStyleMod_ImGuiStyleMod"][1]["funcname"] = "ImGuiStyleMod" +<<<<<<< HEAD defs["ImGuiStyleMod_ImGuiStyleMod"][1]["location"] = "imgui_internal:1041" +======= +defs["ImGuiStyleMod_ImGuiStyleMod"][1]["location"] = "imgui_internal:1056" +>>>>>>> docking_inter defs["ImGuiStyleMod_ImGuiStyleMod"][1]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Int" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["signature"] = "(ImGuiStyleVar,int)" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["stname"] = "ImGuiStyleMod" @@ -7014,7 +8557,11 @@ defs["ImGuiStyleMod_ImGuiStyleMod"][2]["cimguiname"] = "ImGuiStyleMod_ImGuiStyle defs["ImGuiStyleMod_ImGuiStyleMod"][2]["constructor"] = true defs["ImGuiStyleMod_ImGuiStyleMod"][2]["defaults"] = {} defs["ImGuiStyleMod_ImGuiStyleMod"][2]["funcname"] = "ImGuiStyleMod" +<<<<<<< HEAD defs["ImGuiStyleMod_ImGuiStyleMod"][2]["location"] = "imgui_internal:1042" +======= +defs["ImGuiStyleMod_ImGuiStyleMod"][2]["location"] = "imgui_internal:1057" +>>>>>>> docking_inter defs["ImGuiStyleMod_ImGuiStyleMod"][2]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Float" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["signature"] = "(ImGuiStyleVar,float)" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["stname"] = "ImGuiStyleMod" @@ -7033,7 +8580,11 @@ defs["ImGuiStyleMod_ImGuiStyleMod"][3]["cimguiname"] = "ImGuiStyleMod_ImGuiStyle defs["ImGuiStyleMod_ImGuiStyleMod"][3]["constructor"] = true defs["ImGuiStyleMod_ImGuiStyleMod"][3]["defaults"] = {} defs["ImGuiStyleMod_ImGuiStyleMod"][3]["funcname"] = "ImGuiStyleMod" +<<<<<<< HEAD defs["ImGuiStyleMod_ImGuiStyleMod"][3]["location"] = "imgui_internal:1043" +======= +defs["ImGuiStyleMod_ImGuiStyleMod"][3]["location"] = "imgui_internal:1058" +>>>>>>> docking_inter defs["ImGuiStyleMod_ImGuiStyleMod"][3]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Vec2" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["signature"] = "(ImGuiStyleVar,ImVec2)" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["stname"] = "ImGuiStyleMod" @@ -7066,7 +8617,11 @@ defs["ImGuiStyle_ImGuiStyle"][1]["cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["constructor"] = true defs["ImGuiStyle_ImGuiStyle"][1]["defaults"] = {} defs["ImGuiStyle_ImGuiStyle"][1]["funcname"] = "ImGuiStyle" +<<<<<<< HEAD defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui:2101" +======= +defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui:2202" +>>>>>>> docking_inter defs["ImGuiStyle_ImGuiStyle"][1]["ov_cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["signature"] = "()" defs["ImGuiStyle_ImGuiStyle"][1]["stname"] = "ImGuiStyle" @@ -7086,7 +8641,11 @@ defs["ImGuiStyle_ScaleAllSizes"][1]["call_args"] = "(scale_factor)" defs["ImGuiStyle_ScaleAllSizes"][1]["cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["defaults"] = {} defs["ImGuiStyle_ScaleAllSizes"][1]["funcname"] = "ScaleAllSizes" +<<<<<<< HEAD defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui:2102" +======= +defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui:2203" +>>>>>>> docking_inter defs["ImGuiStyle_ScaleAllSizes"][1]["ov_cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["ret"] = "void" defs["ImGuiStyle_ScaleAllSizes"][1]["signature"] = "(float)" @@ -7118,7 +8677,11 @@ defs["ImGuiTabBar_ImGuiTabBar"][1]["cimguiname"] = "ImGuiTabBar_ImGuiTabBar" defs["ImGuiTabBar_ImGuiTabBar"][1]["constructor"] = true defs["ImGuiTabBar_ImGuiTabBar"][1]["defaults"] = {} defs["ImGuiTabBar_ImGuiTabBar"][1]["funcname"] = "ImGuiTabBar" +<<<<<<< HEAD defs["ImGuiTabBar_ImGuiTabBar"][1]["location"] = "imgui_internal:2703" +======= +defs["ImGuiTabBar_ImGuiTabBar"][1]["location"] = "imgui_internal:2968" +>>>>>>> docking_inter defs["ImGuiTabBar_ImGuiTabBar"][1]["ov_cimguiname"] = "ImGuiTabBar_ImGuiTabBar" defs["ImGuiTabBar_ImGuiTabBar"][1]["signature"] = "()" defs["ImGuiTabBar_ImGuiTabBar"][1]["stname"] = "ImGuiTabBar" @@ -7149,7 +8712,11 @@ defs["ImGuiTabItem_ImGuiTabItem"][1]["cimguiname"] = "ImGuiTabItem_ImGuiTabItem" defs["ImGuiTabItem_ImGuiTabItem"][1]["constructor"] = true defs["ImGuiTabItem_ImGuiTabItem"][1]["defaults"] = {} defs["ImGuiTabItem_ImGuiTabItem"][1]["funcname"] = "ImGuiTabItem" +<<<<<<< HEAD defs["ImGuiTabItem_ImGuiTabItem"][1]["location"] = "imgui_internal:2663" +======= +defs["ImGuiTabItem_ImGuiTabItem"][1]["location"] = "imgui_internal:2928" +>>>>>>> docking_inter defs["ImGuiTabItem_ImGuiTabItem"][1]["ov_cimguiname"] = "ImGuiTabItem_ImGuiTabItem" defs["ImGuiTabItem_ImGuiTabItem"][1]["signature"] = "()" defs["ImGuiTabItem_ImGuiTabItem"][1]["stname"] = "ImGuiTabItem" @@ -7180,7 +8747,11 @@ defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["cimguiname"] = "Im defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["constructor"] = true defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["defaults"] = {} defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["funcname"] = "ImGuiTableColumnSettings" +<<<<<<< HEAD defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["location"] = "imgui_internal:2970" +======= +defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["location"] = "imgui_internal:3235" +>>>>>>> docking_inter defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["ov_cimguiname"] = "ImGuiTableColumnSettings_ImGuiTableColumnSettings" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["signature"] = "()" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["stname"] = "ImGuiTableColumnSettings" @@ -7211,7 +8782,11 @@ defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["cimguiname"] = " defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["constructor"] = true defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["defaults"] = {} defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["funcname"] = "ImGuiTableColumnSortSpecs" +<<<<<<< HEAD defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["location"] = "imgui:1936" +======= +defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["location"] = "imgui:2036" +>>>>>>> docking_inter defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["signature"] = "()" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["stname"] = "ImGuiTableColumnSortSpecs" @@ -7242,7 +8817,11 @@ defs["ImGuiTableColumn_ImGuiTableColumn"][1]["cimguiname"] = "ImGuiTableColumn_I defs["ImGuiTableColumn_ImGuiTableColumn"][1]["constructor"] = true defs["ImGuiTableColumn_ImGuiTableColumn"][1]["defaults"] = {} defs["ImGuiTableColumn_ImGuiTableColumn"][1]["funcname"] = "ImGuiTableColumn" +<<<<<<< HEAD defs["ImGuiTableColumn_ImGuiTableColumn"][1]["location"] = "imgui_internal:2765" +======= +defs["ImGuiTableColumn_ImGuiTableColumn"][1]["location"] = "imgui_internal:3030" +>>>>>>> docking_inter defs["ImGuiTableColumn_ImGuiTableColumn"][1]["ov_cimguiname"] = "ImGuiTableColumn_ImGuiTableColumn" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["signature"] = "()" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["stname"] = "ImGuiTableColumn" @@ -7273,7 +8852,11 @@ defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["cimguiname"] = "ImGuiT defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["constructor"] = true defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["defaults"] = {} defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["funcname"] = "ImGuiTableInstanceData" +<<<<<<< HEAD defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["location"] = "imgui_internal:2808" +======= +defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["location"] = "imgui_internal:3073" +>>>>>>> docking_inter defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["ov_cimguiname"] = "ImGuiTableInstanceData_ImGuiTableInstanceData" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["signature"] = "()" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["stname"] = "ImGuiTableInstanceData" @@ -7306,7 +8889,11 @@ defs["ImGuiTableSettings_GetColumnSettings"][1]["call_args"] = "()" defs["ImGuiTableSettings_GetColumnSettings"][1]["cimguiname"] = "ImGuiTableSettings_GetColumnSettings" defs["ImGuiTableSettings_GetColumnSettings"][1]["defaults"] = {} defs["ImGuiTableSettings_GetColumnSettings"][1]["funcname"] = "GetColumnSettings" +<<<<<<< HEAD defs["ImGuiTableSettings_GetColumnSettings"][1]["location"] = "imgui_internal:2993" +======= +defs["ImGuiTableSettings_GetColumnSettings"][1]["location"] = "imgui_internal:3258" +>>>>>>> docking_inter defs["ImGuiTableSettings_GetColumnSettings"][1]["ov_cimguiname"] = "ImGuiTableSettings_GetColumnSettings" defs["ImGuiTableSettings_GetColumnSettings"][1]["ret"] = "ImGuiTableColumnSettings*" defs["ImGuiTableSettings_GetColumnSettings"][1]["signature"] = "()" @@ -7322,7 +8909,11 @@ defs["ImGuiTableSettings_ImGuiTableSettings"][1]["cimguiname"] = "ImGuiTableSett defs["ImGuiTableSettings_ImGuiTableSettings"][1]["constructor"] = true defs["ImGuiTableSettings_ImGuiTableSettings"][1]["defaults"] = {} defs["ImGuiTableSettings_ImGuiTableSettings"][1]["funcname"] = "ImGuiTableSettings" +<<<<<<< HEAD defs["ImGuiTableSettings_ImGuiTableSettings"][1]["location"] = "imgui_internal:2992" +======= +defs["ImGuiTableSettings_ImGuiTableSettings"][1]["location"] = "imgui_internal:3257" +>>>>>>> docking_inter defs["ImGuiTableSettings_ImGuiTableSettings"][1]["ov_cimguiname"] = "ImGuiTableSettings_ImGuiTableSettings" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["signature"] = "()" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["stname"] = "ImGuiTableSettings" @@ -7353,7 +8944,11 @@ defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["cimguiname"] = "ImGuiTableSo defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["constructor"] = true defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["defaults"] = {} defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["funcname"] = "ImGuiTableSortSpecs" +<<<<<<< HEAD defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["location"] = "imgui:1925" +======= +defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["location"] = "imgui:2025" +>>>>>>> docking_inter defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableSortSpecs_ImGuiTableSortSpecs" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["signature"] = "()" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["stname"] = "ImGuiTableSortSpecs" @@ -7384,7 +8979,11 @@ defs["ImGuiTableTempData_ImGuiTableTempData"][1]["cimguiname"] = "ImGuiTableTemp defs["ImGuiTableTempData_ImGuiTableTempData"][1]["constructor"] = true defs["ImGuiTableTempData_ImGuiTableTempData"][1]["defaults"] = {} defs["ImGuiTableTempData_ImGuiTableTempData"][1]["funcname"] = "ImGuiTableTempData" +<<<<<<< HEAD defs["ImGuiTableTempData_ImGuiTableTempData"][1]["location"] = "imgui_internal:2955" +======= +defs["ImGuiTableTempData_ImGuiTableTempData"][1]["location"] = "imgui_internal:3220" +>>>>>>> docking_inter defs["ImGuiTableTempData_ImGuiTableTempData"][1]["ov_cimguiname"] = "ImGuiTableTempData_ImGuiTableTempData" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["signature"] = "()" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["stname"] = "ImGuiTableTempData" @@ -7415,7 +9014,11 @@ defs["ImGuiTable_ImGuiTable"][1]["cimguiname"] = "ImGuiTable_ImGuiTable" defs["ImGuiTable_ImGuiTable"][1]["constructor"] = true defs["ImGuiTable_ImGuiTable"][1]["defaults"] = {} defs["ImGuiTable_ImGuiTable"][1]["funcname"] = "ImGuiTable" +<<<<<<< HEAD defs["ImGuiTable_ImGuiTable"][1]["location"] = "imgui_internal:2927" +======= +defs["ImGuiTable_ImGuiTable"][1]["location"] = "imgui_internal:3192" +>>>>>>> docking_inter defs["ImGuiTable_ImGuiTable"][1]["ov_cimguiname"] = "ImGuiTable_ImGuiTable" defs["ImGuiTable_ImGuiTable"][1]["signature"] = "()" defs["ImGuiTable_ImGuiTable"][1]["stname"] = "ImGuiTable" @@ -7431,7 +9034,11 @@ defs["ImGuiTable_destroy"][1]["call_args"] = "(self)" defs["ImGuiTable_destroy"][1]["cimguiname"] = "ImGuiTable_destroy" defs["ImGuiTable_destroy"][1]["defaults"] = {} defs["ImGuiTable_destroy"][1]["destructor"] = true +<<<<<<< HEAD defs["ImGuiTable_destroy"][1]["location"] = "imgui_internal:2928" +======= +defs["ImGuiTable_destroy"][1]["location"] = "imgui_internal:3193" +>>>>>>> docking_inter defs["ImGuiTable_destroy"][1]["ov_cimguiname"] = "ImGuiTable_destroy" defs["ImGuiTable_destroy"][1]["realdestructor"] = true defs["ImGuiTable_destroy"][1]["ret"] = "void" @@ -7448,7 +9055,11 @@ defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["cimguiname"] = "ImGuiTextBuffer_ImGu defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["constructor"] = true defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["defaults"] = {} defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["funcname"] = "ImGuiTextBuffer" +<<<<<<< HEAD defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui:2449" +======= +defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui:2588" +>>>>>>> docking_inter defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["ov_cimguiname"] = "ImGuiTextBuffer_ImGuiTextBuffer" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["signature"] = "()" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["stname"] = "ImGuiTextBuffer" @@ -7472,7 +9083,11 @@ defs["ImGuiTextBuffer_append"][1]["cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["defaults"] = {} defs["ImGuiTextBuffer_append"][1]["defaults"]["str_end"] = "NULL" defs["ImGuiTextBuffer_append"][1]["funcname"] = "append" +<<<<<<< HEAD defs["ImGuiTextBuffer_append"][1]["location"] = "imgui:2458" +======= +defs["ImGuiTextBuffer_append"][1]["location"] = "imgui:2597" +>>>>>>> docking_inter defs["ImGuiTextBuffer_append"][1]["ov_cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["ret"] = "void" defs["ImGuiTextBuffer_append"][1]["signature"] = "(const char*,const char*)" @@ -7497,7 +9112,11 @@ defs["ImGuiTextBuffer_appendf"][1]["cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendf"][1]["funcname"] = "appendf" defs["ImGuiTextBuffer_appendf"][1]["isvararg"] = "...)" +<<<<<<< HEAD defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui:2459" +======= +defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui:2598" +>>>>>>> docking_inter defs["ImGuiTextBuffer_appendf"][1]["manual"] = true defs["ImGuiTextBuffer_appendf"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["ret"] = "void" @@ -7522,7 +9141,11 @@ defs["ImGuiTextBuffer_appendfv"][1]["call_args"] = "(fmt,args)" defs["ImGuiTextBuffer_appendfv"][1]["cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendfv"][1]["funcname"] = "appendfv" +<<<<<<< HEAD defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui:2460" +======= +defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui:2599" +>>>>>>> docking_inter defs["ImGuiTextBuffer_appendfv"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["ret"] = "void" defs["ImGuiTextBuffer_appendfv"][1]["signature"] = "(const char*,va_list)" @@ -7540,7 +9163,11 @@ defs["ImGuiTextBuffer_begin"][1]["call_args"] = "()" defs["ImGuiTextBuffer_begin"][1]["cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["defaults"] = {} defs["ImGuiTextBuffer_begin"][1]["funcname"] = "begin" +<<<<<<< HEAD defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui:2451" +======= +defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui:2590" +>>>>>>> docking_inter defs["ImGuiTextBuffer_begin"][1]["ov_cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_begin"][1]["signature"] = "()const" @@ -7558,7 +9185,11 @@ defs["ImGuiTextBuffer_c_str"][1]["call_args"] = "()" defs["ImGuiTextBuffer_c_str"][1]["cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["defaults"] = {} defs["ImGuiTextBuffer_c_str"][1]["funcname"] = "c_str" +<<<<<<< HEAD defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui:2457" +======= +defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui:2596" +>>>>>>> docking_inter defs["ImGuiTextBuffer_c_str"][1]["ov_cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_c_str"][1]["signature"] = "()const" @@ -7576,7 +9207,11 @@ defs["ImGuiTextBuffer_clear"][1]["call_args"] = "()" defs["ImGuiTextBuffer_clear"][1]["cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["defaults"] = {} defs["ImGuiTextBuffer_clear"][1]["funcname"] = "clear" +<<<<<<< HEAD defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui:2455" +======= +defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui:2594" +>>>>>>> docking_inter defs["ImGuiTextBuffer_clear"][1]["ov_cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["ret"] = "void" defs["ImGuiTextBuffer_clear"][1]["signature"] = "()" @@ -7610,7 +9245,11 @@ defs["ImGuiTextBuffer_empty"][1]["call_args"] = "()" defs["ImGuiTextBuffer_empty"][1]["cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["defaults"] = {} defs["ImGuiTextBuffer_empty"][1]["funcname"] = "empty" +<<<<<<< HEAD defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui:2454" +======= +defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui:2593" +>>>>>>> docking_inter defs["ImGuiTextBuffer_empty"][1]["ov_cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["ret"] = "bool" defs["ImGuiTextBuffer_empty"][1]["signature"] = "()const" @@ -7628,7 +9267,11 @@ defs["ImGuiTextBuffer_end"][1]["call_args"] = "()" defs["ImGuiTextBuffer_end"][1]["cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["defaults"] = {} defs["ImGuiTextBuffer_end"][1]["funcname"] = "end" +<<<<<<< HEAD defs["ImGuiTextBuffer_end"][1]["location"] = "imgui:2452" +======= +defs["ImGuiTextBuffer_end"][1]["location"] = "imgui:2591" +>>>>>>> docking_inter defs["ImGuiTextBuffer_end"][1]["ov_cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_end"][1]["signature"] = "()const" @@ -7649,7 +9292,11 @@ defs["ImGuiTextBuffer_reserve"][1]["call_args"] = "(capacity)" defs["ImGuiTextBuffer_reserve"][1]["cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["defaults"] = {} defs["ImGuiTextBuffer_reserve"][1]["funcname"] = "reserve" +<<<<<<< HEAD defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui:2456" +======= +defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui:2595" +>>>>>>> docking_inter defs["ImGuiTextBuffer_reserve"][1]["ov_cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["ret"] = "void" defs["ImGuiTextBuffer_reserve"][1]["signature"] = "(int)" @@ -7667,7 +9314,11 @@ defs["ImGuiTextBuffer_size"][1]["call_args"] = "()" defs["ImGuiTextBuffer_size"][1]["cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["defaults"] = {} defs["ImGuiTextBuffer_size"][1]["funcname"] = "size" +<<<<<<< HEAD defs["ImGuiTextBuffer_size"][1]["location"] = "imgui:2453" +======= +defs["ImGuiTextBuffer_size"][1]["location"] = "imgui:2592" +>>>>>>> docking_inter defs["ImGuiTextBuffer_size"][1]["ov_cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["ret"] = "int" defs["ImGuiTextBuffer_size"][1]["signature"] = "()const" @@ -7685,7 +9336,11 @@ defs["ImGuiTextFilter_Build"][1]["call_args"] = "()" defs["ImGuiTextFilter_Build"][1]["cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["defaults"] = {} defs["ImGuiTextFilter_Build"][1]["funcname"] = "Build" +<<<<<<< HEAD defs["ImGuiTextFilter_Build"][1]["location"] = "imgui:2422" +======= +defs["ImGuiTextFilter_Build"][1]["location"] = "imgui:2561" +>>>>>>> docking_inter defs["ImGuiTextFilter_Build"][1]["ov_cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["ret"] = "void" defs["ImGuiTextFilter_Build"][1]["signature"] = "()" @@ -7703,7 +9358,11 @@ defs["ImGuiTextFilter_Clear"][1]["call_args"] = "()" defs["ImGuiTextFilter_Clear"][1]["cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["defaults"] = {} defs["ImGuiTextFilter_Clear"][1]["funcname"] = "Clear" +<<<<<<< HEAD defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui:2423" +======= +defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui:2562" +>>>>>>> docking_inter defs["ImGuiTextFilter_Clear"][1]["ov_cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["ret"] = "void" defs["ImGuiTextFilter_Clear"][1]["signature"] = "()" @@ -7729,7 +9388,11 @@ defs["ImGuiTextFilter_Draw"][1]["defaults"] = {} defs["ImGuiTextFilter_Draw"][1]["defaults"]["label"] = "\"Filter(inc,-exc)\"" defs["ImGuiTextFilter_Draw"][1]["defaults"]["width"] = "0.0f" defs["ImGuiTextFilter_Draw"][1]["funcname"] = "Draw" +<<<<<<< HEAD defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui:2420" +======= +defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui:2559" +>>>>>>> docking_inter defs["ImGuiTextFilter_Draw"][1]["ov_cimguiname"] = "ImGuiTextFilter_Draw" defs["ImGuiTextFilter_Draw"][1]["ret"] = "bool" defs["ImGuiTextFilter_Draw"][1]["signature"] = "(const char*,float)" @@ -7749,7 +9412,11 @@ defs["ImGuiTextFilter_ImGuiTextFilter"][1]["constructor"] = true defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"]["default_filter"] = "\"\"" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["funcname"] = "ImGuiTextFilter" +<<<<<<< HEAD defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui:2419" +======= +defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui:2558" +>>>>>>> docking_inter defs["ImGuiTextFilter_ImGuiTextFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_ImGuiTextFilter" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["signature"] = "(const char*)" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["stname"] = "ImGuiTextFilter" @@ -7766,7 +9433,11 @@ defs["ImGuiTextFilter_IsActive"][1]["call_args"] = "()" defs["ImGuiTextFilter_IsActive"][1]["cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["defaults"] = {} defs["ImGuiTextFilter_IsActive"][1]["funcname"] = "IsActive" +<<<<<<< HEAD defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui:2424" +======= +defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui:2563" +>>>>>>> docking_inter defs["ImGuiTextFilter_IsActive"][1]["ov_cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["ret"] = "bool" defs["ImGuiTextFilter_IsActive"][1]["signature"] = "()const" @@ -7791,7 +9462,11 @@ defs["ImGuiTextFilter_PassFilter"][1]["cimguiname"] = "ImGuiTextFilter_PassFilte defs["ImGuiTextFilter_PassFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_PassFilter"][1]["defaults"]["text_end"] = "NULL" defs["ImGuiTextFilter_PassFilter"][1]["funcname"] = "PassFilter" +<<<<<<< HEAD defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui:2421" +======= +defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui:2560" +>>>>>>> docking_inter defs["ImGuiTextFilter_PassFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["ret"] = "bool" defs["ImGuiTextFilter_PassFilter"][1]["signature"] = "(const char*,const char*)const" @@ -7834,7 +9509,11 @@ defs["ImGuiTextIndex_append"][1]["call_args"] = "(base,old_size,new_size)" defs["ImGuiTextIndex_append"][1]["cimguiname"] = "ImGuiTextIndex_append" defs["ImGuiTextIndex_append"][1]["defaults"] = {} defs["ImGuiTextIndex_append"][1]["funcname"] = "append" +<<<<<<< HEAD defs["ImGuiTextIndex_append"][1]["location"] = "imgui_internal:736" +======= +defs["ImGuiTextIndex_append"][1]["location"] = "imgui_internal:749" +>>>>>>> docking_inter defs["ImGuiTextIndex_append"][1]["ov_cimguiname"] = "ImGuiTextIndex_append" defs["ImGuiTextIndex_append"][1]["ret"] = "void" defs["ImGuiTextIndex_append"][1]["signature"] = "(const char*,int,int)" @@ -7852,7 +9531,11 @@ defs["ImGuiTextIndex_clear"][1]["call_args"] = "()" defs["ImGuiTextIndex_clear"][1]["cimguiname"] = "ImGuiTextIndex_clear" defs["ImGuiTextIndex_clear"][1]["defaults"] = {} defs["ImGuiTextIndex_clear"][1]["funcname"] = "clear" +<<<<<<< HEAD defs["ImGuiTextIndex_clear"][1]["location"] = "imgui_internal:732" +======= +defs["ImGuiTextIndex_clear"][1]["location"] = "imgui_internal:745" +>>>>>>> docking_inter defs["ImGuiTextIndex_clear"][1]["ov_cimguiname"] = "ImGuiTextIndex_clear" defs["ImGuiTextIndex_clear"][1]["ret"] = "void" defs["ImGuiTextIndex_clear"][1]["signature"] = "()" @@ -7876,7 +9559,11 @@ defs["ImGuiTextIndex_get_line_begin"][1]["call_args"] = "(base,n)" defs["ImGuiTextIndex_get_line_begin"][1]["cimguiname"] = "ImGuiTextIndex_get_line_begin" defs["ImGuiTextIndex_get_line_begin"][1]["defaults"] = {} defs["ImGuiTextIndex_get_line_begin"][1]["funcname"] = "get_line_begin" +<<<<<<< HEAD defs["ImGuiTextIndex_get_line_begin"][1]["location"] = "imgui_internal:734" +======= +defs["ImGuiTextIndex_get_line_begin"][1]["location"] = "imgui_internal:747" +>>>>>>> docking_inter defs["ImGuiTextIndex_get_line_begin"][1]["ov_cimguiname"] = "ImGuiTextIndex_get_line_begin" defs["ImGuiTextIndex_get_line_begin"][1]["ret"] = "const char*" defs["ImGuiTextIndex_get_line_begin"][1]["signature"] = "(const char*,int)" @@ -7900,7 +9587,11 @@ defs["ImGuiTextIndex_get_line_end"][1]["call_args"] = "(base,n)" defs["ImGuiTextIndex_get_line_end"][1]["cimguiname"] = "ImGuiTextIndex_get_line_end" defs["ImGuiTextIndex_get_line_end"][1]["defaults"] = {} defs["ImGuiTextIndex_get_line_end"][1]["funcname"] = "get_line_end" +<<<<<<< HEAD defs["ImGuiTextIndex_get_line_end"][1]["location"] = "imgui_internal:735" +======= +defs["ImGuiTextIndex_get_line_end"][1]["location"] = "imgui_internal:748" +>>>>>>> docking_inter defs["ImGuiTextIndex_get_line_end"][1]["ov_cimguiname"] = "ImGuiTextIndex_get_line_end" defs["ImGuiTextIndex_get_line_end"][1]["ret"] = "const char*" defs["ImGuiTextIndex_get_line_end"][1]["signature"] = "(const char*,int)" @@ -7918,7 +9609,11 @@ defs["ImGuiTextIndex_size"][1]["call_args"] = "()" defs["ImGuiTextIndex_size"][1]["cimguiname"] = "ImGuiTextIndex_size" defs["ImGuiTextIndex_size"][1]["defaults"] = {} defs["ImGuiTextIndex_size"][1]["funcname"] = "size" +<<<<<<< HEAD defs["ImGuiTextIndex_size"][1]["location"] = "imgui_internal:733" +======= +defs["ImGuiTextIndex_size"][1]["location"] = "imgui_internal:746" +>>>>>>> docking_inter defs["ImGuiTextIndex_size"][1]["ov_cimguiname"] = "ImGuiTextIndex_size" defs["ImGuiTextIndex_size"][1]["ret"] = "int" defs["ImGuiTextIndex_size"][1]["signature"] = "()" @@ -7934,7 +9629,11 @@ defs["ImGuiTextRange_ImGuiTextRange"][1]["cimguiname"] = "ImGuiTextRange_ImGuiTe defs["ImGuiTextRange_ImGuiTextRange"][1]["constructor"] = true defs["ImGuiTextRange_ImGuiTextRange"][1]["defaults"] = {} defs["ImGuiTextRange_ImGuiTextRange"][1]["funcname"] = "ImGuiTextRange" +<<<<<<< HEAD defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui:2432" +======= +defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui:2571" +>>>>>>> docking_inter defs["ImGuiTextRange_ImGuiTextRange"][1]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRange_Nil" defs["ImGuiTextRange_ImGuiTextRange"][1]["signature"] = "()" defs["ImGuiTextRange_ImGuiTextRange"][1]["stname"] = "ImGuiTextRange" @@ -7953,7 +9652,11 @@ defs["ImGuiTextRange_ImGuiTextRange"][2]["cimguiname"] = "ImGuiTextRange_ImGuiTe defs["ImGuiTextRange_ImGuiTextRange"][2]["constructor"] = true defs["ImGuiTextRange_ImGuiTextRange"][2]["defaults"] = {} defs["ImGuiTextRange_ImGuiTextRange"][2]["funcname"] = "ImGuiTextRange" +<<<<<<< HEAD defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui:2433" +======= +defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui:2572" +>>>>>>> docking_inter defs["ImGuiTextRange_ImGuiTextRange"][2]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRange_Str" defs["ImGuiTextRange_ImGuiTextRange"][2]["signature"] = "(const char*,const char*)" defs["ImGuiTextRange_ImGuiTextRange"][2]["stname"] = "ImGuiTextRange" @@ -7987,7 +9690,11 @@ defs["ImGuiTextRange_empty"][1]["call_args"] = "()" defs["ImGuiTextRange_empty"][1]["cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["defaults"] = {} defs["ImGuiTextRange_empty"][1]["funcname"] = "empty" +<<<<<<< HEAD defs["ImGuiTextRange_empty"][1]["location"] = "imgui:2434" +======= +defs["ImGuiTextRange_empty"][1]["location"] = "imgui:2573" +>>>>>>> docking_inter defs["ImGuiTextRange_empty"][1]["ov_cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["ret"] = "bool" defs["ImGuiTextRange_empty"][1]["signature"] = "()const" @@ -8011,7 +9718,11 @@ defs["ImGuiTextRange_split"][1]["call_args"] = "(separator,out)" defs["ImGuiTextRange_split"][1]["cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["defaults"] = {} defs["ImGuiTextRange_split"][1]["funcname"] = "split" +<<<<<<< HEAD defs["ImGuiTextRange_split"][1]["location"] = "imgui:2435" +======= +defs["ImGuiTextRange_split"][1]["location"] = "imgui:2574" +>>>>>>> docking_inter defs["ImGuiTextRange_split"][1]["ov_cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["ret"] = "void" defs["ImGuiTextRange_split"][1]["signature"] = "(char,ImVector_ImGuiTextRange*)const" @@ -8029,7 +9740,11 @@ defs["ImGuiTypingSelectState_Clear"][1]["call_args"] = "()" defs["ImGuiTypingSelectState_Clear"][1]["cimguiname"] = "ImGuiTypingSelectState_Clear" defs["ImGuiTypingSelectState_Clear"][1]["defaults"] = {} defs["ImGuiTypingSelectState_Clear"][1]["funcname"] = "Clear" +<<<<<<< HEAD defs["ImGuiTypingSelectState_Clear"][1]["location"] = "imgui_internal:1646" +======= +defs["ImGuiTypingSelectState_Clear"][1]["location"] = "imgui_internal:1672" +>>>>>>> docking_inter defs["ImGuiTypingSelectState_Clear"][1]["ov_cimguiname"] = "ImGuiTypingSelectState_Clear" defs["ImGuiTypingSelectState_Clear"][1]["ret"] = "void" defs["ImGuiTypingSelectState_Clear"][1]["signature"] = "()" @@ -8045,7 +9760,11 @@ defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["cimguiname"] = "ImGuiT defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["constructor"] = true defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["defaults"] = {} defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["funcname"] = "ImGuiTypingSelectState" +<<<<<<< HEAD defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["location"] = "imgui_internal:1645" +======= +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["location"] = "imgui_internal:1671" +>>>>>>> docking_inter defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["ov_cimguiname"] = "ImGuiTypingSelectState_ImGuiTypingSelectState" defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["signature"] = "()" defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["stname"] = "ImGuiTypingSelectState" @@ -8084,7 +9803,11 @@ defs["ImGuiViewportP_CalcWorkRectPos"][1]["call_args"] = "(off_min)" defs["ImGuiViewportP_CalcWorkRectPos"][1]["cimguiname"] = "ImGuiViewportP_CalcWorkRectPos" defs["ImGuiViewportP_CalcWorkRectPos"][1]["defaults"] = {} defs["ImGuiViewportP_CalcWorkRectPos"][1]["funcname"] = "CalcWorkRectPos" +<<<<<<< HEAD defs["ImGuiViewportP_CalcWorkRectPos"][1]["location"] = "imgui_internal:1745" +======= +defs["ImGuiViewportP_CalcWorkRectPos"][1]["location"] = "imgui_internal:1929" +>>>>>>> docking_inter defs["ImGuiViewportP_CalcWorkRectPos"][1]["nonUDT"] = 1 defs["ImGuiViewportP_CalcWorkRectPos"][1]["ov_cimguiname"] = "ImGuiViewportP_CalcWorkRectPos" defs["ImGuiViewportP_CalcWorkRectPos"][1]["ret"] = "void" @@ -8112,13 +9835,38 @@ defs["ImGuiViewportP_CalcWorkRectSize"][1]["call_args"] = "(off_min,off_max)" defs["ImGuiViewportP_CalcWorkRectSize"][1]["cimguiname"] = "ImGuiViewportP_CalcWorkRectSize" defs["ImGuiViewportP_CalcWorkRectSize"][1]["defaults"] = {} defs["ImGuiViewportP_CalcWorkRectSize"][1]["funcname"] = "CalcWorkRectSize" +<<<<<<< HEAD defs["ImGuiViewportP_CalcWorkRectSize"][1]["location"] = "imgui_internal:1746" +======= +defs["ImGuiViewportP_CalcWorkRectSize"][1]["location"] = "imgui_internal:1930" +>>>>>>> docking_inter defs["ImGuiViewportP_CalcWorkRectSize"][1]["nonUDT"] = 1 defs["ImGuiViewportP_CalcWorkRectSize"][1]["ov_cimguiname"] = "ImGuiViewportP_CalcWorkRectSize" defs["ImGuiViewportP_CalcWorkRectSize"][1]["ret"] = "void" defs["ImGuiViewportP_CalcWorkRectSize"][1]["signature"] = "(const ImVec2,const ImVec2)const" defs["ImGuiViewportP_CalcWorkRectSize"][1]["stname"] = "ImGuiViewportP" defs["ImGuiViewportP_CalcWorkRectSize"]["(const ImVec2,const ImVec2)const"] = defs["ImGuiViewportP_CalcWorkRectSize"][1] +<<<<<<< HEAD +======= +defs["ImGuiViewportP_ClearRequestFlags"] = {} +defs["ImGuiViewportP_ClearRequestFlags"][1] = {} +defs["ImGuiViewportP_ClearRequestFlags"][1]["args"] = "(ImGuiViewportP* self)" +defs["ImGuiViewportP_ClearRequestFlags"][1]["argsT"] = {} +defs["ImGuiViewportP_ClearRequestFlags"][1]["argsT"][1] = {} +defs["ImGuiViewportP_ClearRequestFlags"][1]["argsT"][1]["name"] = "self" +defs["ImGuiViewportP_ClearRequestFlags"][1]["argsT"][1]["type"] = "ImGuiViewportP*" +defs["ImGuiViewportP_ClearRequestFlags"][1]["argsoriginal"] = "()" +defs["ImGuiViewportP_ClearRequestFlags"][1]["call_args"] = "()" +defs["ImGuiViewportP_ClearRequestFlags"][1]["cimguiname"] = "ImGuiViewportP_ClearRequestFlags" +defs["ImGuiViewportP_ClearRequestFlags"][1]["defaults"] = {} +defs["ImGuiViewportP_ClearRequestFlags"][1]["funcname"] = "ClearRequestFlags" +defs["ImGuiViewportP_ClearRequestFlags"][1]["location"] = "imgui_internal:1926" +defs["ImGuiViewportP_ClearRequestFlags"][1]["ov_cimguiname"] = "ImGuiViewportP_ClearRequestFlags" +defs["ImGuiViewportP_ClearRequestFlags"][1]["ret"] = "void" +defs["ImGuiViewportP_ClearRequestFlags"][1]["signature"] = "()" +defs["ImGuiViewportP_ClearRequestFlags"][1]["stname"] = "ImGuiViewportP" +defs["ImGuiViewportP_ClearRequestFlags"]["()"] = defs["ImGuiViewportP_ClearRequestFlags"][1] +>>>>>>> docking_inter defs["ImGuiViewportP_GetBuildWorkRect"] = {} defs["ImGuiViewportP_GetBuildWorkRect"][1] = {} defs["ImGuiViewportP_GetBuildWorkRect"][1]["args"] = "(ImRect *pOut,ImGuiViewportP* self)" @@ -8134,7 +9882,11 @@ defs["ImGuiViewportP_GetBuildWorkRect"][1]["call_args"] = "()" defs["ImGuiViewportP_GetBuildWorkRect"][1]["cimguiname"] = "ImGuiViewportP_GetBuildWorkRect" defs["ImGuiViewportP_GetBuildWorkRect"][1]["defaults"] = {} defs["ImGuiViewportP_GetBuildWorkRect"][1]["funcname"] = "GetBuildWorkRect" +<<<<<<< HEAD defs["ImGuiViewportP_GetBuildWorkRect"][1]["location"] = "imgui_internal:1752" +======= +defs["ImGuiViewportP_GetBuildWorkRect"][1]["location"] = "imgui_internal:1936" +>>>>>>> docking_inter defs["ImGuiViewportP_GetBuildWorkRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetBuildWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetBuildWorkRect" defs["ImGuiViewportP_GetBuildWorkRect"][1]["ret"] = "void" @@ -8156,7 +9908,11 @@ defs["ImGuiViewportP_GetMainRect"][1]["call_args"] = "()" defs["ImGuiViewportP_GetMainRect"][1]["cimguiname"] = "ImGuiViewportP_GetMainRect" defs["ImGuiViewportP_GetMainRect"][1]["defaults"] = {} defs["ImGuiViewportP_GetMainRect"][1]["funcname"] = "GetMainRect" +<<<<<<< HEAD defs["ImGuiViewportP_GetMainRect"][1]["location"] = "imgui_internal:1750" +======= +defs["ImGuiViewportP_GetMainRect"][1]["location"] = "imgui_internal:1934" +>>>>>>> docking_inter defs["ImGuiViewportP_GetMainRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetMainRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetMainRect" defs["ImGuiViewportP_GetMainRect"][1]["ret"] = "void" @@ -8178,7 +9934,11 @@ defs["ImGuiViewportP_GetWorkRect"][1]["call_args"] = "()" defs["ImGuiViewportP_GetWorkRect"][1]["cimguiname"] = "ImGuiViewportP_GetWorkRect" defs["ImGuiViewportP_GetWorkRect"][1]["defaults"] = {} defs["ImGuiViewportP_GetWorkRect"][1]["funcname"] = "GetWorkRect" +<<<<<<< HEAD defs["ImGuiViewportP_GetWorkRect"][1]["location"] = "imgui_internal:1751" +======= +defs["ImGuiViewportP_GetWorkRect"][1]["location"] = "imgui_internal:1935" +>>>>>>> docking_inter defs["ImGuiViewportP_GetWorkRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetWorkRect" defs["ImGuiViewportP_GetWorkRect"][1]["ret"] = "void" @@ -8195,7 +9955,11 @@ defs["ImGuiViewportP_ImGuiViewportP"][1]["cimguiname"] = "ImGuiViewportP_ImGuiVi defs["ImGuiViewportP_ImGuiViewportP"][1]["constructor"] = true defs["ImGuiViewportP_ImGuiViewportP"][1]["defaults"] = {} defs["ImGuiViewportP_ImGuiViewportP"][1]["funcname"] = "ImGuiViewportP" +<<<<<<< HEAD defs["ImGuiViewportP_ImGuiViewportP"][1]["location"] = "imgui_internal:1741" +======= +defs["ImGuiViewportP_ImGuiViewportP"][1]["location"] = "imgui_internal:1924" +>>>>>>> docking_inter defs["ImGuiViewportP_ImGuiViewportP"][1]["ov_cimguiname"] = "ImGuiViewportP_ImGuiViewportP" defs["ImGuiViewportP_ImGuiViewportP"][1]["signature"] = "()" defs["ImGuiViewportP_ImGuiViewportP"][1]["stname"] = "ImGuiViewportP" @@ -8212,7 +9976,11 @@ defs["ImGuiViewportP_UpdateWorkRect"][1]["call_args"] = "()" defs["ImGuiViewportP_UpdateWorkRect"][1]["cimguiname"] = "ImGuiViewportP_UpdateWorkRect" defs["ImGuiViewportP_UpdateWorkRect"][1]["defaults"] = {} defs["ImGuiViewportP_UpdateWorkRect"][1]["funcname"] = "UpdateWorkRect" +<<<<<<< HEAD defs["ImGuiViewportP_UpdateWorkRect"][1]["location"] = "imgui_internal:1747" +======= +defs["ImGuiViewportP_UpdateWorkRect"][1]["location"] = "imgui_internal:1931" +>>>>>>> docking_inter defs["ImGuiViewportP_UpdateWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_UpdateWorkRect" defs["ImGuiViewportP_UpdateWorkRect"][1]["ret"] = "void" defs["ImGuiViewportP_UpdateWorkRect"][1]["signature"] = "()" @@ -8229,7 +9997,11 @@ defs["ImGuiViewportP_destroy"][1]["call_args"] = "(self)" defs["ImGuiViewportP_destroy"][1]["cimguiname"] = "ImGuiViewportP_destroy" defs["ImGuiViewportP_destroy"][1]["defaults"] = {} defs["ImGuiViewportP_destroy"][1]["destructor"] = true +<<<<<<< HEAD defs["ImGuiViewportP_destroy"][1]["location"] = "imgui_internal:1742" +======= +defs["ImGuiViewportP_destroy"][1]["location"] = "imgui_internal:1925" +>>>>>>> docking_inter defs["ImGuiViewportP_destroy"][1]["ov_cimguiname"] = "ImGuiViewportP_destroy" defs["ImGuiViewportP_destroy"][1]["realdestructor"] = true defs["ImGuiViewportP_destroy"][1]["ret"] = "void" @@ -8251,7 +10023,11 @@ defs["ImGuiViewport_GetCenter"][1]["call_args"] = "()" defs["ImGuiViewport_GetCenter"][1]["cimguiname"] = "ImGuiViewport_GetCenter" defs["ImGuiViewport_GetCenter"][1]["defaults"] = {} defs["ImGuiViewport_GetCenter"][1]["funcname"] = "GetCenter" +<<<<<<< HEAD defs["ImGuiViewport_GetCenter"][1]["location"] = "imgui:3224" +======= +defs["ImGuiViewport_GetCenter"][1]["location"] = "imgui:3396" +>>>>>>> docking_inter defs["ImGuiViewport_GetCenter"][1]["nonUDT"] = 1 defs["ImGuiViewport_GetCenter"][1]["ov_cimguiname"] = "ImGuiViewport_GetCenter" defs["ImGuiViewport_GetCenter"][1]["ret"] = "void" @@ -8273,7 +10049,11 @@ defs["ImGuiViewport_GetWorkCenter"][1]["call_args"] = "()" defs["ImGuiViewport_GetWorkCenter"][1]["cimguiname"] = "ImGuiViewport_GetWorkCenter" defs["ImGuiViewport_GetWorkCenter"][1]["defaults"] = {} defs["ImGuiViewport_GetWorkCenter"][1]["funcname"] = "GetWorkCenter" +<<<<<<< HEAD defs["ImGuiViewport_GetWorkCenter"][1]["location"] = "imgui:3225" +======= +defs["ImGuiViewport_GetWorkCenter"][1]["location"] = "imgui:3397" +>>>>>>> docking_inter defs["ImGuiViewport_GetWorkCenter"][1]["nonUDT"] = 1 defs["ImGuiViewport_GetWorkCenter"][1]["ov_cimguiname"] = "ImGuiViewport_GetWorkCenter" defs["ImGuiViewport_GetWorkCenter"][1]["ret"] = "void" @@ -8290,7 +10070,11 @@ defs["ImGuiViewport_ImGuiViewport"][1]["cimguiname"] = "ImGuiViewport_ImGuiViewp defs["ImGuiViewport_ImGuiViewport"][1]["constructor"] = true defs["ImGuiViewport_ImGuiViewport"][1]["defaults"] = {} defs["ImGuiViewport_ImGuiViewport"][1]["funcname"] = "ImGuiViewport" +<<<<<<< HEAD defs["ImGuiViewport_ImGuiViewport"][1]["location"] = "imgui:3221" +======= +defs["ImGuiViewport_ImGuiViewport"][1]["location"] = "imgui:3392" +>>>>>>> docking_inter defs["ImGuiViewport_ImGuiViewport"][1]["ov_cimguiname"] = "ImGuiViewport_ImGuiViewport" defs["ImGuiViewport_ImGuiViewport"][1]["signature"] = "()" defs["ImGuiViewport_ImGuiViewport"][1]["stname"] = "ImGuiViewport" @@ -8306,11 +10090,49 @@ defs["ImGuiViewport_destroy"][1]["call_args"] = "(self)" defs["ImGuiViewport_destroy"][1]["cimguiname"] = "ImGuiViewport_destroy" defs["ImGuiViewport_destroy"][1]["defaults"] = {} defs["ImGuiViewport_destroy"][1]["destructor"] = true +<<<<<<< HEAD +======= +defs["ImGuiViewport_destroy"][1]["location"] = "imgui:3393" +>>>>>>> docking_inter defs["ImGuiViewport_destroy"][1]["ov_cimguiname"] = "ImGuiViewport_destroy" defs["ImGuiViewport_destroy"][1]["ret"] = "void" defs["ImGuiViewport_destroy"][1]["signature"] = "(ImGuiViewport*)" defs["ImGuiViewport_destroy"][1]["stname"] = "ImGuiViewport" defs["ImGuiViewport_destroy"]["(ImGuiViewport*)"] = defs["ImGuiViewport_destroy"][1] +<<<<<<< HEAD +======= +defs["ImGuiWindowClass_ImGuiWindowClass"] = {} +defs["ImGuiWindowClass_ImGuiWindowClass"][1] = {} +defs["ImGuiWindowClass_ImGuiWindowClass"][1]["args"] = "()" +defs["ImGuiWindowClass_ImGuiWindowClass"][1]["argsT"] = {} +defs["ImGuiWindowClass_ImGuiWindowClass"][1]["argsoriginal"] = "()" +defs["ImGuiWindowClass_ImGuiWindowClass"][1]["call_args"] = "()" +defs["ImGuiWindowClass_ImGuiWindowClass"][1]["cimguiname"] = "ImGuiWindowClass_ImGuiWindowClass" +defs["ImGuiWindowClass_ImGuiWindowClass"][1]["constructor"] = true +defs["ImGuiWindowClass_ImGuiWindowClass"][1]["defaults"] = {} +defs["ImGuiWindowClass_ImGuiWindowClass"][1]["funcname"] = "ImGuiWindowClass" +defs["ImGuiWindowClass_ImGuiWindowClass"][1]["location"] = "imgui:2509" +defs["ImGuiWindowClass_ImGuiWindowClass"][1]["ov_cimguiname"] = "ImGuiWindowClass_ImGuiWindowClass" +defs["ImGuiWindowClass_ImGuiWindowClass"][1]["signature"] = "()" +defs["ImGuiWindowClass_ImGuiWindowClass"][1]["stname"] = "ImGuiWindowClass" +defs["ImGuiWindowClass_ImGuiWindowClass"]["()"] = defs["ImGuiWindowClass_ImGuiWindowClass"][1] +defs["ImGuiWindowClass_destroy"] = {} +defs["ImGuiWindowClass_destroy"][1] = {} +defs["ImGuiWindowClass_destroy"][1]["args"] = "(ImGuiWindowClass* self)" +defs["ImGuiWindowClass_destroy"][1]["argsT"] = {} +defs["ImGuiWindowClass_destroy"][1]["argsT"][1] = {} +defs["ImGuiWindowClass_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiWindowClass_destroy"][1]["argsT"][1]["type"] = "ImGuiWindowClass*" +defs["ImGuiWindowClass_destroy"][1]["call_args"] = "(self)" +defs["ImGuiWindowClass_destroy"][1]["cimguiname"] = "ImGuiWindowClass_destroy" +defs["ImGuiWindowClass_destroy"][1]["defaults"] = {} +defs["ImGuiWindowClass_destroy"][1]["destructor"] = true +defs["ImGuiWindowClass_destroy"][1]["ov_cimguiname"] = "ImGuiWindowClass_destroy" +defs["ImGuiWindowClass_destroy"][1]["ret"] = "void" +defs["ImGuiWindowClass_destroy"][1]["signature"] = "(ImGuiWindowClass*)" +defs["ImGuiWindowClass_destroy"][1]["stname"] = "ImGuiWindowClass" +defs["ImGuiWindowClass_destroy"]["(ImGuiWindowClass*)"] = defs["ImGuiWindowClass_destroy"][1] +>>>>>>> docking_inter defs["ImGuiWindowSettings_GetName"] = {} defs["ImGuiWindowSettings_GetName"][1] = {} defs["ImGuiWindowSettings_GetName"][1]["args"] = "(ImGuiWindowSettings* self)" @@ -8323,7 +10145,11 @@ defs["ImGuiWindowSettings_GetName"][1]["call_args"] = "()" defs["ImGuiWindowSettings_GetName"][1]["cimguiname"] = "ImGuiWindowSettings_GetName" defs["ImGuiWindowSettings_GetName"][1]["defaults"] = {} defs["ImGuiWindowSettings_GetName"][1]["funcname"] = "GetName" +<<<<<<< HEAD defs["ImGuiWindowSettings_GetName"][1]["location"] = "imgui_internal:1773" +======= +defs["ImGuiWindowSettings_GetName"][1]["location"] = "imgui_internal:1962" +>>>>>>> docking_inter defs["ImGuiWindowSettings_GetName"][1]["ov_cimguiname"] = "ImGuiWindowSettings_GetName" defs["ImGuiWindowSettings_GetName"][1]["ret"] = "char*" defs["ImGuiWindowSettings_GetName"][1]["signature"] = "()" @@ -8339,7 +10165,11 @@ defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["cimguiname"] = "ImGuiWindowS defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["constructor"] = true defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["defaults"] = {} defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["funcname"] = "ImGuiWindowSettings" +<<<<<<< HEAD defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["location"] = "imgui_internal:1772" +======= +defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["location"] = "imgui_internal:1961" +>>>>>>> docking_inter defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["ov_cimguiname"] = "ImGuiWindowSettings_ImGuiWindowSettings" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["signature"] = "()" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["stname"] = "ImGuiWindowSettings" @@ -8372,7 +10202,11 @@ defs["ImGuiWindow_CalcFontSize"][1]["call_args"] = "()" defs["ImGuiWindow_CalcFontSize"][1]["cimguiname"] = "ImGuiWindow_CalcFontSize" defs["ImGuiWindow_CalcFontSize"][1]["defaults"] = {} defs["ImGuiWindow_CalcFontSize"][1]["funcname"] = "CalcFontSize" +<<<<<<< HEAD defs["ImGuiWindow_CalcFontSize"][1]["location"] = "imgui_internal:2622" +======= +defs["ImGuiWindow_CalcFontSize"][1]["location"] = "imgui_internal:2885" +>>>>>>> docking_inter defs["ImGuiWindow_CalcFontSize"][1]["ov_cimguiname"] = "ImGuiWindow_CalcFontSize" defs["ImGuiWindow_CalcFontSize"][1]["ret"] = "float" defs["ImGuiWindow_CalcFontSize"][1]["signature"] = "()const" @@ -8397,7 +10231,11 @@ defs["ImGuiWindow_GetID"][1]["cimguiname"] = "ImGuiWindow_GetID" defs["ImGuiWindow_GetID"][1]["defaults"] = {} defs["ImGuiWindow_GetID"][1]["defaults"]["str_end"] = "NULL" defs["ImGuiWindow_GetID"][1]["funcname"] = "GetID" +<<<<<<< HEAD defs["ImGuiWindow_GetID"][1]["location"] = "imgui_internal:2615" +======= +defs["ImGuiWindow_GetID"][1]["location"] = "imgui_internal:2878" +>>>>>>> docking_inter defs["ImGuiWindow_GetID"][1]["ov_cimguiname"] = "ImGuiWindow_GetID_Str" defs["ImGuiWindow_GetID"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][1]["signature"] = "(const char*,const char*)" @@ -8416,7 +10254,11 @@ defs["ImGuiWindow_GetID"][2]["call_args"] = "(ptr)" defs["ImGuiWindow_GetID"][2]["cimguiname"] = "ImGuiWindow_GetID" defs["ImGuiWindow_GetID"][2]["defaults"] = {} defs["ImGuiWindow_GetID"][2]["funcname"] = "GetID" +<<<<<<< HEAD defs["ImGuiWindow_GetID"][2]["location"] = "imgui_internal:2616" +======= +defs["ImGuiWindow_GetID"][2]["location"] = "imgui_internal:2879" +>>>>>>> docking_inter defs["ImGuiWindow_GetID"][2]["ov_cimguiname"] = "ImGuiWindow_GetID_Ptr" defs["ImGuiWindow_GetID"][2]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][2]["signature"] = "(const void*)" @@ -8435,7 +10277,11 @@ defs["ImGuiWindow_GetID"][3]["call_args"] = "(n)" defs["ImGuiWindow_GetID"][3]["cimguiname"] = "ImGuiWindow_GetID" defs["ImGuiWindow_GetID"][3]["defaults"] = {} defs["ImGuiWindow_GetID"][3]["funcname"] = "GetID" +<<<<<<< HEAD defs["ImGuiWindow_GetID"][3]["location"] = "imgui_internal:2617" +======= +defs["ImGuiWindow_GetID"][3]["location"] = "imgui_internal:2880" +>>>>>>> docking_inter defs["ImGuiWindow_GetID"][3]["ov_cimguiname"] = "ImGuiWindow_GetID_Int" defs["ImGuiWindow_GetID"][3]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][3]["signature"] = "(int)" @@ -8458,7 +10304,11 @@ defs["ImGuiWindow_GetIDFromRectangle"][1]["call_args"] = "(r_abs)" defs["ImGuiWindow_GetIDFromRectangle"][1]["cimguiname"] = "ImGuiWindow_GetIDFromRectangle" defs["ImGuiWindow_GetIDFromRectangle"][1]["defaults"] = {} defs["ImGuiWindow_GetIDFromRectangle"][1]["funcname"] = "GetIDFromRectangle" +<<<<<<< HEAD defs["ImGuiWindow_GetIDFromRectangle"][1]["location"] = "imgui_internal:2618" +======= +defs["ImGuiWindow_GetIDFromRectangle"][1]["location"] = "imgui_internal:2881" +>>>>>>> docking_inter defs["ImGuiWindow_GetIDFromRectangle"][1]["ov_cimguiname"] = "ImGuiWindow_GetIDFromRectangle" defs["ImGuiWindow_GetIDFromRectangle"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDFromRectangle"][1]["signature"] = "(const ImRect)" @@ -8480,7 +10330,11 @@ defs["ImGuiWindow_ImGuiWindow"][1]["cimguiname"] = "ImGuiWindow_ImGuiWindow" defs["ImGuiWindow_ImGuiWindow"][1]["constructor"] = true defs["ImGuiWindow_ImGuiWindow"][1]["defaults"] = {} defs["ImGuiWindow_ImGuiWindow"][1]["funcname"] = "ImGuiWindow" +<<<<<<< HEAD defs["ImGuiWindow_ImGuiWindow"][1]["location"] = "imgui_internal:2611" +======= +defs["ImGuiWindow_ImGuiWindow"][1]["location"] = "imgui_internal:2874" +>>>>>>> docking_inter defs["ImGuiWindow_ImGuiWindow"][1]["ov_cimguiname"] = "ImGuiWindow_ImGuiWindow" defs["ImGuiWindow_ImGuiWindow"][1]["signature"] = "(ImGuiContext*,const char*)" defs["ImGuiWindow_ImGuiWindow"][1]["stname"] = "ImGuiWindow" @@ -8500,7 +10354,11 @@ defs["ImGuiWindow_MenuBarRect"][1]["call_args"] = "()" defs["ImGuiWindow_MenuBarRect"][1]["cimguiname"] = "ImGuiWindow_MenuBarRect" defs["ImGuiWindow_MenuBarRect"][1]["defaults"] = {} defs["ImGuiWindow_MenuBarRect"][1]["funcname"] = "MenuBarRect" +<<<<<<< HEAD defs["ImGuiWindow_MenuBarRect"][1]["location"] = "imgui_internal:2624" +======= +defs["ImGuiWindow_MenuBarRect"][1]["location"] = "imgui_internal:2887" +>>>>>>> docking_inter defs["ImGuiWindow_MenuBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_MenuBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_MenuBarRect" defs["ImGuiWindow_MenuBarRect"][1]["ret"] = "void" @@ -8522,7 +10380,11 @@ defs["ImGuiWindow_Rect"][1]["call_args"] = "()" defs["ImGuiWindow_Rect"][1]["cimguiname"] = "ImGuiWindow_Rect" defs["ImGuiWindow_Rect"][1]["defaults"] = {} defs["ImGuiWindow_Rect"][1]["funcname"] = "Rect" +<<<<<<< HEAD defs["ImGuiWindow_Rect"][1]["location"] = "imgui_internal:2621" +======= +defs["ImGuiWindow_Rect"][1]["location"] = "imgui_internal:2884" +>>>>>>> docking_inter defs["ImGuiWindow_Rect"][1]["nonUDT"] = 1 defs["ImGuiWindow_Rect"][1]["ov_cimguiname"] = "ImGuiWindow_Rect" defs["ImGuiWindow_Rect"][1]["ret"] = "void" @@ -8544,7 +10406,11 @@ defs["ImGuiWindow_TitleBarRect"][1]["call_args"] = "()" defs["ImGuiWindow_TitleBarRect"][1]["cimguiname"] = "ImGuiWindow_TitleBarRect" defs["ImGuiWindow_TitleBarRect"][1]["defaults"] = {} defs["ImGuiWindow_TitleBarRect"][1]["funcname"] = "TitleBarRect" +<<<<<<< HEAD defs["ImGuiWindow_TitleBarRect"][1]["location"] = "imgui_internal:2623" +======= +defs["ImGuiWindow_TitleBarRect"][1]["location"] = "imgui_internal:2886" +>>>>>>> docking_inter defs["ImGuiWindow_TitleBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_TitleBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_TitleBarRect" defs["ImGuiWindow_TitleBarRect"][1]["ret"] = "void" @@ -8562,7 +10428,11 @@ defs["ImGuiWindow_destroy"][1]["call_args"] = "(self)" defs["ImGuiWindow_destroy"][1]["cimguiname"] = "ImGuiWindow_destroy" defs["ImGuiWindow_destroy"][1]["defaults"] = {} defs["ImGuiWindow_destroy"][1]["destructor"] = true +<<<<<<< HEAD defs["ImGuiWindow_destroy"][1]["location"] = "imgui_internal:2613" +======= +defs["ImGuiWindow_destroy"][1]["location"] = "imgui_internal:2876" +>>>>>>> docking_inter defs["ImGuiWindow_destroy"][1]["ov_cimguiname"] = "ImGuiWindow_destroy" defs["ImGuiWindow_destroy"][1]["realdestructor"] = true defs["ImGuiWindow_destroy"][1]["ret"] = "void" @@ -8581,7 +10451,11 @@ defs["ImPool_Add"][1]["call_args"] = "()" defs["ImPool_Add"][1]["cimguiname"] = "ImPool_Add" defs["ImPool_Add"][1]["defaults"] = {} defs["ImPool_Add"][1]["funcname"] = "Add" +<<<<<<< HEAD defs["ImPool_Add"][1]["location"] = "imgui_internal:689" +======= +defs["ImPool_Add"][1]["location"] = "imgui_internal:702" +>>>>>>> docking_inter defs["ImPool_Add"][1]["ov_cimguiname"] = "ImPool_Add" defs["ImPool_Add"][1]["ret"] = "T*" defs["ImPool_Add"][1]["signature"] = "()" @@ -8600,7 +10474,11 @@ defs["ImPool_Clear"][1]["call_args"] = "()" defs["ImPool_Clear"][1]["cimguiname"] = "ImPool_Clear" defs["ImPool_Clear"][1]["defaults"] = {} defs["ImPool_Clear"][1]["funcname"] = "Clear" +<<<<<<< HEAD defs["ImPool_Clear"][1]["location"] = "imgui_internal:688" +======= +defs["ImPool_Clear"][1]["location"] = "imgui_internal:701" +>>>>>>> docking_inter defs["ImPool_Clear"][1]["ov_cimguiname"] = "ImPool_Clear" defs["ImPool_Clear"][1]["ret"] = "void" defs["ImPool_Clear"][1]["signature"] = "()" @@ -8622,7 +10500,11 @@ defs["ImPool_Contains"][1]["call_args"] = "(p)" defs["ImPool_Contains"][1]["cimguiname"] = "ImPool_Contains" defs["ImPool_Contains"][1]["defaults"] = {} defs["ImPool_Contains"][1]["funcname"] = "Contains" +<<<<<<< HEAD defs["ImPool_Contains"][1]["location"] = "imgui_internal:687" +======= +defs["ImPool_Contains"][1]["location"] = "imgui_internal:700" +>>>>>>> docking_inter defs["ImPool_Contains"][1]["ov_cimguiname"] = "ImPool_Contains" defs["ImPool_Contains"][1]["ret"] = "bool" defs["ImPool_Contains"][1]["signature"] = "(const T*)const" @@ -8641,7 +10523,11 @@ defs["ImPool_GetAliveCount"][1]["call_args"] = "()" defs["ImPool_GetAliveCount"][1]["cimguiname"] = "ImPool_GetAliveCount" defs["ImPool_GetAliveCount"][1]["defaults"] = {} defs["ImPool_GetAliveCount"][1]["funcname"] = "GetAliveCount" +<<<<<<< HEAD defs["ImPool_GetAliveCount"][1]["location"] = "imgui_internal:696" +======= +defs["ImPool_GetAliveCount"][1]["location"] = "imgui_internal:709" +>>>>>>> docking_inter defs["ImPool_GetAliveCount"][1]["ov_cimguiname"] = "ImPool_GetAliveCount" defs["ImPool_GetAliveCount"][1]["ret"] = "int" defs["ImPool_GetAliveCount"][1]["signature"] = "()const" @@ -8660,7 +10546,11 @@ defs["ImPool_GetBufSize"][1]["call_args"] = "()" defs["ImPool_GetBufSize"][1]["cimguiname"] = "ImPool_GetBufSize" defs["ImPool_GetBufSize"][1]["defaults"] = {} defs["ImPool_GetBufSize"][1]["funcname"] = "GetBufSize" +<<<<<<< HEAD defs["ImPool_GetBufSize"][1]["location"] = "imgui_internal:697" +======= +defs["ImPool_GetBufSize"][1]["location"] = "imgui_internal:710" +>>>>>>> docking_inter defs["ImPool_GetBufSize"][1]["ov_cimguiname"] = "ImPool_GetBufSize" defs["ImPool_GetBufSize"][1]["ret"] = "int" defs["ImPool_GetBufSize"][1]["signature"] = "()const" @@ -8682,7 +10572,11 @@ defs["ImPool_GetByIndex"][1]["call_args"] = "(n)" defs["ImPool_GetByIndex"][1]["cimguiname"] = "ImPool_GetByIndex" defs["ImPool_GetByIndex"][1]["defaults"] = {} defs["ImPool_GetByIndex"][1]["funcname"] = "GetByIndex" +<<<<<<< HEAD defs["ImPool_GetByIndex"][1]["location"] = "imgui_internal:684" +======= +defs["ImPool_GetByIndex"][1]["location"] = "imgui_internal:697" +>>>>>>> docking_inter defs["ImPool_GetByIndex"][1]["ov_cimguiname"] = "ImPool_GetByIndex" defs["ImPool_GetByIndex"][1]["ret"] = "T*" defs["ImPool_GetByIndex"][1]["signature"] = "(ImPoolIdx)" @@ -8704,7 +10598,11 @@ defs["ImPool_GetByKey"][1]["call_args"] = "(key)" defs["ImPool_GetByKey"][1]["cimguiname"] = "ImPool_GetByKey" defs["ImPool_GetByKey"][1]["defaults"] = {} defs["ImPool_GetByKey"][1]["funcname"] = "GetByKey" +<<<<<<< HEAD defs["ImPool_GetByKey"][1]["location"] = "imgui_internal:683" +======= +defs["ImPool_GetByKey"][1]["location"] = "imgui_internal:696" +>>>>>>> docking_inter defs["ImPool_GetByKey"][1]["ov_cimguiname"] = "ImPool_GetByKey" defs["ImPool_GetByKey"][1]["ret"] = "T*" defs["ImPool_GetByKey"][1]["signature"] = "(ImGuiID)" @@ -8726,7 +10624,11 @@ defs["ImPool_GetIndex"][1]["call_args"] = "(p)" defs["ImPool_GetIndex"][1]["cimguiname"] = "ImPool_GetIndex" defs["ImPool_GetIndex"][1]["defaults"] = {} defs["ImPool_GetIndex"][1]["funcname"] = "GetIndex" +<<<<<<< HEAD defs["ImPool_GetIndex"][1]["location"] = "imgui_internal:685" +======= +defs["ImPool_GetIndex"][1]["location"] = "imgui_internal:698" +>>>>>>> docking_inter defs["ImPool_GetIndex"][1]["ov_cimguiname"] = "ImPool_GetIndex" defs["ImPool_GetIndex"][1]["ret"] = "ImPoolIdx" defs["ImPool_GetIndex"][1]["signature"] = "(const T*)const" @@ -8745,7 +10647,11 @@ defs["ImPool_GetMapSize"][1]["call_args"] = "()" defs["ImPool_GetMapSize"][1]["cimguiname"] = "ImPool_GetMapSize" defs["ImPool_GetMapSize"][1]["defaults"] = {} defs["ImPool_GetMapSize"][1]["funcname"] = "GetMapSize" +<<<<<<< HEAD defs["ImPool_GetMapSize"][1]["location"] = "imgui_internal:698" +======= +defs["ImPool_GetMapSize"][1]["location"] = "imgui_internal:711" +>>>>>>> docking_inter defs["ImPool_GetMapSize"][1]["ov_cimguiname"] = "ImPool_GetMapSize" defs["ImPool_GetMapSize"][1]["ret"] = "int" defs["ImPool_GetMapSize"][1]["signature"] = "()const" @@ -8767,7 +10673,11 @@ defs["ImPool_GetOrAddByKey"][1]["call_args"] = "(key)" defs["ImPool_GetOrAddByKey"][1]["cimguiname"] = "ImPool_GetOrAddByKey" defs["ImPool_GetOrAddByKey"][1]["defaults"] = {} defs["ImPool_GetOrAddByKey"][1]["funcname"] = "GetOrAddByKey" +<<<<<<< HEAD defs["ImPool_GetOrAddByKey"][1]["location"] = "imgui_internal:686" +======= +defs["ImPool_GetOrAddByKey"][1]["location"] = "imgui_internal:699" +>>>>>>> docking_inter defs["ImPool_GetOrAddByKey"][1]["ov_cimguiname"] = "ImPool_GetOrAddByKey" defs["ImPool_GetOrAddByKey"][1]["ret"] = "T*" defs["ImPool_GetOrAddByKey"][1]["signature"] = "(ImGuiID)" @@ -8784,7 +10694,11 @@ defs["ImPool_ImPool"][1]["cimguiname"] = "ImPool_ImPool" defs["ImPool_ImPool"][1]["constructor"] = true defs["ImPool_ImPool"][1]["defaults"] = {} defs["ImPool_ImPool"][1]["funcname"] = "ImPool" +<<<<<<< HEAD defs["ImPool_ImPool"][1]["location"] = "imgui_internal:681" +======= +defs["ImPool_ImPool"][1]["location"] = "imgui_internal:694" +>>>>>>> docking_inter defs["ImPool_ImPool"][1]["ov_cimguiname"] = "ImPool_ImPool" defs["ImPool_ImPool"][1]["signature"] = "()" defs["ImPool_ImPool"][1]["stname"] = "ImPool" @@ -8808,7 +10722,11 @@ defs["ImPool_Remove"][1]["call_args"] = "(key,p)" defs["ImPool_Remove"][1]["cimguiname"] = "ImPool_Remove" defs["ImPool_Remove"][1]["defaults"] = {} defs["ImPool_Remove"][1]["funcname"] = "Remove" +<<<<<<< HEAD defs["ImPool_Remove"][1]["location"] = "imgui_internal:690" +======= +defs["ImPool_Remove"][1]["location"] = "imgui_internal:703" +>>>>>>> docking_inter defs["ImPool_Remove"][1]["ov_cimguiname"] = "ImPool_Remove_TPtr" defs["ImPool_Remove"][1]["ret"] = "void" defs["ImPool_Remove"][1]["signature"] = "(ImGuiID,const T*)" @@ -8831,7 +10749,11 @@ defs["ImPool_Remove"][2]["call_args"] = "(key,idx)" defs["ImPool_Remove"][2]["cimguiname"] = "ImPool_Remove" defs["ImPool_Remove"][2]["defaults"] = {} defs["ImPool_Remove"][2]["funcname"] = "Remove" +<<<<<<< HEAD defs["ImPool_Remove"][2]["location"] = "imgui_internal:691" +======= +defs["ImPool_Remove"][2]["location"] = "imgui_internal:704" +>>>>>>> docking_inter defs["ImPool_Remove"][2]["ov_cimguiname"] = "ImPool_Remove_PoolIdx" defs["ImPool_Remove"][2]["ret"] = "void" defs["ImPool_Remove"][2]["signature"] = "(ImGuiID,ImPoolIdx)" @@ -8854,7 +10776,11 @@ defs["ImPool_Reserve"][1]["call_args"] = "(capacity)" defs["ImPool_Reserve"][1]["cimguiname"] = "ImPool_Reserve" defs["ImPool_Reserve"][1]["defaults"] = {} defs["ImPool_Reserve"][1]["funcname"] = "Reserve" +<<<<<<< HEAD defs["ImPool_Reserve"][1]["location"] = "imgui_internal:692" +======= +defs["ImPool_Reserve"][1]["location"] = "imgui_internal:705" +>>>>>>> docking_inter defs["ImPool_Reserve"][1]["ov_cimguiname"] = "ImPool_Reserve" defs["ImPool_Reserve"][1]["ret"] = "void" defs["ImPool_Reserve"][1]["signature"] = "(int)" @@ -8876,7 +10802,11 @@ defs["ImPool_TryGetMapData"][1]["call_args"] = "(n)" defs["ImPool_TryGetMapData"][1]["cimguiname"] = "ImPool_TryGetMapData" defs["ImPool_TryGetMapData"][1]["defaults"] = {} defs["ImPool_TryGetMapData"][1]["funcname"] = "TryGetMapData" +<<<<<<< HEAD defs["ImPool_TryGetMapData"][1]["location"] = "imgui_internal:699" +======= +defs["ImPool_TryGetMapData"][1]["location"] = "imgui_internal:712" +>>>>>>> docking_inter defs["ImPool_TryGetMapData"][1]["ov_cimguiname"] = "ImPool_TryGetMapData" defs["ImPool_TryGetMapData"][1]["ret"] = "T*" defs["ImPool_TryGetMapData"][1]["signature"] = "(ImPoolIdx)" @@ -8894,7 +10824,11 @@ defs["ImPool_destroy"][1]["call_args"] = "(self)" defs["ImPool_destroy"][1]["cimguiname"] = "ImPool_destroy" defs["ImPool_destroy"][1]["defaults"] = {} defs["ImPool_destroy"][1]["destructor"] = true +<<<<<<< HEAD defs["ImPool_destroy"][1]["location"] = "imgui_internal:682" +======= +defs["ImPool_destroy"][1]["location"] = "imgui_internal:695" +>>>>>>> docking_inter defs["ImPool_destroy"][1]["ov_cimguiname"] = "ImPool_destroy" defs["ImPool_destroy"][1]["realdestructor"] = true defs["ImPool_destroy"][1]["ret"] = "void" @@ -8917,7 +10851,11 @@ defs["ImRect_Add"][1]["call_args"] = "(p)" defs["ImRect_Add"][1]["cimguiname"] = "ImRect_Add" defs["ImRect_Add"][1]["defaults"] = {} defs["ImRect_Add"][1]["funcname"] = "Add" +<<<<<<< HEAD defs["ImRect_Add"][1]["location"] = "imgui_internal:552" +======= +defs["ImRect_Add"][1]["location"] = "imgui_internal:565" +>>>>>>> docking_inter defs["ImRect_Add"][1]["ov_cimguiname"] = "ImRect_Add_Vec2" defs["ImRect_Add"][1]["ret"] = "void" defs["ImRect_Add"][1]["signature"] = "(const ImVec2)" @@ -8936,7 +10874,11 @@ defs["ImRect_Add"][2]["call_args"] = "(r)" defs["ImRect_Add"][2]["cimguiname"] = "ImRect_Add" defs["ImRect_Add"][2]["defaults"] = {} defs["ImRect_Add"][2]["funcname"] = "Add" +<<<<<<< HEAD defs["ImRect_Add"][2]["location"] = "imgui_internal:553" +======= +defs["ImRect_Add"][2]["location"] = "imgui_internal:566" +>>>>>>> docking_inter defs["ImRect_Add"][2]["ov_cimguiname"] = "ImRect_Add_Rect" defs["ImRect_Add"][2]["ret"] = "void" defs["ImRect_Add"][2]["signature"] = "(const ImRect)" @@ -8958,7 +10900,11 @@ defs["ImRect_ClipWith"][1]["call_args"] = "(r)" defs["ImRect_ClipWith"][1]["cimguiname"] = "ImRect_ClipWith" defs["ImRect_ClipWith"][1]["defaults"] = {} defs["ImRect_ClipWith"][1]["funcname"] = "ClipWith" +<<<<<<< HEAD defs["ImRect_ClipWith"][1]["location"] = "imgui_internal:559" +======= +defs["ImRect_ClipWith"][1]["location"] = "imgui_internal:572" +>>>>>>> docking_inter defs["ImRect_ClipWith"][1]["ov_cimguiname"] = "ImRect_ClipWith" defs["ImRect_ClipWith"][1]["ret"] = "void" defs["ImRect_ClipWith"][1]["signature"] = "(const ImRect)" @@ -8979,7 +10925,11 @@ defs["ImRect_ClipWithFull"][1]["call_args"] = "(r)" defs["ImRect_ClipWithFull"][1]["cimguiname"] = "ImRect_ClipWithFull" defs["ImRect_ClipWithFull"][1]["defaults"] = {} defs["ImRect_ClipWithFull"][1]["funcname"] = "ClipWithFull" +<<<<<<< HEAD defs["ImRect_ClipWithFull"][1]["location"] = "imgui_internal:560" +======= +defs["ImRect_ClipWithFull"][1]["location"] = "imgui_internal:573" +>>>>>>> docking_inter defs["ImRect_ClipWithFull"][1]["ov_cimguiname"] = "ImRect_ClipWithFull" defs["ImRect_ClipWithFull"][1]["ret"] = "void" defs["ImRect_ClipWithFull"][1]["signature"] = "(const ImRect)" @@ -9000,7 +10950,11 @@ defs["ImRect_Contains"][1]["call_args"] = "(p)" defs["ImRect_Contains"][1]["cimguiname"] = "ImRect_Contains" defs["ImRect_Contains"][1]["defaults"] = {} defs["ImRect_Contains"][1]["funcname"] = "Contains" +<<<<<<< HEAD defs["ImRect_Contains"][1]["location"] = "imgui_internal:548" +======= +defs["ImRect_Contains"][1]["location"] = "imgui_internal:561" +>>>>>>> docking_inter defs["ImRect_Contains"][1]["ov_cimguiname"] = "ImRect_Contains_Vec2" defs["ImRect_Contains"][1]["ret"] = "bool" defs["ImRect_Contains"][1]["signature"] = "(const ImVec2)const" @@ -9019,7 +10973,11 @@ defs["ImRect_Contains"][2]["call_args"] = "(r)" defs["ImRect_Contains"][2]["cimguiname"] = "ImRect_Contains" defs["ImRect_Contains"][2]["defaults"] = {} defs["ImRect_Contains"][2]["funcname"] = "Contains" +<<<<<<< HEAD defs["ImRect_Contains"][2]["location"] = "imgui_internal:549" +======= +defs["ImRect_Contains"][2]["location"] = "imgui_internal:562" +>>>>>>> docking_inter defs["ImRect_Contains"][2]["ov_cimguiname"] = "ImRect_Contains_Rect" defs["ImRect_Contains"][2]["ret"] = "bool" defs["ImRect_Contains"][2]["signature"] = "(const ImRect)const" @@ -9044,7 +11002,11 @@ defs["ImRect_ContainsWithPad"][1]["call_args"] = "(p,pad)" defs["ImRect_ContainsWithPad"][1]["cimguiname"] = "ImRect_ContainsWithPad" defs["ImRect_ContainsWithPad"][1]["defaults"] = {} defs["ImRect_ContainsWithPad"][1]["funcname"] = "ContainsWithPad" +<<<<<<< HEAD defs["ImRect_ContainsWithPad"][1]["location"] = "imgui_internal:550" +======= +defs["ImRect_ContainsWithPad"][1]["location"] = "imgui_internal:563" +>>>>>>> docking_inter defs["ImRect_ContainsWithPad"][1]["ov_cimguiname"] = "ImRect_ContainsWithPad" defs["ImRect_ContainsWithPad"][1]["ret"] = "bool" defs["ImRect_ContainsWithPad"][1]["signature"] = "(const ImVec2,const ImVec2)const" @@ -9065,7 +11027,11 @@ defs["ImRect_Expand"][1]["call_args"] = "(amount)" defs["ImRect_Expand"][1]["cimguiname"] = "ImRect_Expand" defs["ImRect_Expand"][1]["defaults"] = {} defs["ImRect_Expand"][1]["funcname"] = "Expand" +<<<<<<< HEAD defs["ImRect_Expand"][1]["location"] = "imgui_internal:554" +======= +defs["ImRect_Expand"][1]["location"] = "imgui_internal:567" +>>>>>>> docking_inter defs["ImRect_Expand"][1]["ov_cimguiname"] = "ImRect_Expand_Float" defs["ImRect_Expand"][1]["ret"] = "void" defs["ImRect_Expand"][1]["signature"] = "(const float)" @@ -9084,7 +11050,11 @@ defs["ImRect_Expand"][2]["call_args"] = "(amount)" defs["ImRect_Expand"][2]["cimguiname"] = "ImRect_Expand" defs["ImRect_Expand"][2]["defaults"] = {} defs["ImRect_Expand"][2]["funcname"] = "Expand" +<<<<<<< HEAD defs["ImRect_Expand"][2]["location"] = "imgui_internal:555" +======= +defs["ImRect_Expand"][2]["location"] = "imgui_internal:568" +>>>>>>> docking_inter defs["ImRect_Expand"][2]["ov_cimguiname"] = "ImRect_Expand_Vec2" defs["ImRect_Expand"][2]["ret"] = "void" defs["ImRect_Expand"][2]["signature"] = "(const ImVec2)" @@ -9103,7 +11073,11 @@ defs["ImRect_Floor"][1]["call_args"] = "()" defs["ImRect_Floor"][1]["cimguiname"] = "ImRect_Floor" defs["ImRect_Floor"][1]["defaults"] = {} defs["ImRect_Floor"][1]["funcname"] = "Floor" +<<<<<<< HEAD defs["ImRect_Floor"][1]["location"] = "imgui_internal:561" +======= +defs["ImRect_Floor"][1]["location"] = "imgui_internal:574" +>>>>>>> docking_inter defs["ImRect_Floor"][1]["ov_cimguiname"] = "ImRect_Floor" defs["ImRect_Floor"][1]["ret"] = "void" defs["ImRect_Floor"][1]["signature"] = "()" @@ -9121,7 +11095,11 @@ defs["ImRect_GetArea"][1]["call_args"] = "()" defs["ImRect_GetArea"][1]["cimguiname"] = "ImRect_GetArea" defs["ImRect_GetArea"][1]["defaults"] = {} defs["ImRect_GetArea"][1]["funcname"] = "GetArea" +<<<<<<< HEAD defs["ImRect_GetArea"][1]["location"] = "imgui_internal:543" +======= +defs["ImRect_GetArea"][1]["location"] = "imgui_internal:556" +>>>>>>> docking_inter defs["ImRect_GetArea"][1]["ov_cimguiname"] = "ImRect_GetArea" defs["ImRect_GetArea"][1]["ret"] = "float" defs["ImRect_GetArea"][1]["signature"] = "()const" @@ -9142,7 +11120,11 @@ defs["ImRect_GetBL"][1]["call_args"] = "()" defs["ImRect_GetBL"][1]["cimguiname"] = "ImRect_GetBL" defs["ImRect_GetBL"][1]["defaults"] = {} defs["ImRect_GetBL"][1]["funcname"] = "GetBL" +<<<<<<< HEAD defs["ImRect_GetBL"][1]["location"] = "imgui_internal:546" +======= +defs["ImRect_GetBL"][1]["location"] = "imgui_internal:559" +>>>>>>> docking_inter defs["ImRect_GetBL"][1]["nonUDT"] = 1 defs["ImRect_GetBL"][1]["ov_cimguiname"] = "ImRect_GetBL" defs["ImRect_GetBL"][1]["ret"] = "void" @@ -9164,7 +11146,11 @@ defs["ImRect_GetBR"][1]["call_args"] = "()" defs["ImRect_GetBR"][1]["cimguiname"] = "ImRect_GetBR" defs["ImRect_GetBR"][1]["defaults"] = {} defs["ImRect_GetBR"][1]["funcname"] = "GetBR" +<<<<<<< HEAD defs["ImRect_GetBR"][1]["location"] = "imgui_internal:547" +======= +defs["ImRect_GetBR"][1]["location"] = "imgui_internal:560" +>>>>>>> docking_inter defs["ImRect_GetBR"][1]["nonUDT"] = 1 defs["ImRect_GetBR"][1]["ov_cimguiname"] = "ImRect_GetBR" defs["ImRect_GetBR"][1]["ret"] = "void" @@ -9186,7 +11172,11 @@ defs["ImRect_GetCenter"][1]["call_args"] = "()" defs["ImRect_GetCenter"][1]["cimguiname"] = "ImRect_GetCenter" defs["ImRect_GetCenter"][1]["defaults"] = {} defs["ImRect_GetCenter"][1]["funcname"] = "GetCenter" +<<<<<<< HEAD defs["ImRect_GetCenter"][1]["location"] = "imgui_internal:539" +======= +defs["ImRect_GetCenter"][1]["location"] = "imgui_internal:552" +>>>>>>> docking_inter defs["ImRect_GetCenter"][1]["nonUDT"] = 1 defs["ImRect_GetCenter"][1]["ov_cimguiname"] = "ImRect_GetCenter" defs["ImRect_GetCenter"][1]["ret"] = "void" @@ -9205,7 +11195,11 @@ defs["ImRect_GetHeight"][1]["call_args"] = "()" defs["ImRect_GetHeight"][1]["cimguiname"] = "ImRect_GetHeight" defs["ImRect_GetHeight"][1]["defaults"] = {} defs["ImRect_GetHeight"][1]["funcname"] = "GetHeight" +<<<<<<< HEAD defs["ImRect_GetHeight"][1]["location"] = "imgui_internal:542" +======= +defs["ImRect_GetHeight"][1]["location"] = "imgui_internal:555" +>>>>>>> docking_inter defs["ImRect_GetHeight"][1]["ov_cimguiname"] = "ImRect_GetHeight" defs["ImRect_GetHeight"][1]["ret"] = "float" defs["ImRect_GetHeight"][1]["signature"] = "()const" @@ -9226,7 +11220,11 @@ defs["ImRect_GetSize"][1]["call_args"] = "()" defs["ImRect_GetSize"][1]["cimguiname"] = "ImRect_GetSize" defs["ImRect_GetSize"][1]["defaults"] = {} defs["ImRect_GetSize"][1]["funcname"] = "GetSize" +<<<<<<< HEAD defs["ImRect_GetSize"][1]["location"] = "imgui_internal:540" +======= +defs["ImRect_GetSize"][1]["location"] = "imgui_internal:553" +>>>>>>> docking_inter defs["ImRect_GetSize"][1]["nonUDT"] = 1 defs["ImRect_GetSize"][1]["ov_cimguiname"] = "ImRect_GetSize" defs["ImRect_GetSize"][1]["ret"] = "void" @@ -9248,7 +11246,11 @@ defs["ImRect_GetTL"][1]["call_args"] = "()" defs["ImRect_GetTL"][1]["cimguiname"] = "ImRect_GetTL" defs["ImRect_GetTL"][1]["defaults"] = {} defs["ImRect_GetTL"][1]["funcname"] = "GetTL" +<<<<<<< HEAD defs["ImRect_GetTL"][1]["location"] = "imgui_internal:544" +======= +defs["ImRect_GetTL"][1]["location"] = "imgui_internal:557" +>>>>>>> docking_inter defs["ImRect_GetTL"][1]["nonUDT"] = 1 defs["ImRect_GetTL"][1]["ov_cimguiname"] = "ImRect_GetTL" defs["ImRect_GetTL"][1]["ret"] = "void" @@ -9270,7 +11272,11 @@ defs["ImRect_GetTR"][1]["call_args"] = "()" defs["ImRect_GetTR"][1]["cimguiname"] = "ImRect_GetTR" defs["ImRect_GetTR"][1]["defaults"] = {} defs["ImRect_GetTR"][1]["funcname"] = "GetTR" +<<<<<<< HEAD defs["ImRect_GetTR"][1]["location"] = "imgui_internal:545" +======= +defs["ImRect_GetTR"][1]["location"] = "imgui_internal:558" +>>>>>>> docking_inter defs["ImRect_GetTR"][1]["nonUDT"] = 1 defs["ImRect_GetTR"][1]["ov_cimguiname"] = "ImRect_GetTR" defs["ImRect_GetTR"][1]["ret"] = "void" @@ -9289,7 +11295,11 @@ defs["ImRect_GetWidth"][1]["call_args"] = "()" defs["ImRect_GetWidth"][1]["cimguiname"] = "ImRect_GetWidth" defs["ImRect_GetWidth"][1]["defaults"] = {} defs["ImRect_GetWidth"][1]["funcname"] = "GetWidth" +<<<<<<< HEAD defs["ImRect_GetWidth"][1]["location"] = "imgui_internal:541" +======= +defs["ImRect_GetWidth"][1]["location"] = "imgui_internal:554" +>>>>>>> docking_inter defs["ImRect_GetWidth"][1]["ov_cimguiname"] = "ImRect_GetWidth" defs["ImRect_GetWidth"][1]["ret"] = "float" defs["ImRect_GetWidth"][1]["signature"] = "()const" @@ -9305,7 +11315,11 @@ defs["ImRect_ImRect"][1]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][1]["constructor"] = true defs["ImRect_ImRect"][1]["defaults"] = {} defs["ImRect_ImRect"][1]["funcname"] = "ImRect" +<<<<<<< HEAD defs["ImRect_ImRect"][1]["location"] = "imgui_internal:534" +======= +defs["ImRect_ImRect"][1]["location"] = "imgui_internal:547" +>>>>>>> docking_inter defs["ImRect_ImRect"][1]["ov_cimguiname"] = "ImRect_ImRect_Nil" defs["ImRect_ImRect"][1]["signature"] = "()" defs["ImRect_ImRect"][1]["stname"] = "ImRect" @@ -9324,7 +11338,11 @@ defs["ImRect_ImRect"][2]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][2]["constructor"] = true defs["ImRect_ImRect"][2]["defaults"] = {} defs["ImRect_ImRect"][2]["funcname"] = "ImRect" +<<<<<<< HEAD defs["ImRect_ImRect"][2]["location"] = "imgui_internal:535" +======= +defs["ImRect_ImRect"][2]["location"] = "imgui_internal:548" +>>>>>>> docking_inter defs["ImRect_ImRect"][2]["ov_cimguiname"] = "ImRect_ImRect_Vec2" defs["ImRect_ImRect"][2]["signature"] = "(const ImVec2,const ImVec2)" defs["ImRect_ImRect"][2]["stname"] = "ImRect" @@ -9340,7 +11358,11 @@ defs["ImRect_ImRect"][3]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][3]["constructor"] = true defs["ImRect_ImRect"][3]["defaults"] = {} defs["ImRect_ImRect"][3]["funcname"] = "ImRect" +<<<<<<< HEAD defs["ImRect_ImRect"][3]["location"] = "imgui_internal:536" +======= +defs["ImRect_ImRect"][3]["location"] = "imgui_internal:549" +>>>>>>> docking_inter defs["ImRect_ImRect"][3]["ov_cimguiname"] = "ImRect_ImRect_Vec4" defs["ImRect_ImRect"][3]["signature"] = "(const ImVec4)" defs["ImRect_ImRect"][3]["stname"] = "ImRect" @@ -9365,7 +11387,11 @@ defs["ImRect_ImRect"][4]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][4]["constructor"] = true defs["ImRect_ImRect"][4]["defaults"] = {} defs["ImRect_ImRect"][4]["funcname"] = "ImRect" +<<<<<<< HEAD defs["ImRect_ImRect"][4]["location"] = "imgui_internal:537" +======= +defs["ImRect_ImRect"][4]["location"] = "imgui_internal:550" +>>>>>>> docking_inter defs["ImRect_ImRect"][4]["ov_cimguiname"] = "ImRect_ImRect_Float" defs["ImRect_ImRect"][4]["signature"] = "(float,float,float,float)" defs["ImRect_ImRect"][4]["stname"] = "ImRect" @@ -9385,7 +11411,11 @@ defs["ImRect_IsInverted"][1]["call_args"] = "()" defs["ImRect_IsInverted"][1]["cimguiname"] = "ImRect_IsInverted" defs["ImRect_IsInverted"][1]["defaults"] = {} defs["ImRect_IsInverted"][1]["funcname"] = "IsInverted" +<<<<<<< HEAD defs["ImRect_IsInverted"][1]["location"] = "imgui_internal:562" +======= +defs["ImRect_IsInverted"][1]["location"] = "imgui_internal:575" +>>>>>>> docking_inter defs["ImRect_IsInverted"][1]["ov_cimguiname"] = "ImRect_IsInverted" defs["ImRect_IsInverted"][1]["ret"] = "bool" defs["ImRect_IsInverted"][1]["signature"] = "()const" @@ -9406,7 +11436,11 @@ defs["ImRect_Overlaps"][1]["call_args"] = "(r)" defs["ImRect_Overlaps"][1]["cimguiname"] = "ImRect_Overlaps" defs["ImRect_Overlaps"][1]["defaults"] = {} defs["ImRect_Overlaps"][1]["funcname"] = "Overlaps" +<<<<<<< HEAD defs["ImRect_Overlaps"][1]["location"] = "imgui_internal:551" +======= +defs["ImRect_Overlaps"][1]["location"] = "imgui_internal:564" +>>>>>>> docking_inter defs["ImRect_Overlaps"][1]["ov_cimguiname"] = "ImRect_Overlaps" defs["ImRect_Overlaps"][1]["ret"] = "bool" defs["ImRect_Overlaps"][1]["signature"] = "(const ImRect)const" @@ -9427,7 +11461,11 @@ defs["ImRect_ToVec4"][1]["call_args"] = "()" defs["ImRect_ToVec4"][1]["cimguiname"] = "ImRect_ToVec4" defs["ImRect_ToVec4"][1]["defaults"] = {} defs["ImRect_ToVec4"][1]["funcname"] = "ToVec4" +<<<<<<< HEAD defs["ImRect_ToVec4"][1]["location"] = "imgui_internal:563" +======= +defs["ImRect_ToVec4"][1]["location"] = "imgui_internal:576" +>>>>>>> docking_inter defs["ImRect_ToVec4"][1]["nonUDT"] = 1 defs["ImRect_ToVec4"][1]["ov_cimguiname"] = "ImRect_ToVec4" defs["ImRect_ToVec4"][1]["ret"] = "void" @@ -9449,7 +11487,11 @@ defs["ImRect_Translate"][1]["call_args"] = "(d)" defs["ImRect_Translate"][1]["cimguiname"] = "ImRect_Translate" defs["ImRect_Translate"][1]["defaults"] = {} defs["ImRect_Translate"][1]["funcname"] = "Translate" +<<<<<<< HEAD defs["ImRect_Translate"][1]["location"] = "imgui_internal:556" +======= +defs["ImRect_Translate"][1]["location"] = "imgui_internal:569" +>>>>>>> docking_inter defs["ImRect_Translate"][1]["ov_cimguiname"] = "ImRect_Translate" defs["ImRect_Translate"][1]["ret"] = "void" defs["ImRect_Translate"][1]["signature"] = "(const ImVec2)" @@ -9470,7 +11512,11 @@ defs["ImRect_TranslateX"][1]["call_args"] = "(dx)" defs["ImRect_TranslateX"][1]["cimguiname"] = "ImRect_TranslateX" defs["ImRect_TranslateX"][1]["defaults"] = {} defs["ImRect_TranslateX"][1]["funcname"] = "TranslateX" +<<<<<<< HEAD defs["ImRect_TranslateX"][1]["location"] = "imgui_internal:557" +======= +defs["ImRect_TranslateX"][1]["location"] = "imgui_internal:570" +>>>>>>> docking_inter defs["ImRect_TranslateX"][1]["ov_cimguiname"] = "ImRect_TranslateX" defs["ImRect_TranslateX"][1]["ret"] = "void" defs["ImRect_TranslateX"][1]["signature"] = "(float)" @@ -9491,7 +11537,11 @@ defs["ImRect_TranslateY"][1]["call_args"] = "(dy)" defs["ImRect_TranslateY"][1]["cimguiname"] = "ImRect_TranslateY" defs["ImRect_TranslateY"][1]["defaults"] = {} defs["ImRect_TranslateY"][1]["funcname"] = "TranslateY" +<<<<<<< HEAD defs["ImRect_TranslateY"][1]["location"] = "imgui_internal:558" +======= +defs["ImRect_TranslateY"][1]["location"] = "imgui_internal:571" +>>>>>>> docking_inter defs["ImRect_TranslateY"][1]["ov_cimguiname"] = "ImRect_TranslateY" defs["ImRect_TranslateY"][1]["ret"] = "void" defs["ImRect_TranslateY"][1]["signature"] = "(float)" @@ -9525,7 +11575,11 @@ defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["call_args"] = "()" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["cimguiname"] = "ImSpanAllocator_GetArenaSizeInBytes" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["defaults"] = {} defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["funcname"] = "GetArenaSizeInBytes" +<<<<<<< HEAD defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["location"] = "imgui_internal:661" +======= +defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["location"] = "imgui_internal:674" +>>>>>>> docking_inter defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["ov_cimguiname"] = "ImSpanAllocator_GetArenaSizeInBytes" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["ret"] = "int" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["signature"] = "()" @@ -9547,7 +11601,11 @@ defs["ImSpanAllocator_GetSpanPtrBegin"][1]["call_args"] = "(n)" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["cimguiname"] = "ImSpanAllocator_GetSpanPtrBegin" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["defaults"] = {} defs["ImSpanAllocator_GetSpanPtrBegin"][1]["funcname"] = "GetSpanPtrBegin" +<<<<<<< HEAD defs["ImSpanAllocator_GetSpanPtrBegin"][1]["location"] = "imgui_internal:663" +======= +defs["ImSpanAllocator_GetSpanPtrBegin"][1]["location"] = "imgui_internal:676" +>>>>>>> docking_inter defs["ImSpanAllocator_GetSpanPtrBegin"][1]["ov_cimguiname"] = "ImSpanAllocator_GetSpanPtrBegin" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["ret"] = "void*" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["signature"] = "(int)" @@ -9569,7 +11627,11 @@ defs["ImSpanAllocator_GetSpanPtrEnd"][1]["call_args"] = "(n)" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["cimguiname"] = "ImSpanAllocator_GetSpanPtrEnd" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["defaults"] = {} defs["ImSpanAllocator_GetSpanPtrEnd"][1]["funcname"] = "GetSpanPtrEnd" +<<<<<<< HEAD defs["ImSpanAllocator_GetSpanPtrEnd"][1]["location"] = "imgui_internal:664" +======= +defs["ImSpanAllocator_GetSpanPtrEnd"][1]["location"] = "imgui_internal:677" +>>>>>>> docking_inter defs["ImSpanAllocator_GetSpanPtrEnd"][1]["ov_cimguiname"] = "ImSpanAllocator_GetSpanPtrEnd" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["ret"] = "void*" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["signature"] = "(int)" @@ -9586,7 +11648,11 @@ defs["ImSpanAllocator_ImSpanAllocator"][1]["cimguiname"] = "ImSpanAllocator_ImSp defs["ImSpanAllocator_ImSpanAllocator"][1]["constructor"] = true defs["ImSpanAllocator_ImSpanAllocator"][1]["defaults"] = {} defs["ImSpanAllocator_ImSpanAllocator"][1]["funcname"] = "ImSpanAllocator" +<<<<<<< HEAD defs["ImSpanAllocator_ImSpanAllocator"][1]["location"] = "imgui_internal:659" +======= +defs["ImSpanAllocator_ImSpanAllocator"][1]["location"] = "imgui_internal:672" +>>>>>>> docking_inter defs["ImSpanAllocator_ImSpanAllocator"][1]["ov_cimguiname"] = "ImSpanAllocator_ImSpanAllocator" defs["ImSpanAllocator_ImSpanAllocator"][1]["signature"] = "()" defs["ImSpanAllocator_ImSpanAllocator"][1]["stname"] = "ImSpanAllocator" @@ -9614,7 +11680,11 @@ defs["ImSpanAllocator_Reserve"][1]["cimguiname"] = "ImSpanAllocator_Reserve" defs["ImSpanAllocator_Reserve"][1]["defaults"] = {} defs["ImSpanAllocator_Reserve"][1]["defaults"]["a"] = "4" defs["ImSpanAllocator_Reserve"][1]["funcname"] = "Reserve" +<<<<<<< HEAD defs["ImSpanAllocator_Reserve"][1]["location"] = "imgui_internal:660" +======= +defs["ImSpanAllocator_Reserve"][1]["location"] = "imgui_internal:673" +>>>>>>> docking_inter defs["ImSpanAllocator_Reserve"][1]["ov_cimguiname"] = "ImSpanAllocator_Reserve" defs["ImSpanAllocator_Reserve"][1]["ret"] = "void" defs["ImSpanAllocator_Reserve"][1]["signature"] = "(int,size_t,int)" @@ -9636,7 +11706,11 @@ defs["ImSpanAllocator_SetArenaBasePtr"][1]["call_args"] = "(base_ptr)" defs["ImSpanAllocator_SetArenaBasePtr"][1]["cimguiname"] = "ImSpanAllocator_SetArenaBasePtr" defs["ImSpanAllocator_SetArenaBasePtr"][1]["defaults"] = {} defs["ImSpanAllocator_SetArenaBasePtr"][1]["funcname"] = "SetArenaBasePtr" +<<<<<<< HEAD defs["ImSpanAllocator_SetArenaBasePtr"][1]["location"] = "imgui_internal:662" +======= +defs["ImSpanAllocator_SetArenaBasePtr"][1]["location"] = "imgui_internal:675" +>>>>>>> docking_inter defs["ImSpanAllocator_SetArenaBasePtr"][1]["ov_cimguiname"] = "ImSpanAllocator_SetArenaBasePtr" defs["ImSpanAllocator_SetArenaBasePtr"][1]["ret"] = "void" defs["ImSpanAllocator_SetArenaBasePtr"][1]["signature"] = "(void*)" @@ -9670,7 +11744,11 @@ defs["ImSpan_ImSpan"][1]["cimguiname"] = "ImSpan_ImSpan" defs["ImSpan_ImSpan"][1]["constructor"] = true defs["ImSpan_ImSpan"][1]["defaults"] = {} defs["ImSpan_ImSpan"][1]["funcname"] = "ImSpan" +<<<<<<< HEAD defs["ImSpan_ImSpan"][1]["location"] = "imgui_internal:627" +======= +defs["ImSpan_ImSpan"][1]["location"] = "imgui_internal:640" +>>>>>>> docking_inter defs["ImSpan_ImSpan"][1]["ov_cimguiname"] = "ImSpan_ImSpan_Nil" defs["ImSpan_ImSpan"][1]["signature"] = "()" defs["ImSpan_ImSpan"][1]["stname"] = "ImSpan" @@ -9690,7 +11768,11 @@ defs["ImSpan_ImSpan"][2]["cimguiname"] = "ImSpan_ImSpan" defs["ImSpan_ImSpan"][2]["constructor"] = true defs["ImSpan_ImSpan"][2]["defaults"] = {} defs["ImSpan_ImSpan"][2]["funcname"] = "ImSpan" +<<<<<<< HEAD defs["ImSpan_ImSpan"][2]["location"] = "imgui_internal:628" +======= +defs["ImSpan_ImSpan"][2]["location"] = "imgui_internal:641" +>>>>>>> docking_inter defs["ImSpan_ImSpan"][2]["ov_cimguiname"] = "ImSpan_ImSpan_TPtrInt" defs["ImSpan_ImSpan"][2]["signature"] = "(T*,int)" defs["ImSpan_ImSpan"][2]["stname"] = "ImSpan" @@ -9710,7 +11792,11 @@ defs["ImSpan_ImSpan"][3]["cimguiname"] = "ImSpan_ImSpan" defs["ImSpan_ImSpan"][3]["constructor"] = true defs["ImSpan_ImSpan"][3]["defaults"] = {} defs["ImSpan_ImSpan"][3]["funcname"] = "ImSpan" +<<<<<<< HEAD defs["ImSpan_ImSpan"][3]["location"] = "imgui_internal:629" +======= +defs["ImSpan_ImSpan"][3]["location"] = "imgui_internal:642" +>>>>>>> docking_inter defs["ImSpan_ImSpan"][3]["ov_cimguiname"] = "ImSpan_ImSpan_TPtrTPtr" defs["ImSpan_ImSpan"][3]["signature"] = "(T*,T*)" defs["ImSpan_ImSpan"][3]["stname"] = "ImSpan" @@ -9730,7 +11816,11 @@ defs["ImSpan_begin"][1]["call_args"] = "()" defs["ImSpan_begin"][1]["cimguiname"] = "ImSpan_begin" defs["ImSpan_begin"][1]["defaults"] = {} defs["ImSpan_begin"][1]["funcname"] = "begin" +<<<<<<< HEAD defs["ImSpan_begin"][1]["location"] = "imgui_internal:638" +======= +defs["ImSpan_begin"][1]["location"] = "imgui_internal:651" +>>>>>>> docking_inter defs["ImSpan_begin"][1]["ov_cimguiname"] = "ImSpan_begin_Nil" defs["ImSpan_begin"][1]["ret"] = "T*" defs["ImSpan_begin"][1]["signature"] = "()" @@ -9747,7 +11837,11 @@ defs["ImSpan_begin"][2]["call_args"] = "()" defs["ImSpan_begin"][2]["cimguiname"] = "ImSpan_begin" defs["ImSpan_begin"][2]["defaults"] = {} defs["ImSpan_begin"][2]["funcname"] = "begin" +<<<<<<< HEAD defs["ImSpan_begin"][2]["location"] = "imgui_internal:639" +======= +defs["ImSpan_begin"][2]["location"] = "imgui_internal:652" +>>>>>>> docking_inter defs["ImSpan_begin"][2]["ov_cimguiname"] = "ImSpan_begin__const" defs["ImSpan_begin"][2]["ret"] = "const T*" defs["ImSpan_begin"][2]["signature"] = "()const" @@ -9784,7 +11878,11 @@ defs["ImSpan_end"][1]["call_args"] = "()" defs["ImSpan_end"][1]["cimguiname"] = "ImSpan_end" defs["ImSpan_end"][1]["defaults"] = {} defs["ImSpan_end"][1]["funcname"] = "end" +<<<<<<< HEAD defs["ImSpan_end"][1]["location"] = "imgui_internal:640" +======= +defs["ImSpan_end"][1]["location"] = "imgui_internal:653" +>>>>>>> docking_inter defs["ImSpan_end"][1]["ov_cimguiname"] = "ImSpan_end_Nil" defs["ImSpan_end"][1]["ret"] = "T*" defs["ImSpan_end"][1]["signature"] = "()" @@ -9801,7 +11899,11 @@ defs["ImSpan_end"][2]["call_args"] = "()" defs["ImSpan_end"][2]["cimguiname"] = "ImSpan_end" defs["ImSpan_end"][2]["defaults"] = {} defs["ImSpan_end"][2]["funcname"] = "end" +<<<<<<< HEAD defs["ImSpan_end"][2]["location"] = "imgui_internal:641" +======= +defs["ImSpan_end"][2]["location"] = "imgui_internal:654" +>>>>>>> docking_inter defs["ImSpan_end"][2]["ov_cimguiname"] = "ImSpan_end__const" defs["ImSpan_end"][2]["ret"] = "const T*" defs["ImSpan_end"][2]["signature"] = "()const" @@ -9824,7 +11926,11 @@ defs["ImSpan_index_from_ptr"][1]["call_args"] = "(it)" defs["ImSpan_index_from_ptr"][1]["cimguiname"] = "ImSpan_index_from_ptr" defs["ImSpan_index_from_ptr"][1]["defaults"] = {} defs["ImSpan_index_from_ptr"][1]["funcname"] = "index_from_ptr" +<<<<<<< HEAD defs["ImSpan_index_from_ptr"][1]["location"] = "imgui_internal:644" +======= +defs["ImSpan_index_from_ptr"][1]["location"] = "imgui_internal:657" +>>>>>>> docking_inter defs["ImSpan_index_from_ptr"][1]["ov_cimguiname"] = "ImSpan_index_from_ptr" defs["ImSpan_index_from_ptr"][1]["ret"] = "int" defs["ImSpan_index_from_ptr"][1]["signature"] = "(const T*)const" @@ -9849,7 +11955,11 @@ defs["ImSpan_set"][1]["call_args"] = "(data,size)" defs["ImSpan_set"][1]["cimguiname"] = "ImSpan_set" defs["ImSpan_set"][1]["defaults"] = {} defs["ImSpan_set"][1]["funcname"] = "set" +<<<<<<< HEAD defs["ImSpan_set"][1]["location"] = "imgui_internal:631" +======= +defs["ImSpan_set"][1]["location"] = "imgui_internal:644" +>>>>>>> docking_inter defs["ImSpan_set"][1]["ov_cimguiname"] = "ImSpan_set_Int" defs["ImSpan_set"][1]["ret"] = "void" defs["ImSpan_set"][1]["signature"] = "(T*,int)" @@ -9872,7 +11982,11 @@ defs["ImSpan_set"][2]["call_args"] = "(data,data_end)" defs["ImSpan_set"][2]["cimguiname"] = "ImSpan_set" defs["ImSpan_set"][2]["defaults"] = {} defs["ImSpan_set"][2]["funcname"] = "set" +<<<<<<< HEAD defs["ImSpan_set"][2]["location"] = "imgui_internal:632" +======= +defs["ImSpan_set"][2]["location"] = "imgui_internal:645" +>>>>>>> docking_inter defs["ImSpan_set"][2]["ov_cimguiname"] = "ImSpan_set_TPtr" defs["ImSpan_set"][2]["ret"] = "void" defs["ImSpan_set"][2]["signature"] = "(T*,T*)" @@ -9892,7 +12006,11 @@ defs["ImSpan_size"][1]["call_args"] = "()" defs["ImSpan_size"][1]["cimguiname"] = "ImSpan_size" defs["ImSpan_size"][1]["defaults"] = {} defs["ImSpan_size"][1]["funcname"] = "size" +<<<<<<< HEAD defs["ImSpan_size"][1]["location"] = "imgui_internal:633" +======= +defs["ImSpan_size"][1]["location"] = "imgui_internal:646" +>>>>>>> docking_inter defs["ImSpan_size"][1]["ov_cimguiname"] = "ImSpan_size" defs["ImSpan_size"][1]["ret"] = "int" defs["ImSpan_size"][1]["signature"] = "()const" @@ -9911,7 +12029,11 @@ defs["ImSpan_size_in_bytes"][1]["call_args"] = "()" defs["ImSpan_size_in_bytes"][1]["cimguiname"] = "ImSpan_size_in_bytes" defs["ImSpan_size_in_bytes"][1]["defaults"] = {} defs["ImSpan_size_in_bytes"][1]["funcname"] = "size_in_bytes" +<<<<<<< HEAD defs["ImSpan_size_in_bytes"][1]["location"] = "imgui_internal:634" +======= +defs["ImSpan_size_in_bytes"][1]["location"] = "imgui_internal:647" +>>>>>>> docking_inter defs["ImSpan_size_in_bytes"][1]["ov_cimguiname"] = "ImSpan_size_in_bytes" defs["ImSpan_size_in_bytes"][1]["ret"] = "int" defs["ImSpan_size_in_bytes"][1]["signature"] = "()const" @@ -9928,7 +12050,11 @@ defs["ImVec1_ImVec1"][1]["cimguiname"] = "ImVec1_ImVec1" defs["ImVec1_ImVec1"][1]["constructor"] = true defs["ImVec1_ImVec1"][1]["defaults"] = {} defs["ImVec1_ImVec1"][1]["funcname"] = "ImVec1" +<<<<<<< HEAD defs["ImVec1_ImVec1"][1]["location"] = "imgui_internal:514" +======= +defs["ImVec1_ImVec1"][1]["location"] = "imgui_internal:527" +>>>>>>> docking_inter defs["ImVec1_ImVec1"][1]["ov_cimguiname"] = "ImVec1_ImVec1_Nil" defs["ImVec1_ImVec1"][1]["signature"] = "()" defs["ImVec1_ImVec1"][1]["stname"] = "ImVec1" @@ -9944,7 +12070,11 @@ defs["ImVec1_ImVec1"][2]["cimguiname"] = "ImVec1_ImVec1" defs["ImVec1_ImVec1"][2]["constructor"] = true defs["ImVec1_ImVec1"][2]["defaults"] = {} defs["ImVec1_ImVec1"][2]["funcname"] = "ImVec1" +<<<<<<< HEAD defs["ImVec1_ImVec1"][2]["location"] = "imgui_internal:515" +======= +defs["ImVec1_ImVec1"][2]["location"] = "imgui_internal:528" +>>>>>>> docking_inter defs["ImVec1_ImVec1"][2]["ov_cimguiname"] = "ImVec1_ImVec1_Float" defs["ImVec1_ImVec1"][2]["signature"] = "(float)" defs["ImVec1_ImVec1"][2]["stname"] = "ImVec1" @@ -9976,7 +12106,11 @@ defs["ImVec2_ImVec2"][1]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][1]["constructor"] = true defs["ImVec2_ImVec2"][1]["defaults"] = {} defs["ImVec2_ImVec2"][1]["funcname"] = "ImVec2" +<<<<<<< HEAD defs["ImVec2_ImVec2"][1]["location"] = "imgui:276" +======= +defs["ImVec2_ImVec2"][1]["location"] = "imgui:283" +>>>>>>> docking_inter defs["ImVec2_ImVec2"][1]["ov_cimguiname"] = "ImVec2_ImVec2_Nil" defs["ImVec2_ImVec2"][1]["signature"] = "()" defs["ImVec2_ImVec2"][1]["stname"] = "ImVec2" @@ -9995,7 +12129,11 @@ defs["ImVec2_ImVec2"][2]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][2]["constructor"] = true defs["ImVec2_ImVec2"][2]["defaults"] = {} defs["ImVec2_ImVec2"][2]["funcname"] = "ImVec2" +<<<<<<< HEAD defs["ImVec2_ImVec2"][2]["location"] = "imgui:277" +======= +defs["ImVec2_ImVec2"][2]["location"] = "imgui:284" +>>>>>>> docking_inter defs["ImVec2_ImVec2"][2]["ov_cimguiname"] = "ImVec2_ImVec2_Float" defs["ImVec2_ImVec2"][2]["signature"] = "(float,float)" defs["ImVec2_ImVec2"][2]["stname"] = "ImVec2" @@ -10027,7 +12165,11 @@ defs["ImVec2ih_ImVec2ih"][1]["cimguiname"] = "ImVec2ih_ImVec2ih" defs["ImVec2ih_ImVec2ih"][1]["constructor"] = true defs["ImVec2ih_ImVec2ih"][1]["defaults"] = {} defs["ImVec2ih_ImVec2ih"][1]["funcname"] = "ImVec2ih" +<<<<<<< HEAD defs["ImVec2ih_ImVec2ih"][1]["location"] = "imgui_internal:522" +======= +defs["ImVec2ih_ImVec2ih"][1]["location"] = "imgui_internal:535" +>>>>>>> docking_inter defs["ImVec2ih_ImVec2ih"][1]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_Nil" defs["ImVec2ih_ImVec2ih"][1]["signature"] = "()" defs["ImVec2ih_ImVec2ih"][1]["stname"] = "ImVec2ih" @@ -10046,7 +12188,11 @@ defs["ImVec2ih_ImVec2ih"][2]["cimguiname"] = "ImVec2ih_ImVec2ih" defs["ImVec2ih_ImVec2ih"][2]["constructor"] = true defs["ImVec2ih_ImVec2ih"][2]["defaults"] = {} defs["ImVec2ih_ImVec2ih"][2]["funcname"] = "ImVec2ih" +<<<<<<< HEAD defs["ImVec2ih_ImVec2ih"][2]["location"] = "imgui_internal:523" +======= +defs["ImVec2ih_ImVec2ih"][2]["location"] = "imgui_internal:536" +>>>>>>> docking_inter defs["ImVec2ih_ImVec2ih"][2]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_short" defs["ImVec2ih_ImVec2ih"][2]["signature"] = "(short,short)" defs["ImVec2ih_ImVec2ih"][2]["stname"] = "ImVec2ih" @@ -10062,7 +12208,11 @@ defs["ImVec2ih_ImVec2ih"][3]["cimguiname"] = "ImVec2ih_ImVec2ih" defs["ImVec2ih_ImVec2ih"][3]["constructor"] = true defs["ImVec2ih_ImVec2ih"][3]["defaults"] = {} defs["ImVec2ih_ImVec2ih"][3]["funcname"] = "ImVec2ih" +<<<<<<< HEAD defs["ImVec2ih_ImVec2ih"][3]["location"] = "imgui_internal:524" +======= +defs["ImVec2ih_ImVec2ih"][3]["location"] = "imgui_internal:537" +>>>>>>> docking_inter defs["ImVec2ih_ImVec2ih"][3]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_Vec2" defs["ImVec2ih_ImVec2ih"][3]["signature"] = "(const ImVec2)" defs["ImVec2ih_ImVec2ih"][3]["stname"] = "ImVec2ih" @@ -10095,7 +12245,11 @@ defs["ImVec4_ImVec4"][1]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][1]["constructor"] = true defs["ImVec4_ImVec4"][1]["defaults"] = {} defs["ImVec4_ImVec4"][1]["funcname"] = "ImVec4" +<<<<<<< HEAD defs["ImVec4_ImVec4"][1]["location"] = "imgui:289" +======= +defs["ImVec4_ImVec4"][1]["location"] = "imgui:296" +>>>>>>> docking_inter defs["ImVec4_ImVec4"][1]["ov_cimguiname"] = "ImVec4_ImVec4_Nil" defs["ImVec4_ImVec4"][1]["signature"] = "()" defs["ImVec4_ImVec4"][1]["stname"] = "ImVec4" @@ -10120,7 +12274,11 @@ defs["ImVec4_ImVec4"][2]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][2]["constructor"] = true defs["ImVec4_ImVec4"][2]["defaults"] = {} defs["ImVec4_ImVec4"][2]["funcname"] = "ImVec4" +<<<<<<< HEAD defs["ImVec4_ImVec4"][2]["location"] = "imgui:290" +======= +defs["ImVec4_ImVec4"][2]["location"] = "imgui:297" +>>>>>>> docking_inter defs["ImVec4_ImVec4"][2]["ov_cimguiname"] = "ImVec4_ImVec4_Float" defs["ImVec4_ImVec4"][2]["signature"] = "(float,float,float,float)" defs["ImVec4_ImVec4"][2]["stname"] = "ImVec4" @@ -10152,7 +12310,11 @@ defs["ImVector_ImVector"][1]["cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][1]["constructor"] = true defs["ImVector_ImVector"][1]["defaults"] = {} defs["ImVector_ImVector"][1]["funcname"] = "ImVector" +<<<<<<< HEAD defs["ImVector_ImVector"][1]["location"] = "imgui:1983" +======= +defs["ImVector_ImVector"][1]["location"] = "imgui:2083" +>>>>>>> docking_inter defs["ImVector_ImVector"][1]["ov_cimguiname"] = "ImVector_ImVector_Nil" defs["ImVector_ImVector"][1]["signature"] = "()" defs["ImVector_ImVector"][1]["stname"] = "ImVector" @@ -10169,7 +12331,11 @@ defs["ImVector_ImVector"][2]["cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][2]["constructor"] = true defs["ImVector_ImVector"][2]["defaults"] = {} defs["ImVector_ImVector"][2]["funcname"] = "ImVector" +<<<<<<< HEAD defs["ImVector_ImVector"][2]["location"] = "imgui:1984" +======= +defs["ImVector_ImVector"][2]["location"] = "imgui:2084" +>>>>>>> docking_inter defs["ImVector_ImVector"][2]["ov_cimguiname"] = "ImVector_ImVector_Vector_T_" defs["ImVector_ImVector"][2]["signature"] = "(const ImVector_T )" defs["ImVector_ImVector"][2]["stname"] = "ImVector" @@ -10191,7 +12357,11 @@ defs["ImVector__grow_capacity"][1]["call_args"] = "(sz)" defs["ImVector__grow_capacity"][1]["cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["defaults"] = {} defs["ImVector__grow_capacity"][1]["funcname"] = "_grow_capacity" +<<<<<<< HEAD defs["ImVector__grow_capacity"][1]["location"] = "imgui:2010" +======= +defs["ImVector__grow_capacity"][1]["location"] = "imgui:2110" +>>>>>>> docking_inter defs["ImVector__grow_capacity"][1]["ov_cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["ret"] = "int" defs["ImVector__grow_capacity"][1]["signature"] = "(int)const" @@ -10210,7 +12380,11 @@ defs["ImVector_back"][1]["call_args"] = "()" defs["ImVector_back"][1]["cimguiname"] = "ImVector_back" defs["ImVector_back"][1]["defaults"] = {} defs["ImVector_back"][1]["funcname"] = "back" +<<<<<<< HEAD defs["ImVector_back"][1]["location"] = "imgui:2006" +======= +defs["ImVector_back"][1]["location"] = "imgui:2106" +>>>>>>> docking_inter defs["ImVector_back"][1]["ov_cimguiname"] = "ImVector_back_Nil" defs["ImVector_back"][1]["ret"] = "T*" defs["ImVector_back"][1]["retref"] = "&" @@ -10228,7 +12402,11 @@ defs["ImVector_back"][2]["call_args"] = "()" defs["ImVector_back"][2]["cimguiname"] = "ImVector_back" defs["ImVector_back"][2]["defaults"] = {} defs["ImVector_back"][2]["funcname"] = "back" +<<<<<<< HEAD defs["ImVector_back"][2]["location"] = "imgui:2007" +======= +defs["ImVector_back"][2]["location"] = "imgui:2107" +>>>>>>> docking_inter defs["ImVector_back"][2]["ov_cimguiname"] = "ImVector_back__const" defs["ImVector_back"][2]["ret"] = "const T*" defs["ImVector_back"][2]["retref"] = "&" @@ -10249,7 +12427,11 @@ defs["ImVector_begin"][1]["call_args"] = "()" defs["ImVector_begin"][1]["cimguiname"] = "ImVector_begin" defs["ImVector_begin"][1]["defaults"] = {} defs["ImVector_begin"][1]["funcname"] = "begin" +<<<<<<< HEAD defs["ImVector_begin"][1]["location"] = "imgui:2000" +======= +defs["ImVector_begin"][1]["location"] = "imgui:2100" +>>>>>>> docking_inter defs["ImVector_begin"][1]["ov_cimguiname"] = "ImVector_begin_Nil" defs["ImVector_begin"][1]["ret"] = "T*" defs["ImVector_begin"][1]["signature"] = "()" @@ -10266,7 +12448,11 @@ defs["ImVector_begin"][2]["call_args"] = "()" defs["ImVector_begin"][2]["cimguiname"] = "ImVector_begin" defs["ImVector_begin"][2]["defaults"] = {} defs["ImVector_begin"][2]["funcname"] = "begin" +<<<<<<< HEAD defs["ImVector_begin"][2]["location"] = "imgui:2001" +======= +defs["ImVector_begin"][2]["location"] = "imgui:2101" +>>>>>>> docking_inter defs["ImVector_begin"][2]["ov_cimguiname"] = "ImVector_begin__const" defs["ImVector_begin"][2]["ret"] = "const T*" defs["ImVector_begin"][2]["signature"] = "()const" @@ -10286,7 +12472,11 @@ defs["ImVector_capacity"][1]["call_args"] = "()" defs["ImVector_capacity"][1]["cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["defaults"] = {} defs["ImVector_capacity"][1]["funcname"] = "capacity" +<<<<<<< HEAD defs["ImVector_capacity"][1]["location"] = "imgui:1996" +======= +defs["ImVector_capacity"][1]["location"] = "imgui:2096" +>>>>>>> docking_inter defs["ImVector_capacity"][1]["ov_cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["ret"] = "int" defs["ImVector_capacity"][1]["signature"] = "()const" @@ -10305,7 +12495,11 @@ defs["ImVector_clear"][1]["call_args"] = "()" defs["ImVector_clear"][1]["cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["defaults"] = {} defs["ImVector_clear"][1]["funcname"] = "clear" +<<<<<<< HEAD defs["ImVector_clear"][1]["location"] = "imgui:1988" +======= +defs["ImVector_clear"][1]["location"] = "imgui:2088" +>>>>>>> docking_inter defs["ImVector_clear"][1]["ov_cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["ret"] = "void" defs["ImVector_clear"][1]["signature"] = "()" @@ -10324,7 +12518,11 @@ defs["ImVector_clear_delete"][1]["call_args"] = "()" defs["ImVector_clear_delete"][1]["cimguiname"] = "ImVector_clear_delete" defs["ImVector_clear_delete"][1]["defaults"] = {} defs["ImVector_clear_delete"][1]["funcname"] = "clear_delete" +<<<<<<< HEAD defs["ImVector_clear_delete"][1]["location"] = "imgui:1989" +======= +defs["ImVector_clear_delete"][1]["location"] = "imgui:2089" +>>>>>>> docking_inter defs["ImVector_clear_delete"][1]["ov_cimguiname"] = "ImVector_clear_delete" defs["ImVector_clear_delete"][1]["ret"] = "void" defs["ImVector_clear_delete"][1]["signature"] = "()" @@ -10343,7 +12541,11 @@ defs["ImVector_clear_destruct"][1]["call_args"] = "()" defs["ImVector_clear_destruct"][1]["cimguiname"] = "ImVector_clear_destruct" defs["ImVector_clear_destruct"][1]["defaults"] = {} defs["ImVector_clear_destruct"][1]["funcname"] = "clear_destruct" +<<<<<<< HEAD defs["ImVector_clear_destruct"][1]["location"] = "imgui:1990" +======= +defs["ImVector_clear_destruct"][1]["location"] = "imgui:2090" +>>>>>>> docking_inter defs["ImVector_clear_destruct"][1]["ov_cimguiname"] = "ImVector_clear_destruct" defs["ImVector_clear_destruct"][1]["ret"] = "void" defs["ImVector_clear_destruct"][1]["signature"] = "()" @@ -10365,7 +12567,11 @@ defs["ImVector_contains"][1]["call_args"] = "(v)" defs["ImVector_contains"][1]["cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["defaults"] = {} defs["ImVector_contains"][1]["funcname"] = "contains" +<<<<<<< HEAD defs["ImVector_contains"][1]["location"] = "imgui:2025" +======= +defs["ImVector_contains"][1]["location"] = "imgui:2125" +>>>>>>> docking_inter defs["ImVector_contains"][1]["ov_cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["ret"] = "bool" defs["ImVector_contains"][1]["signature"] = "(const T)const" @@ -10383,7 +12589,11 @@ defs["ImVector_destroy"][1]["call_args"] = "(self)" defs["ImVector_destroy"][1]["cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["defaults"] = {} defs["ImVector_destroy"][1]["destructor"] = true +<<<<<<< HEAD defs["ImVector_destroy"][1]["location"] = "imgui:1986" +======= +defs["ImVector_destroy"][1]["location"] = "imgui:2086" +>>>>>>> docking_inter defs["ImVector_destroy"][1]["ov_cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["realdestructor"] = true defs["ImVector_destroy"][1]["ret"] = "void" @@ -10403,7 +12613,11 @@ defs["ImVector_empty"][1]["call_args"] = "()" defs["ImVector_empty"][1]["cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["defaults"] = {} defs["ImVector_empty"][1]["funcname"] = "empty" +<<<<<<< HEAD defs["ImVector_empty"][1]["location"] = "imgui:1992" +======= +defs["ImVector_empty"][1]["location"] = "imgui:2092" +>>>>>>> docking_inter defs["ImVector_empty"][1]["ov_cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["ret"] = "bool" defs["ImVector_empty"][1]["signature"] = "()const" @@ -10422,7 +12636,11 @@ defs["ImVector_end"][1]["call_args"] = "()" defs["ImVector_end"][1]["cimguiname"] = "ImVector_end" defs["ImVector_end"][1]["defaults"] = {} defs["ImVector_end"][1]["funcname"] = "end" +<<<<<<< HEAD defs["ImVector_end"][1]["location"] = "imgui:2002" +======= +defs["ImVector_end"][1]["location"] = "imgui:2102" +>>>>>>> docking_inter defs["ImVector_end"][1]["ov_cimguiname"] = "ImVector_end_Nil" defs["ImVector_end"][1]["ret"] = "T*" defs["ImVector_end"][1]["signature"] = "()" @@ -10439,7 +12657,11 @@ defs["ImVector_end"][2]["call_args"] = "()" defs["ImVector_end"][2]["cimguiname"] = "ImVector_end" defs["ImVector_end"][2]["defaults"] = {} defs["ImVector_end"][2]["funcname"] = "end" +<<<<<<< HEAD defs["ImVector_end"][2]["location"] = "imgui:2003" +======= +defs["ImVector_end"][2]["location"] = "imgui:2103" +>>>>>>> docking_inter defs["ImVector_end"][2]["ov_cimguiname"] = "ImVector_end__const" defs["ImVector_end"][2]["ret"] = "const T*" defs["ImVector_end"][2]["signature"] = "()const" @@ -10462,7 +12684,11 @@ defs["ImVector_erase"][1]["call_args"] = "(it)" defs["ImVector_erase"][1]["cimguiname"] = "ImVector_erase" defs["ImVector_erase"][1]["defaults"] = {} defs["ImVector_erase"][1]["funcname"] = "erase" +<<<<<<< HEAD defs["ImVector_erase"][1]["location"] = "imgui:2021" +======= +defs["ImVector_erase"][1]["location"] = "imgui:2121" +>>>>>>> docking_inter defs["ImVector_erase"][1]["ov_cimguiname"] = "ImVector_erase_Nil" defs["ImVector_erase"][1]["ret"] = "T*" defs["ImVector_erase"][1]["signature"] = "(const T*)" @@ -10485,7 +12711,11 @@ defs["ImVector_erase"][2]["call_args"] = "(it,it_last)" defs["ImVector_erase"][2]["cimguiname"] = "ImVector_erase" defs["ImVector_erase"][2]["defaults"] = {} defs["ImVector_erase"][2]["funcname"] = "erase" +<<<<<<< HEAD defs["ImVector_erase"][2]["location"] = "imgui:2022" +======= +defs["ImVector_erase"][2]["location"] = "imgui:2122" +>>>>>>> docking_inter defs["ImVector_erase"][2]["ov_cimguiname"] = "ImVector_erase_TPtr" defs["ImVector_erase"][2]["ret"] = "T*" defs["ImVector_erase"][2]["signature"] = "(const T*,const T*)" @@ -10508,7 +12738,11 @@ defs["ImVector_erase_unsorted"][1]["call_args"] = "(it)" defs["ImVector_erase_unsorted"][1]["cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["defaults"] = {} defs["ImVector_erase_unsorted"][1]["funcname"] = "erase_unsorted" +<<<<<<< HEAD defs["ImVector_erase_unsorted"][1]["location"] = "imgui:2023" +======= +defs["ImVector_erase_unsorted"][1]["location"] = "imgui:2123" +>>>>>>> docking_inter defs["ImVector_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["ret"] = "T*" defs["ImVector_erase_unsorted"][1]["signature"] = "(const T*)" @@ -10530,7 +12764,11 @@ defs["ImVector_find"][1]["call_args"] = "(v)" defs["ImVector_find"][1]["cimguiname"] = "ImVector_find" defs["ImVector_find"][1]["defaults"] = {} defs["ImVector_find"][1]["funcname"] = "find" +<<<<<<< HEAD defs["ImVector_find"][1]["location"] = "imgui:2026" +======= +defs["ImVector_find"][1]["location"] = "imgui:2126" +>>>>>>> docking_inter defs["ImVector_find"][1]["ov_cimguiname"] = "ImVector_find_Nil" defs["ImVector_find"][1]["ret"] = "T*" defs["ImVector_find"][1]["signature"] = "(const T)" @@ -10550,7 +12788,11 @@ defs["ImVector_find"][2]["call_args"] = "(v)" defs["ImVector_find"][2]["cimguiname"] = "ImVector_find" defs["ImVector_find"][2]["defaults"] = {} defs["ImVector_find"][2]["funcname"] = "find" +<<<<<<< HEAD defs["ImVector_find"][2]["location"] = "imgui:2027" +======= +defs["ImVector_find"][2]["location"] = "imgui:2127" +>>>>>>> docking_inter defs["ImVector_find"][2]["ov_cimguiname"] = "ImVector_find__const" defs["ImVector_find"][2]["ret"] = "const T*" defs["ImVector_find"][2]["signature"] = "(const T)const" @@ -10573,7 +12815,11 @@ defs["ImVector_find_erase"][1]["call_args"] = "(v)" defs["ImVector_find_erase"][1]["cimguiname"] = "ImVector_find_erase" defs["ImVector_find_erase"][1]["defaults"] = {} defs["ImVector_find_erase"][1]["funcname"] = "find_erase" +<<<<<<< HEAD defs["ImVector_find_erase"][1]["location"] = "imgui:2029" +======= +defs["ImVector_find_erase"][1]["location"] = "imgui:2129" +>>>>>>> docking_inter defs["ImVector_find_erase"][1]["ov_cimguiname"] = "ImVector_find_erase" defs["ImVector_find_erase"][1]["ret"] = "bool" defs["ImVector_find_erase"][1]["signature"] = "(const T)" @@ -10595,7 +12841,11 @@ defs["ImVector_find_erase_unsorted"][1]["call_args"] = "(v)" defs["ImVector_find_erase_unsorted"][1]["cimguiname"] = "ImVector_find_erase_unsorted" defs["ImVector_find_erase_unsorted"][1]["defaults"] = {} defs["ImVector_find_erase_unsorted"][1]["funcname"] = "find_erase_unsorted" +<<<<<<< HEAD defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui:2030" +======= +defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui:2130" +>>>>>>> docking_inter defs["ImVector_find_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_find_erase_unsorted" defs["ImVector_find_erase_unsorted"][1]["ret"] = "bool" defs["ImVector_find_erase_unsorted"][1]["signature"] = "(const T)" @@ -10617,7 +12867,11 @@ defs["ImVector_find_index"][1]["call_args"] = "(v)" defs["ImVector_find_index"][1]["cimguiname"] = "ImVector_find_index" defs["ImVector_find_index"][1]["defaults"] = {} defs["ImVector_find_index"][1]["funcname"] = "find_index" +<<<<<<< HEAD defs["ImVector_find_index"][1]["location"] = "imgui:2028" +======= +defs["ImVector_find_index"][1]["location"] = "imgui:2128" +>>>>>>> docking_inter defs["ImVector_find_index"][1]["ov_cimguiname"] = "ImVector_find_index" defs["ImVector_find_index"][1]["ret"] = "int" defs["ImVector_find_index"][1]["signature"] = "(const T)const" @@ -10636,7 +12890,11 @@ defs["ImVector_front"][1]["call_args"] = "()" defs["ImVector_front"][1]["cimguiname"] = "ImVector_front" defs["ImVector_front"][1]["defaults"] = {} defs["ImVector_front"][1]["funcname"] = "front" +<<<<<<< HEAD defs["ImVector_front"][1]["location"] = "imgui:2004" +======= +defs["ImVector_front"][1]["location"] = "imgui:2104" +>>>>>>> docking_inter defs["ImVector_front"][1]["ov_cimguiname"] = "ImVector_front_Nil" defs["ImVector_front"][1]["ret"] = "T*" defs["ImVector_front"][1]["retref"] = "&" @@ -10654,7 +12912,11 @@ defs["ImVector_front"][2]["call_args"] = "()" defs["ImVector_front"][2]["cimguiname"] = "ImVector_front" defs["ImVector_front"][2]["defaults"] = {} defs["ImVector_front"][2]["funcname"] = "front" +<<<<<<< HEAD defs["ImVector_front"][2]["location"] = "imgui:2005" +======= +defs["ImVector_front"][2]["location"] = "imgui:2105" +>>>>>>> docking_inter defs["ImVector_front"][2]["ov_cimguiname"] = "ImVector_front__const" defs["ImVector_front"][2]["ret"] = "const T*" defs["ImVector_front"][2]["retref"] = "&" @@ -10678,7 +12940,11 @@ defs["ImVector_index_from_ptr"][1]["call_args"] = "(it)" defs["ImVector_index_from_ptr"][1]["cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["defaults"] = {} defs["ImVector_index_from_ptr"][1]["funcname"] = "index_from_ptr" +<<<<<<< HEAD defs["ImVector_index_from_ptr"][1]["location"] = "imgui:2031" +======= +defs["ImVector_index_from_ptr"][1]["location"] = "imgui:2131" +>>>>>>> docking_inter defs["ImVector_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["ret"] = "int" defs["ImVector_index_from_ptr"][1]["signature"] = "(const T*)const" @@ -10703,7 +12969,11 @@ defs["ImVector_insert"][1]["call_args"] = "(it,v)" defs["ImVector_insert"][1]["cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["defaults"] = {} defs["ImVector_insert"][1]["funcname"] = "insert" +<<<<<<< HEAD defs["ImVector_insert"][1]["location"] = "imgui:2024" +======= +defs["ImVector_insert"][1]["location"] = "imgui:2124" +>>>>>>> docking_inter defs["ImVector_insert"][1]["ov_cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["ret"] = "T*" defs["ImVector_insert"][1]["signature"] = "(const T*,const T)" @@ -10722,7 +12992,11 @@ defs["ImVector_max_size"][1]["call_args"] = "()" defs["ImVector_max_size"][1]["cimguiname"] = "ImVector_max_size" defs["ImVector_max_size"][1]["defaults"] = {} defs["ImVector_max_size"][1]["funcname"] = "max_size" +<<<<<<< HEAD defs["ImVector_max_size"][1]["location"] = "imgui:1995" +======= +defs["ImVector_max_size"][1]["location"] = "imgui:2095" +>>>>>>> docking_inter defs["ImVector_max_size"][1]["ov_cimguiname"] = "ImVector_max_size" defs["ImVector_max_size"][1]["ret"] = "int" defs["ImVector_max_size"][1]["signature"] = "()const" @@ -10741,7 +13015,11 @@ defs["ImVector_pop_back"][1]["call_args"] = "()" defs["ImVector_pop_back"][1]["cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["defaults"] = {} defs["ImVector_pop_back"][1]["funcname"] = "pop_back" +<<<<<<< HEAD defs["ImVector_pop_back"][1]["location"] = "imgui:2019" +======= +defs["ImVector_pop_back"][1]["location"] = "imgui:2119" +>>>>>>> docking_inter defs["ImVector_pop_back"][1]["ov_cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["ret"] = "void" defs["ImVector_pop_back"][1]["signature"] = "()" @@ -10763,7 +13041,11 @@ defs["ImVector_push_back"][1]["call_args"] = "(v)" defs["ImVector_push_back"][1]["cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["defaults"] = {} defs["ImVector_push_back"][1]["funcname"] = "push_back" +<<<<<<< HEAD defs["ImVector_push_back"][1]["location"] = "imgui:2018" +======= +defs["ImVector_push_back"][1]["location"] = "imgui:2118" +>>>>>>> docking_inter defs["ImVector_push_back"][1]["ov_cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["ret"] = "void" defs["ImVector_push_back"][1]["signature"] = "(const T)" @@ -10785,7 +13067,11 @@ defs["ImVector_push_front"][1]["call_args"] = "(v)" defs["ImVector_push_front"][1]["cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["defaults"] = {} defs["ImVector_push_front"][1]["funcname"] = "push_front" +<<<<<<< HEAD defs["ImVector_push_front"][1]["location"] = "imgui:2020" +======= +defs["ImVector_push_front"][1]["location"] = "imgui:2120" +>>>>>>> docking_inter defs["ImVector_push_front"][1]["ov_cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["ret"] = "void" defs["ImVector_push_front"][1]["signature"] = "(const T)" @@ -10807,7 +13093,11 @@ defs["ImVector_reserve"][1]["call_args"] = "(new_capacity)" defs["ImVector_reserve"][1]["cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["defaults"] = {} defs["ImVector_reserve"][1]["funcname"] = "reserve" +<<<<<<< HEAD defs["ImVector_reserve"][1]["location"] = "imgui:2014" +======= +defs["ImVector_reserve"][1]["location"] = "imgui:2114" +>>>>>>> docking_inter defs["ImVector_reserve"][1]["ov_cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["ret"] = "void" defs["ImVector_reserve"][1]["signature"] = "(int)" @@ -10829,7 +13119,11 @@ defs["ImVector_reserve_discard"][1]["call_args"] = "(new_capacity)" defs["ImVector_reserve_discard"][1]["cimguiname"] = "ImVector_reserve_discard" defs["ImVector_reserve_discard"][1]["defaults"] = {} defs["ImVector_reserve_discard"][1]["funcname"] = "reserve_discard" +<<<<<<< HEAD defs["ImVector_reserve_discard"][1]["location"] = "imgui:2015" +======= +defs["ImVector_reserve_discard"][1]["location"] = "imgui:2115" +>>>>>>> docking_inter defs["ImVector_reserve_discard"][1]["ov_cimguiname"] = "ImVector_reserve_discard" defs["ImVector_reserve_discard"][1]["ret"] = "void" defs["ImVector_reserve_discard"][1]["signature"] = "(int)" @@ -10851,7 +13145,11 @@ defs["ImVector_resize"][1]["call_args"] = "(new_size)" defs["ImVector_resize"][1]["cimguiname"] = "ImVector_resize" defs["ImVector_resize"][1]["defaults"] = {} defs["ImVector_resize"][1]["funcname"] = "resize" +<<<<<<< HEAD defs["ImVector_resize"][1]["location"] = "imgui:2011" +======= +defs["ImVector_resize"][1]["location"] = "imgui:2111" +>>>>>>> docking_inter defs["ImVector_resize"][1]["ov_cimguiname"] = "ImVector_resize_Nil" defs["ImVector_resize"][1]["ret"] = "void" defs["ImVector_resize"][1]["signature"] = "(int)" @@ -10874,7 +13172,11 @@ defs["ImVector_resize"][2]["call_args"] = "(new_size,v)" defs["ImVector_resize"][2]["cimguiname"] = "ImVector_resize" defs["ImVector_resize"][2]["defaults"] = {} defs["ImVector_resize"][2]["funcname"] = "resize" +<<<<<<< HEAD defs["ImVector_resize"][2]["location"] = "imgui:2012" +======= +defs["ImVector_resize"][2]["location"] = "imgui:2112" +>>>>>>> docking_inter defs["ImVector_resize"][2]["ov_cimguiname"] = "ImVector_resize_T" defs["ImVector_resize"][2]["ret"] = "void" defs["ImVector_resize"][2]["signature"] = "(int,const T)" @@ -10897,7 +13199,11 @@ defs["ImVector_shrink"][1]["call_args"] = "(new_size)" defs["ImVector_shrink"][1]["cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["defaults"] = {} defs["ImVector_shrink"][1]["funcname"] = "shrink" +<<<<<<< HEAD defs["ImVector_shrink"][1]["location"] = "imgui:2013" +======= +defs["ImVector_shrink"][1]["location"] = "imgui:2113" +>>>>>>> docking_inter defs["ImVector_shrink"][1]["ov_cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["ret"] = "void" defs["ImVector_shrink"][1]["signature"] = "(int)" @@ -10916,7 +13222,11 @@ defs["ImVector_size"][1]["call_args"] = "()" defs["ImVector_size"][1]["cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["defaults"] = {} defs["ImVector_size"][1]["funcname"] = "size" +<<<<<<< HEAD defs["ImVector_size"][1]["location"] = "imgui:1993" +======= +defs["ImVector_size"][1]["location"] = "imgui:2093" +>>>>>>> docking_inter defs["ImVector_size"][1]["ov_cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["ret"] = "int" defs["ImVector_size"][1]["signature"] = "()const" @@ -10935,7 +13245,11 @@ defs["ImVector_size_in_bytes"][1]["call_args"] = "()" defs["ImVector_size_in_bytes"][1]["cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["defaults"] = {} defs["ImVector_size_in_bytes"][1]["funcname"] = "size_in_bytes" +<<<<<<< HEAD defs["ImVector_size_in_bytes"][1]["location"] = "imgui:1994" +======= +defs["ImVector_size_in_bytes"][1]["location"] = "imgui:2094" +>>>>>>> docking_inter defs["ImVector_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["ret"] = "int" defs["ImVector_size_in_bytes"][1]["signature"] = "()const" @@ -10958,7 +13272,11 @@ defs["ImVector_swap"][1]["call_args"] = "(*rhs)" defs["ImVector_swap"][1]["cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["defaults"] = {} defs["ImVector_swap"][1]["funcname"] = "swap" +<<<<<<< HEAD defs["ImVector_swap"][1]["location"] = "imgui:2008" +======= +defs["ImVector_swap"][1]["location"] = "imgui:2108" +>>>>>>> docking_inter defs["ImVector_swap"][1]["ov_cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["ret"] = "void" defs["ImVector_swap"][1]["signature"] = "(ImVector_T *)" @@ -10981,7 +13299,11 @@ defs["igAcceptDragDropPayload"][1]["cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["defaults"] = {} defs["igAcceptDragDropPayload"][1]["defaults"]["flags"] = "0" defs["igAcceptDragDropPayload"][1]["funcname"] = "AcceptDragDropPayload" +<<<<<<< HEAD defs["igAcceptDragDropPayload"][1]["location"] = "imgui:855" +======= +defs["igAcceptDragDropPayload"][1]["location"] = "imgui:886" +>>>>>>> docking_inter defs["igAcceptDragDropPayload"][1]["namespace"] = "ImGui" defs["igAcceptDragDropPayload"][1]["ov_cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -11000,7 +13322,11 @@ defs["igActivateItemByID"][1]["call_args"] = "(id)" defs["igActivateItemByID"][1]["cimguiname"] = "igActivateItemByID" defs["igActivateItemByID"][1]["defaults"] = {} defs["igActivateItemByID"][1]["funcname"] = "ActivateItemByID" +<<<<<<< HEAD defs["igActivateItemByID"][1]["location"] = "imgui_internal:3196" +======= +defs["igActivateItemByID"][1]["location"] = "imgui_internal:3470" +>>>>>>> docking_inter defs["igActivateItemByID"][1]["namespace"] = "ImGui" defs["igActivateItemByID"][1]["ov_cimguiname"] = "igActivateItemByID" defs["igActivateItemByID"][1]["ret"] = "void" @@ -11022,7 +13348,11 @@ defs["igAddContextHook"][1]["call_args"] = "(context,hook)" defs["igAddContextHook"][1]["cimguiname"] = "igAddContextHook" defs["igAddContextHook"][1]["defaults"] = {} defs["igAddContextHook"][1]["funcname"] = "AddContextHook" +<<<<<<< HEAD defs["igAddContextHook"][1]["location"] = "imgui_internal:3063" +======= +defs["igAddContextHook"][1]["location"] = "imgui_internal:3327" +>>>>>>> docking_inter defs["igAddContextHook"][1]["namespace"] = "ImGui" defs["igAddContextHook"][1]["ov_cimguiname"] = "igAddContextHook" defs["igAddContextHook"][1]["ret"] = "ImGuiID" @@ -11047,7 +13377,11 @@ defs["igAddDrawListToDrawDataEx"][1]["call_args"] = "(draw_data,out_list,draw_li defs["igAddDrawListToDrawDataEx"][1]["cimguiname"] = "igAddDrawListToDrawDataEx" defs["igAddDrawListToDrawDataEx"][1]["defaults"] = {} defs["igAddDrawListToDrawDataEx"][1]["funcname"] = "AddDrawListToDrawDataEx" +<<<<<<< HEAD defs["igAddDrawListToDrawDataEx"][1]["location"] = "imgui_internal:3048" +======= +defs["igAddDrawListToDrawDataEx"][1]["location"] = "imgui_internal:3311" +>>>>>>> docking_inter defs["igAddDrawListToDrawDataEx"][1]["namespace"] = "ImGui" defs["igAddDrawListToDrawDataEx"][1]["ov_cimguiname"] = "igAddDrawListToDrawDataEx" defs["igAddDrawListToDrawDataEx"][1]["ret"] = "void" @@ -11066,7 +13400,11 @@ defs["igAddSettingsHandler"][1]["call_args"] = "(handler)" defs["igAddSettingsHandler"][1]["cimguiname"] = "igAddSettingsHandler" defs["igAddSettingsHandler"][1]["defaults"] = {} defs["igAddSettingsHandler"][1]["funcname"] = "AddSettingsHandler" +<<<<<<< HEAD defs["igAddSettingsHandler"][1]["location"] = "imgui_internal:3074" +======= +defs["igAddSettingsHandler"][1]["location"] = "imgui_internal:3344" +>>>>>>> docking_inter defs["igAddSettingsHandler"][1]["namespace"] = "ImGui" defs["igAddSettingsHandler"][1]["ov_cimguiname"] = "igAddSettingsHandler" defs["igAddSettingsHandler"][1]["ret"] = "void" @@ -11082,7 +13420,11 @@ defs["igAlignTextToFramePadding"][1]["call_args"] = "()" defs["igAlignTextToFramePadding"][1]["cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["defaults"] = {} defs["igAlignTextToFramePadding"][1]["funcname"] = "AlignTextToFramePadding" +<<<<<<< HEAD defs["igAlignTextToFramePadding"][1]["location"] = "imgui:489" +======= +defs["igAlignTextToFramePadding"][1]["location"] = "imgui:499" +>>>>>>> docking_inter defs["igAlignTextToFramePadding"][1]["namespace"] = "ImGui" defs["igAlignTextToFramePadding"][1]["ov_cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["ret"] = "void" @@ -11104,7 +13446,11 @@ defs["igArrowButton"][1]["call_args"] = "(str_id,dir)" defs["igArrowButton"][1]["cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["defaults"] = {} defs["igArrowButton"][1]["funcname"] = "ArrowButton" +<<<<<<< HEAD defs["igArrowButton"][1]["location"] = "imgui:537" +======= +defs["igArrowButton"][1]["location"] = "imgui:547" +>>>>>>> docking_inter defs["igArrowButton"][1]["namespace"] = "ImGui" defs["igArrowButton"][1]["ov_cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["ret"] = "bool" @@ -11133,7 +13479,11 @@ defs["igArrowButtonEx"][1]["cimguiname"] = "igArrowButtonEx" defs["igArrowButtonEx"][1]["defaults"] = {} defs["igArrowButtonEx"][1]["defaults"]["flags"] = "0" defs["igArrowButtonEx"][1]["funcname"] = "ArrowButtonEx" +<<<<<<< HEAD defs["igArrowButtonEx"][1]["location"] = "imgui_internal:3423" +======= +defs["igArrowButtonEx"][1]["location"] = "imgui_internal:3755" +>>>>>>> docking_inter defs["igArrowButtonEx"][1]["namespace"] = "ImGui" defs["igArrowButtonEx"][1]["ov_cimguiname"] = "igArrowButtonEx" defs["igArrowButtonEx"][1]["ret"] = "bool" @@ -11160,7 +13510,11 @@ defs["igBegin"][1]["defaults"] = {} defs["igBegin"][1]["defaults"]["flags"] = "0" defs["igBegin"][1]["defaults"]["p_open"] = "NULL" defs["igBegin"][1]["funcname"] = "Begin" +<<<<<<< HEAD defs["igBegin"][1]["location"] = "imgui:350" +======= +defs["igBegin"][1]["location"] = "imgui:357" +>>>>>>> docking_inter defs["igBegin"][1]["namespace"] = "ImGui" defs["igBegin"][1]["ov_cimguiname"] = "igBegin" defs["igBegin"][1]["ret"] = "bool" @@ -11191,7 +13545,11 @@ defs["igBeginChild"][1]["defaults"]["child_flags"] = "0" defs["igBeginChild"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginChild"][1]["defaults"]["window_flags"] = "0" defs["igBeginChild"][1]["funcname"] = "BeginChild" +<<<<<<< HEAD defs["igBeginChild"][1]["location"] = "imgui:371" +======= +defs["igBeginChild"][1]["location"] = "imgui:378" +>>>>>>> docking_inter defs["igBeginChild"][1]["namespace"] = "ImGui" defs["igBeginChild"][1]["ov_cimguiname"] = "igBeginChild_Str" defs["igBeginChild"][1]["ret"] = "bool" @@ -11220,7 +13578,11 @@ defs["igBeginChild"][2]["defaults"]["child_flags"] = "0" defs["igBeginChild"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginChild"][2]["defaults"]["window_flags"] = "0" defs["igBeginChild"][2]["funcname"] = "BeginChild" +<<<<<<< HEAD defs["igBeginChild"][2]["location"] = "imgui:372" +======= +defs["igBeginChild"][2]["location"] = "imgui:379" +>>>>>>> docking_inter defs["igBeginChild"][2]["namespace"] = "ImGui" defs["igBeginChild"][2]["ov_cimguiname"] = "igBeginChild_ID" defs["igBeginChild"][2]["ret"] = "bool" @@ -11252,7 +13614,11 @@ defs["igBeginChildEx"][1]["call_args"] = "(name,id,size_arg,child_flags,window_f defs["igBeginChildEx"][1]["cimguiname"] = "igBeginChildEx" defs["igBeginChildEx"][1]["defaults"] = {} defs["igBeginChildEx"][1]["funcname"] = "BeginChildEx" +<<<<<<< HEAD defs["igBeginChildEx"][1]["location"] = "imgui_internal:3147" +======= +defs["igBeginChildEx"][1]["location"] = "imgui_internal:3417" +>>>>>>> docking_inter defs["igBeginChildEx"][1]["namespace"] = "ImGui" defs["igBeginChildEx"][1]["ov_cimguiname"] = "igBeginChildEx" defs["igBeginChildEx"][1]["ret"] = "bool" @@ -11278,7 +13644,11 @@ defs["igBeginColumns"][1]["cimguiname"] = "igBeginColumns" defs["igBeginColumns"][1]["defaults"] = {} defs["igBeginColumns"][1]["defaults"]["flags"] = "0" defs["igBeginColumns"][1]["funcname"] = "BeginColumns" +<<<<<<< HEAD defs["igBeginColumns"][1]["location"] = "imgui_internal:3310" +======= +defs["igBeginColumns"][1]["location"] = "imgui_internal:3639" +>>>>>>> docking_inter defs["igBeginColumns"][1]["namespace"] = "ImGui" defs["igBeginColumns"][1]["ov_cimguiname"] = "igBeginColumns" defs["igBeginColumns"][1]["ret"] = "void" @@ -11304,7 +13674,11 @@ defs["igBeginCombo"][1]["cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["defaults"] = {} defs["igBeginCombo"][1]["defaults"]["flags"] = "0" defs["igBeginCombo"][1]["funcname"] = "BeginCombo" +<<<<<<< HEAD defs["igBeginCombo"][1]["location"] = "imgui:556" +======= +defs["igBeginCombo"][1]["location"] = "imgui:566" +>>>>>>> docking_inter defs["igBeginCombo"][1]["namespace"] = "ImGui" defs["igBeginCombo"][1]["ov_cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["ret"] = "bool" @@ -11329,7 +13703,11 @@ defs["igBeginComboPopup"][1]["call_args"] = "(popup_id,bb,flags)" defs["igBeginComboPopup"][1]["cimguiname"] = "igBeginComboPopup" defs["igBeginComboPopup"][1]["defaults"] = {} defs["igBeginComboPopup"][1]["funcname"] = "BeginComboPopup" +<<<<<<< HEAD defs["igBeginComboPopup"][1]["location"] = "imgui_internal:3169" +======= +defs["igBeginComboPopup"][1]["location"] = "imgui_internal:3443" +>>>>>>> docking_inter defs["igBeginComboPopup"][1]["namespace"] = "ImGui" defs["igBeginComboPopup"][1]["ov_cimguiname"] = "igBeginComboPopup" defs["igBeginComboPopup"][1]["ret"] = "bool" @@ -11345,7 +13723,11 @@ defs["igBeginComboPreview"][1]["call_args"] = "()" defs["igBeginComboPreview"][1]["cimguiname"] = "igBeginComboPreview" defs["igBeginComboPreview"][1]["defaults"] = {} defs["igBeginComboPreview"][1]["funcname"] = "BeginComboPreview" +<<<<<<< HEAD defs["igBeginComboPreview"][1]["location"] = "imgui_internal:3170" +======= +defs["igBeginComboPreview"][1]["location"] = "imgui_internal:3444" +>>>>>>> docking_inter defs["igBeginComboPreview"][1]["namespace"] = "ImGui" defs["igBeginComboPreview"][1]["ov_cimguiname"] = "igBeginComboPreview" defs["igBeginComboPreview"][1]["ret"] = "bool" @@ -11365,7 +13747,11 @@ defs["igBeginDisabled"][1]["cimguiname"] = "igBeginDisabled" defs["igBeginDisabled"][1]["defaults"] = {} defs["igBeginDisabled"][1]["defaults"]["disabled"] = "true" defs["igBeginDisabled"][1]["funcname"] = "BeginDisabled" +<<<<<<< HEAD defs["igBeginDisabled"][1]["location"] = "imgui:863" +======= +defs["igBeginDisabled"][1]["location"] = "imgui:895" +>>>>>>> docking_inter defs["igBeginDisabled"][1]["namespace"] = "ImGui" defs["igBeginDisabled"][1]["ov_cimguiname"] = "igBeginDisabled" defs["igBeginDisabled"][1]["ret"] = "void" @@ -11381,13 +13767,80 @@ defs["igBeginDisabledOverrideReenable"][1]["call_args"] = "()" defs["igBeginDisabledOverrideReenable"][1]["cimguiname"] = "igBeginDisabledOverrideReenable" defs["igBeginDisabledOverrideReenable"][1]["defaults"] = {} defs["igBeginDisabledOverrideReenable"][1]["funcname"] = "BeginDisabledOverrideReenable" +<<<<<<< HEAD defs["igBeginDisabledOverrideReenable"][1]["location"] = "imgui_internal:3137" +======= +defs["igBeginDisabledOverrideReenable"][1]["location"] = "imgui_internal:3407" +>>>>>>> docking_inter defs["igBeginDisabledOverrideReenable"][1]["namespace"] = "ImGui" defs["igBeginDisabledOverrideReenable"][1]["ov_cimguiname"] = "igBeginDisabledOverrideReenable" defs["igBeginDisabledOverrideReenable"][1]["ret"] = "void" defs["igBeginDisabledOverrideReenable"][1]["signature"] = "()" defs["igBeginDisabledOverrideReenable"][1]["stname"] = "" defs["igBeginDisabledOverrideReenable"]["()"] = defs["igBeginDisabledOverrideReenable"][1] +<<<<<<< HEAD +======= +defs["igBeginDockableDragDropSource"] = {} +defs["igBeginDockableDragDropSource"][1] = {} +defs["igBeginDockableDragDropSource"][1]["args"] = "(ImGuiWindow* window)" +defs["igBeginDockableDragDropSource"][1]["argsT"] = {} +defs["igBeginDockableDragDropSource"][1]["argsT"][1] = {} +defs["igBeginDockableDragDropSource"][1]["argsT"][1]["name"] = "window" +defs["igBeginDockableDragDropSource"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igBeginDockableDragDropSource"][1]["argsoriginal"] = "(ImGuiWindow* window)" +defs["igBeginDockableDragDropSource"][1]["call_args"] = "(window)" +defs["igBeginDockableDragDropSource"][1]["cimguiname"] = "igBeginDockableDragDropSource" +defs["igBeginDockableDragDropSource"][1]["defaults"] = {} +defs["igBeginDockableDragDropSource"][1]["funcname"] = "BeginDockableDragDropSource" +defs["igBeginDockableDragDropSource"][1]["location"] = "imgui_internal:3584" +defs["igBeginDockableDragDropSource"][1]["namespace"] = "ImGui" +defs["igBeginDockableDragDropSource"][1]["ov_cimguiname"] = "igBeginDockableDragDropSource" +defs["igBeginDockableDragDropSource"][1]["ret"] = "void" +defs["igBeginDockableDragDropSource"][1]["signature"] = "(ImGuiWindow*)" +defs["igBeginDockableDragDropSource"][1]["stname"] = "" +defs["igBeginDockableDragDropSource"]["(ImGuiWindow*)"] = defs["igBeginDockableDragDropSource"][1] +defs["igBeginDockableDragDropTarget"] = {} +defs["igBeginDockableDragDropTarget"][1] = {} +defs["igBeginDockableDragDropTarget"][1]["args"] = "(ImGuiWindow* window)" +defs["igBeginDockableDragDropTarget"][1]["argsT"] = {} +defs["igBeginDockableDragDropTarget"][1]["argsT"][1] = {} +defs["igBeginDockableDragDropTarget"][1]["argsT"][1]["name"] = "window" +defs["igBeginDockableDragDropTarget"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igBeginDockableDragDropTarget"][1]["argsoriginal"] = "(ImGuiWindow* window)" +defs["igBeginDockableDragDropTarget"][1]["call_args"] = "(window)" +defs["igBeginDockableDragDropTarget"][1]["cimguiname"] = "igBeginDockableDragDropTarget" +defs["igBeginDockableDragDropTarget"][1]["defaults"] = {} +defs["igBeginDockableDragDropTarget"][1]["funcname"] = "BeginDockableDragDropTarget" +defs["igBeginDockableDragDropTarget"][1]["location"] = "imgui_internal:3585" +defs["igBeginDockableDragDropTarget"][1]["namespace"] = "ImGui" +defs["igBeginDockableDragDropTarget"][1]["ov_cimguiname"] = "igBeginDockableDragDropTarget" +defs["igBeginDockableDragDropTarget"][1]["ret"] = "void" +defs["igBeginDockableDragDropTarget"][1]["signature"] = "(ImGuiWindow*)" +defs["igBeginDockableDragDropTarget"][1]["stname"] = "" +defs["igBeginDockableDragDropTarget"]["(ImGuiWindow*)"] = defs["igBeginDockableDragDropTarget"][1] +defs["igBeginDocked"] = {} +defs["igBeginDocked"][1] = {} +defs["igBeginDocked"][1]["args"] = "(ImGuiWindow* window,bool* p_open)" +defs["igBeginDocked"][1]["argsT"] = {} +defs["igBeginDocked"][1]["argsT"][1] = {} +defs["igBeginDocked"][1]["argsT"][1]["name"] = "window" +defs["igBeginDocked"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igBeginDocked"][1]["argsT"][2] = {} +defs["igBeginDocked"][1]["argsT"][2]["name"] = "p_open" +defs["igBeginDocked"][1]["argsT"][2]["type"] = "bool*" +defs["igBeginDocked"][1]["argsoriginal"] = "(ImGuiWindow* window,bool* p_open)" +defs["igBeginDocked"][1]["call_args"] = "(window,p_open)" +defs["igBeginDocked"][1]["cimguiname"] = "igBeginDocked" +defs["igBeginDocked"][1]["defaults"] = {} +defs["igBeginDocked"][1]["funcname"] = "BeginDocked" +defs["igBeginDocked"][1]["location"] = "imgui_internal:3583" +defs["igBeginDocked"][1]["namespace"] = "ImGui" +defs["igBeginDocked"][1]["ov_cimguiname"] = "igBeginDocked" +defs["igBeginDocked"][1]["ret"] = "void" +defs["igBeginDocked"][1]["signature"] = "(ImGuiWindow*,bool*)" +defs["igBeginDocked"][1]["stname"] = "" +defs["igBeginDocked"]["(ImGuiWindow*,bool*)"] = defs["igBeginDocked"][1] +>>>>>>> docking_inter defs["igBeginDragDropSource"] = {} defs["igBeginDragDropSource"][1] = {} defs["igBeginDragDropSource"][1]["args"] = "(ImGuiDragDropFlags flags)" @@ -11401,7 +13854,11 @@ defs["igBeginDragDropSource"][1]["cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["defaults"] = {} defs["igBeginDragDropSource"][1]["defaults"]["flags"] = "0" defs["igBeginDragDropSource"][1]["funcname"] = "BeginDragDropSource" +<<<<<<< HEAD defs["igBeginDragDropSource"][1]["location"] = "imgui:851" +======= +defs["igBeginDragDropSource"][1]["location"] = "imgui:882" +>>>>>>> docking_inter defs["igBeginDragDropSource"][1]["namespace"] = "ImGui" defs["igBeginDragDropSource"][1]["ov_cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["ret"] = "bool" @@ -11417,7 +13874,11 @@ defs["igBeginDragDropTarget"][1]["call_args"] = "()" defs["igBeginDragDropTarget"][1]["cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["defaults"] = {} defs["igBeginDragDropTarget"][1]["funcname"] = "BeginDragDropTarget" +<<<<<<< HEAD defs["igBeginDragDropTarget"][1]["location"] = "imgui:854" +======= +defs["igBeginDragDropTarget"][1]["location"] = "imgui:885" +>>>>>>> docking_inter defs["igBeginDragDropTarget"][1]["namespace"] = "ImGui" defs["igBeginDragDropTarget"][1]["ov_cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["ret"] = "bool" @@ -11439,7 +13900,11 @@ defs["igBeginDragDropTargetCustom"][1]["call_args"] = "(bb,id)" defs["igBeginDragDropTargetCustom"][1]["cimguiname"] = "igBeginDragDropTargetCustom" defs["igBeginDragDropTargetCustom"][1]["defaults"] = {} defs["igBeginDragDropTargetCustom"][1]["funcname"] = "BeginDragDropTargetCustom" +<<<<<<< HEAD defs["igBeginDragDropTargetCustom"][1]["location"] = "imgui_internal:3297" +======= +defs["igBeginDragDropTargetCustom"][1]["location"] = "imgui_internal:3626" +>>>>>>> docking_inter defs["igBeginDragDropTargetCustom"][1]["namespace"] = "ImGui" defs["igBeginDragDropTargetCustom"][1]["ov_cimguiname"] = "igBeginDragDropTargetCustom" defs["igBeginDragDropTargetCustom"][1]["ret"] = "bool" @@ -11455,7 +13920,11 @@ defs["igBeginGroup"][1]["call_args"] = "()" defs["igBeginGroup"][1]["cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["defaults"] = {} defs["igBeginGroup"][1]["funcname"] = "BeginGroup" +<<<<<<< HEAD defs["igBeginGroup"][1]["location"] = "imgui:487" +======= +defs["igBeginGroup"][1]["location"] = "imgui:497" +>>>>>>> docking_inter defs["igBeginGroup"][1]["namespace"] = "ImGui" defs["igBeginGroup"][1]["ov_cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["ret"] = "void" @@ -11471,7 +13940,11 @@ defs["igBeginItemTooltip"][1]["call_args"] = "()" defs["igBeginItemTooltip"][1]["cimguiname"] = "igBeginItemTooltip" defs["igBeginItemTooltip"][1]["defaults"] = {} defs["igBeginItemTooltip"][1]["funcname"] = "BeginItemTooltip" +<<<<<<< HEAD defs["igBeginItemTooltip"][1]["location"] = "imgui:714" +======= +defs["igBeginItemTooltip"][1]["location"] = "imgui:724" +>>>>>>> docking_inter defs["igBeginItemTooltip"][1]["namespace"] = "ImGui" defs["igBeginItemTooltip"][1]["ov_cimguiname"] = "igBeginItemTooltip" defs["igBeginItemTooltip"][1]["ret"] = "bool" @@ -11494,7 +13967,11 @@ defs["igBeginListBox"][1]["cimguiname"] = "igBeginListBox" defs["igBeginListBox"][1]["defaults"] = {} defs["igBeginListBox"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginListBox"][1]["funcname"] = "BeginListBox" +<<<<<<< HEAD defs["igBeginListBox"][1]["location"] = "imgui:668" +======= +defs["igBeginListBox"][1]["location"] = "imgui:678" +>>>>>>> docking_inter defs["igBeginListBox"][1]["namespace"] = "ImGui" defs["igBeginListBox"][1]["ov_cimguiname"] = "igBeginListBox" defs["igBeginListBox"][1]["ret"] = "bool" @@ -11510,7 +13987,11 @@ defs["igBeginMainMenuBar"][1]["call_args"] = "()" defs["igBeginMainMenuBar"][1]["cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["defaults"] = {} defs["igBeginMainMenuBar"][1]["funcname"] = "BeginMainMenuBar" +<<<<<<< HEAD defs["igBeginMainMenuBar"][1]["location"] = "imgui:694" +======= +defs["igBeginMainMenuBar"][1]["location"] = "imgui:704" +>>>>>>> docking_inter defs["igBeginMainMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMainMenuBar"][1]["ov_cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["ret"] = "bool" @@ -11533,7 +14014,11 @@ defs["igBeginMenu"][1]["cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["defaults"] = {} defs["igBeginMenu"][1]["defaults"]["enabled"] = "true" defs["igBeginMenu"][1]["funcname"] = "BeginMenu" +<<<<<<< HEAD defs["igBeginMenu"][1]["location"] = "imgui:696" +======= +defs["igBeginMenu"][1]["location"] = "imgui:706" +>>>>>>> docking_inter defs["igBeginMenu"][1]["namespace"] = "ImGui" defs["igBeginMenu"][1]["ov_cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["ret"] = "bool" @@ -11549,7 +14034,11 @@ defs["igBeginMenuBar"][1]["call_args"] = "()" defs["igBeginMenuBar"][1]["cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["defaults"] = {} defs["igBeginMenuBar"][1]["funcname"] = "BeginMenuBar" +<<<<<<< HEAD defs["igBeginMenuBar"][1]["location"] = "imgui:692" +======= +defs["igBeginMenuBar"][1]["location"] = "imgui:702" +>>>>>>> docking_inter defs["igBeginMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMenuBar"][1]["ov_cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["ret"] = "bool" @@ -11575,7 +14064,11 @@ defs["igBeginMenuEx"][1]["cimguiname"] = "igBeginMenuEx" defs["igBeginMenuEx"][1]["defaults"] = {} defs["igBeginMenuEx"][1]["defaults"]["enabled"] = "true" defs["igBeginMenuEx"][1]["funcname"] = "BeginMenuEx" +<<<<<<< HEAD defs["igBeginMenuEx"][1]["location"] = "imgui_internal:3165" +======= +defs["igBeginMenuEx"][1]["location"] = "imgui_internal:3439" +>>>>>>> docking_inter defs["igBeginMenuEx"][1]["namespace"] = "ImGui" defs["igBeginMenuEx"][1]["ov_cimguiname"] = "igBeginMenuEx" defs["igBeginMenuEx"][1]["ret"] = "bool" @@ -11598,7 +14091,11 @@ defs["igBeginPopup"][1]["cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["defaults"] = {} defs["igBeginPopup"][1]["defaults"]["flags"] = "0" defs["igBeginPopup"][1]["funcname"] = "BeginPopup" +<<<<<<< HEAD defs["igBeginPopup"][1]["location"] = "imgui:728" +======= +defs["igBeginPopup"][1]["location"] = "imgui:738" +>>>>>>> docking_inter defs["igBeginPopup"][1]["namespace"] = "ImGui" defs["igBeginPopup"][1]["ov_cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["ret"] = "bool" @@ -11622,7 +14119,11 @@ defs["igBeginPopupContextItem"][1]["defaults"] = {} defs["igBeginPopupContextItem"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextItem"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextItem"][1]["funcname"] = "BeginPopupContextItem" +<<<<<<< HEAD defs["igBeginPopupContextItem"][1]["location"] = "imgui:750" +======= +defs["igBeginPopupContextItem"][1]["location"] = "imgui:760" +>>>>>>> docking_inter defs["igBeginPopupContextItem"][1]["namespace"] = "ImGui" defs["igBeginPopupContextItem"][1]["ov_cimguiname"] = "igBeginPopupContextItem" defs["igBeginPopupContextItem"][1]["ret"] = "bool" @@ -11646,7 +14147,11 @@ defs["igBeginPopupContextVoid"][1]["defaults"] = {} defs["igBeginPopupContextVoid"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextVoid"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextVoid"][1]["funcname"] = "BeginPopupContextVoid" +<<<<<<< HEAD defs["igBeginPopupContextVoid"][1]["location"] = "imgui:752" +======= +defs["igBeginPopupContextVoid"][1]["location"] = "imgui:762" +>>>>>>> docking_inter defs["igBeginPopupContextVoid"][1]["namespace"] = "ImGui" defs["igBeginPopupContextVoid"][1]["ov_cimguiname"] = "igBeginPopupContextVoid" defs["igBeginPopupContextVoid"][1]["ret"] = "bool" @@ -11670,7 +14175,11 @@ defs["igBeginPopupContextWindow"][1]["defaults"] = {} defs["igBeginPopupContextWindow"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextWindow"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextWindow"][1]["funcname"] = "BeginPopupContextWindow" +<<<<<<< HEAD defs["igBeginPopupContextWindow"][1]["location"] = "imgui:751" +======= +defs["igBeginPopupContextWindow"][1]["location"] = "imgui:761" +>>>>>>> docking_inter defs["igBeginPopupContextWindow"][1]["namespace"] = "ImGui" defs["igBeginPopupContextWindow"][1]["ov_cimguiname"] = "igBeginPopupContextWindow" defs["igBeginPopupContextWindow"][1]["ret"] = "bool" @@ -11679,20 +14188,24 @@ defs["igBeginPopupContextWindow"][1]["stname"] = "" defs["igBeginPopupContextWindow"]["(const char*,ImGuiPopupFlags)"] = defs["igBeginPopupContextWindow"][1] defs["igBeginPopupEx"] = {} defs["igBeginPopupEx"][1] = {} -defs["igBeginPopupEx"][1]["args"] = "(ImGuiID id,ImGuiWindowFlags extra_flags)" +defs["igBeginPopupEx"][1]["args"] = "(ImGuiID id,ImGuiWindowFlags extra_window_flags)" defs["igBeginPopupEx"][1]["argsT"] = {} defs["igBeginPopupEx"][1]["argsT"][1] = {} defs["igBeginPopupEx"][1]["argsT"][1]["name"] = "id" defs["igBeginPopupEx"][1]["argsT"][1]["type"] = "ImGuiID" defs["igBeginPopupEx"][1]["argsT"][2] = {} -defs["igBeginPopupEx"][1]["argsT"][2]["name"] = "extra_flags" +defs["igBeginPopupEx"][1]["argsT"][2]["name"] = "extra_window_flags" defs["igBeginPopupEx"][1]["argsT"][2]["type"] = "ImGuiWindowFlags" -defs["igBeginPopupEx"][1]["argsoriginal"] = "(ImGuiID id,ImGuiWindowFlags extra_flags)" -defs["igBeginPopupEx"][1]["call_args"] = "(id,extra_flags)" +defs["igBeginPopupEx"][1]["argsoriginal"] = "(ImGuiID id,ImGuiWindowFlags extra_window_flags)" +defs["igBeginPopupEx"][1]["call_args"] = "(id,extra_window_flags)" defs["igBeginPopupEx"][1]["cimguiname"] = "igBeginPopupEx" defs["igBeginPopupEx"][1]["defaults"] = {} defs["igBeginPopupEx"][1]["funcname"] = "BeginPopupEx" +<<<<<<< HEAD defs["igBeginPopupEx"][1]["location"] = "imgui_internal:3153" +======= +defs["igBeginPopupEx"][1]["location"] = "imgui_internal:3420" +>>>>>>> docking_inter defs["igBeginPopupEx"][1]["namespace"] = "ImGui" defs["igBeginPopupEx"][1]["ov_cimguiname"] = "igBeginPopupEx" defs["igBeginPopupEx"][1]["ret"] = "bool" @@ -11719,7 +14232,11 @@ defs["igBeginPopupModal"][1]["defaults"] = {} defs["igBeginPopupModal"][1]["defaults"]["flags"] = "0" defs["igBeginPopupModal"][1]["defaults"]["p_open"] = "NULL" defs["igBeginPopupModal"][1]["funcname"] = "BeginPopupModal" +<<<<<<< HEAD defs["igBeginPopupModal"][1]["location"] = "imgui:729" +======= +defs["igBeginPopupModal"][1]["location"] = "imgui:739" +>>>>>>> docking_inter defs["igBeginPopupModal"][1]["namespace"] = "ImGui" defs["igBeginPopupModal"][1]["ov_cimguiname"] = "igBeginPopupModal" defs["igBeginPopupModal"][1]["ret"] = "bool" @@ -11742,7 +14259,11 @@ defs["igBeginTabBar"][1]["cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["defaults"] = {} defs["igBeginTabBar"][1]["defaults"]["flags"] = "0" defs["igBeginTabBar"][1]["funcname"] = "BeginTabBar" +<<<<<<< HEAD defs["igBeginTabBar"][1]["location"] = "imgui:829" +======= +defs["igBeginTabBar"][1]["location"] = "imgui:840" +>>>>>>> docking_inter defs["igBeginTabBar"][1]["namespace"] = "ImGui" defs["igBeginTabBar"][1]["ov_cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["ret"] = "bool" @@ -11767,7 +14288,11 @@ defs["igBeginTabBarEx"][1]["call_args"] = "(tab_bar,bb,flags)" defs["igBeginTabBarEx"][1]["cimguiname"] = "igBeginTabBarEx" defs["igBeginTabBarEx"][1]["defaults"] = {} defs["igBeginTabBarEx"][1]["funcname"] = "BeginTabBarEx" +<<<<<<< HEAD defs["igBeginTabBarEx"][1]["location"] = "imgui_internal:3379" +======= +defs["igBeginTabBarEx"][1]["location"] = "imgui_internal:3707" +>>>>>>> docking_inter defs["igBeginTabBarEx"][1]["namespace"] = "ImGui" defs["igBeginTabBarEx"][1]["ov_cimguiname"] = "igBeginTabBarEx" defs["igBeginTabBarEx"][1]["ret"] = "bool" @@ -11794,7 +14319,11 @@ defs["igBeginTabItem"][1]["defaults"] = {} defs["igBeginTabItem"][1]["defaults"]["flags"] = "0" defs["igBeginTabItem"][1]["defaults"]["p_open"] = "NULL" defs["igBeginTabItem"][1]["funcname"] = "BeginTabItem" +<<<<<<< HEAD defs["igBeginTabItem"][1]["location"] = "imgui:831" +======= +defs["igBeginTabItem"][1]["location"] = "imgui:842" +>>>>>>> docking_inter defs["igBeginTabItem"][1]["namespace"] = "ImGui" defs["igBeginTabItem"][1]["ov_cimguiname"] = "igBeginTabItem" defs["igBeginTabItem"][1]["ret"] = "bool" @@ -11803,13 +14332,13 @@ defs["igBeginTabItem"][1]["stname"] = "" defs["igBeginTabItem"]["(const char*,bool*,ImGuiTabItemFlags)"] = defs["igBeginTabItem"][1] defs["igBeginTable"] = {} defs["igBeginTable"][1] = {} -defs["igBeginTable"][1]["args"] = "(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)" +defs["igBeginTable"][1]["args"] = "(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)" defs["igBeginTable"][1]["argsT"] = {} defs["igBeginTable"][1]["argsT"][1] = {} defs["igBeginTable"][1]["argsT"][1]["name"] = "str_id" defs["igBeginTable"][1]["argsT"][1]["type"] = "const char*" defs["igBeginTable"][1]["argsT"][2] = {} -defs["igBeginTable"][1]["argsT"][2]["name"] = "column" +defs["igBeginTable"][1]["argsT"][2]["name"] = "columns" defs["igBeginTable"][1]["argsT"][2]["type"] = "int" defs["igBeginTable"][1]["argsT"][3] = {} defs["igBeginTable"][1]["argsT"][3]["name"] = "flags" @@ -11820,15 +14349,19 @@ defs["igBeginTable"][1]["argsT"][4]["type"] = "const ImVec2" defs["igBeginTable"][1]["argsT"][5] = {} defs["igBeginTable"][1]["argsT"][5]["name"] = "inner_width" defs["igBeginTable"][1]["argsT"][5]["type"] = "float" -defs["igBeginTable"][1]["argsoriginal"] = "(const char* str_id,int column,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)" -defs["igBeginTable"][1]["call_args"] = "(str_id,column,flags,outer_size,inner_width)" +defs["igBeginTable"][1]["argsoriginal"] = "(const char* str_id,int columns,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)" +defs["igBeginTable"][1]["call_args"] = "(str_id,columns,flags,outer_size,inner_width)" defs["igBeginTable"][1]["cimguiname"] = "igBeginTable" defs["igBeginTable"][1]["defaults"] = {} defs["igBeginTable"][1]["defaults"]["flags"] = "0" defs["igBeginTable"][1]["defaults"]["inner_width"] = "0.0f" defs["igBeginTable"][1]["defaults"]["outer_size"] = "ImVec2(0.0f,0.0f)" defs["igBeginTable"][1]["funcname"] = "BeginTable" +<<<<<<< HEAD defs["igBeginTable"][1]["location"] = "imgui:781" +======= +defs["igBeginTable"][1]["location"] = "imgui:791" +>>>>>>> docking_inter defs["igBeginTable"][1]["namespace"] = "ImGui" defs["igBeginTable"][1]["ov_cimguiname"] = "igBeginTable" defs["igBeginTable"][1]["ret"] = "bool" @@ -11865,7 +14398,11 @@ defs["igBeginTableEx"][1]["defaults"]["flags"] = "0" defs["igBeginTableEx"][1]["defaults"]["inner_width"] = "0.0f" defs["igBeginTableEx"][1]["defaults"]["outer_size"] = "ImVec2(0,0)" defs["igBeginTableEx"][1]["funcname"] = "BeginTableEx" +<<<<<<< HEAD defs["igBeginTableEx"][1]["location"] = "imgui_internal:3335" +======= +defs["igBeginTableEx"][1]["location"] = "imgui_internal:3663" +>>>>>>> docking_inter defs["igBeginTableEx"][1]["namespace"] = "ImGui" defs["igBeginTableEx"][1]["ov_cimguiname"] = "igBeginTableEx" defs["igBeginTableEx"][1]["ret"] = "bool" @@ -11881,7 +14418,11 @@ defs["igBeginTooltip"][1]["call_args"] = "()" defs["igBeginTooltip"][1]["cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["defaults"] = {} defs["igBeginTooltip"][1]["funcname"] = "BeginTooltip" +<<<<<<< HEAD defs["igBeginTooltip"][1]["location"] = "imgui:705" +======= +defs["igBeginTooltip"][1]["location"] = "imgui:715" +>>>>>>> docking_inter defs["igBeginTooltip"][1]["namespace"] = "ImGui" defs["igBeginTooltip"][1]["ov_cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["ret"] = "bool" @@ -11903,7 +14444,11 @@ defs["igBeginTooltipEx"][1]["call_args"] = "(tooltip_flags,extra_window_flags)" defs["igBeginTooltipEx"][1]["cimguiname"] = "igBeginTooltipEx" defs["igBeginTooltipEx"][1]["defaults"] = {} defs["igBeginTooltipEx"][1]["funcname"] = "BeginTooltipEx" +<<<<<<< HEAD defs["igBeginTooltipEx"][1]["location"] = "imgui_internal:3154" +======= +defs["igBeginTooltipEx"][1]["location"] = "imgui_internal:3434" +>>>>>>> docking_inter defs["igBeginTooltipEx"][1]["namespace"] = "ImGui" defs["igBeginTooltipEx"][1]["ov_cimguiname"] = "igBeginTooltipEx" defs["igBeginTooltipEx"][1]["ret"] = "bool" @@ -11919,7 +14464,11 @@ defs["igBeginTooltipHidden"][1]["call_args"] = "()" defs["igBeginTooltipHidden"][1]["cimguiname"] = "igBeginTooltipHidden" defs["igBeginTooltipHidden"][1]["defaults"] = {} defs["igBeginTooltipHidden"][1]["funcname"] = "BeginTooltipHidden" +<<<<<<< HEAD defs["igBeginTooltipHidden"][1]["location"] = "imgui_internal:3155" +======= +defs["igBeginTooltipHidden"][1]["location"] = "imgui_internal:3435" +>>>>>>> docking_inter defs["igBeginTooltipHidden"][1]["namespace"] = "ImGui" defs["igBeginTooltipHidden"][1]["ov_cimguiname"] = "igBeginTooltipHidden" defs["igBeginTooltipHidden"][1]["ret"] = "bool" @@ -11950,7 +14499,11 @@ defs["igBeginViewportSideBar"][1]["call_args"] = "(name,viewport,dir,size,window defs["igBeginViewportSideBar"][1]["cimguiname"] = "igBeginViewportSideBar" defs["igBeginViewportSideBar"][1]["defaults"] = {} defs["igBeginViewportSideBar"][1]["funcname"] = "BeginViewportSideBar" +<<<<<<< HEAD defs["igBeginViewportSideBar"][1]["location"] = "imgui_internal:3164" +======= +defs["igBeginViewportSideBar"][1]["location"] = "imgui_internal:3438" +>>>>>>> docking_inter defs["igBeginViewportSideBar"][1]["namespace"] = "ImGui" defs["igBeginViewportSideBar"][1]["ov_cimguiname"] = "igBeginViewportSideBar" defs["igBeginViewportSideBar"][1]["ret"] = "bool" @@ -11969,7 +14522,11 @@ defs["igBringWindowToDisplayBack"][1]["call_args"] = "(window)" defs["igBringWindowToDisplayBack"][1]["cimguiname"] = "igBringWindowToDisplayBack" defs["igBringWindowToDisplayBack"][1]["defaults"] = {} defs["igBringWindowToDisplayBack"][1]["funcname"] = "BringWindowToDisplayBack" +<<<<<<< HEAD defs["igBringWindowToDisplayBack"][1]["location"] = "imgui_internal:3034" +======= +defs["igBringWindowToDisplayBack"][1]["location"] = "imgui_internal:3299" +>>>>>>> docking_inter defs["igBringWindowToDisplayBack"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayBack"][1]["ov_cimguiname"] = "igBringWindowToDisplayBack" defs["igBringWindowToDisplayBack"][1]["ret"] = "void" @@ -11991,7 +14548,11 @@ defs["igBringWindowToDisplayBehind"][1]["call_args"] = "(window,above_window)" defs["igBringWindowToDisplayBehind"][1]["cimguiname"] = "igBringWindowToDisplayBehind" defs["igBringWindowToDisplayBehind"][1]["defaults"] = {} defs["igBringWindowToDisplayBehind"][1]["funcname"] = "BringWindowToDisplayBehind" +<<<<<<< HEAD defs["igBringWindowToDisplayBehind"][1]["location"] = "imgui_internal:3035" +======= +defs["igBringWindowToDisplayBehind"][1]["location"] = "imgui_internal:3300" +>>>>>>> docking_inter defs["igBringWindowToDisplayBehind"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayBehind"][1]["ov_cimguiname"] = "igBringWindowToDisplayBehind" defs["igBringWindowToDisplayBehind"][1]["ret"] = "void" @@ -12010,7 +14571,11 @@ defs["igBringWindowToDisplayFront"][1]["call_args"] = "(window)" defs["igBringWindowToDisplayFront"][1]["cimguiname"] = "igBringWindowToDisplayFront" defs["igBringWindowToDisplayFront"][1]["defaults"] = {} defs["igBringWindowToDisplayFront"][1]["funcname"] = "BringWindowToDisplayFront" +<<<<<<< HEAD defs["igBringWindowToDisplayFront"][1]["location"] = "imgui_internal:3033" +======= +defs["igBringWindowToDisplayFront"][1]["location"] = "imgui_internal:3298" +>>>>>>> docking_inter defs["igBringWindowToDisplayFront"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayFront"][1]["ov_cimguiname"] = "igBringWindowToDisplayFront" defs["igBringWindowToDisplayFront"][1]["ret"] = "void" @@ -12029,7 +14594,11 @@ defs["igBringWindowToFocusFront"][1]["call_args"] = "(window)" defs["igBringWindowToFocusFront"][1]["cimguiname"] = "igBringWindowToFocusFront" defs["igBringWindowToFocusFront"][1]["defaults"] = {} defs["igBringWindowToFocusFront"][1]["funcname"] = "BringWindowToFocusFront" +<<<<<<< HEAD defs["igBringWindowToFocusFront"][1]["location"] = "imgui_internal:3032" +======= +defs["igBringWindowToFocusFront"][1]["location"] = "imgui_internal:3297" +>>>>>>> docking_inter defs["igBringWindowToFocusFront"][1]["namespace"] = "ImGui" defs["igBringWindowToFocusFront"][1]["ov_cimguiname"] = "igBringWindowToFocusFront" defs["igBringWindowToFocusFront"][1]["ret"] = "void" @@ -12045,7 +14614,11 @@ defs["igBullet"][1]["call_args"] = "()" defs["igBullet"][1]["cimguiname"] = "igBullet" defs["igBullet"][1]["defaults"] = {} defs["igBullet"][1]["funcname"] = "Bullet" +<<<<<<< HEAD defs["igBullet"][1]["location"] = "imgui:544" +======= +defs["igBullet"][1]["location"] = "imgui:554" +>>>>>>> docking_inter defs["igBullet"][1]["namespace"] = "ImGui" defs["igBullet"][1]["ov_cimguiname"] = "igBullet" defs["igBullet"][1]["ret"] = "void" @@ -12068,7 +14641,11 @@ defs["igBulletText"][1]["cimguiname"] = "igBulletText" defs["igBulletText"][1]["defaults"] = {} defs["igBulletText"][1]["funcname"] = "BulletText" defs["igBulletText"][1]["isvararg"] = "...)" +<<<<<<< HEAD defs["igBulletText"][1]["location"] = "imgui:527" +======= +defs["igBulletText"][1]["location"] = "imgui:537" +>>>>>>> docking_inter defs["igBulletText"][1]["namespace"] = "ImGui" defs["igBulletText"][1]["ov_cimguiname"] = "igBulletText" defs["igBulletText"][1]["ret"] = "void" @@ -12090,7 +14667,11 @@ defs["igBulletTextV"][1]["call_args"] = "(fmt,args)" defs["igBulletTextV"][1]["cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["defaults"] = {} defs["igBulletTextV"][1]["funcname"] = "BulletTextV" +<<<<<<< HEAD defs["igBulletTextV"][1]["location"] = "imgui:528" +======= +defs["igBulletTextV"][1]["location"] = "imgui:538" +>>>>>>> docking_inter defs["igBulletTextV"][1]["namespace"] = "ImGui" defs["igBulletTextV"][1]["ov_cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["ret"] = "void" @@ -12113,7 +14694,11 @@ defs["igButton"][1]["cimguiname"] = "igButton" defs["igButton"][1]["defaults"] = {} defs["igButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igButton"][1]["funcname"] = "Button" +<<<<<<< HEAD defs["igButton"][1]["location"] = "imgui:534" +======= +defs["igButton"][1]["location"] = "imgui:544" +>>>>>>> docking_inter defs["igButton"][1]["namespace"] = "ImGui" defs["igButton"][1]["ov_cimguiname"] = "igButton" defs["igButton"][1]["ret"] = "bool" @@ -12145,7 +14730,11 @@ defs["igButtonBehavior"][1]["cimguiname"] = "igButtonBehavior" defs["igButtonBehavior"][1]["defaults"] = {} defs["igButtonBehavior"][1]["defaults"]["flags"] = "0" defs["igButtonBehavior"][1]["funcname"] = "ButtonBehavior" +<<<<<<< HEAD defs["igButtonBehavior"][1]["location"] = "imgui_internal:3441" +======= +defs["igButtonBehavior"][1]["location"] = "imgui_internal:3773" +>>>>>>> docking_inter defs["igButtonBehavior"][1]["namespace"] = "ImGui" defs["igButtonBehavior"][1]["ov_cimguiname"] = "igButtonBehavior" defs["igButtonBehavior"][1]["ret"] = "bool" @@ -12172,7 +14761,11 @@ defs["igButtonEx"][1]["defaults"] = {} defs["igButtonEx"][1]["defaults"]["flags"] = "0" defs["igButtonEx"][1]["defaults"]["size_arg"] = "ImVec2(0,0)" defs["igButtonEx"][1]["funcname"] = "ButtonEx" +<<<<<<< HEAD defs["igButtonEx"][1]["location"] = "imgui_internal:3422" +======= +defs["igButtonEx"][1]["location"] = "imgui_internal:3754" +>>>>>>> docking_inter defs["igButtonEx"][1]["namespace"] = "ImGui" defs["igButtonEx"][1]["ov_cimguiname"] = "igButtonEx" defs["igButtonEx"][1]["ret"] = "bool" @@ -12200,7 +14793,11 @@ defs["igCalcItemSize"][1]["call_args"] = "(size,default_w,default_h)" defs["igCalcItemSize"][1]["cimguiname"] = "igCalcItemSize" defs["igCalcItemSize"][1]["defaults"] = {} defs["igCalcItemSize"][1]["funcname"] = "CalcItemSize" +<<<<<<< HEAD defs["igCalcItemSize"][1]["location"] = "imgui_internal:3126" +======= +defs["igCalcItemSize"][1]["location"] = "imgui_internal:3396" +>>>>>>> docking_inter defs["igCalcItemSize"][1]["namespace"] = "ImGui" defs["igCalcItemSize"][1]["nonUDT"] = 1 defs["igCalcItemSize"][1]["ov_cimguiname"] = "igCalcItemSize" @@ -12217,13 +14814,45 @@ defs["igCalcItemWidth"][1]["call_args"] = "()" defs["igCalcItemWidth"][1]["cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["defaults"] = {} defs["igCalcItemWidth"][1]["funcname"] = "CalcItemWidth" +<<<<<<< HEAD defs["igCalcItemWidth"][1]["location"] = "imgui:447" +======= +defs["igCalcItemWidth"][1]["location"] = "imgui:457" +>>>>>>> docking_inter defs["igCalcItemWidth"][1]["namespace"] = "ImGui" defs["igCalcItemWidth"][1]["ov_cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["ret"] = "float" defs["igCalcItemWidth"][1]["signature"] = "()" defs["igCalcItemWidth"][1]["stname"] = "" defs["igCalcItemWidth"]["()"] = defs["igCalcItemWidth"][1] +<<<<<<< HEAD +======= +defs["igCalcRoundingFlagsForRectInRect"] = {} +defs["igCalcRoundingFlagsForRectInRect"][1] = {} +defs["igCalcRoundingFlagsForRectInRect"][1]["args"] = "(const ImRect r_in,const ImRect r_outer,float threshold)" +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"] = {} +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"][1] = {} +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"][1]["name"] = "r_in" +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"][1]["type"] = "const ImRect" +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"][2] = {} +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"][2]["name"] = "r_outer" +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"][2]["type"] = "const ImRect" +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"][3] = {} +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"][3]["name"] = "threshold" +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"][3]["type"] = "float" +defs["igCalcRoundingFlagsForRectInRect"][1]["argsoriginal"] = "(const ImRect& r_in,const ImRect& r_outer,float threshold)" +defs["igCalcRoundingFlagsForRectInRect"][1]["call_args"] = "(r_in,r_outer,threshold)" +defs["igCalcRoundingFlagsForRectInRect"][1]["cimguiname"] = "igCalcRoundingFlagsForRectInRect" +defs["igCalcRoundingFlagsForRectInRect"][1]["defaults"] = {} +defs["igCalcRoundingFlagsForRectInRect"][1]["funcname"] = "CalcRoundingFlagsForRectInRect" +defs["igCalcRoundingFlagsForRectInRect"][1]["location"] = "imgui_internal:3750" +defs["igCalcRoundingFlagsForRectInRect"][1]["namespace"] = "ImGui" +defs["igCalcRoundingFlagsForRectInRect"][1]["ov_cimguiname"] = "igCalcRoundingFlagsForRectInRect" +defs["igCalcRoundingFlagsForRectInRect"][1]["ret"] = "ImDrawFlags" +defs["igCalcRoundingFlagsForRectInRect"][1]["signature"] = "(const ImRect,const ImRect,float)" +defs["igCalcRoundingFlagsForRectInRect"][1]["stname"] = "" +defs["igCalcRoundingFlagsForRectInRect"]["(const ImRect,const ImRect,float)"] = defs["igCalcRoundingFlagsForRectInRect"][1] +>>>>>>> docking_inter defs["igCalcTextSize"] = {} defs["igCalcTextSize"][1] = {} defs["igCalcTextSize"][1]["args"] = "(ImVec2 *pOut,const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width)" @@ -12251,7 +14880,11 @@ defs["igCalcTextSize"][1]["defaults"]["hide_text_after_double_hash"] = "false" defs["igCalcTextSize"][1]["defaults"]["text_end"] = "NULL" defs["igCalcTextSize"][1]["defaults"]["wrap_width"] = "-1.0f" defs["igCalcTextSize"][1]["funcname"] = "CalcTextSize" +<<<<<<< HEAD defs["igCalcTextSize"][1]["location"] = "imgui:921" +======= +defs["igCalcTextSize"][1]["location"] = "imgui:953" +>>>>>>> docking_inter defs["igCalcTextSize"][1]["namespace"] = "ImGui" defs["igCalcTextSize"][1]["nonUDT"] = 1 defs["igCalcTextSize"][1]["ov_cimguiname"] = "igCalcTextSize" @@ -12280,7 +14913,11 @@ defs["igCalcTypematicRepeatAmount"][1]["call_args"] = "(t0,t1,repeat_delay,repea defs["igCalcTypematicRepeatAmount"][1]["cimguiname"] = "igCalcTypematicRepeatAmount" defs["igCalcTypematicRepeatAmount"][1]["defaults"] = {} defs["igCalcTypematicRepeatAmount"][1]["funcname"] = "CalcTypematicRepeatAmount" +<<<<<<< HEAD defs["igCalcTypematicRepeatAmount"][1]["location"] = "imgui_internal:3225" +======= +defs["igCalcTypematicRepeatAmount"][1]["location"] = "imgui_internal:3499" +>>>>>>> docking_inter defs["igCalcTypematicRepeatAmount"][1]["namespace"] = "ImGui" defs["igCalcTypematicRepeatAmount"][1]["ov_cimguiname"] = "igCalcTypematicRepeatAmount" defs["igCalcTypematicRepeatAmount"][1]["ret"] = "int" @@ -12302,7 +14939,11 @@ defs["igCalcWindowNextAutoFitSize"][1]["call_args"] = "(window)" defs["igCalcWindowNextAutoFitSize"][1]["cimguiname"] = "igCalcWindowNextAutoFitSize" defs["igCalcWindowNextAutoFitSize"][1]["defaults"] = {} defs["igCalcWindowNextAutoFitSize"][1]["funcname"] = "CalcWindowNextAutoFitSize" +<<<<<<< HEAD defs["igCalcWindowNextAutoFitSize"][1]["location"] = "imgui_internal:3014" +======= +defs["igCalcWindowNextAutoFitSize"][1]["location"] = "imgui_internal:3279" +>>>>>>> docking_inter defs["igCalcWindowNextAutoFitSize"][1]["namespace"] = "ImGui" defs["igCalcWindowNextAutoFitSize"][1]["nonUDT"] = 1 defs["igCalcWindowNextAutoFitSize"][1]["ov_cimguiname"] = "igCalcWindowNextAutoFitSize" @@ -12325,7 +14966,11 @@ defs["igCalcWrapWidthForPos"][1]["call_args"] = "(pos,wrap_pos_x)" defs["igCalcWrapWidthForPos"][1]["cimguiname"] = "igCalcWrapWidthForPos" defs["igCalcWrapWidthForPos"][1]["defaults"] = {} defs["igCalcWrapWidthForPos"][1]["funcname"] = "CalcWrapWidthForPos" +<<<<<<< HEAD defs["igCalcWrapWidthForPos"][1]["location"] = "imgui_internal:3127" +======= +defs["igCalcWrapWidthForPos"][1]["location"] = "imgui_internal:3397" +>>>>>>> docking_inter defs["igCalcWrapWidthForPos"][1]["namespace"] = "ImGui" defs["igCalcWrapWidthForPos"][1]["ov_cimguiname"] = "igCalcWrapWidthForPos" defs["igCalcWrapWidthForPos"][1]["ret"] = "float" @@ -12347,7 +14992,11 @@ defs["igCallContextHooks"][1]["call_args"] = "(context,type)" defs["igCallContextHooks"][1]["cimguiname"] = "igCallContextHooks" defs["igCallContextHooks"][1]["defaults"] = {} defs["igCallContextHooks"][1]["funcname"] = "CallContextHooks" +<<<<<<< HEAD defs["igCallContextHooks"][1]["location"] = "imgui_internal:3065" +======= +defs["igCallContextHooks"][1]["location"] = "imgui_internal:3329" +>>>>>>> docking_inter defs["igCallContextHooks"][1]["namespace"] = "ImGui" defs["igCallContextHooks"][1]["ov_cimguiname"] = "igCallContextHooks" defs["igCallContextHooks"][1]["ret"] = "void" @@ -12369,7 +15018,11 @@ defs["igCheckbox"][1]["call_args"] = "(label,v)" defs["igCheckbox"][1]["cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["defaults"] = {} defs["igCheckbox"][1]["funcname"] = "Checkbox" +<<<<<<< HEAD defs["igCheckbox"][1]["location"] = "imgui:538" +======= +defs["igCheckbox"][1]["location"] = "imgui:548" +>>>>>>> docking_inter defs["igCheckbox"][1]["namespace"] = "ImGui" defs["igCheckbox"][1]["ov_cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["ret"] = "bool" @@ -12394,7 +15047,11 @@ defs["igCheckboxFlags"][1]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][1]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][1]["defaults"] = {} defs["igCheckboxFlags"][1]["funcname"] = "CheckboxFlags" +<<<<<<< HEAD defs["igCheckboxFlags"][1]["location"] = "imgui:539" +======= +defs["igCheckboxFlags"][1]["location"] = "imgui:549" +>>>>>>> docking_inter defs["igCheckboxFlags"][1]["namespace"] = "ImGui" defs["igCheckboxFlags"][1]["ov_cimguiname"] = "igCheckboxFlags_IntPtr" defs["igCheckboxFlags"][1]["ret"] = "bool" @@ -12417,7 +15074,11 @@ defs["igCheckboxFlags"][2]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][2]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][2]["defaults"] = {} defs["igCheckboxFlags"][2]["funcname"] = "CheckboxFlags" +<<<<<<< HEAD defs["igCheckboxFlags"][2]["location"] = "imgui:540" +======= +defs["igCheckboxFlags"][2]["location"] = "imgui:550" +>>>>>>> docking_inter defs["igCheckboxFlags"][2]["namespace"] = "ImGui" defs["igCheckboxFlags"][2]["ov_cimguiname"] = "igCheckboxFlags_UintPtr" defs["igCheckboxFlags"][2]["ret"] = "bool" @@ -12440,7 +15101,11 @@ defs["igCheckboxFlags"][3]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][3]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][3]["defaults"] = {} defs["igCheckboxFlags"][3]["funcname"] = "CheckboxFlags" +<<<<<<< HEAD defs["igCheckboxFlags"][3]["location"] = "imgui_internal:3427" +======= +defs["igCheckboxFlags"][3]["location"] = "imgui_internal:3759" +>>>>>>> docking_inter defs["igCheckboxFlags"][3]["namespace"] = "ImGui" defs["igCheckboxFlags"][3]["ov_cimguiname"] = "igCheckboxFlags_S64Ptr" defs["igCheckboxFlags"][3]["ret"] = "bool" @@ -12463,7 +15128,11 @@ defs["igCheckboxFlags"][4]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][4]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][4]["defaults"] = {} defs["igCheckboxFlags"][4]["funcname"] = "CheckboxFlags" +<<<<<<< HEAD defs["igCheckboxFlags"][4]["location"] = "imgui_internal:3428" +======= +defs["igCheckboxFlags"][4]["location"] = "imgui_internal:3760" +>>>>>>> docking_inter defs["igCheckboxFlags"][4]["namespace"] = "ImGui" defs["igCheckboxFlags"][4]["ov_cimguiname"] = "igCheckboxFlags_U64Ptr" defs["igCheckboxFlags"][4]["ret"] = "bool" @@ -12482,7 +15151,11 @@ defs["igClearActiveID"][1]["call_args"] = "()" defs["igClearActiveID"][1]["cimguiname"] = "igClearActiveID" defs["igClearActiveID"][1]["defaults"] = {} defs["igClearActiveID"][1]["funcname"] = "ClearActiveID" +<<<<<<< HEAD defs["igClearActiveID"][1]["location"] = "imgui_internal:3109" +======= +defs["igClearActiveID"][1]["location"] = "imgui_internal:3379" +>>>>>>> docking_inter defs["igClearActiveID"][1]["namespace"] = "ImGui" defs["igClearActiveID"][1]["ov_cimguiname"] = "igClearActiveID" defs["igClearActiveID"][1]["ret"] = "void" @@ -12498,7 +15171,11 @@ defs["igClearDragDrop"][1]["call_args"] = "()" defs["igClearDragDrop"][1]["cimguiname"] = "igClearDragDrop" defs["igClearDragDrop"][1]["defaults"] = {} defs["igClearDragDrop"][1]["funcname"] = "ClearDragDrop" +<<<<<<< HEAD defs["igClearDragDrop"][1]["location"] = "imgui_internal:3298" +======= +defs["igClearDragDrop"][1]["location"] = "imgui_internal:3627" +>>>>>>> docking_inter defs["igClearDragDrop"][1]["namespace"] = "ImGui" defs["igClearDragDrop"][1]["ov_cimguiname"] = "igClearDragDrop" defs["igClearDragDrop"][1]["ret"] = "void" @@ -12514,7 +15191,11 @@ defs["igClearIniSettings"][1]["call_args"] = "()" defs["igClearIniSettings"][1]["cimguiname"] = "igClearIniSettings" defs["igClearIniSettings"][1]["defaults"] = {} defs["igClearIniSettings"][1]["funcname"] = "ClearIniSettings" +<<<<<<< HEAD defs["igClearIniSettings"][1]["location"] = "imgui_internal:3073" +======= +defs["igClearIniSettings"][1]["location"] = "imgui_internal:3343" +>>>>>>> docking_inter defs["igClearIniSettings"][1]["namespace"] = "ImGui" defs["igClearIniSettings"][1]["ov_cimguiname"] = "igClearIniSettings" defs["igClearIniSettings"][1]["ret"] = "void" @@ -12533,7 +15214,11 @@ defs["igClearWindowSettings"][1]["call_args"] = "(name)" defs["igClearWindowSettings"][1]["cimguiname"] = "igClearWindowSettings" defs["igClearWindowSettings"][1]["defaults"] = {} defs["igClearWindowSettings"][1]["funcname"] = "ClearWindowSettings" +<<<<<<< HEAD defs["igClearWindowSettings"][1]["location"] = "imgui_internal:3082" +======= +defs["igClearWindowSettings"][1]["location"] = "imgui_internal:3352" +>>>>>>> docking_inter defs["igClearWindowSettings"][1]["namespace"] = "ImGui" defs["igClearWindowSettings"][1]["ov_cimguiname"] = "igClearWindowSettings" defs["igClearWindowSettings"][1]["ret"] = "void" @@ -12555,7 +15240,11 @@ defs["igCloseButton"][1]["call_args"] = "(id,pos)" defs["igCloseButton"][1]["cimguiname"] = "igCloseButton" defs["igCloseButton"][1]["defaults"] = {} defs["igCloseButton"][1]["funcname"] = "CloseButton" +<<<<<<< HEAD defs["igCloseButton"][1]["location"] = "imgui_internal:3431" +======= +defs["igCloseButton"][1]["location"] = "imgui_internal:3763" +>>>>>>> docking_inter defs["igCloseButton"][1]["namespace"] = "ImGui" defs["igCloseButton"][1]["ov_cimguiname"] = "igCloseButton" defs["igCloseButton"][1]["ret"] = "bool" @@ -12571,7 +15260,11 @@ defs["igCloseCurrentPopup"][1]["call_args"] = "()" defs["igCloseCurrentPopup"][1]["cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["defaults"] = {} defs["igCloseCurrentPopup"][1]["funcname"] = "CloseCurrentPopup" +<<<<<<< HEAD defs["igCloseCurrentPopup"][1]["location"] = "imgui:743" +======= +defs["igCloseCurrentPopup"][1]["location"] = "imgui:753" +>>>>>>> docking_inter defs["igCloseCurrentPopup"][1]["namespace"] = "ImGui" defs["igCloseCurrentPopup"][1]["ov_cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["ret"] = "void" @@ -12593,7 +15286,11 @@ defs["igClosePopupToLevel"][1]["call_args"] = "(remaining,restore_focus_to_windo defs["igClosePopupToLevel"][1]["cimguiname"] = "igClosePopupToLevel" defs["igClosePopupToLevel"][1]["defaults"] = {} defs["igClosePopupToLevel"][1]["funcname"] = "ClosePopupToLevel" +<<<<<<< HEAD defs["igClosePopupToLevel"][1]["location"] = "imgui_internal:3149" +======= +defs["igClosePopupToLevel"][1]["location"] = "imgui_internal:3422" +>>>>>>> docking_inter defs["igClosePopupToLevel"][1]["namespace"] = "ImGui" defs["igClosePopupToLevel"][1]["ov_cimguiname"] = "igClosePopupToLevel" defs["igClosePopupToLevel"][1]["ret"] = "void" @@ -12609,7 +15306,11 @@ defs["igClosePopupsExceptModals"][1]["call_args"] = "()" defs["igClosePopupsExceptModals"][1]["cimguiname"] = "igClosePopupsExceptModals" defs["igClosePopupsExceptModals"][1]["defaults"] = {} defs["igClosePopupsExceptModals"][1]["funcname"] = "ClosePopupsExceptModals" +<<<<<<< HEAD defs["igClosePopupsExceptModals"][1]["location"] = "imgui_internal:3151" +======= +defs["igClosePopupsExceptModals"][1]["location"] = "imgui_internal:3424" +>>>>>>> docking_inter defs["igClosePopupsExceptModals"][1]["namespace"] = "ImGui" defs["igClosePopupsExceptModals"][1]["ov_cimguiname"] = "igClosePopupsExceptModals" defs["igClosePopupsExceptModals"][1]["ret"] = "void" @@ -12631,7 +15332,11 @@ defs["igClosePopupsOverWindow"][1]["call_args"] = "(ref_window,restore_focus_to_ defs["igClosePopupsOverWindow"][1]["cimguiname"] = "igClosePopupsOverWindow" defs["igClosePopupsOverWindow"][1]["defaults"] = {} defs["igClosePopupsOverWindow"][1]["funcname"] = "ClosePopupsOverWindow" +<<<<<<< HEAD defs["igClosePopupsOverWindow"][1]["location"] = "imgui_internal:3150" +======= +defs["igClosePopupsOverWindow"][1]["location"] = "imgui_internal:3423" +>>>>>>> docking_inter defs["igClosePopupsOverWindow"][1]["namespace"] = "ImGui" defs["igClosePopupsOverWindow"][1]["ov_cimguiname"] = "igClosePopupsOverWindow" defs["igClosePopupsOverWindow"][1]["ret"] = "void" @@ -12653,7 +15358,11 @@ defs["igCollapseButton"][1]["call_args"] = "(id,pos)" defs["igCollapseButton"][1]["cimguiname"] = "igCollapseButton" defs["igCollapseButton"][1]["defaults"] = {} defs["igCollapseButton"][1]["funcname"] = "CollapseButton" +<<<<<<< HEAD defs["igCollapseButton"][1]["location"] = "imgui_internal:3432" +======= +defs["igCollapseButton"][1]["location"] = "imgui_internal:3764" +>>>>>>> docking_inter defs["igCollapseButton"][1]["namespace"] = "ImGui" defs["igCollapseButton"][1]["ov_cimguiname"] = "igCollapseButton" defs["igCollapseButton"][1]["ret"] = "bool" @@ -12676,7 +15385,11 @@ defs["igCollapsingHeader"][1]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][1]["defaults"] = {} defs["igCollapsingHeader"][1]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][1]["funcname"] = "CollapsingHeader" +<<<<<<< HEAD defs["igCollapsingHeader"][1]["location"] = "imgui:652" +======= +defs["igCollapsingHeader"][1]["location"] = "imgui:662" +>>>>>>> docking_inter defs["igCollapsingHeader"][1]["namespace"] = "ImGui" defs["igCollapsingHeader"][1]["ov_cimguiname"] = "igCollapsingHeader_TreeNodeFlags" defs["igCollapsingHeader"][1]["ret"] = "bool" @@ -12700,7 +15413,11 @@ defs["igCollapsingHeader"][2]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][2]["defaults"] = {} defs["igCollapsingHeader"][2]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][2]["funcname"] = "CollapsingHeader" +<<<<<<< HEAD defs["igCollapsingHeader"][2]["location"] = "imgui:653" +======= +defs["igCollapsingHeader"][2]["location"] = "imgui:663" +>>>>>>> docking_inter defs["igCollapsingHeader"][2]["namespace"] = "ImGui" defs["igCollapsingHeader"][2]["ov_cimguiname"] = "igCollapsingHeader_BoolPtr" defs["igCollapsingHeader"][2]["ret"] = "bool" @@ -12731,7 +15448,11 @@ defs["igColorButton"][1]["defaults"] = {} defs["igColorButton"][1]["defaults"]["flags"] = "0" defs["igColorButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igColorButton"][1]["funcname"] = "ColorButton" +<<<<<<< HEAD defs["igColorButton"][1]["location"] = "imgui:633" +======= +defs["igColorButton"][1]["location"] = "imgui:643" +>>>>>>> docking_inter defs["igColorButton"][1]["namespace"] = "ImGui" defs["igColorButton"][1]["ov_cimguiname"] = "igColorButton" defs["igColorButton"][1]["ret"] = "bool" @@ -12750,7 +15471,11 @@ defs["igColorConvertFloat4ToU32"][1]["call_args"] = "(in)" defs["igColorConvertFloat4ToU32"][1]["cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["defaults"] = {} defs["igColorConvertFloat4ToU32"][1]["funcname"] = "ColorConvertFloat4ToU32" +<<<<<<< HEAD defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui:925" +======= +defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui:957" +>>>>>>> docking_inter defs["igColorConvertFloat4ToU32"][1]["namespace"] = "ImGui" defs["igColorConvertFloat4ToU32"][1]["ov_cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["ret"] = "ImU32" @@ -12787,7 +15512,11 @@ defs["igColorConvertHSVtoRGB"][1]["call_args"] = "(h,s,v,*out_r,*out_g,*out_b)" defs["igColorConvertHSVtoRGB"][1]["cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["defaults"] = {} defs["igColorConvertHSVtoRGB"][1]["funcname"] = "ColorConvertHSVtoRGB" +<<<<<<< HEAD defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui:927" +======= +defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui:959" +>>>>>>> docking_inter defs["igColorConvertHSVtoRGB"][1]["namespace"] = "ImGui" defs["igColorConvertHSVtoRGB"][1]["ov_cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["ret"] = "void" @@ -12824,7 +15553,11 @@ defs["igColorConvertRGBtoHSV"][1]["call_args"] = "(r,g,b,*out_h,*out_s,*out_v)" defs["igColorConvertRGBtoHSV"][1]["cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["defaults"] = {} defs["igColorConvertRGBtoHSV"][1]["funcname"] = "ColorConvertRGBtoHSV" +<<<<<<< HEAD defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui:926" +======= +defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui:958" +>>>>>>> docking_inter defs["igColorConvertRGBtoHSV"][1]["namespace"] = "ImGui" defs["igColorConvertRGBtoHSV"][1]["ov_cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["ret"] = "void" @@ -12846,7 +15579,11 @@ defs["igColorConvertU32ToFloat4"][1]["call_args"] = "(in)" defs["igColorConvertU32ToFloat4"][1]["cimguiname"] = "igColorConvertU32ToFloat4" defs["igColorConvertU32ToFloat4"][1]["defaults"] = {} defs["igColorConvertU32ToFloat4"][1]["funcname"] = "ColorConvertU32ToFloat4" +<<<<<<< HEAD defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui:924" +======= +defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui:956" +>>>>>>> docking_inter defs["igColorConvertU32ToFloat4"][1]["namespace"] = "ImGui" defs["igColorConvertU32ToFloat4"][1]["nonUDT"] = 1 defs["igColorConvertU32ToFloat4"][1]["ov_cimguiname"] = "igColorConvertU32ToFloat4" @@ -12873,7 +15610,11 @@ defs["igColorEdit3"][1]["cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["defaults"] = {} defs["igColorEdit3"][1]["defaults"]["flags"] = "0" defs["igColorEdit3"][1]["funcname"] = "ColorEdit3" +<<<<<<< HEAD defs["igColorEdit3"][1]["location"] = "imgui:629" +======= +defs["igColorEdit3"][1]["location"] = "imgui:639" +>>>>>>> docking_inter defs["igColorEdit3"][1]["namespace"] = "ImGui" defs["igColorEdit3"][1]["ov_cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["ret"] = "bool" @@ -12899,7 +15640,11 @@ defs["igColorEdit4"][1]["cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["defaults"] = {} defs["igColorEdit4"][1]["defaults"]["flags"] = "0" defs["igColorEdit4"][1]["funcname"] = "ColorEdit4" +<<<<<<< HEAD defs["igColorEdit4"][1]["location"] = "imgui:630" +======= +defs["igColorEdit4"][1]["location"] = "imgui:640" +>>>>>>> docking_inter defs["igColorEdit4"][1]["namespace"] = "ImGui" defs["igColorEdit4"][1]["ov_cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["ret"] = "bool" @@ -12921,7 +15666,11 @@ defs["igColorEditOptionsPopup"][1]["call_args"] = "(col,flags)" defs["igColorEditOptionsPopup"][1]["cimguiname"] = "igColorEditOptionsPopup" defs["igColorEditOptionsPopup"][1]["defaults"] = {} defs["igColorEditOptionsPopup"][1]["funcname"] = "ColorEditOptionsPopup" +<<<<<<< HEAD defs["igColorEditOptionsPopup"][1]["location"] = "imgui_internal:3480" +======= +defs["igColorEditOptionsPopup"][1]["location"] = "imgui_internal:3812" +>>>>>>> docking_inter defs["igColorEditOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorEditOptionsPopup"][1]["ov_cimguiname"] = "igColorEditOptionsPopup" defs["igColorEditOptionsPopup"][1]["ret"] = "void" @@ -12947,7 +15696,11 @@ defs["igColorPicker3"][1]["cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["defaults"] = {} defs["igColorPicker3"][1]["defaults"]["flags"] = "0" defs["igColorPicker3"][1]["funcname"] = "ColorPicker3" +<<<<<<< HEAD defs["igColorPicker3"][1]["location"] = "imgui:631" +======= +defs["igColorPicker3"][1]["location"] = "imgui:641" +>>>>>>> docking_inter defs["igColorPicker3"][1]["namespace"] = "ImGui" defs["igColorPicker3"][1]["ov_cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["ret"] = "bool" @@ -12977,7 +15730,11 @@ defs["igColorPicker4"][1]["defaults"] = {} defs["igColorPicker4"][1]["defaults"]["flags"] = "0" defs["igColorPicker4"][1]["defaults"]["ref_col"] = "NULL" defs["igColorPicker4"][1]["funcname"] = "ColorPicker4" +<<<<<<< HEAD defs["igColorPicker4"][1]["location"] = "imgui:632" +======= +defs["igColorPicker4"][1]["location"] = "imgui:642" +>>>>>>> docking_inter defs["igColorPicker4"][1]["namespace"] = "ImGui" defs["igColorPicker4"][1]["ov_cimguiname"] = "igColorPicker4" defs["igColorPicker4"][1]["ret"] = "bool" @@ -12999,7 +15756,11 @@ defs["igColorPickerOptionsPopup"][1]["call_args"] = "(ref_col,flags)" defs["igColorPickerOptionsPopup"][1]["cimguiname"] = "igColorPickerOptionsPopup" defs["igColorPickerOptionsPopup"][1]["defaults"] = {} defs["igColorPickerOptionsPopup"][1]["funcname"] = "ColorPickerOptionsPopup" +<<<<<<< HEAD defs["igColorPickerOptionsPopup"][1]["location"] = "imgui_internal:3481" +======= +defs["igColorPickerOptionsPopup"][1]["location"] = "imgui_internal:3813" +>>>>>>> docking_inter defs["igColorPickerOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorPickerOptionsPopup"][1]["ov_cimguiname"] = "igColorPickerOptionsPopup" defs["igColorPickerOptionsPopup"][1]["ret"] = "void" @@ -13024,7 +15785,11 @@ defs["igColorTooltip"][1]["call_args"] = "(text,col,flags)" defs["igColorTooltip"][1]["cimguiname"] = "igColorTooltip" defs["igColorTooltip"][1]["defaults"] = {} defs["igColorTooltip"][1]["funcname"] = "ColorTooltip" +<<<<<<< HEAD defs["igColorTooltip"][1]["location"] = "imgui_internal:3479" +======= +defs["igColorTooltip"][1]["location"] = "imgui_internal:3811" +>>>>>>> docking_inter defs["igColorTooltip"][1]["namespace"] = "ImGui" defs["igColorTooltip"][1]["ov_cimguiname"] = "igColorTooltip" defs["igColorTooltip"][1]["ret"] = "void" @@ -13052,7 +15817,11 @@ defs["igColumns"][1]["defaults"]["border"] = "true" defs["igColumns"][1]["defaults"]["count"] = "1" defs["igColumns"][1]["defaults"]["id"] = "NULL" defs["igColumns"][1]["funcname"] = "Columns" +<<<<<<< HEAD defs["igColumns"][1]["location"] = "imgui:818" +======= +defs["igColumns"][1]["location"] = "imgui:829" +>>>>>>> docking_inter defs["igColumns"][1]["namespace"] = "ImGui" defs["igColumns"][1]["ov_cimguiname"] = "igColumns" defs["igColumns"][1]["ret"] = "void" @@ -13084,7 +15853,11 @@ defs["igCombo"][1]["cimguiname"] = "igCombo" defs["igCombo"][1]["defaults"] = {} defs["igCombo"][1]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][1]["funcname"] = "Combo" +<<<<<<< HEAD defs["igCombo"][1]["location"] = "imgui:558" +======= +defs["igCombo"][1]["location"] = "imgui:568" +>>>>>>> docking_inter defs["igCombo"][1]["namespace"] = "ImGui" defs["igCombo"][1]["ov_cimguiname"] = "igCombo_Str_arr" defs["igCombo"][1]["ret"] = "bool" @@ -13111,7 +15884,11 @@ defs["igCombo"][2]["cimguiname"] = "igCombo" defs["igCombo"][2]["defaults"] = {} defs["igCombo"][2]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][2]["funcname"] = "Combo" +<<<<<<< HEAD defs["igCombo"][2]["location"] = "imgui:559" +======= +defs["igCombo"][2]["location"] = "imgui:569" +>>>>>>> docking_inter defs["igCombo"][2]["namespace"] = "ImGui" defs["igCombo"][2]["ov_cimguiname"] = "igCombo_Str" defs["igCombo"][2]["ret"] = "bool" @@ -13146,7 +15923,11 @@ defs["igCombo"][3]["cimguiname"] = "igCombo" defs["igCombo"][3]["defaults"] = {} defs["igCombo"][3]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][3]["funcname"] = "Combo" +<<<<<<< HEAD defs["igCombo"][3]["location"] = "imgui:560" +======= +defs["igCombo"][3]["location"] = "imgui:570" +>>>>>>> docking_inter defs["igCombo"][3]["namespace"] = "ImGui" defs["igCombo"][3]["ov_cimguiname"] = "igCombo_FnStrPtr" defs["igCombo"][3]["ret"] = "bool" @@ -13167,7 +15948,11 @@ defs["igConvertSingleModFlagToKey"][1]["call_args"] = "(key)" defs["igConvertSingleModFlagToKey"][1]["cimguiname"] = "igConvertSingleModFlagToKey" defs["igConvertSingleModFlagToKey"][1]["defaults"] = {} defs["igConvertSingleModFlagToKey"][1]["funcname"] = "ConvertSingleModFlagToKey" +<<<<<<< HEAD defs["igConvertSingleModFlagToKey"][1]["location"] = "imgui_internal:3209" +======= +defs["igConvertSingleModFlagToKey"][1]["location"] = "imgui_internal:3483" +>>>>>>> docking_inter defs["igConvertSingleModFlagToKey"][1]["namespace"] = "ImGui" defs["igConvertSingleModFlagToKey"][1]["ov_cimguiname"] = "igConvertSingleModFlagToKey" defs["igConvertSingleModFlagToKey"][1]["ret"] = "ImGuiKey" @@ -13187,7 +15972,11 @@ defs["igCreateContext"][1]["cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["defaults"] = {} defs["igCreateContext"][1]["defaults"]["shared_font_atlas"] = "NULL" defs["igCreateContext"][1]["funcname"] = "CreateContext" +<<<<<<< HEAD defs["igCreateContext"][1]["location"] = "imgui:308" +======= +defs["igCreateContext"][1]["location"] = "imgui:315" +>>>>>>> docking_inter defs["igCreateContext"][1]["namespace"] = "ImGui" defs["igCreateContext"][1]["ov_cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["ret"] = "ImGuiContext*" @@ -13206,7 +15995,11 @@ defs["igCreateNewWindowSettings"][1]["call_args"] = "(name)" defs["igCreateNewWindowSettings"][1]["cimguiname"] = "igCreateNewWindowSettings" defs["igCreateNewWindowSettings"][1]["defaults"] = {} defs["igCreateNewWindowSettings"][1]["funcname"] = "CreateNewWindowSettings" +<<<<<<< HEAD defs["igCreateNewWindowSettings"][1]["location"] = "imgui_internal:3079" +======= +defs["igCreateNewWindowSettings"][1]["location"] = "imgui_internal:3349" +>>>>>>> docking_inter defs["igCreateNewWindowSettings"][1]["namespace"] = "ImGui" defs["igCreateNewWindowSettings"][1]["ov_cimguiname"] = "igCreateNewWindowSettings" defs["igCreateNewWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" @@ -13238,7 +16031,11 @@ defs["igDataTypeApplyFromText"][1]["cimguiname"] = "igDataTypeApplyFromText" defs["igDataTypeApplyFromText"][1]["defaults"] = {} defs["igDataTypeApplyFromText"][1]["defaults"]["p_data_when_empty"] = "NULL" defs["igDataTypeApplyFromText"][1]["funcname"] = "DataTypeApplyFromText" +<<<<<<< HEAD defs["igDataTypeApplyFromText"][1]["location"] = "imgui_internal:3465" +======= +defs["igDataTypeApplyFromText"][1]["location"] = "imgui_internal:3797" +>>>>>>> docking_inter defs["igDataTypeApplyFromText"][1]["namespace"] = "ImGui" defs["igDataTypeApplyFromText"][1]["ov_cimguiname"] = "igDataTypeApplyFromText" defs["igDataTypeApplyFromText"][1]["ret"] = "bool" @@ -13269,7 +16066,11 @@ defs["igDataTypeApplyOp"][1]["call_args"] = "(data_type,op,output,arg_1,arg_2)" defs["igDataTypeApplyOp"][1]["cimguiname"] = "igDataTypeApplyOp" defs["igDataTypeApplyOp"][1]["defaults"] = {} defs["igDataTypeApplyOp"][1]["funcname"] = "DataTypeApplyOp" +<<<<<<< HEAD defs["igDataTypeApplyOp"][1]["location"] = "imgui_internal:3464" +======= +defs["igDataTypeApplyOp"][1]["location"] = "imgui_internal:3796" +>>>>>>> docking_inter defs["igDataTypeApplyOp"][1]["namespace"] = "ImGui" defs["igDataTypeApplyOp"][1]["ov_cimguiname"] = "igDataTypeApplyOp" defs["igDataTypeApplyOp"][1]["ret"] = "void" @@ -13297,7 +16098,11 @@ defs["igDataTypeClamp"][1]["call_args"] = "(data_type,p_data,p_min,p_max)" defs["igDataTypeClamp"][1]["cimguiname"] = "igDataTypeClamp" defs["igDataTypeClamp"][1]["defaults"] = {} defs["igDataTypeClamp"][1]["funcname"] = "DataTypeClamp" +<<<<<<< HEAD defs["igDataTypeClamp"][1]["location"] = "imgui_internal:3467" +======= +defs["igDataTypeClamp"][1]["location"] = "imgui_internal:3799" +>>>>>>> docking_inter defs["igDataTypeClamp"][1]["namespace"] = "ImGui" defs["igDataTypeClamp"][1]["ov_cimguiname"] = "igDataTypeClamp" defs["igDataTypeClamp"][1]["ret"] = "bool" @@ -13322,7 +16127,11 @@ defs["igDataTypeCompare"][1]["call_args"] = "(data_type,arg_1,arg_2)" defs["igDataTypeCompare"][1]["cimguiname"] = "igDataTypeCompare" defs["igDataTypeCompare"][1]["defaults"] = {} defs["igDataTypeCompare"][1]["funcname"] = "DataTypeCompare" +<<<<<<< HEAD defs["igDataTypeCompare"][1]["location"] = "imgui_internal:3466" +======= +defs["igDataTypeCompare"][1]["location"] = "imgui_internal:3798" +>>>>>>> docking_inter defs["igDataTypeCompare"][1]["namespace"] = "ImGui" defs["igDataTypeCompare"][1]["ov_cimguiname"] = "igDataTypeCompare" defs["igDataTypeCompare"][1]["ret"] = "int" @@ -13353,7 +16162,11 @@ defs["igDataTypeFormatString"][1]["call_args"] = "(buf,buf_size,data_type,p_data defs["igDataTypeFormatString"][1]["cimguiname"] = "igDataTypeFormatString" defs["igDataTypeFormatString"][1]["defaults"] = {} defs["igDataTypeFormatString"][1]["funcname"] = "DataTypeFormatString" +<<<<<<< HEAD defs["igDataTypeFormatString"][1]["location"] = "imgui_internal:3463" +======= +defs["igDataTypeFormatString"][1]["location"] = "imgui_internal:3795" +>>>>>>> docking_inter defs["igDataTypeFormatString"][1]["namespace"] = "ImGui" defs["igDataTypeFormatString"][1]["ov_cimguiname"] = "igDataTypeFormatString" defs["igDataTypeFormatString"][1]["ret"] = "int" @@ -13372,7 +16185,11 @@ defs["igDataTypeGetInfo"][1]["call_args"] = "(data_type)" defs["igDataTypeGetInfo"][1]["cimguiname"] = "igDataTypeGetInfo" defs["igDataTypeGetInfo"][1]["defaults"] = {} defs["igDataTypeGetInfo"][1]["funcname"] = "DataTypeGetInfo" +<<<<<<< HEAD defs["igDataTypeGetInfo"][1]["location"] = "imgui_internal:3462" +======= +defs["igDataTypeGetInfo"][1]["location"] = "imgui_internal:3794" +>>>>>>> docking_inter defs["igDataTypeGetInfo"][1]["namespace"] = "ImGui" defs["igDataTypeGetInfo"][1]["ov_cimguiname"] = "igDataTypeGetInfo" defs["igDataTypeGetInfo"][1]["ret"] = "const ImGuiDataTypeInfo*" @@ -13400,7 +16217,11 @@ defs["igDebugAllocHook"][1]["call_args"] = "(info,frame_count,ptr,size)" defs["igDebugAllocHook"][1]["cimguiname"] = "igDebugAllocHook" defs["igDebugAllocHook"][1]["defaults"] = {} defs["igDebugAllocHook"][1]["funcname"] = "DebugAllocHook" +<<<<<<< HEAD defs["igDebugAllocHook"][1]["location"] = "imgui_internal:3499" +======= +defs["igDebugAllocHook"][1]["location"] = "imgui_internal:3831" +>>>>>>> docking_inter defs["igDebugAllocHook"][1]["namespace"] = "ImGui" defs["igDebugAllocHook"][1]["ov_cimguiname"] = "igDebugAllocHook" defs["igDebugAllocHook"][1]["ret"] = "void" @@ -13422,7 +16243,11 @@ defs["igDebugBreakButton"][1]["call_args"] = "(label,description_of_location)" defs["igDebugBreakButton"][1]["cimguiname"] = "igDebugBreakButton" defs["igDebugBreakButton"][1]["defaults"] = {} defs["igDebugBreakButton"][1]["funcname"] = "DebugBreakButton" +<<<<<<< HEAD defs["igDebugBreakButton"][1]["location"] = "imgui_internal:3513" +======= +defs["igDebugBreakButton"][1]["location"] = "imgui_internal:3845" +>>>>>>> docking_inter defs["igDebugBreakButton"][1]["namespace"] = "ImGui" defs["igDebugBreakButton"][1]["ov_cimguiname"] = "igDebugBreakButton" defs["igDebugBreakButton"][1]["ret"] = "bool" @@ -13444,7 +16269,11 @@ defs["igDebugBreakButtonTooltip"][1]["call_args"] = "(keyboard_only,description_ defs["igDebugBreakButtonTooltip"][1]["cimguiname"] = "igDebugBreakButtonTooltip" defs["igDebugBreakButtonTooltip"][1]["defaults"] = {} defs["igDebugBreakButtonTooltip"][1]["funcname"] = "DebugBreakButtonTooltip" +<<<<<<< HEAD defs["igDebugBreakButtonTooltip"][1]["location"] = "imgui_internal:3514" +======= +defs["igDebugBreakButtonTooltip"][1]["location"] = "imgui_internal:3846" +>>>>>>> docking_inter defs["igDebugBreakButtonTooltip"][1]["namespace"] = "ImGui" defs["igDebugBreakButtonTooltip"][1]["ov_cimguiname"] = "igDebugBreakButtonTooltip" defs["igDebugBreakButtonTooltip"][1]["ret"] = "void" @@ -13460,7 +16289,11 @@ defs["igDebugBreakClearData"][1]["call_args"] = "()" defs["igDebugBreakClearData"][1]["cimguiname"] = "igDebugBreakClearData" defs["igDebugBreakClearData"][1]["defaults"] = {} defs["igDebugBreakClearData"][1]["funcname"] = "DebugBreakClearData" +<<<<<<< HEAD defs["igDebugBreakClearData"][1]["location"] = "imgui_internal:3512" +======= +defs["igDebugBreakClearData"][1]["location"] = "imgui_internal:3844" +>>>>>>> docking_inter defs["igDebugBreakClearData"][1]["namespace"] = "ImGui" defs["igDebugBreakClearData"][1]["ov_cimguiname"] = "igDebugBreakClearData" defs["igDebugBreakClearData"][1]["ret"] = "void" @@ -13497,7 +16330,11 @@ defs["igDebugCheckVersionAndDataLayout"][1]["call_args"] = "(version_str,sz_io,s defs["igDebugCheckVersionAndDataLayout"][1]["cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["defaults"] = {} defs["igDebugCheckVersionAndDataLayout"][1]["funcname"] = "DebugCheckVersionAndDataLayout" +<<<<<<< HEAD defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui:1000" +======= +defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui:1032" +>>>>>>> docking_inter defs["igDebugCheckVersionAndDataLayout"][1]["namespace"] = "ImGui" defs["igDebugCheckVersionAndDataLayout"][1]["ov_cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["ret"] = "bool" @@ -13517,7 +16354,11 @@ defs["igDebugDrawCursorPos"][1]["cimguiname"] = "igDebugDrawCursorPos" defs["igDebugDrawCursorPos"][1]["defaults"] = {} defs["igDebugDrawCursorPos"][1]["defaults"]["col"] = "4278190335" defs["igDebugDrawCursorPos"][1]["funcname"] = "DebugDrawCursorPos" +<<<<<<< HEAD defs["igDebugDrawCursorPos"][1]["location"] = "imgui_internal:3505" +======= +defs["igDebugDrawCursorPos"][1]["location"] = "imgui_internal:3837" +>>>>>>> docking_inter defs["igDebugDrawCursorPos"][1]["namespace"] = "ImGui" defs["igDebugDrawCursorPos"][1]["ov_cimguiname"] = "igDebugDrawCursorPos" defs["igDebugDrawCursorPos"][1]["ret"] = "void" @@ -13537,7 +16378,11 @@ defs["igDebugDrawItemRect"][1]["cimguiname"] = "igDebugDrawItemRect" defs["igDebugDrawItemRect"][1]["defaults"] = {} defs["igDebugDrawItemRect"][1]["defaults"]["col"] = "4278190335" defs["igDebugDrawItemRect"][1]["funcname"] = "DebugDrawItemRect" +<<<<<<< HEAD defs["igDebugDrawItemRect"][1]["location"] = "imgui_internal:3507" +======= +defs["igDebugDrawItemRect"][1]["location"] = "imgui_internal:3839" +>>>>>>> docking_inter defs["igDebugDrawItemRect"][1]["namespace"] = "ImGui" defs["igDebugDrawItemRect"][1]["ov_cimguiname"] = "igDebugDrawItemRect" defs["igDebugDrawItemRect"][1]["ret"] = "void" @@ -13557,7 +16402,11 @@ defs["igDebugDrawLineExtents"][1]["cimguiname"] = "igDebugDrawLineExtents" defs["igDebugDrawLineExtents"][1]["defaults"] = {} defs["igDebugDrawLineExtents"][1]["defaults"]["col"] = "4278190335" defs["igDebugDrawLineExtents"][1]["funcname"] = "DebugDrawLineExtents" +<<<<<<< HEAD defs["igDebugDrawLineExtents"][1]["location"] = "imgui_internal:3506" +======= +defs["igDebugDrawLineExtents"][1]["location"] = "imgui_internal:3838" +>>>>>>> docking_inter defs["igDebugDrawLineExtents"][1]["namespace"] = "ImGui" defs["igDebugDrawLineExtents"][1]["ov_cimguiname"] = "igDebugDrawLineExtents" defs["igDebugDrawLineExtents"][1]["ret"] = "void" @@ -13576,7 +16425,11 @@ defs["igDebugFlashStyleColor"][1]["call_args"] = "(idx)" defs["igDebugFlashStyleColor"][1]["cimguiname"] = "igDebugFlashStyleColor" defs["igDebugFlashStyleColor"][1]["defaults"] = {} defs["igDebugFlashStyleColor"][1]["funcname"] = "DebugFlashStyleColor" +<<<<<<< HEAD defs["igDebugFlashStyleColor"][1]["location"] = "imgui:998" +======= +defs["igDebugFlashStyleColor"][1]["location"] = "imgui:1030" +>>>>>>> docking_inter defs["igDebugFlashStyleColor"][1]["namespace"] = "ImGui" defs["igDebugFlashStyleColor"][1]["ov_cimguiname"] = "igDebugFlashStyleColor" defs["igDebugFlashStyleColor"][1]["ret"] = "void" @@ -13604,7 +16457,11 @@ defs["igDebugHookIdInfo"][1]["call_args"] = "(id,data_type,data_id,data_id_end)" defs["igDebugHookIdInfo"][1]["cimguiname"] = "igDebugHookIdInfo" defs["igDebugHookIdInfo"][1]["defaults"] = {} defs["igDebugHookIdInfo"][1]["funcname"] = "DebugHookIdInfo" +<<<<<<< HEAD defs["igDebugHookIdInfo"][1]["location"] = "imgui_internal:3516" +======= +defs["igDebugHookIdInfo"][1]["location"] = "imgui_internal:3848" +>>>>>>> docking_inter defs["igDebugHookIdInfo"][1]["namespace"] = "ImGui" defs["igDebugHookIdInfo"][1]["ov_cimguiname"] = "igDebugHookIdInfo" defs["igDebugHookIdInfo"][1]["ret"] = "void" @@ -13623,7 +16480,11 @@ defs["igDebugLocateItem"][1]["call_args"] = "(target_id)" defs["igDebugLocateItem"][1]["cimguiname"] = "igDebugLocateItem" defs["igDebugLocateItem"][1]["defaults"] = {} defs["igDebugLocateItem"][1]["funcname"] = "DebugLocateItem" +<<<<<<< HEAD defs["igDebugLocateItem"][1]["location"] = "imgui_internal:3509" +======= +defs["igDebugLocateItem"][1]["location"] = "imgui_internal:3841" +>>>>>>> docking_inter defs["igDebugLocateItem"][1]["namespace"] = "ImGui" defs["igDebugLocateItem"][1]["ov_cimguiname"] = "igDebugLocateItem" defs["igDebugLocateItem"][1]["ret"] = "void" @@ -13642,7 +16503,11 @@ defs["igDebugLocateItemOnHover"][1]["call_args"] = "(target_id)" defs["igDebugLocateItemOnHover"][1]["cimguiname"] = "igDebugLocateItemOnHover" defs["igDebugLocateItemOnHover"][1]["defaults"] = {} defs["igDebugLocateItemOnHover"][1]["funcname"] = "DebugLocateItemOnHover" +<<<<<<< HEAD defs["igDebugLocateItemOnHover"][1]["location"] = "imgui_internal:3510" +======= +defs["igDebugLocateItemOnHover"][1]["location"] = "imgui_internal:3842" +>>>>>>> docking_inter defs["igDebugLocateItemOnHover"][1]["namespace"] = "ImGui" defs["igDebugLocateItemOnHover"][1]["ov_cimguiname"] = "igDebugLocateItemOnHover" defs["igDebugLocateItemOnHover"][1]["ret"] = "void" @@ -13658,7 +16523,11 @@ defs["igDebugLocateItemResolveWithLastItem"][1]["call_args"] = "()" defs["igDebugLocateItemResolveWithLastItem"][1]["cimguiname"] = "igDebugLocateItemResolveWithLastItem" defs["igDebugLocateItemResolveWithLastItem"][1]["defaults"] = {} defs["igDebugLocateItemResolveWithLastItem"][1]["funcname"] = "DebugLocateItemResolveWithLastItem" +<<<<<<< HEAD defs["igDebugLocateItemResolveWithLastItem"][1]["location"] = "imgui_internal:3511" +======= +defs["igDebugLocateItemResolveWithLastItem"][1]["location"] = "imgui_internal:3843" +>>>>>>> docking_inter defs["igDebugLocateItemResolveWithLastItem"][1]["namespace"] = "ImGui" defs["igDebugLocateItemResolveWithLastItem"][1]["ov_cimguiname"] = "igDebugLocateItemResolveWithLastItem" defs["igDebugLocateItemResolveWithLastItem"][1]["ret"] = "void" @@ -13681,7 +16550,11 @@ defs["igDebugLog"][1]["cimguiname"] = "igDebugLog" defs["igDebugLog"][1]["defaults"] = {} defs["igDebugLog"][1]["funcname"] = "DebugLog" defs["igDebugLog"][1]["isvararg"] = "...)" +<<<<<<< HEAD defs["igDebugLog"][1]["location"] = "imgui_internal:3497" +======= +defs["igDebugLog"][1]["location"] = "imgui_internal:3829" +>>>>>>> docking_inter defs["igDebugLog"][1]["namespace"] = "ImGui" defs["igDebugLog"][1]["ov_cimguiname"] = "igDebugLog" defs["igDebugLog"][1]["ret"] = "void" @@ -13703,7 +16576,11 @@ defs["igDebugLogV"][1]["call_args"] = "(fmt,args)" defs["igDebugLogV"][1]["cimguiname"] = "igDebugLogV" defs["igDebugLogV"][1]["defaults"] = {} defs["igDebugLogV"][1]["funcname"] = "DebugLogV" +<<<<<<< HEAD defs["igDebugLogV"][1]["location"] = "imgui_internal:3498" +======= +defs["igDebugLogV"][1]["location"] = "imgui_internal:3830" +>>>>>>> docking_inter defs["igDebugLogV"][1]["namespace"] = "ImGui" defs["igDebugLogV"][1]["ov_cimguiname"] = "igDebugLogV" defs["igDebugLogV"][1]["ret"] = "void" @@ -13722,13 +16599,42 @@ defs["igDebugNodeColumns"][1]["call_args"] = "(columns)" defs["igDebugNodeColumns"][1]["cimguiname"] = "igDebugNodeColumns" defs["igDebugNodeColumns"][1]["defaults"] = {} defs["igDebugNodeColumns"][1]["funcname"] = "DebugNodeColumns" +<<<<<<< HEAD defs["igDebugNodeColumns"][1]["location"] = "imgui_internal:3517" +======= +defs["igDebugNodeColumns"][1]["location"] = "imgui_internal:3849" +>>>>>>> docking_inter defs["igDebugNodeColumns"][1]["namespace"] = "ImGui" defs["igDebugNodeColumns"][1]["ov_cimguiname"] = "igDebugNodeColumns" defs["igDebugNodeColumns"][1]["ret"] = "void" defs["igDebugNodeColumns"][1]["signature"] = "(ImGuiOldColumns*)" defs["igDebugNodeColumns"][1]["stname"] = "" defs["igDebugNodeColumns"]["(ImGuiOldColumns*)"] = defs["igDebugNodeColumns"][1] +<<<<<<< HEAD +======= +defs["igDebugNodeDockNode"] = {} +defs["igDebugNodeDockNode"][1] = {} +defs["igDebugNodeDockNode"][1]["args"] = "(ImGuiDockNode* node,const char* label)" +defs["igDebugNodeDockNode"][1]["argsT"] = {} +defs["igDebugNodeDockNode"][1]["argsT"][1] = {} +defs["igDebugNodeDockNode"][1]["argsT"][1]["name"] = "node" +defs["igDebugNodeDockNode"][1]["argsT"][1]["type"] = "ImGuiDockNode*" +defs["igDebugNodeDockNode"][1]["argsT"][2] = {} +defs["igDebugNodeDockNode"][1]["argsT"][2]["name"] = "label" +defs["igDebugNodeDockNode"][1]["argsT"][2]["type"] = "const char*" +defs["igDebugNodeDockNode"][1]["argsoriginal"] = "(ImGuiDockNode* node,const char* label)" +defs["igDebugNodeDockNode"][1]["call_args"] = "(node,label)" +defs["igDebugNodeDockNode"][1]["cimguiname"] = "igDebugNodeDockNode" +defs["igDebugNodeDockNode"][1]["defaults"] = {} +defs["igDebugNodeDockNode"][1]["funcname"] = "DebugNodeDockNode" +defs["igDebugNodeDockNode"][1]["location"] = "imgui_internal:3850" +defs["igDebugNodeDockNode"][1]["namespace"] = "ImGui" +defs["igDebugNodeDockNode"][1]["ov_cimguiname"] = "igDebugNodeDockNode" +defs["igDebugNodeDockNode"][1]["ret"] = "void" +defs["igDebugNodeDockNode"][1]["signature"] = "(ImGuiDockNode*,const char*)" +defs["igDebugNodeDockNode"][1]["stname"] = "" +defs["igDebugNodeDockNode"]["(ImGuiDockNode*,const char*)"] = defs["igDebugNodeDockNode"][1] +>>>>>>> docking_inter defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"] = {} defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1] = {} defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["args"] = "(ImDrawList* out_draw_list,const ImDrawList* draw_list,const ImDrawCmd* draw_cmd,bool show_mesh,bool show_aabb)" @@ -13753,7 +16659,11 @@ defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["call_args"] = "(out_draw_li defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["cimguiname"] = "igDebugNodeDrawCmdShowMeshAndBoundingBox" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["defaults"] = {} defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["funcname"] = "DebugNodeDrawCmdShowMeshAndBoundingBox" +<<<<<<< HEAD defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["location"] = "imgui_internal:3519" +======= +defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["location"] = "imgui_internal:3852" +>>>>>>> docking_inter defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["namespace"] = "ImGui" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["ov_cimguiname"] = "igDebugNodeDrawCmdShowMeshAndBoundingBox" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["ret"] = "void" @@ -13781,7 +16691,11 @@ defs["igDebugNodeDrawList"][1]["call_args"] = "(window,viewport,draw_list,label) defs["igDebugNodeDrawList"][1]["cimguiname"] = "igDebugNodeDrawList" defs["igDebugNodeDrawList"][1]["defaults"] = {} defs["igDebugNodeDrawList"][1]["funcname"] = "DebugNodeDrawList" +<<<<<<< HEAD defs["igDebugNodeDrawList"][1]["location"] = "imgui_internal:3518" +======= +defs["igDebugNodeDrawList"][1]["location"] = "imgui_internal:3851" +>>>>>>> docking_inter defs["igDebugNodeDrawList"][1]["namespace"] = "ImGui" defs["igDebugNodeDrawList"][1]["ov_cimguiname"] = "igDebugNodeDrawList" defs["igDebugNodeDrawList"][1]["ret"] = "void" @@ -13800,7 +16714,11 @@ defs["igDebugNodeFont"][1]["call_args"] = "(font)" defs["igDebugNodeFont"][1]["cimguiname"] = "igDebugNodeFont" defs["igDebugNodeFont"][1]["defaults"] = {} defs["igDebugNodeFont"][1]["funcname"] = "DebugNodeFont" +<<<<<<< HEAD defs["igDebugNodeFont"][1]["location"] = "imgui_internal:3520" +======= +defs["igDebugNodeFont"][1]["location"] = "imgui_internal:3853" +>>>>>>> docking_inter defs["igDebugNodeFont"][1]["namespace"] = "ImGui" defs["igDebugNodeFont"][1]["ov_cimguiname"] = "igDebugNodeFont" defs["igDebugNodeFont"][1]["ret"] = "void" @@ -13822,7 +16740,11 @@ defs["igDebugNodeFontGlyph"][1]["call_args"] = "(font,glyph)" defs["igDebugNodeFontGlyph"][1]["cimguiname"] = "igDebugNodeFontGlyph" defs["igDebugNodeFontGlyph"][1]["defaults"] = {} defs["igDebugNodeFontGlyph"][1]["funcname"] = "DebugNodeFontGlyph" +<<<<<<< HEAD defs["igDebugNodeFontGlyph"][1]["location"] = "imgui_internal:3521" +======= +defs["igDebugNodeFontGlyph"][1]["location"] = "imgui_internal:3854" +>>>>>>> docking_inter defs["igDebugNodeFontGlyph"][1]["namespace"] = "ImGui" defs["igDebugNodeFontGlyph"][1]["ov_cimguiname"] = "igDebugNodeFontGlyph" defs["igDebugNodeFontGlyph"][1]["ret"] = "void" @@ -13841,7 +16763,11 @@ defs["igDebugNodeInputTextState"][1]["call_args"] = "(state)" defs["igDebugNodeInputTextState"][1]["cimguiname"] = "igDebugNodeInputTextState" defs["igDebugNodeInputTextState"][1]["defaults"] = {} defs["igDebugNodeInputTextState"][1]["funcname"] = "DebugNodeInputTextState" +<<<<<<< HEAD defs["igDebugNodeInputTextState"][1]["location"] = "imgui_internal:3526" +======= +defs["igDebugNodeInputTextState"][1]["location"] = "imgui_internal:3859" +>>>>>>> docking_inter defs["igDebugNodeInputTextState"][1]["namespace"] = "ImGui" defs["igDebugNodeInputTextState"][1]["ov_cimguiname"] = "igDebugNodeInputTextState" defs["igDebugNodeInputTextState"][1]["ret"] = "void" @@ -13863,7 +16789,11 @@ defs["igDebugNodeStorage"][1]["call_args"] = "(storage,label)" defs["igDebugNodeStorage"][1]["cimguiname"] = "igDebugNodeStorage" defs["igDebugNodeStorage"][1]["defaults"] = {} defs["igDebugNodeStorage"][1]["funcname"] = "DebugNodeStorage" +<<<<<<< HEAD defs["igDebugNodeStorage"][1]["location"] = "imgui_internal:3522" +======= +defs["igDebugNodeStorage"][1]["location"] = "imgui_internal:3855" +>>>>>>> docking_inter defs["igDebugNodeStorage"][1]["namespace"] = "ImGui" defs["igDebugNodeStorage"][1]["ov_cimguiname"] = "igDebugNodeStorage" defs["igDebugNodeStorage"][1]["ret"] = "void" @@ -13885,7 +16815,11 @@ defs["igDebugNodeTabBar"][1]["call_args"] = "(tab_bar,label)" defs["igDebugNodeTabBar"][1]["cimguiname"] = "igDebugNodeTabBar" defs["igDebugNodeTabBar"][1]["defaults"] = {} defs["igDebugNodeTabBar"][1]["funcname"] = "DebugNodeTabBar" +<<<<<<< HEAD defs["igDebugNodeTabBar"][1]["location"] = "imgui_internal:3523" +======= +defs["igDebugNodeTabBar"][1]["location"] = "imgui_internal:3856" +>>>>>>> docking_inter defs["igDebugNodeTabBar"][1]["namespace"] = "ImGui" defs["igDebugNodeTabBar"][1]["ov_cimguiname"] = "igDebugNodeTabBar" defs["igDebugNodeTabBar"][1]["ret"] = "void" @@ -13904,7 +16838,11 @@ defs["igDebugNodeTable"][1]["call_args"] = "(table)" defs["igDebugNodeTable"][1]["cimguiname"] = "igDebugNodeTable" defs["igDebugNodeTable"][1]["defaults"] = {} defs["igDebugNodeTable"][1]["funcname"] = "DebugNodeTable" +<<<<<<< HEAD defs["igDebugNodeTable"][1]["location"] = "imgui_internal:3524" +======= +defs["igDebugNodeTable"][1]["location"] = "imgui_internal:3857" +>>>>>>> docking_inter defs["igDebugNodeTable"][1]["namespace"] = "ImGui" defs["igDebugNodeTable"][1]["ov_cimguiname"] = "igDebugNodeTable" defs["igDebugNodeTable"][1]["ret"] = "void" @@ -13923,7 +16861,11 @@ defs["igDebugNodeTableSettings"][1]["call_args"] = "(settings)" defs["igDebugNodeTableSettings"][1]["cimguiname"] = "igDebugNodeTableSettings" defs["igDebugNodeTableSettings"][1]["defaults"] = {} defs["igDebugNodeTableSettings"][1]["funcname"] = "DebugNodeTableSettings" +<<<<<<< HEAD defs["igDebugNodeTableSettings"][1]["location"] = "imgui_internal:3525" +======= +defs["igDebugNodeTableSettings"][1]["location"] = "imgui_internal:3858" +>>>>>>> docking_inter defs["igDebugNodeTableSettings"][1]["namespace"] = "ImGui" defs["igDebugNodeTableSettings"][1]["ov_cimguiname"] = "igDebugNodeTableSettings" defs["igDebugNodeTableSettings"][1]["ret"] = "void" @@ -13942,7 +16884,11 @@ defs["igDebugNodeTypingSelectState"][1]["call_args"] = "(state)" defs["igDebugNodeTypingSelectState"][1]["cimguiname"] = "igDebugNodeTypingSelectState" defs["igDebugNodeTypingSelectState"][1]["defaults"] = {} defs["igDebugNodeTypingSelectState"][1]["funcname"] = "DebugNodeTypingSelectState" +<<<<<<< HEAD defs["igDebugNodeTypingSelectState"][1]["location"] = "imgui_internal:3527" +======= +defs["igDebugNodeTypingSelectState"][1]["location"] = "imgui_internal:3860" +>>>>>>> docking_inter defs["igDebugNodeTypingSelectState"][1]["namespace"] = "ImGui" defs["igDebugNodeTypingSelectState"][1]["ov_cimguiname"] = "igDebugNodeTypingSelectState" defs["igDebugNodeTypingSelectState"][1]["ret"] = "void" @@ -13961,7 +16907,11 @@ defs["igDebugNodeViewport"][1]["call_args"] = "(viewport)" defs["igDebugNodeViewport"][1]["cimguiname"] = "igDebugNodeViewport" defs["igDebugNodeViewport"][1]["defaults"] = {} defs["igDebugNodeViewport"][1]["funcname"] = "DebugNodeViewport" +<<<<<<< HEAD defs["igDebugNodeViewport"][1]["location"] = "imgui_internal:3532" +======= +defs["igDebugNodeViewport"][1]["location"] = "imgui_internal:3865" +>>>>>>> docking_inter defs["igDebugNodeViewport"][1]["namespace"] = "ImGui" defs["igDebugNodeViewport"][1]["ov_cimguiname"] = "igDebugNodeViewport" defs["igDebugNodeViewport"][1]["ret"] = "void" @@ -13983,7 +16933,11 @@ defs["igDebugNodeWindow"][1]["call_args"] = "(window,label)" defs["igDebugNodeWindow"][1]["cimguiname"] = "igDebugNodeWindow" defs["igDebugNodeWindow"][1]["defaults"] = {} defs["igDebugNodeWindow"][1]["funcname"] = "DebugNodeWindow" +<<<<<<< HEAD defs["igDebugNodeWindow"][1]["location"] = "imgui_internal:3528" +======= +defs["igDebugNodeWindow"][1]["location"] = "imgui_internal:3861" +>>>>>>> docking_inter defs["igDebugNodeWindow"][1]["namespace"] = "ImGui" defs["igDebugNodeWindow"][1]["ov_cimguiname"] = "igDebugNodeWindow" defs["igDebugNodeWindow"][1]["ret"] = "void" @@ -14002,7 +16956,11 @@ defs["igDebugNodeWindowSettings"][1]["call_args"] = "(settings)" defs["igDebugNodeWindowSettings"][1]["cimguiname"] = "igDebugNodeWindowSettings" defs["igDebugNodeWindowSettings"][1]["defaults"] = {} defs["igDebugNodeWindowSettings"][1]["funcname"] = "DebugNodeWindowSettings" +<<<<<<< HEAD defs["igDebugNodeWindowSettings"][1]["location"] = "imgui_internal:3529" +======= +defs["igDebugNodeWindowSettings"][1]["location"] = "imgui_internal:3862" +>>>>>>> docking_inter defs["igDebugNodeWindowSettings"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowSettings"][1]["ov_cimguiname"] = "igDebugNodeWindowSettings" defs["igDebugNodeWindowSettings"][1]["ret"] = "void" @@ -14024,7 +16982,11 @@ defs["igDebugNodeWindowsList"][1]["call_args"] = "(windows,label)" defs["igDebugNodeWindowsList"][1]["cimguiname"] = "igDebugNodeWindowsList" defs["igDebugNodeWindowsList"][1]["defaults"] = {} defs["igDebugNodeWindowsList"][1]["funcname"] = "DebugNodeWindowsList" +<<<<<<< HEAD defs["igDebugNodeWindowsList"][1]["location"] = "imgui_internal:3530" +======= +defs["igDebugNodeWindowsList"][1]["location"] = "imgui_internal:3863" +>>>>>>> docking_inter defs["igDebugNodeWindowsList"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowsList"][1]["ov_cimguiname"] = "igDebugNodeWindowsList" defs["igDebugNodeWindowsList"][1]["ret"] = "void" @@ -14049,7 +17011,11 @@ defs["igDebugNodeWindowsListByBeginStackParent"][1]["call_args"] = "(windows,win defs["igDebugNodeWindowsListByBeginStackParent"][1]["cimguiname"] = "igDebugNodeWindowsListByBeginStackParent" defs["igDebugNodeWindowsListByBeginStackParent"][1]["defaults"] = {} defs["igDebugNodeWindowsListByBeginStackParent"][1]["funcname"] = "DebugNodeWindowsListByBeginStackParent" +<<<<<<< HEAD defs["igDebugNodeWindowsListByBeginStackParent"][1]["location"] = "imgui_internal:3531" +======= +defs["igDebugNodeWindowsListByBeginStackParent"][1]["location"] = "imgui_internal:3864" +>>>>>>> docking_inter defs["igDebugNodeWindowsListByBeginStackParent"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowsListByBeginStackParent"][1]["ov_cimguiname"] = "igDebugNodeWindowsListByBeginStackParent" defs["igDebugNodeWindowsListByBeginStackParent"][1]["ret"] = "void" @@ -14068,7 +17034,11 @@ defs["igDebugRenderKeyboardPreview"][1]["call_args"] = "(draw_list)" defs["igDebugRenderKeyboardPreview"][1]["cimguiname"] = "igDebugRenderKeyboardPreview" defs["igDebugRenderKeyboardPreview"][1]["defaults"] = {} defs["igDebugRenderKeyboardPreview"][1]["funcname"] = "DebugRenderKeyboardPreview" +<<<<<<< HEAD defs["igDebugRenderKeyboardPreview"][1]["location"] = "imgui_internal:3533" +======= +defs["igDebugRenderKeyboardPreview"][1]["location"] = "imgui_internal:3866" +>>>>>>> docking_inter defs["igDebugRenderKeyboardPreview"][1]["namespace"] = "ImGui" defs["igDebugRenderKeyboardPreview"][1]["ov_cimguiname"] = "igDebugRenderKeyboardPreview" defs["igDebugRenderKeyboardPreview"][1]["ret"] = "void" @@ -14093,7 +17063,11 @@ defs["igDebugRenderViewportThumbnail"][1]["call_args"] = "(draw_list,viewport,bb defs["igDebugRenderViewportThumbnail"][1]["cimguiname"] = "igDebugRenderViewportThumbnail" defs["igDebugRenderViewportThumbnail"][1]["defaults"] = {} defs["igDebugRenderViewportThumbnail"][1]["funcname"] = "DebugRenderViewportThumbnail" +<<<<<<< HEAD defs["igDebugRenderViewportThumbnail"][1]["location"] = "imgui_internal:3534" +======= +defs["igDebugRenderViewportThumbnail"][1]["location"] = "imgui_internal:3867" +>>>>>>> docking_inter defs["igDebugRenderViewportThumbnail"][1]["namespace"] = "ImGui" defs["igDebugRenderViewportThumbnail"][1]["ov_cimguiname"] = "igDebugRenderViewportThumbnail" defs["igDebugRenderViewportThumbnail"][1]["ret"] = "void" @@ -14109,7 +17083,11 @@ defs["igDebugStartItemPicker"][1]["call_args"] = "()" defs["igDebugStartItemPicker"][1]["cimguiname"] = "igDebugStartItemPicker" defs["igDebugStartItemPicker"][1]["defaults"] = {} defs["igDebugStartItemPicker"][1]["funcname"] = "DebugStartItemPicker" +<<<<<<< HEAD defs["igDebugStartItemPicker"][1]["location"] = "imgui:999" +======= +defs["igDebugStartItemPicker"][1]["location"] = "imgui:1031" +>>>>>>> docking_inter defs["igDebugStartItemPicker"][1]["namespace"] = "ImGui" defs["igDebugStartItemPicker"][1]["ov_cimguiname"] = "igDebugStartItemPicker" defs["igDebugStartItemPicker"][1]["ret"] = "void" @@ -14128,7 +17106,11 @@ defs["igDebugTextEncoding"][1]["call_args"] = "(text)" defs["igDebugTextEncoding"][1]["cimguiname"] = "igDebugTextEncoding" defs["igDebugTextEncoding"][1]["defaults"] = {} defs["igDebugTextEncoding"][1]["funcname"] = "DebugTextEncoding" +<<<<<<< HEAD defs["igDebugTextEncoding"][1]["location"] = "imgui:997" +======= +defs["igDebugTextEncoding"][1]["location"] = "imgui:1029" +>>>>>>> docking_inter defs["igDebugTextEncoding"][1]["namespace"] = "ImGui" defs["igDebugTextEncoding"][1]["ov_cimguiname"] = "igDebugTextEncoding" defs["igDebugTextEncoding"][1]["ret"] = "void" @@ -14150,7 +17132,11 @@ defs["igDebugTextUnformattedWithLocateItem"][1]["call_args"] = "(line_begin,line defs["igDebugTextUnformattedWithLocateItem"][1]["cimguiname"] = "igDebugTextUnformattedWithLocateItem" defs["igDebugTextUnformattedWithLocateItem"][1]["defaults"] = {} defs["igDebugTextUnformattedWithLocateItem"][1]["funcname"] = "DebugTextUnformattedWithLocateItem" +<<<<<<< HEAD defs["igDebugTextUnformattedWithLocateItem"][1]["location"] = "imgui_internal:3508" +======= +defs["igDebugTextUnformattedWithLocateItem"][1]["location"] = "imgui_internal:3840" +>>>>>>> docking_inter defs["igDebugTextUnformattedWithLocateItem"][1]["namespace"] = "ImGui" defs["igDebugTextUnformattedWithLocateItem"][1]["ov_cimguiname"] = "igDebugTextUnformattedWithLocateItem" defs["igDebugTextUnformattedWithLocateItem"][1]["ret"] = "void" @@ -14170,13 +17156,914 @@ defs["igDestroyContext"][1]["cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["defaults"] = {} defs["igDestroyContext"][1]["defaults"]["ctx"] = "NULL" defs["igDestroyContext"][1]["funcname"] = "DestroyContext" +<<<<<<< HEAD defs["igDestroyContext"][1]["location"] = "imgui:309" +======= +defs["igDestroyContext"][1]["location"] = "imgui:316" +>>>>>>> docking_inter defs["igDestroyContext"][1]["namespace"] = "ImGui" defs["igDestroyContext"][1]["ov_cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["ret"] = "void" defs["igDestroyContext"][1]["signature"] = "(ImGuiContext*)" defs["igDestroyContext"][1]["stname"] = "" defs["igDestroyContext"]["(ImGuiContext*)"] = defs["igDestroyContext"][1] +<<<<<<< HEAD +======= +defs["igDestroyPlatformWindow"] = {} +defs["igDestroyPlatformWindow"][1] = {} +defs["igDestroyPlatformWindow"][1]["args"] = "(ImGuiViewportP* viewport)" +defs["igDestroyPlatformWindow"][1]["argsT"] = {} +defs["igDestroyPlatformWindow"][1]["argsT"][1] = {} +defs["igDestroyPlatformWindow"][1]["argsT"][1]["name"] = "viewport" +defs["igDestroyPlatformWindow"][1]["argsT"][1]["type"] = "ImGuiViewportP*" +defs["igDestroyPlatformWindow"][1]["argsoriginal"] = "(ImGuiViewportP* viewport)" +defs["igDestroyPlatformWindow"][1]["call_args"] = "(viewport)" +defs["igDestroyPlatformWindow"][1]["cimguiname"] = "igDestroyPlatformWindow" +defs["igDestroyPlatformWindow"][1]["defaults"] = {} +defs["igDestroyPlatformWindow"][1]["funcname"] = "DestroyPlatformWindow" +defs["igDestroyPlatformWindow"][1]["location"] = "imgui_internal:3334" +defs["igDestroyPlatformWindow"][1]["namespace"] = "ImGui" +defs["igDestroyPlatformWindow"][1]["ov_cimguiname"] = "igDestroyPlatformWindow" +defs["igDestroyPlatformWindow"][1]["ret"] = "void" +defs["igDestroyPlatformWindow"][1]["signature"] = "(ImGuiViewportP*)" +defs["igDestroyPlatformWindow"][1]["stname"] = "" +defs["igDestroyPlatformWindow"]["(ImGuiViewportP*)"] = defs["igDestroyPlatformWindow"][1] +defs["igDestroyPlatformWindows"] = {} +defs["igDestroyPlatformWindows"][1] = {} +defs["igDestroyPlatformWindows"][1]["args"] = "()" +defs["igDestroyPlatformWindows"][1]["argsT"] = {} +defs["igDestroyPlatformWindows"][1]["argsoriginal"] = "()" +defs["igDestroyPlatformWindows"][1]["call_args"] = "()" +defs["igDestroyPlatformWindows"][1]["cimguiname"] = "igDestroyPlatformWindows" +defs["igDestroyPlatformWindows"][1]["defaults"] = {} +defs["igDestroyPlatformWindows"][1]["funcname"] = "DestroyPlatformWindows" +defs["igDestroyPlatformWindows"][1]["location"] = "imgui:1049" +defs["igDestroyPlatformWindows"][1]["namespace"] = "ImGui" +defs["igDestroyPlatformWindows"][1]["ov_cimguiname"] = "igDestroyPlatformWindows" +defs["igDestroyPlatformWindows"][1]["ret"] = "void" +defs["igDestroyPlatformWindows"][1]["signature"] = "()" +defs["igDestroyPlatformWindows"][1]["stname"] = "" +defs["igDestroyPlatformWindows"]["()"] = defs["igDestroyPlatformWindows"][1] +defs["igDockBuilderAddNode"] = {} +defs["igDockBuilderAddNode"][1] = {} +defs["igDockBuilderAddNode"][1]["args"] = "(ImGuiID node_id,ImGuiDockNodeFlags flags)" +defs["igDockBuilderAddNode"][1]["argsT"] = {} +defs["igDockBuilderAddNode"][1]["argsT"][1] = {} +defs["igDockBuilderAddNode"][1]["argsT"][1]["name"] = "node_id" +defs["igDockBuilderAddNode"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igDockBuilderAddNode"][1]["argsT"][2] = {} +defs["igDockBuilderAddNode"][1]["argsT"][2]["name"] = "flags" +defs["igDockBuilderAddNode"][1]["argsT"][2]["type"] = "ImGuiDockNodeFlags" +defs["igDockBuilderAddNode"][1]["argsoriginal"] = "(ImGuiID node_id=0,ImGuiDockNodeFlags flags=0)" +defs["igDockBuilderAddNode"][1]["call_args"] = "(node_id,flags)" +defs["igDockBuilderAddNode"][1]["cimguiname"] = "igDockBuilderAddNode" +defs["igDockBuilderAddNode"][1]["defaults"] = {} +defs["igDockBuilderAddNode"][1]["defaults"]["flags"] = "0" +defs["igDockBuilderAddNode"][1]["defaults"]["node_id"] = "0" +defs["igDockBuilderAddNode"][1]["funcname"] = "DockBuilderAddNode" +defs["igDockBuilderAddNode"][1]["location"] = "imgui_internal:3600" +defs["igDockBuilderAddNode"][1]["namespace"] = "ImGui" +defs["igDockBuilderAddNode"][1]["ov_cimguiname"] = "igDockBuilderAddNode" +defs["igDockBuilderAddNode"][1]["ret"] = "ImGuiID" +defs["igDockBuilderAddNode"][1]["signature"] = "(ImGuiID,ImGuiDockNodeFlags)" +defs["igDockBuilderAddNode"][1]["stname"] = "" +defs["igDockBuilderAddNode"]["(ImGuiID,ImGuiDockNodeFlags)"] = defs["igDockBuilderAddNode"][1] +defs["igDockBuilderCopyDockSpace"] = {} +defs["igDockBuilderCopyDockSpace"][1] = {} +defs["igDockBuilderCopyDockSpace"][1]["args"] = "(ImGuiID src_dockspace_id,ImGuiID dst_dockspace_id,ImVector_const_charPtr* in_window_remap_pairs)" +defs["igDockBuilderCopyDockSpace"][1]["argsT"] = {} +defs["igDockBuilderCopyDockSpace"][1]["argsT"][1] = {} +defs["igDockBuilderCopyDockSpace"][1]["argsT"][1]["name"] = "src_dockspace_id" +defs["igDockBuilderCopyDockSpace"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igDockBuilderCopyDockSpace"][1]["argsT"][2] = {} +defs["igDockBuilderCopyDockSpace"][1]["argsT"][2]["name"] = "dst_dockspace_id" +defs["igDockBuilderCopyDockSpace"][1]["argsT"][2]["type"] = "ImGuiID" +defs["igDockBuilderCopyDockSpace"][1]["argsT"][3] = {} +defs["igDockBuilderCopyDockSpace"][1]["argsT"][3]["name"] = "in_window_remap_pairs" +defs["igDockBuilderCopyDockSpace"][1]["argsT"][3]["type"] = "ImVector_const_charPtr*" +defs["igDockBuilderCopyDockSpace"][1]["argsoriginal"] = "(ImGuiID src_dockspace_id,ImGuiID dst_dockspace_id,ImVector* in_window_remap_pairs)" +defs["igDockBuilderCopyDockSpace"][1]["call_args"] = "(src_dockspace_id,dst_dockspace_id,in_window_remap_pairs)" +defs["igDockBuilderCopyDockSpace"][1]["cimguiname"] = "igDockBuilderCopyDockSpace" +defs["igDockBuilderCopyDockSpace"][1]["defaults"] = {} +defs["igDockBuilderCopyDockSpace"][1]["funcname"] = "DockBuilderCopyDockSpace" +defs["igDockBuilderCopyDockSpace"][1]["location"] = "imgui_internal:3607" +defs["igDockBuilderCopyDockSpace"][1]["namespace"] = "ImGui" +defs["igDockBuilderCopyDockSpace"][1]["ov_cimguiname"] = "igDockBuilderCopyDockSpace" +defs["igDockBuilderCopyDockSpace"][1]["ret"] = "void" +defs["igDockBuilderCopyDockSpace"][1]["signature"] = "(ImGuiID,ImGuiID,ImVector_const_charPtr*)" +defs["igDockBuilderCopyDockSpace"][1]["stname"] = "" +defs["igDockBuilderCopyDockSpace"]["(ImGuiID,ImGuiID,ImVector_const_charPtr*)"] = defs["igDockBuilderCopyDockSpace"][1] +defs["igDockBuilderCopyNode"] = {} +defs["igDockBuilderCopyNode"][1] = {} +defs["igDockBuilderCopyNode"][1]["args"] = "(ImGuiID src_node_id,ImGuiID dst_node_id,ImVector_ImGuiID* out_node_remap_pairs)" +defs["igDockBuilderCopyNode"][1]["argsT"] = {} +defs["igDockBuilderCopyNode"][1]["argsT"][1] = {} +defs["igDockBuilderCopyNode"][1]["argsT"][1]["name"] = "src_node_id" +defs["igDockBuilderCopyNode"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igDockBuilderCopyNode"][1]["argsT"][2] = {} +defs["igDockBuilderCopyNode"][1]["argsT"][2]["name"] = "dst_node_id" +defs["igDockBuilderCopyNode"][1]["argsT"][2]["type"] = "ImGuiID" +defs["igDockBuilderCopyNode"][1]["argsT"][3] = {} +defs["igDockBuilderCopyNode"][1]["argsT"][3]["name"] = "out_node_remap_pairs" +defs["igDockBuilderCopyNode"][1]["argsT"][3]["type"] = "ImVector_ImGuiID*" +defs["igDockBuilderCopyNode"][1]["argsoriginal"] = "(ImGuiID src_node_id,ImGuiID dst_node_id,ImVector* out_node_remap_pairs)" +defs["igDockBuilderCopyNode"][1]["call_args"] = "(src_node_id,dst_node_id,out_node_remap_pairs)" +defs["igDockBuilderCopyNode"][1]["cimguiname"] = "igDockBuilderCopyNode" +defs["igDockBuilderCopyNode"][1]["defaults"] = {} +defs["igDockBuilderCopyNode"][1]["funcname"] = "DockBuilderCopyNode" +defs["igDockBuilderCopyNode"][1]["location"] = "imgui_internal:3608" +defs["igDockBuilderCopyNode"][1]["namespace"] = "ImGui" +defs["igDockBuilderCopyNode"][1]["ov_cimguiname"] = "igDockBuilderCopyNode" +defs["igDockBuilderCopyNode"][1]["ret"] = "void" +defs["igDockBuilderCopyNode"][1]["signature"] = "(ImGuiID,ImGuiID,ImVector_ImGuiID*)" +defs["igDockBuilderCopyNode"][1]["stname"] = "" +defs["igDockBuilderCopyNode"]["(ImGuiID,ImGuiID,ImVector_ImGuiID*)"] = defs["igDockBuilderCopyNode"][1] +defs["igDockBuilderCopyWindowSettings"] = {} +defs["igDockBuilderCopyWindowSettings"][1] = {} +defs["igDockBuilderCopyWindowSettings"][1]["args"] = "(const char* src_name,const char* dst_name)" +defs["igDockBuilderCopyWindowSettings"][1]["argsT"] = {} +defs["igDockBuilderCopyWindowSettings"][1]["argsT"][1] = {} +defs["igDockBuilderCopyWindowSettings"][1]["argsT"][1]["name"] = "src_name" +defs["igDockBuilderCopyWindowSettings"][1]["argsT"][1]["type"] = "const char*" +defs["igDockBuilderCopyWindowSettings"][1]["argsT"][2] = {} +defs["igDockBuilderCopyWindowSettings"][1]["argsT"][2]["name"] = "dst_name" +defs["igDockBuilderCopyWindowSettings"][1]["argsT"][2]["type"] = "const char*" +defs["igDockBuilderCopyWindowSettings"][1]["argsoriginal"] = "(const char* src_name,const char* dst_name)" +defs["igDockBuilderCopyWindowSettings"][1]["call_args"] = "(src_name,dst_name)" +defs["igDockBuilderCopyWindowSettings"][1]["cimguiname"] = "igDockBuilderCopyWindowSettings" +defs["igDockBuilderCopyWindowSettings"][1]["defaults"] = {} +defs["igDockBuilderCopyWindowSettings"][1]["funcname"] = "DockBuilderCopyWindowSettings" +defs["igDockBuilderCopyWindowSettings"][1]["location"] = "imgui_internal:3609" +defs["igDockBuilderCopyWindowSettings"][1]["namespace"] = "ImGui" +defs["igDockBuilderCopyWindowSettings"][1]["ov_cimguiname"] = "igDockBuilderCopyWindowSettings" +defs["igDockBuilderCopyWindowSettings"][1]["ret"] = "void" +defs["igDockBuilderCopyWindowSettings"][1]["signature"] = "(const char*,const char*)" +defs["igDockBuilderCopyWindowSettings"][1]["stname"] = "" +defs["igDockBuilderCopyWindowSettings"]["(const char*,const char*)"] = defs["igDockBuilderCopyWindowSettings"][1] +defs["igDockBuilderDockWindow"] = {} +defs["igDockBuilderDockWindow"][1] = {} +defs["igDockBuilderDockWindow"][1]["args"] = "(const char* window_name,ImGuiID node_id)" +defs["igDockBuilderDockWindow"][1]["argsT"] = {} +defs["igDockBuilderDockWindow"][1]["argsT"][1] = {} +defs["igDockBuilderDockWindow"][1]["argsT"][1]["name"] = "window_name" +defs["igDockBuilderDockWindow"][1]["argsT"][1]["type"] = "const char*" +defs["igDockBuilderDockWindow"][1]["argsT"][2] = {} +defs["igDockBuilderDockWindow"][1]["argsT"][2]["name"] = "node_id" +defs["igDockBuilderDockWindow"][1]["argsT"][2]["type"] = "ImGuiID" +defs["igDockBuilderDockWindow"][1]["argsoriginal"] = "(const char* window_name,ImGuiID node_id)" +defs["igDockBuilderDockWindow"][1]["call_args"] = "(window_name,node_id)" +defs["igDockBuilderDockWindow"][1]["cimguiname"] = "igDockBuilderDockWindow" +defs["igDockBuilderDockWindow"][1]["defaults"] = {} +defs["igDockBuilderDockWindow"][1]["funcname"] = "DockBuilderDockWindow" +defs["igDockBuilderDockWindow"][1]["location"] = "imgui_internal:3597" +defs["igDockBuilderDockWindow"][1]["namespace"] = "ImGui" +defs["igDockBuilderDockWindow"][1]["ov_cimguiname"] = "igDockBuilderDockWindow" +defs["igDockBuilderDockWindow"][1]["ret"] = "void" +defs["igDockBuilderDockWindow"][1]["signature"] = "(const char*,ImGuiID)" +defs["igDockBuilderDockWindow"][1]["stname"] = "" +defs["igDockBuilderDockWindow"]["(const char*,ImGuiID)"] = defs["igDockBuilderDockWindow"][1] +defs["igDockBuilderFinish"] = {} +defs["igDockBuilderFinish"][1] = {} +defs["igDockBuilderFinish"][1]["args"] = "(ImGuiID node_id)" +defs["igDockBuilderFinish"][1]["argsT"] = {} +defs["igDockBuilderFinish"][1]["argsT"][1] = {} +defs["igDockBuilderFinish"][1]["argsT"][1]["name"] = "node_id" +defs["igDockBuilderFinish"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igDockBuilderFinish"][1]["argsoriginal"] = "(ImGuiID node_id)" +defs["igDockBuilderFinish"][1]["call_args"] = "(node_id)" +defs["igDockBuilderFinish"][1]["cimguiname"] = "igDockBuilderFinish" +defs["igDockBuilderFinish"][1]["defaults"] = {} +defs["igDockBuilderFinish"][1]["funcname"] = "DockBuilderFinish" +defs["igDockBuilderFinish"][1]["location"] = "imgui_internal:3610" +defs["igDockBuilderFinish"][1]["namespace"] = "ImGui" +defs["igDockBuilderFinish"][1]["ov_cimguiname"] = "igDockBuilderFinish" +defs["igDockBuilderFinish"][1]["ret"] = "void" +defs["igDockBuilderFinish"][1]["signature"] = "(ImGuiID)" +defs["igDockBuilderFinish"][1]["stname"] = "" +defs["igDockBuilderFinish"]["(ImGuiID)"] = defs["igDockBuilderFinish"][1] +defs["igDockBuilderGetCentralNode"] = {} +defs["igDockBuilderGetCentralNode"][1] = {} +defs["igDockBuilderGetCentralNode"][1]["args"] = "(ImGuiID node_id)" +defs["igDockBuilderGetCentralNode"][1]["argsT"] = {} +defs["igDockBuilderGetCentralNode"][1]["argsT"][1] = {} +defs["igDockBuilderGetCentralNode"][1]["argsT"][1]["name"] = "node_id" +defs["igDockBuilderGetCentralNode"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igDockBuilderGetCentralNode"][1]["argsoriginal"] = "(ImGuiID node_id)" +defs["igDockBuilderGetCentralNode"][1]["call_args"] = "(node_id)" +defs["igDockBuilderGetCentralNode"][1]["cimguiname"] = "igDockBuilderGetCentralNode" +defs["igDockBuilderGetCentralNode"][1]["defaults"] = {} +defs["igDockBuilderGetCentralNode"][1]["funcname"] = "DockBuilderGetCentralNode" +defs["igDockBuilderGetCentralNode"][1]["location"] = "imgui_internal:3599" +defs["igDockBuilderGetCentralNode"][1]["namespace"] = "ImGui" +defs["igDockBuilderGetCentralNode"][1]["ov_cimguiname"] = "igDockBuilderGetCentralNode" +defs["igDockBuilderGetCentralNode"][1]["ret"] = "ImGuiDockNode*" +defs["igDockBuilderGetCentralNode"][1]["signature"] = "(ImGuiID)" +defs["igDockBuilderGetCentralNode"][1]["stname"] = "" +defs["igDockBuilderGetCentralNode"]["(ImGuiID)"] = defs["igDockBuilderGetCentralNode"][1] +defs["igDockBuilderGetNode"] = {} +defs["igDockBuilderGetNode"][1] = {} +defs["igDockBuilderGetNode"][1]["args"] = "(ImGuiID node_id)" +defs["igDockBuilderGetNode"][1]["argsT"] = {} +defs["igDockBuilderGetNode"][1]["argsT"][1] = {} +defs["igDockBuilderGetNode"][1]["argsT"][1]["name"] = "node_id" +defs["igDockBuilderGetNode"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igDockBuilderGetNode"][1]["argsoriginal"] = "(ImGuiID node_id)" +defs["igDockBuilderGetNode"][1]["call_args"] = "(node_id)" +defs["igDockBuilderGetNode"][1]["cimguiname"] = "igDockBuilderGetNode" +defs["igDockBuilderGetNode"][1]["defaults"] = {} +defs["igDockBuilderGetNode"][1]["funcname"] = "DockBuilderGetNode" +defs["igDockBuilderGetNode"][1]["location"] = "imgui_internal:3598" +defs["igDockBuilderGetNode"][1]["namespace"] = "ImGui" +defs["igDockBuilderGetNode"][1]["ov_cimguiname"] = "igDockBuilderGetNode" +defs["igDockBuilderGetNode"][1]["ret"] = "ImGuiDockNode*" +defs["igDockBuilderGetNode"][1]["signature"] = "(ImGuiID)" +defs["igDockBuilderGetNode"][1]["stname"] = "" +defs["igDockBuilderGetNode"]["(ImGuiID)"] = defs["igDockBuilderGetNode"][1] +defs["igDockBuilderRemoveNode"] = {} +defs["igDockBuilderRemoveNode"][1] = {} +defs["igDockBuilderRemoveNode"][1]["args"] = "(ImGuiID node_id)" +defs["igDockBuilderRemoveNode"][1]["argsT"] = {} +defs["igDockBuilderRemoveNode"][1]["argsT"][1] = {} +defs["igDockBuilderRemoveNode"][1]["argsT"][1]["name"] = "node_id" +defs["igDockBuilderRemoveNode"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igDockBuilderRemoveNode"][1]["argsoriginal"] = "(ImGuiID node_id)" +defs["igDockBuilderRemoveNode"][1]["call_args"] = "(node_id)" +defs["igDockBuilderRemoveNode"][1]["cimguiname"] = "igDockBuilderRemoveNode" +defs["igDockBuilderRemoveNode"][1]["defaults"] = {} +defs["igDockBuilderRemoveNode"][1]["funcname"] = "DockBuilderRemoveNode" +defs["igDockBuilderRemoveNode"][1]["location"] = "imgui_internal:3601" +defs["igDockBuilderRemoveNode"][1]["namespace"] = "ImGui" +defs["igDockBuilderRemoveNode"][1]["ov_cimguiname"] = "igDockBuilderRemoveNode" +defs["igDockBuilderRemoveNode"][1]["ret"] = "void" +defs["igDockBuilderRemoveNode"][1]["signature"] = "(ImGuiID)" +defs["igDockBuilderRemoveNode"][1]["stname"] = "" +defs["igDockBuilderRemoveNode"]["(ImGuiID)"] = defs["igDockBuilderRemoveNode"][1] +defs["igDockBuilderRemoveNodeChildNodes"] = {} +defs["igDockBuilderRemoveNodeChildNodes"][1] = {} +defs["igDockBuilderRemoveNodeChildNodes"][1]["args"] = "(ImGuiID node_id)" +defs["igDockBuilderRemoveNodeChildNodes"][1]["argsT"] = {} +defs["igDockBuilderRemoveNodeChildNodes"][1]["argsT"][1] = {} +defs["igDockBuilderRemoveNodeChildNodes"][1]["argsT"][1]["name"] = "node_id" +defs["igDockBuilderRemoveNodeChildNodes"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igDockBuilderRemoveNodeChildNodes"][1]["argsoriginal"] = "(ImGuiID node_id)" +defs["igDockBuilderRemoveNodeChildNodes"][1]["call_args"] = "(node_id)" +defs["igDockBuilderRemoveNodeChildNodes"][1]["cimguiname"] = "igDockBuilderRemoveNodeChildNodes" +defs["igDockBuilderRemoveNodeChildNodes"][1]["defaults"] = {} +defs["igDockBuilderRemoveNodeChildNodes"][1]["funcname"] = "DockBuilderRemoveNodeChildNodes" +defs["igDockBuilderRemoveNodeChildNodes"][1]["location"] = "imgui_internal:3603" +defs["igDockBuilderRemoveNodeChildNodes"][1]["namespace"] = "ImGui" +defs["igDockBuilderRemoveNodeChildNodes"][1]["ov_cimguiname"] = "igDockBuilderRemoveNodeChildNodes" +defs["igDockBuilderRemoveNodeChildNodes"][1]["ret"] = "void" +defs["igDockBuilderRemoveNodeChildNodes"][1]["signature"] = "(ImGuiID)" +defs["igDockBuilderRemoveNodeChildNodes"][1]["stname"] = "" +defs["igDockBuilderRemoveNodeChildNodes"]["(ImGuiID)"] = defs["igDockBuilderRemoveNodeChildNodes"][1] +defs["igDockBuilderRemoveNodeDockedWindows"] = {} +defs["igDockBuilderRemoveNodeDockedWindows"][1] = {} +defs["igDockBuilderRemoveNodeDockedWindows"][1]["args"] = "(ImGuiID node_id,bool clear_settings_refs)" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["argsT"] = {} +defs["igDockBuilderRemoveNodeDockedWindows"][1]["argsT"][1] = {} +defs["igDockBuilderRemoveNodeDockedWindows"][1]["argsT"][1]["name"] = "node_id" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["argsT"][2] = {} +defs["igDockBuilderRemoveNodeDockedWindows"][1]["argsT"][2]["name"] = "clear_settings_refs" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["argsT"][2]["type"] = "bool" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["argsoriginal"] = "(ImGuiID node_id,bool clear_settings_refs=true)" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["call_args"] = "(node_id,clear_settings_refs)" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["cimguiname"] = "igDockBuilderRemoveNodeDockedWindows" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["defaults"] = {} +defs["igDockBuilderRemoveNodeDockedWindows"][1]["defaults"]["clear_settings_refs"] = "true" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["funcname"] = "DockBuilderRemoveNodeDockedWindows" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["location"] = "imgui_internal:3602" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["namespace"] = "ImGui" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["ov_cimguiname"] = "igDockBuilderRemoveNodeDockedWindows" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["ret"] = "void" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["signature"] = "(ImGuiID,bool)" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["stname"] = "" +defs["igDockBuilderRemoveNodeDockedWindows"]["(ImGuiID,bool)"] = defs["igDockBuilderRemoveNodeDockedWindows"][1] +defs["igDockBuilderSetNodePos"] = {} +defs["igDockBuilderSetNodePos"][1] = {} +defs["igDockBuilderSetNodePos"][1]["args"] = "(ImGuiID node_id,ImVec2 pos)" +defs["igDockBuilderSetNodePos"][1]["argsT"] = {} +defs["igDockBuilderSetNodePos"][1]["argsT"][1] = {} +defs["igDockBuilderSetNodePos"][1]["argsT"][1]["name"] = "node_id" +defs["igDockBuilderSetNodePos"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igDockBuilderSetNodePos"][1]["argsT"][2] = {} +defs["igDockBuilderSetNodePos"][1]["argsT"][2]["name"] = "pos" +defs["igDockBuilderSetNodePos"][1]["argsT"][2]["type"] = "ImVec2" +defs["igDockBuilderSetNodePos"][1]["argsoriginal"] = "(ImGuiID node_id,ImVec2 pos)" +defs["igDockBuilderSetNodePos"][1]["call_args"] = "(node_id,pos)" +defs["igDockBuilderSetNodePos"][1]["cimguiname"] = "igDockBuilderSetNodePos" +defs["igDockBuilderSetNodePos"][1]["defaults"] = {} +defs["igDockBuilderSetNodePos"][1]["funcname"] = "DockBuilderSetNodePos" +defs["igDockBuilderSetNodePos"][1]["location"] = "imgui_internal:3604" +defs["igDockBuilderSetNodePos"][1]["namespace"] = "ImGui" +defs["igDockBuilderSetNodePos"][1]["ov_cimguiname"] = "igDockBuilderSetNodePos" +defs["igDockBuilderSetNodePos"][1]["ret"] = "void" +defs["igDockBuilderSetNodePos"][1]["signature"] = "(ImGuiID,ImVec2)" +defs["igDockBuilderSetNodePos"][1]["stname"] = "" +defs["igDockBuilderSetNodePos"]["(ImGuiID,ImVec2)"] = defs["igDockBuilderSetNodePos"][1] +defs["igDockBuilderSetNodeSize"] = {} +defs["igDockBuilderSetNodeSize"][1] = {} +defs["igDockBuilderSetNodeSize"][1]["args"] = "(ImGuiID node_id,ImVec2 size)" +defs["igDockBuilderSetNodeSize"][1]["argsT"] = {} +defs["igDockBuilderSetNodeSize"][1]["argsT"][1] = {} +defs["igDockBuilderSetNodeSize"][1]["argsT"][1]["name"] = "node_id" +defs["igDockBuilderSetNodeSize"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igDockBuilderSetNodeSize"][1]["argsT"][2] = {} +defs["igDockBuilderSetNodeSize"][1]["argsT"][2]["name"] = "size" +defs["igDockBuilderSetNodeSize"][1]["argsT"][2]["type"] = "ImVec2" +defs["igDockBuilderSetNodeSize"][1]["argsoriginal"] = "(ImGuiID node_id,ImVec2 size)" +defs["igDockBuilderSetNodeSize"][1]["call_args"] = "(node_id,size)" +defs["igDockBuilderSetNodeSize"][1]["cimguiname"] = "igDockBuilderSetNodeSize" +defs["igDockBuilderSetNodeSize"][1]["defaults"] = {} +defs["igDockBuilderSetNodeSize"][1]["funcname"] = "DockBuilderSetNodeSize" +defs["igDockBuilderSetNodeSize"][1]["location"] = "imgui_internal:3605" +defs["igDockBuilderSetNodeSize"][1]["namespace"] = "ImGui" +defs["igDockBuilderSetNodeSize"][1]["ov_cimguiname"] = "igDockBuilderSetNodeSize" +defs["igDockBuilderSetNodeSize"][1]["ret"] = "void" +defs["igDockBuilderSetNodeSize"][1]["signature"] = "(ImGuiID,ImVec2)" +defs["igDockBuilderSetNodeSize"][1]["stname"] = "" +defs["igDockBuilderSetNodeSize"]["(ImGuiID,ImVec2)"] = defs["igDockBuilderSetNodeSize"][1] +defs["igDockBuilderSplitNode"] = {} +defs["igDockBuilderSplitNode"][1] = {} +defs["igDockBuilderSplitNode"][1]["args"] = "(ImGuiID node_id,ImGuiDir split_dir,float size_ratio_for_node_at_dir,ImGuiID* out_id_at_dir,ImGuiID* out_id_at_opposite_dir)" +defs["igDockBuilderSplitNode"][1]["argsT"] = {} +defs["igDockBuilderSplitNode"][1]["argsT"][1] = {} +defs["igDockBuilderSplitNode"][1]["argsT"][1]["name"] = "node_id" +defs["igDockBuilderSplitNode"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igDockBuilderSplitNode"][1]["argsT"][2] = {} +defs["igDockBuilderSplitNode"][1]["argsT"][2]["name"] = "split_dir" +defs["igDockBuilderSplitNode"][1]["argsT"][2]["type"] = "ImGuiDir" +defs["igDockBuilderSplitNode"][1]["argsT"][3] = {} +defs["igDockBuilderSplitNode"][1]["argsT"][3]["name"] = "size_ratio_for_node_at_dir" +defs["igDockBuilderSplitNode"][1]["argsT"][3]["type"] = "float" +defs["igDockBuilderSplitNode"][1]["argsT"][4] = {} +defs["igDockBuilderSplitNode"][1]["argsT"][4]["name"] = "out_id_at_dir" +defs["igDockBuilderSplitNode"][1]["argsT"][4]["type"] = "ImGuiID*" +defs["igDockBuilderSplitNode"][1]["argsT"][5] = {} +defs["igDockBuilderSplitNode"][1]["argsT"][5]["name"] = "out_id_at_opposite_dir" +defs["igDockBuilderSplitNode"][1]["argsT"][5]["type"] = "ImGuiID*" +defs["igDockBuilderSplitNode"][1]["argsoriginal"] = "(ImGuiID node_id,ImGuiDir split_dir,float size_ratio_for_node_at_dir,ImGuiID* out_id_at_dir,ImGuiID* out_id_at_opposite_dir)" +defs["igDockBuilderSplitNode"][1]["call_args"] = "(node_id,split_dir,size_ratio_for_node_at_dir,out_id_at_dir,out_id_at_opposite_dir)" +defs["igDockBuilderSplitNode"][1]["cimguiname"] = "igDockBuilderSplitNode" +defs["igDockBuilderSplitNode"][1]["defaults"] = {} +defs["igDockBuilderSplitNode"][1]["funcname"] = "DockBuilderSplitNode" +defs["igDockBuilderSplitNode"][1]["location"] = "imgui_internal:3606" +defs["igDockBuilderSplitNode"][1]["namespace"] = "ImGui" +defs["igDockBuilderSplitNode"][1]["ov_cimguiname"] = "igDockBuilderSplitNode" +defs["igDockBuilderSplitNode"][1]["ret"] = "ImGuiID" +defs["igDockBuilderSplitNode"][1]["signature"] = "(ImGuiID,ImGuiDir,float,ImGuiID*,ImGuiID*)" +defs["igDockBuilderSplitNode"][1]["stname"] = "" +defs["igDockBuilderSplitNode"]["(ImGuiID,ImGuiDir,float,ImGuiID*,ImGuiID*)"] = defs["igDockBuilderSplitNode"][1] +defs["igDockContextCalcDropPosForDocking"] = {} +defs["igDockContextCalcDropPosForDocking"][1] = {} +defs["igDockContextCalcDropPosForDocking"][1]["args"] = "(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload_window,ImGuiDockNode* payload_node,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos)" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"] = {} +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][1] = {} +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][1]["name"] = "target" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][2] = {} +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][2]["name"] = "target_node" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][2]["type"] = "ImGuiDockNode*" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][3] = {} +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][3]["name"] = "payload_window" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][3]["type"] = "ImGuiWindow*" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][4] = {} +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][4]["name"] = "payload_node" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][4]["type"] = "ImGuiDockNode*" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][5] = {} +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][5]["name"] = "split_dir" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][5]["type"] = "ImGuiDir" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][6] = {} +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][6]["name"] = "split_outer" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][6]["type"] = "bool" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][7] = {} +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][7]["name"] = "out_pos" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][7]["type"] = "ImVec2*" +defs["igDockContextCalcDropPosForDocking"][1]["argsoriginal"] = "(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload_window,ImGuiDockNode* payload_node,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos)" +defs["igDockContextCalcDropPosForDocking"][1]["call_args"] = "(target,target_node,payload_window,payload_node,split_dir,split_outer,out_pos)" +defs["igDockContextCalcDropPosForDocking"][1]["cimguiname"] = "igDockContextCalcDropPosForDocking" +defs["igDockContextCalcDropPosForDocking"][1]["defaults"] = {} +defs["igDockContextCalcDropPosForDocking"][1]["funcname"] = "DockContextCalcDropPosForDocking" +defs["igDockContextCalcDropPosForDocking"][1]["location"] = "imgui_internal:3572" +defs["igDockContextCalcDropPosForDocking"][1]["namespace"] = "ImGui" +defs["igDockContextCalcDropPosForDocking"][1]["ov_cimguiname"] = "igDockContextCalcDropPosForDocking" +defs["igDockContextCalcDropPosForDocking"][1]["ret"] = "bool" +defs["igDockContextCalcDropPosForDocking"][1]["signature"] = "(ImGuiWindow*,ImGuiDockNode*,ImGuiWindow*,ImGuiDockNode*,ImGuiDir,bool,ImVec2*)" +defs["igDockContextCalcDropPosForDocking"][1]["stname"] = "" +defs["igDockContextCalcDropPosForDocking"]["(ImGuiWindow*,ImGuiDockNode*,ImGuiWindow*,ImGuiDockNode*,ImGuiDir,bool,ImVec2*)"] = defs["igDockContextCalcDropPosForDocking"][1] +defs["igDockContextClearNodes"] = {} +defs["igDockContextClearNodes"][1] = {} +defs["igDockContextClearNodes"][1]["args"] = "(ImGuiContext* ctx,ImGuiID root_id,bool clear_settings_refs)" +defs["igDockContextClearNodes"][1]["argsT"] = {} +defs["igDockContextClearNodes"][1]["argsT"][1] = {} +defs["igDockContextClearNodes"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextClearNodes"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextClearNodes"][1]["argsT"][2] = {} +defs["igDockContextClearNodes"][1]["argsT"][2]["name"] = "root_id" +defs["igDockContextClearNodes"][1]["argsT"][2]["type"] = "ImGuiID" +defs["igDockContextClearNodes"][1]["argsT"][3] = {} +defs["igDockContextClearNodes"][1]["argsT"][3]["name"] = "clear_settings_refs" +defs["igDockContextClearNodes"][1]["argsT"][3]["type"] = "bool" +defs["igDockContextClearNodes"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiID root_id,bool clear_settings_refs)" +defs["igDockContextClearNodes"][1]["call_args"] = "(ctx,root_id,clear_settings_refs)" +defs["igDockContextClearNodes"][1]["cimguiname"] = "igDockContextClearNodes" +defs["igDockContextClearNodes"][1]["defaults"] = {} +defs["igDockContextClearNodes"][1]["funcname"] = "DockContextClearNodes" +defs["igDockContextClearNodes"][1]["location"] = "imgui_internal:3561" +defs["igDockContextClearNodes"][1]["namespace"] = "ImGui" +defs["igDockContextClearNodes"][1]["ov_cimguiname"] = "igDockContextClearNodes" +defs["igDockContextClearNodes"][1]["ret"] = "void" +defs["igDockContextClearNodes"][1]["signature"] = "(ImGuiContext*,ImGuiID,bool)" +defs["igDockContextClearNodes"][1]["stname"] = "" +defs["igDockContextClearNodes"]["(ImGuiContext*,ImGuiID,bool)"] = defs["igDockContextClearNodes"][1] +defs["igDockContextEndFrame"] = {} +defs["igDockContextEndFrame"][1] = {} +defs["igDockContextEndFrame"][1]["args"] = "(ImGuiContext* ctx)" +defs["igDockContextEndFrame"][1]["argsT"] = {} +defs["igDockContextEndFrame"][1]["argsT"][1] = {} +defs["igDockContextEndFrame"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextEndFrame"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextEndFrame"][1]["argsoriginal"] = "(ImGuiContext* ctx)" +defs["igDockContextEndFrame"][1]["call_args"] = "(ctx)" +defs["igDockContextEndFrame"][1]["cimguiname"] = "igDockContextEndFrame" +defs["igDockContextEndFrame"][1]["defaults"] = {} +defs["igDockContextEndFrame"][1]["funcname"] = "DockContextEndFrame" +defs["igDockContextEndFrame"][1]["location"] = "imgui_internal:3565" +defs["igDockContextEndFrame"][1]["namespace"] = "ImGui" +defs["igDockContextEndFrame"][1]["ov_cimguiname"] = "igDockContextEndFrame" +defs["igDockContextEndFrame"][1]["ret"] = "void" +defs["igDockContextEndFrame"][1]["signature"] = "(ImGuiContext*)" +defs["igDockContextEndFrame"][1]["stname"] = "" +defs["igDockContextEndFrame"]["(ImGuiContext*)"] = defs["igDockContextEndFrame"][1] +defs["igDockContextFindNodeByID"] = {} +defs["igDockContextFindNodeByID"][1] = {} +defs["igDockContextFindNodeByID"][1]["args"] = "(ImGuiContext* ctx,ImGuiID id)" +defs["igDockContextFindNodeByID"][1]["argsT"] = {} +defs["igDockContextFindNodeByID"][1]["argsT"][1] = {} +defs["igDockContextFindNodeByID"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextFindNodeByID"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextFindNodeByID"][1]["argsT"][2] = {} +defs["igDockContextFindNodeByID"][1]["argsT"][2]["name"] = "id" +defs["igDockContextFindNodeByID"][1]["argsT"][2]["type"] = "ImGuiID" +defs["igDockContextFindNodeByID"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiID id)" +defs["igDockContextFindNodeByID"][1]["call_args"] = "(ctx,id)" +defs["igDockContextFindNodeByID"][1]["cimguiname"] = "igDockContextFindNodeByID" +defs["igDockContextFindNodeByID"][1]["defaults"] = {} +defs["igDockContextFindNodeByID"][1]["funcname"] = "DockContextFindNodeByID" +defs["igDockContextFindNodeByID"][1]["location"] = "imgui_internal:3573" +defs["igDockContextFindNodeByID"][1]["namespace"] = "ImGui" +defs["igDockContextFindNodeByID"][1]["ov_cimguiname"] = "igDockContextFindNodeByID" +defs["igDockContextFindNodeByID"][1]["ret"] = "ImGuiDockNode*" +defs["igDockContextFindNodeByID"][1]["signature"] = "(ImGuiContext*,ImGuiID)" +defs["igDockContextFindNodeByID"][1]["stname"] = "" +defs["igDockContextFindNodeByID"]["(ImGuiContext*,ImGuiID)"] = defs["igDockContextFindNodeByID"][1] +defs["igDockContextGenNodeID"] = {} +defs["igDockContextGenNodeID"][1] = {} +defs["igDockContextGenNodeID"][1]["args"] = "(ImGuiContext* ctx)" +defs["igDockContextGenNodeID"][1]["argsT"] = {} +defs["igDockContextGenNodeID"][1]["argsT"][1] = {} +defs["igDockContextGenNodeID"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextGenNodeID"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextGenNodeID"][1]["argsoriginal"] = "(ImGuiContext* ctx)" +defs["igDockContextGenNodeID"][1]["call_args"] = "(ctx)" +defs["igDockContextGenNodeID"][1]["cimguiname"] = "igDockContextGenNodeID" +defs["igDockContextGenNodeID"][1]["defaults"] = {} +defs["igDockContextGenNodeID"][1]["funcname"] = "DockContextGenNodeID" +defs["igDockContextGenNodeID"][1]["location"] = "imgui_internal:3566" +defs["igDockContextGenNodeID"][1]["namespace"] = "ImGui" +defs["igDockContextGenNodeID"][1]["ov_cimguiname"] = "igDockContextGenNodeID" +defs["igDockContextGenNodeID"][1]["ret"] = "ImGuiID" +defs["igDockContextGenNodeID"][1]["signature"] = "(ImGuiContext*)" +defs["igDockContextGenNodeID"][1]["stname"] = "" +defs["igDockContextGenNodeID"]["(ImGuiContext*)"] = defs["igDockContextGenNodeID"][1] +defs["igDockContextInitialize"] = {} +defs["igDockContextInitialize"][1] = {} +defs["igDockContextInitialize"][1]["args"] = "(ImGuiContext* ctx)" +defs["igDockContextInitialize"][1]["argsT"] = {} +defs["igDockContextInitialize"][1]["argsT"][1] = {} +defs["igDockContextInitialize"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextInitialize"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextInitialize"][1]["argsoriginal"] = "(ImGuiContext* ctx)" +defs["igDockContextInitialize"][1]["call_args"] = "(ctx)" +defs["igDockContextInitialize"][1]["cimguiname"] = "igDockContextInitialize" +defs["igDockContextInitialize"][1]["defaults"] = {} +defs["igDockContextInitialize"][1]["funcname"] = "DockContextInitialize" +defs["igDockContextInitialize"][1]["location"] = "imgui_internal:3559" +defs["igDockContextInitialize"][1]["namespace"] = "ImGui" +defs["igDockContextInitialize"][1]["ov_cimguiname"] = "igDockContextInitialize" +defs["igDockContextInitialize"][1]["ret"] = "void" +defs["igDockContextInitialize"][1]["signature"] = "(ImGuiContext*)" +defs["igDockContextInitialize"][1]["stname"] = "" +defs["igDockContextInitialize"]["(ImGuiContext*)"] = defs["igDockContextInitialize"][1] +defs["igDockContextNewFrameUpdateDocking"] = {} +defs["igDockContextNewFrameUpdateDocking"][1] = {} +defs["igDockContextNewFrameUpdateDocking"][1]["args"] = "(ImGuiContext* ctx)" +defs["igDockContextNewFrameUpdateDocking"][1]["argsT"] = {} +defs["igDockContextNewFrameUpdateDocking"][1]["argsT"][1] = {} +defs["igDockContextNewFrameUpdateDocking"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextNewFrameUpdateDocking"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextNewFrameUpdateDocking"][1]["argsoriginal"] = "(ImGuiContext* ctx)" +defs["igDockContextNewFrameUpdateDocking"][1]["call_args"] = "(ctx)" +defs["igDockContextNewFrameUpdateDocking"][1]["cimguiname"] = "igDockContextNewFrameUpdateDocking" +defs["igDockContextNewFrameUpdateDocking"][1]["defaults"] = {} +defs["igDockContextNewFrameUpdateDocking"][1]["funcname"] = "DockContextNewFrameUpdateDocking" +defs["igDockContextNewFrameUpdateDocking"][1]["location"] = "imgui_internal:3564" +defs["igDockContextNewFrameUpdateDocking"][1]["namespace"] = "ImGui" +defs["igDockContextNewFrameUpdateDocking"][1]["ov_cimguiname"] = "igDockContextNewFrameUpdateDocking" +defs["igDockContextNewFrameUpdateDocking"][1]["ret"] = "void" +defs["igDockContextNewFrameUpdateDocking"][1]["signature"] = "(ImGuiContext*)" +defs["igDockContextNewFrameUpdateDocking"][1]["stname"] = "" +defs["igDockContextNewFrameUpdateDocking"]["(ImGuiContext*)"] = defs["igDockContextNewFrameUpdateDocking"][1] +defs["igDockContextNewFrameUpdateUndocking"] = {} +defs["igDockContextNewFrameUpdateUndocking"][1] = {} +defs["igDockContextNewFrameUpdateUndocking"][1]["args"] = "(ImGuiContext* ctx)" +defs["igDockContextNewFrameUpdateUndocking"][1]["argsT"] = {} +defs["igDockContextNewFrameUpdateUndocking"][1]["argsT"][1] = {} +defs["igDockContextNewFrameUpdateUndocking"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextNewFrameUpdateUndocking"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextNewFrameUpdateUndocking"][1]["argsoriginal"] = "(ImGuiContext* ctx)" +defs["igDockContextNewFrameUpdateUndocking"][1]["call_args"] = "(ctx)" +defs["igDockContextNewFrameUpdateUndocking"][1]["cimguiname"] = "igDockContextNewFrameUpdateUndocking" +defs["igDockContextNewFrameUpdateUndocking"][1]["defaults"] = {} +defs["igDockContextNewFrameUpdateUndocking"][1]["funcname"] = "DockContextNewFrameUpdateUndocking" +defs["igDockContextNewFrameUpdateUndocking"][1]["location"] = "imgui_internal:3563" +defs["igDockContextNewFrameUpdateUndocking"][1]["namespace"] = "ImGui" +defs["igDockContextNewFrameUpdateUndocking"][1]["ov_cimguiname"] = "igDockContextNewFrameUpdateUndocking" +defs["igDockContextNewFrameUpdateUndocking"][1]["ret"] = "void" +defs["igDockContextNewFrameUpdateUndocking"][1]["signature"] = "(ImGuiContext*)" +defs["igDockContextNewFrameUpdateUndocking"][1]["stname"] = "" +defs["igDockContextNewFrameUpdateUndocking"]["(ImGuiContext*)"] = defs["igDockContextNewFrameUpdateUndocking"][1] +defs["igDockContextProcessUndockNode"] = {} +defs["igDockContextProcessUndockNode"][1] = {} +defs["igDockContextProcessUndockNode"][1]["args"] = "(ImGuiContext* ctx,ImGuiDockNode* node)" +defs["igDockContextProcessUndockNode"][1]["argsT"] = {} +defs["igDockContextProcessUndockNode"][1]["argsT"][1] = {} +defs["igDockContextProcessUndockNode"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextProcessUndockNode"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextProcessUndockNode"][1]["argsT"][2] = {} +defs["igDockContextProcessUndockNode"][1]["argsT"][2]["name"] = "node" +defs["igDockContextProcessUndockNode"][1]["argsT"][2]["type"] = "ImGuiDockNode*" +defs["igDockContextProcessUndockNode"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiDockNode* node)" +defs["igDockContextProcessUndockNode"][1]["call_args"] = "(ctx,node)" +defs["igDockContextProcessUndockNode"][1]["cimguiname"] = "igDockContextProcessUndockNode" +defs["igDockContextProcessUndockNode"][1]["defaults"] = {} +defs["igDockContextProcessUndockNode"][1]["funcname"] = "DockContextProcessUndockNode" +defs["igDockContextProcessUndockNode"][1]["location"] = "imgui_internal:3571" +defs["igDockContextProcessUndockNode"][1]["namespace"] = "ImGui" +defs["igDockContextProcessUndockNode"][1]["ov_cimguiname"] = "igDockContextProcessUndockNode" +defs["igDockContextProcessUndockNode"][1]["ret"] = "void" +defs["igDockContextProcessUndockNode"][1]["signature"] = "(ImGuiContext*,ImGuiDockNode*)" +defs["igDockContextProcessUndockNode"][1]["stname"] = "" +defs["igDockContextProcessUndockNode"]["(ImGuiContext*,ImGuiDockNode*)"] = defs["igDockContextProcessUndockNode"][1] +defs["igDockContextProcessUndockWindow"] = {} +defs["igDockContextProcessUndockWindow"][1] = {} +defs["igDockContextProcessUndockWindow"][1]["args"] = "(ImGuiContext* ctx,ImGuiWindow* window,bool clear_persistent_docking_ref)" +defs["igDockContextProcessUndockWindow"][1]["argsT"] = {} +defs["igDockContextProcessUndockWindow"][1]["argsT"][1] = {} +defs["igDockContextProcessUndockWindow"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextProcessUndockWindow"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextProcessUndockWindow"][1]["argsT"][2] = {} +defs["igDockContextProcessUndockWindow"][1]["argsT"][2]["name"] = "window" +defs["igDockContextProcessUndockWindow"][1]["argsT"][2]["type"] = "ImGuiWindow*" +defs["igDockContextProcessUndockWindow"][1]["argsT"][3] = {} +defs["igDockContextProcessUndockWindow"][1]["argsT"][3]["name"] = "clear_persistent_docking_ref" +defs["igDockContextProcessUndockWindow"][1]["argsT"][3]["type"] = "bool" +defs["igDockContextProcessUndockWindow"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiWindow* window,bool clear_persistent_docking_ref=true)" +defs["igDockContextProcessUndockWindow"][1]["call_args"] = "(ctx,window,clear_persistent_docking_ref)" +defs["igDockContextProcessUndockWindow"][1]["cimguiname"] = "igDockContextProcessUndockWindow" +defs["igDockContextProcessUndockWindow"][1]["defaults"] = {} +defs["igDockContextProcessUndockWindow"][1]["defaults"]["clear_persistent_docking_ref"] = "true" +defs["igDockContextProcessUndockWindow"][1]["funcname"] = "DockContextProcessUndockWindow" +defs["igDockContextProcessUndockWindow"][1]["location"] = "imgui_internal:3570" +defs["igDockContextProcessUndockWindow"][1]["namespace"] = "ImGui" +defs["igDockContextProcessUndockWindow"][1]["ov_cimguiname"] = "igDockContextProcessUndockWindow" +defs["igDockContextProcessUndockWindow"][1]["ret"] = "void" +defs["igDockContextProcessUndockWindow"][1]["signature"] = "(ImGuiContext*,ImGuiWindow*,bool)" +defs["igDockContextProcessUndockWindow"][1]["stname"] = "" +defs["igDockContextProcessUndockWindow"]["(ImGuiContext*,ImGuiWindow*,bool)"] = defs["igDockContextProcessUndockWindow"][1] +defs["igDockContextQueueDock"] = {} +defs["igDockContextQueueDock"][1] = {} +defs["igDockContextQueueDock"][1]["args"] = "(ImGuiContext* ctx,ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload,ImGuiDir split_dir,float split_ratio,bool split_outer)" +defs["igDockContextQueueDock"][1]["argsT"] = {} +defs["igDockContextQueueDock"][1]["argsT"][1] = {} +defs["igDockContextQueueDock"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextQueueDock"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextQueueDock"][1]["argsT"][2] = {} +defs["igDockContextQueueDock"][1]["argsT"][2]["name"] = "target" +defs["igDockContextQueueDock"][1]["argsT"][2]["type"] = "ImGuiWindow*" +defs["igDockContextQueueDock"][1]["argsT"][3] = {} +defs["igDockContextQueueDock"][1]["argsT"][3]["name"] = "target_node" +defs["igDockContextQueueDock"][1]["argsT"][3]["type"] = "ImGuiDockNode*" +defs["igDockContextQueueDock"][1]["argsT"][4] = {} +defs["igDockContextQueueDock"][1]["argsT"][4]["name"] = "payload" +defs["igDockContextQueueDock"][1]["argsT"][4]["type"] = "ImGuiWindow*" +defs["igDockContextQueueDock"][1]["argsT"][5] = {} +defs["igDockContextQueueDock"][1]["argsT"][5]["name"] = "split_dir" +defs["igDockContextQueueDock"][1]["argsT"][5]["type"] = "ImGuiDir" +defs["igDockContextQueueDock"][1]["argsT"][6] = {} +defs["igDockContextQueueDock"][1]["argsT"][6]["name"] = "split_ratio" +defs["igDockContextQueueDock"][1]["argsT"][6]["type"] = "float" +defs["igDockContextQueueDock"][1]["argsT"][7] = {} +defs["igDockContextQueueDock"][1]["argsT"][7]["name"] = "split_outer" +defs["igDockContextQueueDock"][1]["argsT"][7]["type"] = "bool" +defs["igDockContextQueueDock"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload,ImGuiDir split_dir,float split_ratio,bool split_outer)" +defs["igDockContextQueueDock"][1]["call_args"] = "(ctx,target,target_node,payload,split_dir,split_ratio,split_outer)" +defs["igDockContextQueueDock"][1]["cimguiname"] = "igDockContextQueueDock" +defs["igDockContextQueueDock"][1]["defaults"] = {} +defs["igDockContextQueueDock"][1]["funcname"] = "DockContextQueueDock" +defs["igDockContextQueueDock"][1]["location"] = "imgui_internal:3567" +defs["igDockContextQueueDock"][1]["namespace"] = "ImGui" +defs["igDockContextQueueDock"][1]["ov_cimguiname"] = "igDockContextQueueDock" +defs["igDockContextQueueDock"][1]["ret"] = "void" +defs["igDockContextQueueDock"][1]["signature"] = "(ImGuiContext*,ImGuiWindow*,ImGuiDockNode*,ImGuiWindow*,ImGuiDir,float,bool)" +defs["igDockContextQueueDock"][1]["stname"] = "" +defs["igDockContextQueueDock"]["(ImGuiContext*,ImGuiWindow*,ImGuiDockNode*,ImGuiWindow*,ImGuiDir,float,bool)"] = defs["igDockContextQueueDock"][1] +defs["igDockContextQueueUndockNode"] = {} +defs["igDockContextQueueUndockNode"][1] = {} +defs["igDockContextQueueUndockNode"][1]["args"] = "(ImGuiContext* ctx,ImGuiDockNode* node)" +defs["igDockContextQueueUndockNode"][1]["argsT"] = {} +defs["igDockContextQueueUndockNode"][1]["argsT"][1] = {} +defs["igDockContextQueueUndockNode"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextQueueUndockNode"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextQueueUndockNode"][1]["argsT"][2] = {} +defs["igDockContextQueueUndockNode"][1]["argsT"][2]["name"] = "node" +defs["igDockContextQueueUndockNode"][1]["argsT"][2]["type"] = "ImGuiDockNode*" +defs["igDockContextQueueUndockNode"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiDockNode* node)" +defs["igDockContextQueueUndockNode"][1]["call_args"] = "(ctx,node)" +defs["igDockContextQueueUndockNode"][1]["cimguiname"] = "igDockContextQueueUndockNode" +defs["igDockContextQueueUndockNode"][1]["defaults"] = {} +defs["igDockContextQueueUndockNode"][1]["funcname"] = "DockContextQueueUndockNode" +defs["igDockContextQueueUndockNode"][1]["location"] = "imgui_internal:3569" +defs["igDockContextQueueUndockNode"][1]["namespace"] = "ImGui" +defs["igDockContextQueueUndockNode"][1]["ov_cimguiname"] = "igDockContextQueueUndockNode" +defs["igDockContextQueueUndockNode"][1]["ret"] = "void" +defs["igDockContextQueueUndockNode"][1]["signature"] = "(ImGuiContext*,ImGuiDockNode*)" +defs["igDockContextQueueUndockNode"][1]["stname"] = "" +defs["igDockContextQueueUndockNode"]["(ImGuiContext*,ImGuiDockNode*)"] = defs["igDockContextQueueUndockNode"][1] +defs["igDockContextQueueUndockWindow"] = {} +defs["igDockContextQueueUndockWindow"][1] = {} +defs["igDockContextQueueUndockWindow"][1]["args"] = "(ImGuiContext* ctx,ImGuiWindow* window)" +defs["igDockContextQueueUndockWindow"][1]["argsT"] = {} +defs["igDockContextQueueUndockWindow"][1]["argsT"][1] = {} +defs["igDockContextQueueUndockWindow"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextQueueUndockWindow"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextQueueUndockWindow"][1]["argsT"][2] = {} +defs["igDockContextQueueUndockWindow"][1]["argsT"][2]["name"] = "window" +defs["igDockContextQueueUndockWindow"][1]["argsT"][2]["type"] = "ImGuiWindow*" +defs["igDockContextQueueUndockWindow"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiWindow* window)" +defs["igDockContextQueueUndockWindow"][1]["call_args"] = "(ctx,window)" +defs["igDockContextQueueUndockWindow"][1]["cimguiname"] = "igDockContextQueueUndockWindow" +defs["igDockContextQueueUndockWindow"][1]["defaults"] = {} +defs["igDockContextQueueUndockWindow"][1]["funcname"] = "DockContextQueueUndockWindow" +defs["igDockContextQueueUndockWindow"][1]["location"] = "imgui_internal:3568" +defs["igDockContextQueueUndockWindow"][1]["namespace"] = "ImGui" +defs["igDockContextQueueUndockWindow"][1]["ov_cimguiname"] = "igDockContextQueueUndockWindow" +defs["igDockContextQueueUndockWindow"][1]["ret"] = "void" +defs["igDockContextQueueUndockWindow"][1]["signature"] = "(ImGuiContext*,ImGuiWindow*)" +defs["igDockContextQueueUndockWindow"][1]["stname"] = "" +defs["igDockContextQueueUndockWindow"]["(ImGuiContext*,ImGuiWindow*)"] = defs["igDockContextQueueUndockWindow"][1] +defs["igDockContextRebuildNodes"] = {} +defs["igDockContextRebuildNodes"][1] = {} +defs["igDockContextRebuildNodes"][1]["args"] = "(ImGuiContext* ctx)" +defs["igDockContextRebuildNodes"][1]["argsT"] = {} +defs["igDockContextRebuildNodes"][1]["argsT"][1] = {} +defs["igDockContextRebuildNodes"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextRebuildNodes"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextRebuildNodes"][1]["argsoriginal"] = "(ImGuiContext* ctx)" +defs["igDockContextRebuildNodes"][1]["call_args"] = "(ctx)" +defs["igDockContextRebuildNodes"][1]["cimguiname"] = "igDockContextRebuildNodes" +defs["igDockContextRebuildNodes"][1]["defaults"] = {} +defs["igDockContextRebuildNodes"][1]["funcname"] = "DockContextRebuildNodes" +defs["igDockContextRebuildNodes"][1]["location"] = "imgui_internal:3562" +defs["igDockContextRebuildNodes"][1]["namespace"] = "ImGui" +defs["igDockContextRebuildNodes"][1]["ov_cimguiname"] = "igDockContextRebuildNodes" +defs["igDockContextRebuildNodes"][1]["ret"] = "void" +defs["igDockContextRebuildNodes"][1]["signature"] = "(ImGuiContext*)" +defs["igDockContextRebuildNodes"][1]["stname"] = "" +defs["igDockContextRebuildNodes"]["(ImGuiContext*)"] = defs["igDockContextRebuildNodes"][1] +defs["igDockContextShutdown"] = {} +defs["igDockContextShutdown"][1] = {} +defs["igDockContextShutdown"][1]["args"] = "(ImGuiContext* ctx)" +defs["igDockContextShutdown"][1]["argsT"] = {} +defs["igDockContextShutdown"][1]["argsT"][1] = {} +defs["igDockContextShutdown"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextShutdown"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextShutdown"][1]["argsoriginal"] = "(ImGuiContext* ctx)" +defs["igDockContextShutdown"][1]["call_args"] = "(ctx)" +defs["igDockContextShutdown"][1]["cimguiname"] = "igDockContextShutdown" +defs["igDockContextShutdown"][1]["defaults"] = {} +defs["igDockContextShutdown"][1]["funcname"] = "DockContextShutdown" +defs["igDockContextShutdown"][1]["location"] = "imgui_internal:3560" +defs["igDockContextShutdown"][1]["namespace"] = "ImGui" +defs["igDockContextShutdown"][1]["ov_cimguiname"] = "igDockContextShutdown" +defs["igDockContextShutdown"][1]["ret"] = "void" +defs["igDockContextShutdown"][1]["signature"] = "(ImGuiContext*)" +defs["igDockContextShutdown"][1]["stname"] = "" +defs["igDockContextShutdown"]["(ImGuiContext*)"] = defs["igDockContextShutdown"][1] +defs["igDockNodeBeginAmendTabBar"] = {} +defs["igDockNodeBeginAmendTabBar"][1] = {} +defs["igDockNodeBeginAmendTabBar"][1]["args"] = "(ImGuiDockNode* node)" +defs["igDockNodeBeginAmendTabBar"][1]["argsT"] = {} +defs["igDockNodeBeginAmendTabBar"][1]["argsT"][1] = {} +defs["igDockNodeBeginAmendTabBar"][1]["argsT"][1]["name"] = "node" +defs["igDockNodeBeginAmendTabBar"][1]["argsT"][1]["type"] = "ImGuiDockNode*" +defs["igDockNodeBeginAmendTabBar"][1]["argsoriginal"] = "(ImGuiDockNode* node)" +defs["igDockNodeBeginAmendTabBar"][1]["call_args"] = "(node)" +defs["igDockNodeBeginAmendTabBar"][1]["cimguiname"] = "igDockNodeBeginAmendTabBar" +defs["igDockNodeBeginAmendTabBar"][1]["defaults"] = {} +defs["igDockNodeBeginAmendTabBar"][1]["funcname"] = "DockNodeBeginAmendTabBar" +defs["igDockNodeBeginAmendTabBar"][1]["location"] = "imgui_internal:3575" +defs["igDockNodeBeginAmendTabBar"][1]["namespace"] = "ImGui" +defs["igDockNodeBeginAmendTabBar"][1]["ov_cimguiname"] = "igDockNodeBeginAmendTabBar" +defs["igDockNodeBeginAmendTabBar"][1]["ret"] = "bool" +defs["igDockNodeBeginAmendTabBar"][1]["signature"] = "(ImGuiDockNode*)" +defs["igDockNodeBeginAmendTabBar"][1]["stname"] = "" +defs["igDockNodeBeginAmendTabBar"]["(ImGuiDockNode*)"] = defs["igDockNodeBeginAmendTabBar"][1] +defs["igDockNodeEndAmendTabBar"] = {} +defs["igDockNodeEndAmendTabBar"][1] = {} +defs["igDockNodeEndAmendTabBar"][1]["args"] = "()" +defs["igDockNodeEndAmendTabBar"][1]["argsT"] = {} +defs["igDockNodeEndAmendTabBar"][1]["argsoriginal"] = "()" +defs["igDockNodeEndAmendTabBar"][1]["call_args"] = "()" +defs["igDockNodeEndAmendTabBar"][1]["cimguiname"] = "igDockNodeEndAmendTabBar" +defs["igDockNodeEndAmendTabBar"][1]["defaults"] = {} +defs["igDockNodeEndAmendTabBar"][1]["funcname"] = "DockNodeEndAmendTabBar" +defs["igDockNodeEndAmendTabBar"][1]["location"] = "imgui_internal:3576" +defs["igDockNodeEndAmendTabBar"][1]["namespace"] = "ImGui" +defs["igDockNodeEndAmendTabBar"][1]["ov_cimguiname"] = "igDockNodeEndAmendTabBar" +defs["igDockNodeEndAmendTabBar"][1]["ret"] = "void" +defs["igDockNodeEndAmendTabBar"][1]["signature"] = "()" +defs["igDockNodeEndAmendTabBar"][1]["stname"] = "" +defs["igDockNodeEndAmendTabBar"]["()"] = defs["igDockNodeEndAmendTabBar"][1] +defs["igDockNodeGetDepth"] = {} +defs["igDockNodeGetDepth"][1] = {} +defs["igDockNodeGetDepth"][1]["args"] = "(const ImGuiDockNode* node)" +defs["igDockNodeGetDepth"][1]["argsT"] = {} +defs["igDockNodeGetDepth"][1]["argsT"][1] = {} +defs["igDockNodeGetDepth"][1]["argsT"][1]["name"] = "node" +defs["igDockNodeGetDepth"][1]["argsT"][1]["type"] = "const ImGuiDockNode*" +defs["igDockNodeGetDepth"][1]["argsoriginal"] = "(const ImGuiDockNode* node)" +defs["igDockNodeGetDepth"][1]["call_args"] = "(node)" +defs["igDockNodeGetDepth"][1]["cimguiname"] = "igDockNodeGetDepth" +defs["igDockNodeGetDepth"][1]["defaults"] = {} +defs["igDockNodeGetDepth"][1]["funcname"] = "DockNodeGetDepth" +defs["igDockNodeGetDepth"][1]["location"] = "imgui_internal:3579" +defs["igDockNodeGetDepth"][1]["namespace"] = "ImGui" +defs["igDockNodeGetDepth"][1]["ov_cimguiname"] = "igDockNodeGetDepth" +defs["igDockNodeGetDepth"][1]["ret"] = "int" +defs["igDockNodeGetDepth"][1]["signature"] = "(const ImGuiDockNode*)" +defs["igDockNodeGetDepth"][1]["stname"] = "" +defs["igDockNodeGetDepth"]["(const ImGuiDockNode*)"] = defs["igDockNodeGetDepth"][1] +defs["igDockNodeGetRootNode"] = {} +defs["igDockNodeGetRootNode"][1] = {} +defs["igDockNodeGetRootNode"][1]["args"] = "(ImGuiDockNode* node)" +defs["igDockNodeGetRootNode"][1]["argsT"] = {} +defs["igDockNodeGetRootNode"][1]["argsT"][1] = {} +defs["igDockNodeGetRootNode"][1]["argsT"][1]["name"] = "node" +defs["igDockNodeGetRootNode"][1]["argsT"][1]["type"] = "ImGuiDockNode*" +defs["igDockNodeGetRootNode"][1]["argsoriginal"] = "(ImGuiDockNode* node)" +defs["igDockNodeGetRootNode"][1]["call_args"] = "(node)" +defs["igDockNodeGetRootNode"][1]["cimguiname"] = "igDockNodeGetRootNode" +defs["igDockNodeGetRootNode"][1]["defaults"] = {} +defs["igDockNodeGetRootNode"][1]["funcname"] = "DockNodeGetRootNode" +defs["igDockNodeGetRootNode"][1]["location"] = "imgui_internal:3577" +defs["igDockNodeGetRootNode"][1]["namespace"] = "ImGui" +defs["igDockNodeGetRootNode"][1]["ov_cimguiname"] = "igDockNodeGetRootNode" +defs["igDockNodeGetRootNode"][1]["ret"] = "ImGuiDockNode*" +defs["igDockNodeGetRootNode"][1]["signature"] = "(ImGuiDockNode*)" +defs["igDockNodeGetRootNode"][1]["stname"] = "" +defs["igDockNodeGetRootNode"]["(ImGuiDockNode*)"] = defs["igDockNodeGetRootNode"][1] +defs["igDockNodeGetWindowMenuButtonId"] = {} +defs["igDockNodeGetWindowMenuButtonId"][1] = {} +defs["igDockNodeGetWindowMenuButtonId"][1]["args"] = "(const ImGuiDockNode* node)" +defs["igDockNodeGetWindowMenuButtonId"][1]["argsT"] = {} +defs["igDockNodeGetWindowMenuButtonId"][1]["argsT"][1] = {} +defs["igDockNodeGetWindowMenuButtonId"][1]["argsT"][1]["name"] = "node" +defs["igDockNodeGetWindowMenuButtonId"][1]["argsT"][1]["type"] = "const ImGuiDockNode*" +defs["igDockNodeGetWindowMenuButtonId"][1]["argsoriginal"] = "(const ImGuiDockNode* node)" +defs["igDockNodeGetWindowMenuButtonId"][1]["call_args"] = "(node)" +defs["igDockNodeGetWindowMenuButtonId"][1]["cimguiname"] = "igDockNodeGetWindowMenuButtonId" +defs["igDockNodeGetWindowMenuButtonId"][1]["defaults"] = {} +defs["igDockNodeGetWindowMenuButtonId"][1]["funcname"] = "DockNodeGetWindowMenuButtonId" +defs["igDockNodeGetWindowMenuButtonId"][1]["location"] = "imgui_internal:3580" +defs["igDockNodeGetWindowMenuButtonId"][1]["namespace"] = "ImGui" +defs["igDockNodeGetWindowMenuButtonId"][1]["ov_cimguiname"] = "igDockNodeGetWindowMenuButtonId" +defs["igDockNodeGetWindowMenuButtonId"][1]["ret"] = "ImGuiID" +defs["igDockNodeGetWindowMenuButtonId"][1]["signature"] = "(const ImGuiDockNode*)" +defs["igDockNodeGetWindowMenuButtonId"][1]["stname"] = "" +defs["igDockNodeGetWindowMenuButtonId"]["(const ImGuiDockNode*)"] = defs["igDockNodeGetWindowMenuButtonId"][1] +defs["igDockNodeIsInHierarchyOf"] = {} +defs["igDockNodeIsInHierarchyOf"][1] = {} +defs["igDockNodeIsInHierarchyOf"][1]["args"] = "(ImGuiDockNode* node,ImGuiDockNode* parent)" +defs["igDockNodeIsInHierarchyOf"][1]["argsT"] = {} +defs["igDockNodeIsInHierarchyOf"][1]["argsT"][1] = {} +defs["igDockNodeIsInHierarchyOf"][1]["argsT"][1]["name"] = "node" +defs["igDockNodeIsInHierarchyOf"][1]["argsT"][1]["type"] = "ImGuiDockNode*" +defs["igDockNodeIsInHierarchyOf"][1]["argsT"][2] = {} +defs["igDockNodeIsInHierarchyOf"][1]["argsT"][2]["name"] = "parent" +defs["igDockNodeIsInHierarchyOf"][1]["argsT"][2]["type"] = "ImGuiDockNode*" +defs["igDockNodeIsInHierarchyOf"][1]["argsoriginal"] = "(ImGuiDockNode* node,ImGuiDockNode* parent)" +defs["igDockNodeIsInHierarchyOf"][1]["call_args"] = "(node,parent)" +defs["igDockNodeIsInHierarchyOf"][1]["cimguiname"] = "igDockNodeIsInHierarchyOf" +defs["igDockNodeIsInHierarchyOf"][1]["defaults"] = {} +defs["igDockNodeIsInHierarchyOf"][1]["funcname"] = "DockNodeIsInHierarchyOf" +defs["igDockNodeIsInHierarchyOf"][1]["location"] = "imgui_internal:3578" +defs["igDockNodeIsInHierarchyOf"][1]["namespace"] = "ImGui" +defs["igDockNodeIsInHierarchyOf"][1]["ov_cimguiname"] = "igDockNodeIsInHierarchyOf" +defs["igDockNodeIsInHierarchyOf"][1]["ret"] = "bool" +defs["igDockNodeIsInHierarchyOf"][1]["signature"] = "(ImGuiDockNode*,ImGuiDockNode*)" +defs["igDockNodeIsInHierarchyOf"][1]["stname"] = "" +defs["igDockNodeIsInHierarchyOf"]["(ImGuiDockNode*,ImGuiDockNode*)"] = defs["igDockNodeIsInHierarchyOf"][1] +defs["igDockNodeWindowMenuHandler_Default"] = {} +defs["igDockNodeWindowMenuHandler_Default"][1] = {} +defs["igDockNodeWindowMenuHandler_Default"][1]["args"] = "(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar)" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"] = {} +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][1] = {} +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][1]["name"] = "ctx" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][2] = {} +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][2]["name"] = "node" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][2]["type"] = "ImGuiDockNode*" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][3] = {} +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][3]["name"] = "tab_bar" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][3]["type"] = "ImGuiTabBar*" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar)" +defs["igDockNodeWindowMenuHandler_Default"][1]["call_args"] = "(ctx,node,tab_bar)" +defs["igDockNodeWindowMenuHandler_Default"][1]["cimguiname"] = "igDockNodeWindowMenuHandler_Default" +defs["igDockNodeWindowMenuHandler_Default"][1]["defaults"] = {} +defs["igDockNodeWindowMenuHandler_Default"][1]["funcname"] = "DockNodeWindowMenuHandler_Default" +defs["igDockNodeWindowMenuHandler_Default"][1]["location"] = "imgui_internal:3574" +defs["igDockNodeWindowMenuHandler_Default"][1]["namespace"] = "ImGui" +defs["igDockNodeWindowMenuHandler_Default"][1]["ov_cimguiname"] = "igDockNodeWindowMenuHandler_Default" +defs["igDockNodeWindowMenuHandler_Default"][1]["ret"] = "void" +defs["igDockNodeWindowMenuHandler_Default"][1]["signature"] = "(ImGuiContext*,ImGuiDockNode*,ImGuiTabBar*)" +defs["igDockNodeWindowMenuHandler_Default"][1]["stname"] = "" +defs["igDockNodeWindowMenuHandler_Default"]["(ImGuiContext*,ImGuiDockNode*,ImGuiTabBar*)"] = defs["igDockNodeWindowMenuHandler_Default"][1] +defs["igDockSpace"] = {} +defs["igDockSpace"][1] = {} +defs["igDockSpace"][1]["args"] = "(ImGuiID dockspace_id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)" +defs["igDockSpace"][1]["argsT"] = {} +defs["igDockSpace"][1]["argsT"][1] = {} +defs["igDockSpace"][1]["argsT"][1]["name"] = "dockspace_id" +defs["igDockSpace"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igDockSpace"][1]["argsT"][2] = {} +defs["igDockSpace"][1]["argsT"][2]["name"] = "size" +defs["igDockSpace"][1]["argsT"][2]["type"] = "const ImVec2" +defs["igDockSpace"][1]["argsT"][3] = {} +defs["igDockSpace"][1]["argsT"][3]["name"] = "flags" +defs["igDockSpace"][1]["argsT"][3]["type"] = "ImGuiDockNodeFlags" +defs["igDockSpace"][1]["argsT"][4] = {} +defs["igDockSpace"][1]["argsT"][4]["name"] = "window_class" +defs["igDockSpace"][1]["argsT"][4]["type"] = "const ImGuiWindowClass*" +defs["igDockSpace"][1]["argsoriginal"] = "(ImGuiID dockspace_id,const ImVec2& size=ImVec2(0,0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))" +defs["igDockSpace"][1]["call_args"] = "(dockspace_id,size,flags,window_class)" +defs["igDockSpace"][1]["cimguiname"] = "igDockSpace" +defs["igDockSpace"][1]["defaults"] = {} +defs["igDockSpace"][1]["defaults"]["flags"] = "0" +defs["igDockSpace"][1]["defaults"]["size"] = "ImVec2(0,0)" +defs["igDockSpace"][1]["defaults"]["window_class"] = "NULL" +defs["igDockSpace"][1]["funcname"] = "DockSpace" +defs["igDockSpace"][1]["location"] = "imgui:860" +defs["igDockSpace"][1]["namespace"] = "ImGui" +defs["igDockSpace"][1]["ov_cimguiname"] = "igDockSpace" +defs["igDockSpace"][1]["ret"] = "ImGuiID" +defs["igDockSpace"][1]["signature"] = "(ImGuiID,const ImVec2,ImGuiDockNodeFlags,const ImGuiWindowClass*)" +defs["igDockSpace"][1]["stname"] = "" +defs["igDockSpace"]["(ImGuiID,const ImVec2,ImGuiDockNodeFlags,const ImGuiWindowClass*)"] = defs["igDockSpace"][1] +defs["igDockSpaceOverViewport"] = {} +defs["igDockSpaceOverViewport"][1] = {} +defs["igDockSpaceOverViewport"][1]["args"] = "(ImGuiID dockspace_id,const ImGuiViewport* viewport,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)" +defs["igDockSpaceOverViewport"][1]["argsT"] = {} +defs["igDockSpaceOverViewport"][1]["argsT"][1] = {} +defs["igDockSpaceOverViewport"][1]["argsT"][1]["name"] = "dockspace_id" +defs["igDockSpaceOverViewport"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igDockSpaceOverViewport"][1]["argsT"][2] = {} +defs["igDockSpaceOverViewport"][1]["argsT"][2]["name"] = "viewport" +defs["igDockSpaceOverViewport"][1]["argsT"][2]["type"] = "const ImGuiViewport*" +defs["igDockSpaceOverViewport"][1]["argsT"][3] = {} +defs["igDockSpaceOverViewport"][1]["argsT"][3]["name"] = "flags" +defs["igDockSpaceOverViewport"][1]["argsT"][3]["type"] = "ImGuiDockNodeFlags" +defs["igDockSpaceOverViewport"][1]["argsT"][4] = {} +defs["igDockSpaceOverViewport"][1]["argsT"][4]["name"] = "window_class" +defs["igDockSpaceOverViewport"][1]["argsT"][4]["type"] = "const ImGuiWindowClass*" +defs["igDockSpaceOverViewport"][1]["argsoriginal"] = "(ImGuiID dockspace_id=0,const ImGuiViewport* viewport=((void*)0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))" +defs["igDockSpaceOverViewport"][1]["call_args"] = "(dockspace_id,viewport,flags,window_class)" +defs["igDockSpaceOverViewport"][1]["cimguiname"] = "igDockSpaceOverViewport" +defs["igDockSpaceOverViewport"][1]["defaults"] = {} +defs["igDockSpaceOverViewport"][1]["defaults"]["dockspace_id"] = "0" +defs["igDockSpaceOverViewport"][1]["defaults"]["flags"] = "0" +defs["igDockSpaceOverViewport"][1]["defaults"]["viewport"] = "NULL" +defs["igDockSpaceOverViewport"][1]["defaults"]["window_class"] = "NULL" +defs["igDockSpaceOverViewport"][1]["funcname"] = "DockSpaceOverViewport" +defs["igDockSpaceOverViewport"][1]["location"] = "imgui:861" +defs["igDockSpaceOverViewport"][1]["namespace"] = "ImGui" +defs["igDockSpaceOverViewport"][1]["ov_cimguiname"] = "igDockSpaceOverViewport" +defs["igDockSpaceOverViewport"][1]["ret"] = "ImGuiID" +defs["igDockSpaceOverViewport"][1]["signature"] = "(ImGuiID,const ImGuiViewport*,ImGuiDockNodeFlags,const ImGuiWindowClass*)" +defs["igDockSpaceOverViewport"][1]["stname"] = "" +defs["igDockSpaceOverViewport"]["(ImGuiID,const ImGuiViewport*,ImGuiDockNodeFlags,const ImGuiWindowClass*)"] = defs["igDockSpaceOverViewport"][1] +>>>>>>> docking_inter defs["igDragBehavior"] = {} defs["igDragBehavior"][1] = {} defs["igDragBehavior"][1]["args"] = "(ImGuiID id,ImGuiDataType data_type,void* p_v,float v_speed,const void* p_min,const void* p_max,const char* format,ImGuiSliderFlags flags)" @@ -14210,7 +18097,11 @@ defs["igDragBehavior"][1]["call_args"] = "(id,data_type,p_v,v_speed,p_min,p_max, defs["igDragBehavior"][1]["cimguiname"] = "igDragBehavior" defs["igDragBehavior"][1]["defaults"] = {} defs["igDragBehavior"][1]["funcname"] = "DragBehavior" +<<<<<<< HEAD defs["igDragBehavior"][1]["location"] = "imgui_internal:3442" +======= +defs["igDragBehavior"][1]["location"] = "imgui_internal:3774" +>>>>>>> docking_inter defs["igDragBehavior"][1]["namespace"] = "ImGui" defs["igDragBehavior"][1]["ov_cimguiname"] = "igDragBehavior" defs["igDragBehavior"][1]["ret"] = "bool" @@ -14252,7 +18143,11 @@ defs["igDragFloat"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat"][1]["funcname"] = "DragFloat" +<<<<<<< HEAD defs["igDragFloat"][1]["location"] = "imgui:574" +======= +defs["igDragFloat"][1]["location"] = "imgui:584" +>>>>>>> docking_inter defs["igDragFloat"][1]["namespace"] = "ImGui" defs["igDragFloat"][1]["ov_cimguiname"] = "igDragFloat" defs["igDragFloat"][1]["ret"] = "bool" @@ -14294,7 +18189,11 @@ defs["igDragFloat2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat2"][1]["funcname"] = "DragFloat2" +<<<<<<< HEAD defs["igDragFloat2"][1]["location"] = "imgui:575" +======= +defs["igDragFloat2"][1]["location"] = "imgui:585" +>>>>>>> docking_inter defs["igDragFloat2"][1]["namespace"] = "ImGui" defs["igDragFloat2"][1]["ov_cimguiname"] = "igDragFloat2" defs["igDragFloat2"][1]["ret"] = "bool" @@ -14336,7 +18235,11 @@ defs["igDragFloat3"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat3"][1]["funcname"] = "DragFloat3" +<<<<<<< HEAD defs["igDragFloat3"][1]["location"] = "imgui:576" +======= +defs["igDragFloat3"][1]["location"] = "imgui:586" +>>>>>>> docking_inter defs["igDragFloat3"][1]["namespace"] = "ImGui" defs["igDragFloat3"][1]["ov_cimguiname"] = "igDragFloat3" defs["igDragFloat3"][1]["ret"] = "bool" @@ -14378,7 +18281,11 @@ defs["igDragFloat4"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat4"][1]["funcname"] = "DragFloat4" +<<<<<<< HEAD defs["igDragFloat4"][1]["location"] = "imgui:577" +======= +defs["igDragFloat4"][1]["location"] = "imgui:587" +>>>>>>> docking_inter defs["igDragFloat4"][1]["namespace"] = "ImGui" defs["igDragFloat4"][1]["ov_cimguiname"] = "igDragFloat4" defs["igDragFloat4"][1]["ret"] = "bool" @@ -14427,7 +18334,11 @@ defs["igDragFloatRange2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloatRange2"][1]["funcname"] = "DragFloatRange2" +<<<<<<< HEAD defs["igDragFloatRange2"][1]["location"] = "imgui:578" +======= +defs["igDragFloatRange2"][1]["location"] = "imgui:588" +>>>>>>> docking_inter defs["igDragFloatRange2"][1]["namespace"] = "ImGui" defs["igDragFloatRange2"][1]["ov_cimguiname"] = "igDragFloatRange2" defs["igDragFloatRange2"][1]["ret"] = "bool" @@ -14469,7 +18380,11 @@ defs["igDragInt"][1]["defaults"]["v_max"] = "0" defs["igDragInt"][1]["defaults"]["v_min"] = "0" defs["igDragInt"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt"][1]["funcname"] = "DragInt" +<<<<<<< HEAD defs["igDragInt"][1]["location"] = "imgui:579" +======= +defs["igDragInt"][1]["location"] = "imgui:589" +>>>>>>> docking_inter defs["igDragInt"][1]["namespace"] = "ImGui" defs["igDragInt"][1]["ov_cimguiname"] = "igDragInt" defs["igDragInt"][1]["ret"] = "bool" @@ -14511,7 +18426,11 @@ defs["igDragInt2"][1]["defaults"]["v_max"] = "0" defs["igDragInt2"][1]["defaults"]["v_min"] = "0" defs["igDragInt2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt2"][1]["funcname"] = "DragInt2" +<<<<<<< HEAD defs["igDragInt2"][1]["location"] = "imgui:580" +======= +defs["igDragInt2"][1]["location"] = "imgui:590" +>>>>>>> docking_inter defs["igDragInt2"][1]["namespace"] = "ImGui" defs["igDragInt2"][1]["ov_cimguiname"] = "igDragInt2" defs["igDragInt2"][1]["ret"] = "bool" @@ -14553,7 +18472,11 @@ defs["igDragInt3"][1]["defaults"]["v_max"] = "0" defs["igDragInt3"][1]["defaults"]["v_min"] = "0" defs["igDragInt3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt3"][1]["funcname"] = "DragInt3" +<<<<<<< HEAD defs["igDragInt3"][1]["location"] = "imgui:581" +======= +defs["igDragInt3"][1]["location"] = "imgui:591" +>>>>>>> docking_inter defs["igDragInt3"][1]["namespace"] = "ImGui" defs["igDragInt3"][1]["ov_cimguiname"] = "igDragInt3" defs["igDragInt3"][1]["ret"] = "bool" @@ -14595,7 +18518,11 @@ defs["igDragInt4"][1]["defaults"]["v_max"] = "0" defs["igDragInt4"][1]["defaults"]["v_min"] = "0" defs["igDragInt4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt4"][1]["funcname"] = "DragInt4" +<<<<<<< HEAD defs["igDragInt4"][1]["location"] = "imgui:582" +======= +defs["igDragInt4"][1]["location"] = "imgui:592" +>>>>>>> docking_inter defs["igDragInt4"][1]["namespace"] = "ImGui" defs["igDragInt4"][1]["ov_cimguiname"] = "igDragInt4" defs["igDragInt4"][1]["ret"] = "bool" @@ -14644,7 +18571,11 @@ defs["igDragIntRange2"][1]["defaults"]["v_max"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_min"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragIntRange2"][1]["funcname"] = "DragIntRange2" +<<<<<<< HEAD defs["igDragIntRange2"][1]["location"] = "imgui:583" +======= +defs["igDragIntRange2"][1]["location"] = "imgui:593" +>>>>>>> docking_inter defs["igDragIntRange2"][1]["namespace"] = "ImGui" defs["igDragIntRange2"][1]["ov_cimguiname"] = "igDragIntRange2" defs["igDragIntRange2"][1]["ret"] = "bool" @@ -14689,7 +18620,11 @@ defs["igDragScalar"][1]["defaults"]["p_max"] = "NULL" defs["igDragScalar"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalar"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragScalar"][1]["funcname"] = "DragScalar" +<<<<<<< HEAD defs["igDragScalar"][1]["location"] = "imgui:584" +======= +defs["igDragScalar"][1]["location"] = "imgui:594" +>>>>>>> docking_inter defs["igDragScalar"][1]["namespace"] = "ImGui" defs["igDragScalar"][1]["ov_cimguiname"] = "igDragScalar" defs["igDragScalar"][1]["ret"] = "bool" @@ -14737,7 +18672,11 @@ defs["igDragScalarN"][1]["defaults"]["p_max"] = "NULL" defs["igDragScalarN"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalarN"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragScalarN"][1]["funcname"] = "DragScalarN" +<<<<<<< HEAD defs["igDragScalarN"][1]["location"] = "imgui:585" +======= +defs["igDragScalarN"][1]["location"] = "imgui:595" +>>>>>>> docking_inter defs["igDragScalarN"][1]["namespace"] = "ImGui" defs["igDragScalarN"][1]["ov_cimguiname"] = "igDragScalarN" defs["igDragScalarN"][1]["ret"] = "bool" @@ -14756,7 +18695,11 @@ defs["igDummy"][1]["call_args"] = "(size)" defs["igDummy"][1]["cimguiname"] = "igDummy" defs["igDummy"][1]["defaults"] = {} defs["igDummy"][1]["funcname"] = "Dummy" +<<<<<<< HEAD defs["igDummy"][1]["location"] = "imgui:484" +======= +defs["igDummy"][1]["location"] = "imgui:494" +>>>>>>> docking_inter defs["igDummy"][1]["namespace"] = "ImGui" defs["igDummy"][1]["ov_cimguiname"] = "igDummy" defs["igDummy"][1]["ret"] = "void" @@ -14772,7 +18715,11 @@ defs["igEnd"][1]["call_args"] = "()" defs["igEnd"][1]["cimguiname"] = "igEnd" defs["igEnd"][1]["defaults"] = {} defs["igEnd"][1]["funcname"] = "End" +<<<<<<< HEAD defs["igEnd"][1]["location"] = "imgui:351" +======= +defs["igEnd"][1]["location"] = "imgui:358" +>>>>>>> docking_inter defs["igEnd"][1]["namespace"] = "ImGui" defs["igEnd"][1]["ov_cimguiname"] = "igEnd" defs["igEnd"][1]["ret"] = "void" @@ -14788,7 +18735,11 @@ defs["igEndChild"][1]["call_args"] = "()" defs["igEndChild"][1]["cimguiname"] = "igEndChild" defs["igEndChild"][1]["defaults"] = {} defs["igEndChild"][1]["funcname"] = "EndChild" +<<<<<<< HEAD defs["igEndChild"][1]["location"] = "imgui:373" +======= +defs["igEndChild"][1]["location"] = "imgui:380" +>>>>>>> docking_inter defs["igEndChild"][1]["namespace"] = "ImGui" defs["igEndChild"][1]["ov_cimguiname"] = "igEndChild" defs["igEndChild"][1]["ret"] = "void" @@ -14804,7 +18755,11 @@ defs["igEndColumns"][1]["call_args"] = "()" defs["igEndColumns"][1]["cimguiname"] = "igEndColumns" defs["igEndColumns"][1]["defaults"] = {} defs["igEndColumns"][1]["funcname"] = "EndColumns" +<<<<<<< HEAD defs["igEndColumns"][1]["location"] = "imgui_internal:3311" +======= +defs["igEndColumns"][1]["location"] = "imgui_internal:3640" +>>>>>>> docking_inter defs["igEndColumns"][1]["namespace"] = "ImGui" defs["igEndColumns"][1]["ov_cimguiname"] = "igEndColumns" defs["igEndColumns"][1]["ret"] = "void" @@ -14820,7 +18775,11 @@ defs["igEndCombo"][1]["call_args"] = "()" defs["igEndCombo"][1]["cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["defaults"] = {} defs["igEndCombo"][1]["funcname"] = "EndCombo" +<<<<<<< HEAD defs["igEndCombo"][1]["location"] = "imgui:557" +======= +defs["igEndCombo"][1]["location"] = "imgui:567" +>>>>>>> docking_inter defs["igEndCombo"][1]["namespace"] = "ImGui" defs["igEndCombo"][1]["ov_cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["ret"] = "void" @@ -14836,7 +18795,11 @@ defs["igEndComboPreview"][1]["call_args"] = "()" defs["igEndComboPreview"][1]["cimguiname"] = "igEndComboPreview" defs["igEndComboPreview"][1]["defaults"] = {} defs["igEndComboPreview"][1]["funcname"] = "EndComboPreview" +<<<<<<< HEAD defs["igEndComboPreview"][1]["location"] = "imgui_internal:3171" +======= +defs["igEndComboPreview"][1]["location"] = "imgui_internal:3445" +>>>>>>> docking_inter defs["igEndComboPreview"][1]["namespace"] = "ImGui" defs["igEndComboPreview"][1]["ov_cimguiname"] = "igEndComboPreview" defs["igEndComboPreview"][1]["ret"] = "void" @@ -14852,7 +18815,11 @@ defs["igEndDisabled"][1]["call_args"] = "()" defs["igEndDisabled"][1]["cimguiname"] = "igEndDisabled" defs["igEndDisabled"][1]["defaults"] = {} defs["igEndDisabled"][1]["funcname"] = "EndDisabled" +<<<<<<< HEAD defs["igEndDisabled"][1]["location"] = "imgui:864" +======= +defs["igEndDisabled"][1]["location"] = "imgui:896" +>>>>>>> docking_inter defs["igEndDisabled"][1]["namespace"] = "ImGui" defs["igEndDisabled"][1]["ov_cimguiname"] = "igEndDisabled" defs["igEndDisabled"][1]["ret"] = "void" @@ -14868,7 +18835,11 @@ defs["igEndDisabledOverrideReenable"][1]["call_args"] = "()" defs["igEndDisabledOverrideReenable"][1]["cimguiname"] = "igEndDisabledOverrideReenable" defs["igEndDisabledOverrideReenable"][1]["defaults"] = {} defs["igEndDisabledOverrideReenable"][1]["funcname"] = "EndDisabledOverrideReenable" +<<<<<<< HEAD defs["igEndDisabledOverrideReenable"][1]["location"] = "imgui_internal:3138" +======= +defs["igEndDisabledOverrideReenable"][1]["location"] = "imgui_internal:3408" +>>>>>>> docking_inter defs["igEndDisabledOverrideReenable"][1]["namespace"] = "ImGui" defs["igEndDisabledOverrideReenable"][1]["ov_cimguiname"] = "igEndDisabledOverrideReenable" defs["igEndDisabledOverrideReenable"][1]["ret"] = "void" @@ -14884,7 +18855,11 @@ defs["igEndDragDropSource"][1]["call_args"] = "()" defs["igEndDragDropSource"][1]["cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["defaults"] = {} defs["igEndDragDropSource"][1]["funcname"] = "EndDragDropSource" +<<<<<<< HEAD defs["igEndDragDropSource"][1]["location"] = "imgui:853" +======= +defs["igEndDragDropSource"][1]["location"] = "imgui:884" +>>>>>>> docking_inter defs["igEndDragDropSource"][1]["namespace"] = "ImGui" defs["igEndDragDropSource"][1]["ov_cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["ret"] = "void" @@ -14900,7 +18875,11 @@ defs["igEndDragDropTarget"][1]["call_args"] = "()" defs["igEndDragDropTarget"][1]["cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["defaults"] = {} defs["igEndDragDropTarget"][1]["funcname"] = "EndDragDropTarget" +<<<<<<< HEAD defs["igEndDragDropTarget"][1]["location"] = "imgui:856" +======= +defs["igEndDragDropTarget"][1]["location"] = "imgui:887" +>>>>>>> docking_inter defs["igEndDragDropTarget"][1]["namespace"] = "ImGui" defs["igEndDragDropTarget"][1]["ov_cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["ret"] = "void" @@ -14916,7 +18895,11 @@ defs["igEndFrame"][1]["call_args"] = "()" defs["igEndFrame"][1]["cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["defaults"] = {} defs["igEndFrame"][1]["funcname"] = "EndFrame" +<<<<<<< HEAD defs["igEndFrame"][1]["location"] = "imgui:317" +======= +defs["igEndFrame"][1]["location"] = "imgui:324" +>>>>>>> docking_inter defs["igEndFrame"][1]["namespace"] = "ImGui" defs["igEndFrame"][1]["ov_cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["ret"] = "void" @@ -14932,7 +18915,11 @@ defs["igEndGroup"][1]["call_args"] = "()" defs["igEndGroup"][1]["cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["defaults"] = {} defs["igEndGroup"][1]["funcname"] = "EndGroup" +<<<<<<< HEAD defs["igEndGroup"][1]["location"] = "imgui:488" +======= +defs["igEndGroup"][1]["location"] = "imgui:498" +>>>>>>> docking_inter defs["igEndGroup"][1]["namespace"] = "ImGui" defs["igEndGroup"][1]["ov_cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["ret"] = "void" @@ -14948,7 +18935,11 @@ defs["igEndListBox"][1]["call_args"] = "()" defs["igEndListBox"][1]["cimguiname"] = "igEndListBox" defs["igEndListBox"][1]["defaults"] = {} defs["igEndListBox"][1]["funcname"] = "EndListBox" +<<<<<<< HEAD defs["igEndListBox"][1]["location"] = "imgui:669" +======= +defs["igEndListBox"][1]["location"] = "imgui:679" +>>>>>>> docking_inter defs["igEndListBox"][1]["namespace"] = "ImGui" defs["igEndListBox"][1]["ov_cimguiname"] = "igEndListBox" defs["igEndListBox"][1]["ret"] = "void" @@ -14964,7 +18955,11 @@ defs["igEndMainMenuBar"][1]["call_args"] = "()" defs["igEndMainMenuBar"][1]["cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["defaults"] = {} defs["igEndMainMenuBar"][1]["funcname"] = "EndMainMenuBar" +<<<<<<< HEAD defs["igEndMainMenuBar"][1]["location"] = "imgui:695" +======= +defs["igEndMainMenuBar"][1]["location"] = "imgui:705" +>>>>>>> docking_inter defs["igEndMainMenuBar"][1]["namespace"] = "ImGui" defs["igEndMainMenuBar"][1]["ov_cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["ret"] = "void" @@ -14980,7 +18975,11 @@ defs["igEndMenu"][1]["call_args"] = "()" defs["igEndMenu"][1]["cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["defaults"] = {} defs["igEndMenu"][1]["funcname"] = "EndMenu" +<<<<<<< HEAD defs["igEndMenu"][1]["location"] = "imgui:697" +======= +defs["igEndMenu"][1]["location"] = "imgui:707" +>>>>>>> docking_inter defs["igEndMenu"][1]["namespace"] = "ImGui" defs["igEndMenu"][1]["ov_cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["ret"] = "void" @@ -14996,7 +18995,11 @@ defs["igEndMenuBar"][1]["call_args"] = "()" defs["igEndMenuBar"][1]["cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["defaults"] = {} defs["igEndMenuBar"][1]["funcname"] = "EndMenuBar" +<<<<<<< HEAD defs["igEndMenuBar"][1]["location"] = "imgui:693" +======= +defs["igEndMenuBar"][1]["location"] = "imgui:703" +>>>>>>> docking_inter defs["igEndMenuBar"][1]["namespace"] = "ImGui" defs["igEndMenuBar"][1]["ov_cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["ret"] = "void" @@ -15012,7 +19015,11 @@ defs["igEndPopup"][1]["call_args"] = "()" defs["igEndPopup"][1]["cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["defaults"] = {} defs["igEndPopup"][1]["funcname"] = "EndPopup" +<<<<<<< HEAD defs["igEndPopup"][1]["location"] = "imgui:730" +======= +defs["igEndPopup"][1]["location"] = "imgui:740" +>>>>>>> docking_inter defs["igEndPopup"][1]["namespace"] = "ImGui" defs["igEndPopup"][1]["ov_cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["ret"] = "void" @@ -15028,7 +19035,11 @@ defs["igEndTabBar"][1]["call_args"] = "()" defs["igEndTabBar"][1]["cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["defaults"] = {} defs["igEndTabBar"][1]["funcname"] = "EndTabBar" +<<<<<<< HEAD defs["igEndTabBar"][1]["location"] = "imgui:830" +======= +defs["igEndTabBar"][1]["location"] = "imgui:841" +>>>>>>> docking_inter defs["igEndTabBar"][1]["namespace"] = "ImGui" defs["igEndTabBar"][1]["ov_cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["ret"] = "void" @@ -15044,7 +19055,11 @@ defs["igEndTabItem"][1]["call_args"] = "()" defs["igEndTabItem"][1]["cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["defaults"] = {} defs["igEndTabItem"][1]["funcname"] = "EndTabItem" +<<<<<<< HEAD defs["igEndTabItem"][1]["location"] = "imgui:832" +======= +defs["igEndTabItem"][1]["location"] = "imgui:843" +>>>>>>> docking_inter defs["igEndTabItem"][1]["namespace"] = "ImGui" defs["igEndTabItem"][1]["ov_cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["ret"] = "void" @@ -15060,7 +19075,11 @@ defs["igEndTable"][1]["call_args"] = "()" defs["igEndTable"][1]["cimguiname"] = "igEndTable" defs["igEndTable"][1]["defaults"] = {} defs["igEndTable"][1]["funcname"] = "EndTable" +<<<<<<< HEAD defs["igEndTable"][1]["location"] = "imgui:782" +======= +defs["igEndTable"][1]["location"] = "imgui:792" +>>>>>>> docking_inter defs["igEndTable"][1]["namespace"] = "ImGui" defs["igEndTable"][1]["ov_cimguiname"] = "igEndTable" defs["igEndTable"][1]["ret"] = "void" @@ -15076,7 +19095,11 @@ defs["igEndTooltip"][1]["call_args"] = "()" defs["igEndTooltip"][1]["cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["defaults"] = {} defs["igEndTooltip"][1]["funcname"] = "EndTooltip" +<<<<<<< HEAD defs["igEndTooltip"][1]["location"] = "imgui:706" +======= +defs["igEndTooltip"][1]["location"] = "imgui:716" +>>>>>>> docking_inter defs["igEndTooltip"][1]["namespace"] = "ImGui" defs["igEndTooltip"][1]["ov_cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["ret"] = "void" @@ -15099,7 +19122,11 @@ defs["igErrorCheckEndFrameRecover"][1]["cimguiname"] = "igErrorCheckEndFrameReco defs["igErrorCheckEndFrameRecover"][1]["defaults"] = {} defs["igErrorCheckEndFrameRecover"][1]["defaults"]["user_data"] = "NULL" defs["igErrorCheckEndFrameRecover"][1]["funcname"] = "ErrorCheckEndFrameRecover" +<<<<<<< HEAD defs["igErrorCheckEndFrameRecover"][1]["location"] = "imgui_internal:3502" +======= +defs["igErrorCheckEndFrameRecover"][1]["location"] = "imgui_internal:3834" +>>>>>>> docking_inter defs["igErrorCheckEndFrameRecover"][1]["namespace"] = "ImGui" defs["igErrorCheckEndFrameRecover"][1]["ov_cimguiname"] = "igErrorCheckEndFrameRecover" defs["igErrorCheckEndFrameRecover"][1]["ret"] = "void" @@ -15122,7 +19149,11 @@ defs["igErrorCheckEndWindowRecover"][1]["cimguiname"] = "igErrorCheckEndWindowRe defs["igErrorCheckEndWindowRecover"][1]["defaults"] = {} defs["igErrorCheckEndWindowRecover"][1]["defaults"]["user_data"] = "NULL" defs["igErrorCheckEndWindowRecover"][1]["funcname"] = "ErrorCheckEndWindowRecover" +<<<<<<< HEAD defs["igErrorCheckEndWindowRecover"][1]["location"] = "imgui_internal:3503" +======= +defs["igErrorCheckEndWindowRecover"][1]["location"] = "imgui_internal:3835" +>>>>>>> docking_inter defs["igErrorCheckEndWindowRecover"][1]["namespace"] = "ImGui" defs["igErrorCheckEndWindowRecover"][1]["ov_cimguiname"] = "igErrorCheckEndWindowRecover" defs["igErrorCheckEndWindowRecover"][1]["ret"] = "void" @@ -15138,7 +19169,11 @@ defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["call_args"] = defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["cimguiname"] = "igErrorCheckUsingSetCursorPosToExtendParentBoundaries" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["defaults"] = {} defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["funcname"] = "ErrorCheckUsingSetCursorPosToExtendParentBoundaries" +<<<<<<< HEAD defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["location"] = "imgui_internal:3504" +======= +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["location"] = "imgui_internal:3836" +>>>>>>> docking_inter defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["namespace"] = "ImGui" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["ov_cimguiname"] = "igErrorCheckUsingSetCursorPosToExtendParentBoundaries" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["ret"] = "void" @@ -15160,7 +19195,11 @@ defs["igFindBestWindowPosForPopup"][1]["call_args"] = "(window)" defs["igFindBestWindowPosForPopup"][1]["cimguiname"] = "igFindBestWindowPosForPopup" defs["igFindBestWindowPosForPopup"][1]["defaults"] = {} defs["igFindBestWindowPosForPopup"][1]["funcname"] = "FindBestWindowPosForPopup" +<<<<<<< HEAD defs["igFindBestWindowPosForPopup"][1]["location"] = "imgui_internal:3160" +======= +defs["igFindBestWindowPosForPopup"][1]["location"] = "imgui_internal:3430" +>>>>>>> docking_inter defs["igFindBestWindowPosForPopup"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopup"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopup"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopup" @@ -15198,7 +19237,11 @@ defs["igFindBestWindowPosForPopupEx"][1]["call_args"] = "(ref_pos,size,last_dir, defs["igFindBestWindowPosForPopupEx"][1]["cimguiname"] = "igFindBestWindowPosForPopupEx" defs["igFindBestWindowPosForPopupEx"][1]["defaults"] = {} defs["igFindBestWindowPosForPopupEx"][1]["funcname"] = "FindBestWindowPosForPopupEx" +<<<<<<< HEAD defs["igFindBestWindowPosForPopupEx"][1]["location"] = "imgui_internal:3161" +======= +defs["igFindBestWindowPosForPopupEx"][1]["location"] = "imgui_internal:3431" +>>>>>>> docking_inter defs["igFindBestWindowPosForPopupEx"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopupEx"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopupEx"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopupEx" @@ -15218,7 +19261,11 @@ defs["igFindBlockingModal"][1]["call_args"] = "(window)" defs["igFindBlockingModal"][1]["cimguiname"] = "igFindBlockingModal" defs["igFindBlockingModal"][1]["defaults"] = {} defs["igFindBlockingModal"][1]["funcname"] = "FindBlockingModal" +<<<<<<< HEAD defs["igFindBlockingModal"][1]["location"] = "imgui_internal:3159" +======= +defs["igFindBlockingModal"][1]["location"] = "imgui_internal:3429" +>>>>>>> docking_inter defs["igFindBlockingModal"][1]["namespace"] = "ImGui" defs["igFindBlockingModal"][1]["ov_cimguiname"] = "igFindBlockingModal" defs["igFindBlockingModal"][1]["ret"] = "ImGuiWindow*" @@ -15237,13 +19284,39 @@ defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["call_args"] = "(window defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["cimguiname"] = "igFindBottomMostVisibleWindowWithinBeginStack" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["defaults"] = {} defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["funcname"] = "FindBottomMostVisibleWindowWithinBeginStack" +<<<<<<< HEAD defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["location"] = "imgui_internal:3037" +======= +defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["location"] = "imgui_internal:3302" +>>>>>>> docking_inter defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["namespace"] = "ImGui" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["ov_cimguiname"] = "igFindBottomMostVisibleWindowWithinBeginStack" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["ret"] = "ImGuiWindow*" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["signature"] = "(ImGuiWindow*)" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["stname"] = "" defs["igFindBottomMostVisibleWindowWithinBeginStack"]["(ImGuiWindow*)"] = defs["igFindBottomMostVisibleWindowWithinBeginStack"][1] +<<<<<<< HEAD +======= +defs["igFindHoveredViewportFromPlatformWindowStack"] = {} +defs["igFindHoveredViewportFromPlatformWindowStack"][1] = {} +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["args"] = "(const ImVec2 mouse_platform_pos)" +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["argsT"] = {} +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["argsT"][1] = {} +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["argsT"][1]["name"] = "mouse_platform_pos" +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["argsT"][1]["type"] = "const ImVec2" +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["argsoriginal"] = "(const ImVec2& mouse_platform_pos)" +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["call_args"] = "(mouse_platform_pos)" +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["cimguiname"] = "igFindHoveredViewportFromPlatformWindowStack" +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["defaults"] = {} +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["funcname"] = "FindHoveredViewportFromPlatformWindowStack" +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["location"] = "imgui_internal:3338" +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["namespace"] = "ImGui" +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["ov_cimguiname"] = "igFindHoveredViewportFromPlatformWindowStack" +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["ret"] = "ImGuiViewportP*" +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["signature"] = "(const ImVec2)" +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["stname"] = "" +defs["igFindHoveredViewportFromPlatformWindowStack"]["(const ImVec2)"] = defs["igFindHoveredViewportFromPlatformWindowStack"][1] +>>>>>>> docking_inter defs["igFindHoveredWindowEx"] = {} defs["igFindHoveredWindowEx"][1] = {} defs["igFindHoveredWindowEx"][1]["args"] = "(const ImVec2 pos,bool find_first_and_in_any_viewport,ImGuiWindow** out_hovered_window,ImGuiWindow** out_hovered_window_under_moving_window)" @@ -15265,7 +19338,11 @@ defs["igFindHoveredWindowEx"][1]["call_args"] = "(pos,find_first_and_in_any_view defs["igFindHoveredWindowEx"][1]["cimguiname"] = "igFindHoveredWindowEx" defs["igFindHoveredWindowEx"][1]["defaults"] = {} defs["igFindHoveredWindowEx"][1]["funcname"] = "FindHoveredWindowEx" +<<<<<<< HEAD defs["igFindHoveredWindowEx"][1]["location"] = "imgui_internal:3057" +======= +defs["igFindHoveredWindowEx"][1]["location"] = "imgui_internal:3320" +>>>>>>> docking_inter defs["igFindHoveredWindowEx"][1]["namespace"] = "ImGui" defs["igFindHoveredWindowEx"][1]["ov_cimguiname"] = "igFindHoveredWindowEx" defs["igFindHoveredWindowEx"][1]["ret"] = "void" @@ -15287,7 +19364,11 @@ defs["igFindOrCreateColumns"][1]["call_args"] = "(window,id)" defs["igFindOrCreateColumns"][1]["cimguiname"] = "igFindOrCreateColumns" defs["igFindOrCreateColumns"][1]["defaults"] = {} defs["igFindOrCreateColumns"][1]["funcname"] = "FindOrCreateColumns" +<<<<<<< HEAD defs["igFindOrCreateColumns"][1]["location"] = "imgui_internal:3316" +======= +defs["igFindOrCreateColumns"][1]["location"] = "imgui_internal:3645" +>>>>>>> docking_inter defs["igFindOrCreateColumns"][1]["namespace"] = "ImGui" defs["igFindOrCreateColumns"][1]["ov_cimguiname"] = "igFindOrCreateColumns" defs["igFindOrCreateColumns"][1]["ret"] = "ImGuiOldColumns*" @@ -15310,7 +19391,11 @@ defs["igFindRenderedTextEnd"][1]["cimguiname"] = "igFindRenderedTextEnd" defs["igFindRenderedTextEnd"][1]["defaults"] = {} defs["igFindRenderedTextEnd"][1]["defaults"]["text_end"] = "NULL" defs["igFindRenderedTextEnd"][1]["funcname"] = "FindRenderedTextEnd" +<<<<<<< HEAD defs["igFindRenderedTextEnd"][1]["location"] = "imgui_internal:3409" +======= +defs["igFindRenderedTextEnd"][1]["location"] = "imgui_internal:3739" +>>>>>>> docking_inter defs["igFindRenderedTextEnd"][1]["namespace"] = "ImGui" defs["igFindRenderedTextEnd"][1]["ov_cimguiname"] = "igFindRenderedTextEnd" defs["igFindRenderedTextEnd"][1]["ret"] = "const char*" @@ -15329,13 +19414,58 @@ defs["igFindSettingsHandler"][1]["call_args"] = "(type_name)" defs["igFindSettingsHandler"][1]["cimguiname"] = "igFindSettingsHandler" defs["igFindSettingsHandler"][1]["defaults"] = {} defs["igFindSettingsHandler"][1]["funcname"] = "FindSettingsHandler" +<<<<<<< HEAD defs["igFindSettingsHandler"][1]["location"] = "imgui_internal:3076" +======= +defs["igFindSettingsHandler"][1]["location"] = "imgui_internal:3346" +>>>>>>> docking_inter defs["igFindSettingsHandler"][1]["namespace"] = "ImGui" defs["igFindSettingsHandler"][1]["ov_cimguiname"] = "igFindSettingsHandler" defs["igFindSettingsHandler"][1]["ret"] = "ImGuiSettingsHandler*" defs["igFindSettingsHandler"][1]["signature"] = "(const char*)" defs["igFindSettingsHandler"][1]["stname"] = "" defs["igFindSettingsHandler"]["(const char*)"] = defs["igFindSettingsHandler"][1] +<<<<<<< HEAD +======= +defs["igFindViewportByID"] = {} +defs["igFindViewportByID"][1] = {} +defs["igFindViewportByID"][1]["args"] = "(ImGuiID id)" +defs["igFindViewportByID"][1]["argsT"] = {} +defs["igFindViewportByID"][1]["argsT"][1] = {} +defs["igFindViewportByID"][1]["argsT"][1]["name"] = "id" +defs["igFindViewportByID"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igFindViewportByID"][1]["argsoriginal"] = "(ImGuiID id)" +defs["igFindViewportByID"][1]["call_args"] = "(id)" +defs["igFindViewportByID"][1]["cimguiname"] = "igFindViewportByID" +defs["igFindViewportByID"][1]["defaults"] = {} +defs["igFindViewportByID"][1]["funcname"] = "FindViewportByID" +defs["igFindViewportByID"][1]["location"] = "imgui:1050" +defs["igFindViewportByID"][1]["namespace"] = "ImGui" +defs["igFindViewportByID"][1]["ov_cimguiname"] = "igFindViewportByID" +defs["igFindViewportByID"][1]["ret"] = "ImGuiViewport*" +defs["igFindViewportByID"][1]["signature"] = "(ImGuiID)" +defs["igFindViewportByID"][1]["stname"] = "" +defs["igFindViewportByID"]["(ImGuiID)"] = defs["igFindViewportByID"][1] +defs["igFindViewportByPlatformHandle"] = {} +defs["igFindViewportByPlatformHandle"][1] = {} +defs["igFindViewportByPlatformHandle"][1]["args"] = "(void* platform_handle)" +defs["igFindViewportByPlatformHandle"][1]["argsT"] = {} +defs["igFindViewportByPlatformHandle"][1]["argsT"][1] = {} +defs["igFindViewportByPlatformHandle"][1]["argsT"][1]["name"] = "platform_handle" +defs["igFindViewportByPlatformHandle"][1]["argsT"][1]["type"] = "void*" +defs["igFindViewportByPlatformHandle"][1]["argsoriginal"] = "(void* platform_handle)" +defs["igFindViewportByPlatformHandle"][1]["call_args"] = "(platform_handle)" +defs["igFindViewportByPlatformHandle"][1]["cimguiname"] = "igFindViewportByPlatformHandle" +defs["igFindViewportByPlatformHandle"][1]["defaults"] = {} +defs["igFindViewportByPlatformHandle"][1]["funcname"] = "FindViewportByPlatformHandle" +defs["igFindViewportByPlatformHandle"][1]["location"] = "imgui:1051" +defs["igFindViewportByPlatformHandle"][1]["namespace"] = "ImGui" +defs["igFindViewportByPlatformHandle"][1]["ov_cimguiname"] = "igFindViewportByPlatformHandle" +defs["igFindViewportByPlatformHandle"][1]["ret"] = "ImGuiViewport*" +defs["igFindViewportByPlatformHandle"][1]["signature"] = "(void*)" +defs["igFindViewportByPlatformHandle"][1]["stname"] = "" +defs["igFindViewportByPlatformHandle"]["(void*)"] = defs["igFindViewportByPlatformHandle"][1] +>>>>>>> docking_inter defs["igFindWindowByID"] = {} defs["igFindWindowByID"][1] = {} defs["igFindWindowByID"][1]["args"] = "(ImGuiID id)" @@ -15348,7 +19478,11 @@ defs["igFindWindowByID"][1]["call_args"] = "(id)" defs["igFindWindowByID"][1]["cimguiname"] = "igFindWindowByID" defs["igFindWindowByID"][1]["defaults"] = {} defs["igFindWindowByID"][1]["funcname"] = "FindWindowByID" +<<<<<<< HEAD defs["igFindWindowByID"][1]["location"] = "imgui_internal:3010" +======= +defs["igFindWindowByID"][1]["location"] = "imgui_internal:3275" +>>>>>>> docking_inter defs["igFindWindowByID"][1]["namespace"] = "ImGui" defs["igFindWindowByID"][1]["ov_cimguiname"] = "igFindWindowByID" defs["igFindWindowByID"][1]["ret"] = "ImGuiWindow*" @@ -15367,7 +19501,11 @@ defs["igFindWindowByName"][1]["call_args"] = "(name)" defs["igFindWindowByName"][1]["cimguiname"] = "igFindWindowByName" defs["igFindWindowByName"][1]["defaults"] = {} defs["igFindWindowByName"][1]["funcname"] = "FindWindowByName" +<<<<<<< HEAD defs["igFindWindowByName"][1]["location"] = "imgui_internal:3011" +======= +defs["igFindWindowByName"][1]["location"] = "imgui_internal:3276" +>>>>>>> docking_inter defs["igFindWindowByName"][1]["namespace"] = "ImGui" defs["igFindWindowByName"][1]["ov_cimguiname"] = "igFindWindowByName" defs["igFindWindowByName"][1]["ret"] = "ImGuiWindow*" @@ -15386,7 +19524,11 @@ defs["igFindWindowDisplayIndex"][1]["call_args"] = "(window)" defs["igFindWindowDisplayIndex"][1]["cimguiname"] = "igFindWindowDisplayIndex" defs["igFindWindowDisplayIndex"][1]["defaults"] = {} defs["igFindWindowDisplayIndex"][1]["funcname"] = "FindWindowDisplayIndex" +<<<<<<< HEAD defs["igFindWindowDisplayIndex"][1]["location"] = "imgui_internal:3036" +======= +defs["igFindWindowDisplayIndex"][1]["location"] = "imgui_internal:3301" +>>>>>>> docking_inter defs["igFindWindowDisplayIndex"][1]["namespace"] = "ImGui" defs["igFindWindowDisplayIndex"][1]["ov_cimguiname"] = "igFindWindowDisplayIndex" defs["igFindWindowDisplayIndex"][1]["ret"] = "int" @@ -15405,7 +19547,11 @@ defs["igFindWindowSettingsByID"][1]["call_args"] = "(id)" defs["igFindWindowSettingsByID"][1]["cimguiname"] = "igFindWindowSettingsByID" defs["igFindWindowSettingsByID"][1]["defaults"] = {} defs["igFindWindowSettingsByID"][1]["funcname"] = "FindWindowSettingsByID" +<<<<<<< HEAD defs["igFindWindowSettingsByID"][1]["location"] = "imgui_internal:3080" +======= +defs["igFindWindowSettingsByID"][1]["location"] = "imgui_internal:3350" +>>>>>>> docking_inter defs["igFindWindowSettingsByID"][1]["namespace"] = "ImGui" defs["igFindWindowSettingsByID"][1]["ov_cimguiname"] = "igFindWindowSettingsByID" defs["igFindWindowSettingsByID"][1]["ret"] = "ImGuiWindowSettings*" @@ -15424,7 +19570,11 @@ defs["igFindWindowSettingsByWindow"][1]["call_args"] = "(window)" defs["igFindWindowSettingsByWindow"][1]["cimguiname"] = "igFindWindowSettingsByWindow" defs["igFindWindowSettingsByWindow"][1]["defaults"] = {} defs["igFindWindowSettingsByWindow"][1]["funcname"] = "FindWindowSettingsByWindow" +<<<<<<< HEAD defs["igFindWindowSettingsByWindow"][1]["location"] = "imgui_internal:3081" +======= +defs["igFindWindowSettingsByWindow"][1]["location"] = "imgui_internal:3351" +>>>>>>> docking_inter defs["igFindWindowSettingsByWindow"][1]["namespace"] = "ImGui" defs["igFindWindowSettingsByWindow"][1]["ov_cimguiname"] = "igFindWindowSettingsByWindow" defs["igFindWindowSettingsByWindow"][1]["ret"] = "ImGuiWindowSettings*" @@ -15443,7 +19593,11 @@ defs["igFixupKeyChord"][1]["call_args"] = "(key_chord)" defs["igFixupKeyChord"][1]["cimguiname"] = "igFixupKeyChord" defs["igFixupKeyChord"][1]["defaults"] = {} defs["igFixupKeyChord"][1]["funcname"] = "FixupKeyChord" +<<<<<<< HEAD defs["igFixupKeyChord"][1]["location"] = "imgui_internal:3208" +======= +defs["igFixupKeyChord"][1]["location"] = "imgui_internal:3482" +>>>>>>> docking_inter defs["igFixupKeyChord"][1]["namespace"] = "ImGui" defs["igFixupKeyChord"][1]["ov_cimguiname"] = "igFixupKeyChord" defs["igFixupKeyChord"][1]["ret"] = "ImGuiKeyChord" @@ -15459,7 +19613,11 @@ defs["igFocusItem"][1]["call_args"] = "()" defs["igFocusItem"][1]["cimguiname"] = "igFocusItem" defs["igFocusItem"][1]["defaults"] = {} defs["igFocusItem"][1]["funcname"] = "FocusItem" +<<<<<<< HEAD defs["igFocusItem"][1]["location"] = "imgui_internal:3195" +======= +defs["igFocusItem"][1]["location"] = "imgui_internal:3469" +>>>>>>> docking_inter defs["igFocusItem"][1]["namespace"] = "ImGui" defs["igFocusItem"][1]["ov_cimguiname"] = "igFocusItem" defs["igFocusItem"][1]["ret"] = "void" @@ -15487,7 +19645,11 @@ defs["igFocusTopMostWindowUnderOne"][1]["call_args"] = "(under_this_window,ignor defs["igFocusTopMostWindowUnderOne"][1]["cimguiname"] = "igFocusTopMostWindowUnderOne" defs["igFocusTopMostWindowUnderOne"][1]["defaults"] = {} defs["igFocusTopMostWindowUnderOne"][1]["funcname"] = "FocusTopMostWindowUnderOne" +<<<<<<< HEAD defs["igFocusTopMostWindowUnderOne"][1]["location"] = "imgui_internal:3031" +======= +defs["igFocusTopMostWindowUnderOne"][1]["location"] = "imgui_internal:3296" +>>>>>>> docking_inter defs["igFocusTopMostWindowUnderOne"][1]["namespace"] = "ImGui" defs["igFocusTopMostWindowUnderOne"][1]["ov_cimguiname"] = "igFocusTopMostWindowUnderOne" defs["igFocusTopMostWindowUnderOne"][1]["ret"] = "void" @@ -15510,7 +19672,11 @@ defs["igFocusWindow"][1]["cimguiname"] = "igFocusWindow" defs["igFocusWindow"][1]["defaults"] = {} defs["igFocusWindow"][1]["defaults"]["flags"] = "0" defs["igFocusWindow"][1]["funcname"] = "FocusWindow" +<<<<<<< HEAD defs["igFocusWindow"][1]["location"] = "imgui_internal:3030" +======= +defs["igFocusWindow"][1]["location"] = "imgui_internal:3295" +>>>>>>> docking_inter defs["igFocusWindow"][1]["namespace"] = "ImGui" defs["igFocusWindow"][1]["ov_cimguiname"] = "igFocusWindow" defs["igFocusWindow"][1]["ret"] = "void" @@ -15529,7 +19695,11 @@ defs["igGcAwakeTransientWindowBuffers"][1]["call_args"] = "(window)" defs["igGcAwakeTransientWindowBuffers"][1]["cimguiname"] = "igGcAwakeTransientWindowBuffers" defs["igGcAwakeTransientWindowBuffers"][1]["defaults"] = {} defs["igGcAwakeTransientWindowBuffers"][1]["funcname"] = "GcAwakeTransientWindowBuffers" +<<<<<<< HEAD defs["igGcAwakeTransientWindowBuffers"][1]["location"] = "imgui_internal:3494" +======= +defs["igGcAwakeTransientWindowBuffers"][1]["location"] = "imgui_internal:3826" +>>>>>>> docking_inter defs["igGcAwakeTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcAwakeTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcAwakeTransientWindowBuffers" defs["igGcAwakeTransientWindowBuffers"][1]["ret"] = "void" @@ -15545,7 +19715,11 @@ defs["igGcCompactTransientMiscBuffers"][1]["call_args"] = "()" defs["igGcCompactTransientMiscBuffers"][1]["cimguiname"] = "igGcCompactTransientMiscBuffers" defs["igGcCompactTransientMiscBuffers"][1]["defaults"] = {} defs["igGcCompactTransientMiscBuffers"][1]["funcname"] = "GcCompactTransientMiscBuffers" +<<<<<<< HEAD defs["igGcCompactTransientMiscBuffers"][1]["location"] = "imgui_internal:3492" +======= +defs["igGcCompactTransientMiscBuffers"][1]["location"] = "imgui_internal:3824" +>>>>>>> docking_inter defs["igGcCompactTransientMiscBuffers"][1]["namespace"] = "ImGui" defs["igGcCompactTransientMiscBuffers"][1]["ov_cimguiname"] = "igGcCompactTransientMiscBuffers" defs["igGcCompactTransientMiscBuffers"][1]["ret"] = "void" @@ -15564,7 +19738,11 @@ defs["igGcCompactTransientWindowBuffers"][1]["call_args"] = "(window)" defs["igGcCompactTransientWindowBuffers"][1]["cimguiname"] = "igGcCompactTransientWindowBuffers" defs["igGcCompactTransientWindowBuffers"][1]["defaults"] = {} defs["igGcCompactTransientWindowBuffers"][1]["funcname"] = "GcCompactTransientWindowBuffers" +<<<<<<< HEAD defs["igGcCompactTransientWindowBuffers"][1]["location"] = "imgui_internal:3493" +======= +defs["igGcCompactTransientWindowBuffers"][1]["location"] = "imgui_internal:3825" +>>>>>>> docking_inter defs["igGcCompactTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcCompactTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcCompactTransientWindowBuffers" defs["igGcCompactTransientWindowBuffers"][1]["ret"] = "void" @@ -15580,7 +19758,11 @@ defs["igGetActiveID"][1]["call_args"] = "()" defs["igGetActiveID"][1]["cimguiname"] = "igGetActiveID" defs["igGetActiveID"][1]["defaults"] = {} defs["igGetActiveID"][1]["funcname"] = "GetActiveID" +<<<<<<< HEAD defs["igGetActiveID"][1]["location"] = "imgui_internal:3105" +======= +defs["igGetActiveID"][1]["location"] = "imgui_internal:3375" +>>>>>>> docking_inter defs["igGetActiveID"][1]["namespace"] = "ImGui" defs["igGetActiveID"][1]["ov_cimguiname"] = "igGetActiveID" defs["igGetActiveID"][1]["ret"] = "ImGuiID" @@ -15605,7 +19787,11 @@ defs["igGetAllocatorFunctions"][1]["call_args"] = "(p_alloc_func,p_free_func,p_u defs["igGetAllocatorFunctions"][1]["cimguiname"] = "igGetAllocatorFunctions" defs["igGetAllocatorFunctions"][1]["defaults"] = {} defs["igGetAllocatorFunctions"][1]["funcname"] = "GetAllocatorFunctions" +<<<<<<< HEAD defs["igGetAllocatorFunctions"][1]["location"] = "imgui:1007" +======= +defs["igGetAllocatorFunctions"][1]["location"] = "imgui:1039" +>>>>>>> docking_inter defs["igGetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igGetAllocatorFunctions"][1]["ov_cimguiname"] = "igGetAllocatorFunctions" defs["igGetAllocatorFunctions"][1]["ret"] = "void" @@ -15614,19 +19800,28 @@ defs["igGetAllocatorFunctions"][1]["stname"] = "" defs["igGetAllocatorFunctions"]["(ImGuiMemAllocFunc*,ImGuiMemFreeFunc*,void**)"] = defs["igGetAllocatorFunctions"][1] defs["igGetBackgroundDrawList"] = {} defs["igGetBackgroundDrawList"][1] = {} -defs["igGetBackgroundDrawList"][1]["args"] = "()" +defs["igGetBackgroundDrawList"][1]["args"] = "(ImGuiViewport* viewport)" defs["igGetBackgroundDrawList"][1]["argsT"] = {} -defs["igGetBackgroundDrawList"][1]["argsoriginal"] = "()" -defs["igGetBackgroundDrawList"][1]["call_args"] = "()" +defs["igGetBackgroundDrawList"][1]["argsT"][1] = {} +defs["igGetBackgroundDrawList"][1]["argsT"][1]["name"] = "viewport" +defs["igGetBackgroundDrawList"][1]["argsT"][1]["type"] = "ImGuiViewport*" +defs["igGetBackgroundDrawList"][1]["argsoriginal"] = "(ImGuiViewport* viewport=((void*)0))" +defs["igGetBackgroundDrawList"][1]["call_args"] = "(viewport)" defs["igGetBackgroundDrawList"][1]["cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][1]["defaults"] = {} +defs["igGetBackgroundDrawList"][1]["defaults"]["viewport"] = "NULL" defs["igGetBackgroundDrawList"][1]["funcname"] = "GetBackgroundDrawList" +<<<<<<< HEAD defs["igGetBackgroundDrawList"][1]["location"] = "imgui:907" +======= +defs["igGetBackgroundDrawList"][1]["location"] = "imgui:939" +>>>>>>> docking_inter defs["igGetBackgroundDrawList"][1]["namespace"] = "ImGui" -defs["igGetBackgroundDrawList"][1]["ov_cimguiname"] = "igGetBackgroundDrawList_Nil" +defs["igGetBackgroundDrawList"][1]["ov_cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][1]["ret"] = "ImDrawList*" -defs["igGetBackgroundDrawList"][1]["signature"] = "()" +defs["igGetBackgroundDrawList"][1]["signature"] = "(ImGuiViewport*)" defs["igGetBackgroundDrawList"][1]["stname"] = "" +<<<<<<< HEAD defs["igGetBackgroundDrawList"][2] = {} defs["igGetBackgroundDrawList"][2]["args"] = "(ImGuiViewport* viewport)" defs["igGetBackgroundDrawList"][2]["argsT"] = {} @@ -15646,6 +19841,9 @@ defs["igGetBackgroundDrawList"][2]["signature"] = "(ImGuiViewport*)" defs["igGetBackgroundDrawList"][2]["stname"] = "" defs["igGetBackgroundDrawList"]["()"] = defs["igGetBackgroundDrawList"][1] defs["igGetBackgroundDrawList"]["(ImGuiViewport*)"] = defs["igGetBackgroundDrawList"][2] +======= +defs["igGetBackgroundDrawList"]["(ImGuiViewport*)"] = defs["igGetBackgroundDrawList"][1] +>>>>>>> docking_inter defs["igGetClipboardText"] = {} defs["igGetClipboardText"][1] = {} defs["igGetClipboardText"][1]["args"] = "()" @@ -15655,7 +19853,11 @@ defs["igGetClipboardText"][1]["call_args"] = "()" defs["igGetClipboardText"][1]["cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["defaults"] = {} defs["igGetClipboardText"][1]["funcname"] = "GetClipboardText" +<<<<<<< HEAD defs["igGetClipboardText"][1]["location"] = "imgui:983" +======= +defs["igGetClipboardText"][1]["location"] = "imgui:1015" +>>>>>>> docking_inter defs["igGetClipboardText"][1]["namespace"] = "ImGui" defs["igGetClipboardText"][1]["ov_cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["ret"] = "const char*" @@ -15678,7 +19880,11 @@ defs["igGetColorU32"][1]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][1]["defaults"] = {} defs["igGetColorU32"][1]["defaults"]["alpha_mul"] = "1.0f" defs["igGetColorU32"][1]["funcname"] = "GetColorU32" +<<<<<<< HEAD defs["igGetColorU32"][1]["location"] = "imgui:456" +======= +defs["igGetColorU32"][1]["location"] = "imgui:466" +>>>>>>> docking_inter defs["igGetColorU32"][1]["namespace"] = "ImGui" defs["igGetColorU32"][1]["ov_cimguiname"] = "igGetColorU32_Col" defs["igGetColorU32"][1]["ret"] = "ImU32" @@ -15695,7 +19901,11 @@ defs["igGetColorU32"][2]["call_args"] = "(col)" defs["igGetColorU32"][2]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][2]["defaults"] = {} defs["igGetColorU32"][2]["funcname"] = "GetColorU32" +<<<<<<< HEAD defs["igGetColorU32"][2]["location"] = "imgui:457" +======= +defs["igGetColorU32"][2]["location"] = "imgui:467" +>>>>>>> docking_inter defs["igGetColorU32"][2]["namespace"] = "ImGui" defs["igGetColorU32"][2]["ov_cimguiname"] = "igGetColorU32_Vec4" defs["igGetColorU32"][2]["ret"] = "ImU32" @@ -15716,7 +19926,11 @@ defs["igGetColorU32"][3]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][3]["defaults"] = {} defs["igGetColorU32"][3]["defaults"]["alpha_mul"] = "1.0f" defs["igGetColorU32"][3]["funcname"] = "GetColorU32" +<<<<<<< HEAD defs["igGetColorU32"][3]["location"] = "imgui:458" +======= +defs["igGetColorU32"][3]["location"] = "imgui:468" +>>>>>>> docking_inter defs["igGetColorU32"][3]["namespace"] = "ImGui" defs["igGetColorU32"][3]["ov_cimguiname"] = "igGetColorU32_U32" defs["igGetColorU32"][3]["ret"] = "ImU32" @@ -15734,7 +19948,11 @@ defs["igGetColumnIndex"][1]["call_args"] = "()" defs["igGetColumnIndex"][1]["cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["defaults"] = {} defs["igGetColumnIndex"][1]["funcname"] = "GetColumnIndex" +<<<<<<< HEAD defs["igGetColumnIndex"][1]["location"] = "imgui:820" +======= +defs["igGetColumnIndex"][1]["location"] = "imgui:831" +>>>>>>> docking_inter defs["igGetColumnIndex"][1]["namespace"] = "ImGui" defs["igGetColumnIndex"][1]["ov_cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["ret"] = "int" @@ -15756,7 +19974,11 @@ defs["igGetColumnNormFromOffset"][1]["call_args"] = "(columns,offset)" defs["igGetColumnNormFromOffset"][1]["cimguiname"] = "igGetColumnNormFromOffset" defs["igGetColumnNormFromOffset"][1]["defaults"] = {} defs["igGetColumnNormFromOffset"][1]["funcname"] = "GetColumnNormFromOffset" +<<<<<<< HEAD defs["igGetColumnNormFromOffset"][1]["location"] = "imgui_internal:3318" +======= +defs["igGetColumnNormFromOffset"][1]["location"] = "imgui_internal:3647" +>>>>>>> docking_inter defs["igGetColumnNormFromOffset"][1]["namespace"] = "ImGui" defs["igGetColumnNormFromOffset"][1]["ov_cimguiname"] = "igGetColumnNormFromOffset" defs["igGetColumnNormFromOffset"][1]["ret"] = "float" @@ -15776,7 +19998,11 @@ defs["igGetColumnOffset"][1]["cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["defaults"] = {} defs["igGetColumnOffset"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnOffset"][1]["funcname"] = "GetColumnOffset" +<<<<<<< HEAD defs["igGetColumnOffset"][1]["location"] = "imgui:823" +======= +defs["igGetColumnOffset"][1]["location"] = "imgui:834" +>>>>>>> docking_inter defs["igGetColumnOffset"][1]["namespace"] = "ImGui" defs["igGetColumnOffset"][1]["ov_cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["ret"] = "float" @@ -15798,7 +20024,11 @@ defs["igGetColumnOffsetFromNorm"][1]["call_args"] = "(columns,offset_norm)" defs["igGetColumnOffsetFromNorm"][1]["cimguiname"] = "igGetColumnOffsetFromNorm" defs["igGetColumnOffsetFromNorm"][1]["defaults"] = {} defs["igGetColumnOffsetFromNorm"][1]["funcname"] = "GetColumnOffsetFromNorm" +<<<<<<< HEAD defs["igGetColumnOffsetFromNorm"][1]["location"] = "imgui_internal:3317" +======= +defs["igGetColumnOffsetFromNorm"][1]["location"] = "imgui_internal:3646" +>>>>>>> docking_inter defs["igGetColumnOffsetFromNorm"][1]["namespace"] = "ImGui" defs["igGetColumnOffsetFromNorm"][1]["ov_cimguiname"] = "igGetColumnOffsetFromNorm" defs["igGetColumnOffsetFromNorm"][1]["ret"] = "float" @@ -15818,7 +20048,11 @@ defs["igGetColumnWidth"][1]["cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["defaults"] = {} defs["igGetColumnWidth"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnWidth"][1]["funcname"] = "GetColumnWidth" +<<<<<<< HEAD defs["igGetColumnWidth"][1]["location"] = "imgui:821" +======= +defs["igGetColumnWidth"][1]["location"] = "imgui:832" +>>>>>>> docking_inter defs["igGetColumnWidth"][1]["namespace"] = "ImGui" defs["igGetColumnWidth"][1]["ov_cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["ret"] = "float" @@ -15834,7 +20068,11 @@ defs["igGetColumnsCount"][1]["call_args"] = "()" defs["igGetColumnsCount"][1]["cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["defaults"] = {} defs["igGetColumnsCount"][1]["funcname"] = "GetColumnsCount" +<<<<<<< HEAD defs["igGetColumnsCount"][1]["location"] = "imgui:825" +======= +defs["igGetColumnsCount"][1]["location"] = "imgui:836" +>>>>>>> docking_inter defs["igGetColumnsCount"][1]["namespace"] = "ImGui" defs["igGetColumnsCount"][1]["ov_cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["ret"] = "int" @@ -15856,7 +20094,11 @@ defs["igGetColumnsID"][1]["call_args"] = "(str_id,count)" defs["igGetColumnsID"][1]["cimguiname"] = "igGetColumnsID" defs["igGetColumnsID"][1]["defaults"] = {} defs["igGetColumnsID"][1]["funcname"] = "GetColumnsID" +<<<<<<< HEAD defs["igGetColumnsID"][1]["location"] = "imgui_internal:3315" +======= +defs["igGetColumnsID"][1]["location"] = "imgui_internal:3644" +>>>>>>> docking_inter defs["igGetColumnsID"][1]["namespace"] = "ImGui" defs["igGetColumnsID"][1]["ov_cimguiname"] = "igGetColumnsID" defs["igGetColumnsID"][1]["ret"] = "ImGuiID" @@ -15875,7 +20117,11 @@ defs["igGetContentRegionAvail"][1]["call_args"] = "()" defs["igGetContentRegionAvail"][1]["cimguiname"] = "igGetContentRegionAvail" defs["igGetContentRegionAvail"][1]["defaults"] = {} defs["igGetContentRegionAvail"][1]["funcname"] = "GetContentRegionAvail" +<<<<<<< HEAD defs["igGetContentRegionAvail"][1]["location"] = "imgui:410" +======= +defs["igGetContentRegionAvail"][1]["location"] = "imgui:420" +>>>>>>> docking_inter defs["igGetContentRegionAvail"][1]["namespace"] = "ImGui" defs["igGetContentRegionAvail"][1]["nonUDT"] = 1 defs["igGetContentRegionAvail"][1]["ov_cimguiname"] = "igGetContentRegionAvail" @@ -15895,7 +20141,11 @@ defs["igGetContentRegionMax"][1]["call_args"] = "()" defs["igGetContentRegionMax"][1]["cimguiname"] = "igGetContentRegionMax" defs["igGetContentRegionMax"][1]["defaults"] = {} defs["igGetContentRegionMax"][1]["funcname"] = "GetContentRegionMax" +<<<<<<< HEAD defs["igGetContentRegionMax"][1]["location"] = "imgui:411" +======= +defs["igGetContentRegionMax"][1]["location"] = "imgui:421" +>>>>>>> docking_inter defs["igGetContentRegionMax"][1]["namespace"] = "ImGui" defs["igGetContentRegionMax"][1]["nonUDT"] = 1 defs["igGetContentRegionMax"][1]["ov_cimguiname"] = "igGetContentRegionMax" @@ -15915,7 +20165,11 @@ defs["igGetContentRegionMaxAbs"][1]["call_args"] = "()" defs["igGetContentRegionMaxAbs"][1]["cimguiname"] = "igGetContentRegionMaxAbs" defs["igGetContentRegionMaxAbs"][1]["defaults"] = {} defs["igGetContentRegionMaxAbs"][1]["funcname"] = "GetContentRegionMaxAbs" +<<<<<<< HEAD defs["igGetContentRegionMaxAbs"][1]["location"] = "imgui_internal:3130" +======= +defs["igGetContentRegionMaxAbs"][1]["location"] = "imgui_internal:3400" +>>>>>>> docking_inter defs["igGetContentRegionMaxAbs"][1]["namespace"] = "ImGui" defs["igGetContentRegionMaxAbs"][1]["nonUDT"] = 1 defs["igGetContentRegionMaxAbs"][1]["ov_cimguiname"] = "igGetContentRegionMaxAbs" @@ -15932,7 +20186,11 @@ defs["igGetCurrentContext"][1]["call_args"] = "()" defs["igGetCurrentContext"][1]["cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["defaults"] = {} defs["igGetCurrentContext"][1]["funcname"] = "GetCurrentContext" +<<<<<<< HEAD defs["igGetCurrentContext"][1]["location"] = "imgui:310" +======= +defs["igGetCurrentContext"][1]["location"] = "imgui:317" +>>>>>>> docking_inter defs["igGetCurrentContext"][1]["namespace"] = "ImGui" defs["igGetCurrentContext"][1]["ov_cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["ret"] = "ImGuiContext*" @@ -15948,7 +20206,11 @@ defs["igGetCurrentFocusScope"][1]["call_args"] = "()" defs["igGetCurrentFocusScope"][1]["cimguiname"] = "igGetCurrentFocusScope" defs["igGetCurrentFocusScope"][1]["defaults"] = {} defs["igGetCurrentFocusScope"][1]["funcname"] = "GetCurrentFocusScope" +<<<<<<< HEAD defs["igGetCurrentFocusScope"][1]["location"] = "imgui_internal:3293" +======= +defs["igGetCurrentFocusScope"][1]["location"] = "imgui_internal:3622" +>>>>>>> docking_inter defs["igGetCurrentFocusScope"][1]["namespace"] = "ImGui" defs["igGetCurrentFocusScope"][1]["ov_cimguiname"] = "igGetCurrentFocusScope" defs["igGetCurrentFocusScope"][1]["ret"] = "ImGuiID" @@ -15964,7 +20226,11 @@ defs["igGetCurrentTabBar"][1]["call_args"] = "()" defs["igGetCurrentTabBar"][1]["cimguiname"] = "igGetCurrentTabBar" defs["igGetCurrentTabBar"][1]["defaults"] = {} defs["igGetCurrentTabBar"][1]["funcname"] = "GetCurrentTabBar" +<<<<<<< HEAD defs["igGetCurrentTabBar"][1]["location"] = "imgui_internal:3378" +======= +defs["igGetCurrentTabBar"][1]["location"] = "imgui_internal:3706" +>>>>>>> docking_inter defs["igGetCurrentTabBar"][1]["namespace"] = "ImGui" defs["igGetCurrentTabBar"][1]["ov_cimguiname"] = "igGetCurrentTabBar" defs["igGetCurrentTabBar"][1]["ret"] = "ImGuiTabBar*" @@ -15980,7 +20246,11 @@ defs["igGetCurrentTable"][1]["call_args"] = "()" defs["igGetCurrentTable"][1]["cimguiname"] = "igGetCurrentTable" defs["igGetCurrentTable"][1]["defaults"] = {} defs["igGetCurrentTable"][1]["funcname"] = "GetCurrentTable" +<<<<<<< HEAD defs["igGetCurrentTable"][1]["location"] = "imgui_internal:3333" +======= +defs["igGetCurrentTable"][1]["location"] = "imgui_internal:3661" +>>>>>>> docking_inter defs["igGetCurrentTable"][1]["namespace"] = "ImGui" defs["igGetCurrentTable"][1]["ov_cimguiname"] = "igGetCurrentTable" defs["igGetCurrentTable"][1]["ret"] = "ImGuiTable*" @@ -15996,7 +20266,11 @@ defs["igGetCurrentWindow"][1]["call_args"] = "()" defs["igGetCurrentWindow"][1]["cimguiname"] = "igGetCurrentWindow" defs["igGetCurrentWindow"][1]["defaults"] = {} defs["igGetCurrentWindow"][1]["funcname"] = "GetCurrentWindow" +<<<<<<< HEAD defs["igGetCurrentWindow"][1]["location"] = "imgui_internal:3009" +======= +defs["igGetCurrentWindow"][1]["location"] = "imgui_internal:3274" +>>>>>>> docking_inter defs["igGetCurrentWindow"][1]["namespace"] = "ImGui" defs["igGetCurrentWindow"][1]["ov_cimguiname"] = "igGetCurrentWindow" defs["igGetCurrentWindow"][1]["ret"] = "ImGuiWindow*" @@ -16012,7 +20286,11 @@ defs["igGetCurrentWindowRead"][1]["call_args"] = "()" defs["igGetCurrentWindowRead"][1]["cimguiname"] = "igGetCurrentWindowRead" defs["igGetCurrentWindowRead"][1]["defaults"] = {} defs["igGetCurrentWindowRead"][1]["funcname"] = "GetCurrentWindowRead" +<<<<<<< HEAD defs["igGetCurrentWindowRead"][1]["location"] = "imgui_internal:3008" +======= +defs["igGetCurrentWindowRead"][1]["location"] = "imgui_internal:3273" +>>>>>>> docking_inter defs["igGetCurrentWindowRead"][1]["namespace"] = "ImGui" defs["igGetCurrentWindowRead"][1]["ov_cimguiname"] = "igGetCurrentWindowRead" defs["igGetCurrentWindowRead"][1]["ret"] = "ImGuiWindow*" @@ -16031,7 +20309,11 @@ defs["igGetCursorPos"][1]["call_args"] = "()" defs["igGetCursorPos"][1]["cimguiname"] = "igGetCursorPos" defs["igGetCursorPos"][1]["defaults"] = {} defs["igGetCursorPos"][1]["funcname"] = "GetCursorPos" +<<<<<<< HEAD defs["igGetCursorPos"][1]["location"] = "imgui:471" +======= +defs["igGetCursorPos"][1]["location"] = "imgui:481" +>>>>>>> docking_inter defs["igGetCursorPos"][1]["namespace"] = "ImGui" defs["igGetCursorPos"][1]["nonUDT"] = 1 defs["igGetCursorPos"][1]["ov_cimguiname"] = "igGetCursorPos" @@ -16048,7 +20330,11 @@ defs["igGetCursorPosX"][1]["call_args"] = "()" defs["igGetCursorPosX"][1]["cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["defaults"] = {} defs["igGetCursorPosX"][1]["funcname"] = "GetCursorPosX" +<<<<<<< HEAD defs["igGetCursorPosX"][1]["location"] = "imgui:472" +======= +defs["igGetCursorPosX"][1]["location"] = "imgui:482" +>>>>>>> docking_inter defs["igGetCursorPosX"][1]["namespace"] = "ImGui" defs["igGetCursorPosX"][1]["ov_cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["ret"] = "float" @@ -16064,7 +20350,11 @@ defs["igGetCursorPosY"][1]["call_args"] = "()" defs["igGetCursorPosY"][1]["cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["defaults"] = {} defs["igGetCursorPosY"][1]["funcname"] = "GetCursorPosY" +<<<<<<< HEAD defs["igGetCursorPosY"][1]["location"] = "imgui:473" +======= +defs["igGetCursorPosY"][1]["location"] = "imgui:483" +>>>>>>> docking_inter defs["igGetCursorPosY"][1]["namespace"] = "ImGui" defs["igGetCursorPosY"][1]["ov_cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["ret"] = "float" @@ -16083,7 +20373,11 @@ defs["igGetCursorScreenPos"][1]["call_args"] = "()" defs["igGetCursorScreenPos"][1]["cimguiname"] = "igGetCursorScreenPos" defs["igGetCursorScreenPos"][1]["defaults"] = {} defs["igGetCursorScreenPos"][1]["funcname"] = "GetCursorScreenPos" +<<<<<<< HEAD defs["igGetCursorScreenPos"][1]["location"] = "imgui:469" +======= +defs["igGetCursorScreenPos"][1]["location"] = "imgui:479" +>>>>>>> docking_inter defs["igGetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igGetCursorScreenPos"][1]["nonUDT"] = 1 defs["igGetCursorScreenPos"][1]["ov_cimguiname"] = "igGetCursorScreenPos" @@ -16103,7 +20397,11 @@ defs["igGetCursorStartPos"][1]["call_args"] = "()" defs["igGetCursorStartPos"][1]["cimguiname"] = "igGetCursorStartPos" defs["igGetCursorStartPos"][1]["defaults"] = {} defs["igGetCursorStartPos"][1]["funcname"] = "GetCursorStartPos" +<<<<<<< HEAD defs["igGetCursorStartPos"][1]["location"] = "imgui:477" +======= +defs["igGetCursorStartPos"][1]["location"] = "imgui:487" +>>>>>>> docking_inter defs["igGetCursorStartPos"][1]["namespace"] = "ImGui" defs["igGetCursorStartPos"][1]["nonUDT"] = 1 defs["igGetCursorStartPos"][1]["ov_cimguiname"] = "igGetCursorStartPos" @@ -16120,7 +20418,11 @@ defs["igGetDefaultFont"][1]["call_args"] = "()" defs["igGetDefaultFont"][1]["cimguiname"] = "igGetDefaultFont" defs["igGetDefaultFont"][1]["defaults"] = {} defs["igGetDefaultFont"][1]["funcname"] = "GetDefaultFont" +<<<<<<< HEAD defs["igGetDefaultFont"][1]["location"] = "imgui_internal:3044" +======= +defs["igGetDefaultFont"][1]["location"] = "imgui_internal:3309" +>>>>>>> docking_inter defs["igGetDefaultFont"][1]["namespace"] = "ImGui" defs["igGetDefaultFont"][1]["ov_cimguiname"] = "igGetDefaultFont" defs["igGetDefaultFont"][1]["ret"] = "ImFont*" @@ -16136,7 +20438,11 @@ defs["igGetDragDropPayload"][1]["call_args"] = "()" defs["igGetDragDropPayload"][1]["cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["defaults"] = {} defs["igGetDragDropPayload"][1]["funcname"] = "GetDragDropPayload" +<<<<<<< HEAD defs["igGetDragDropPayload"][1]["location"] = "imgui:857" +======= +defs["igGetDragDropPayload"][1]["location"] = "imgui:888" +>>>>>>> docking_inter defs["igGetDragDropPayload"][1]["namespace"] = "ImGui" defs["igGetDragDropPayload"][1]["ov_cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -16152,7 +20458,11 @@ defs["igGetDrawData"][1]["call_args"] = "()" defs["igGetDrawData"][1]["cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["defaults"] = {} defs["igGetDrawData"][1]["funcname"] = "GetDrawData" +<<<<<<< HEAD defs["igGetDrawData"][1]["location"] = "imgui:319" +======= +defs["igGetDrawData"][1]["location"] = "imgui:326" +>>>>>>> docking_inter defs["igGetDrawData"][1]["namespace"] = "ImGui" defs["igGetDrawData"][1]["ov_cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["ret"] = "ImDrawData*" @@ -16168,7 +20478,11 @@ defs["igGetDrawListSharedData"][1]["call_args"] = "()" defs["igGetDrawListSharedData"][1]["cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["defaults"] = {} defs["igGetDrawListSharedData"][1]["funcname"] = "GetDrawListSharedData" +<<<<<<< HEAD defs["igGetDrawListSharedData"][1]["location"] = "imgui:915" +======= +defs["igGetDrawListSharedData"][1]["location"] = "imgui:947" +>>>>>>> docking_inter defs["igGetDrawListSharedData"][1]["namespace"] = "ImGui" defs["igGetDrawListSharedData"][1]["ov_cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["ret"] = "ImDrawListSharedData*" @@ -16184,7 +20498,11 @@ defs["igGetFocusID"][1]["call_args"] = "()" defs["igGetFocusID"][1]["cimguiname"] = "igGetFocusID" defs["igGetFocusID"][1]["defaults"] = {} defs["igGetFocusID"][1]["funcname"] = "GetFocusID" +<<<<<<< HEAD defs["igGetFocusID"][1]["location"] = "imgui_internal:3106" +======= +defs["igGetFocusID"][1]["location"] = "imgui_internal:3376" +>>>>>>> docking_inter defs["igGetFocusID"][1]["namespace"] = "ImGui" defs["igGetFocusID"][1]["ov_cimguiname"] = "igGetFocusID" defs["igGetFocusID"][1]["ret"] = "ImGuiID" @@ -16200,7 +20518,11 @@ defs["igGetFont"][1]["call_args"] = "()" defs["igGetFont"][1]["cimguiname"] = "igGetFont" defs["igGetFont"][1]["defaults"] = {} defs["igGetFont"][1]["funcname"] = "GetFont" +<<<<<<< HEAD defs["igGetFont"][1]["location"] = "imgui:453" +======= +defs["igGetFont"][1]["location"] = "imgui:463" +>>>>>>> docking_inter defs["igGetFont"][1]["namespace"] = "ImGui" defs["igGetFont"][1]["ov_cimguiname"] = "igGetFont" defs["igGetFont"][1]["ret"] = "ImFont*" @@ -16216,7 +20538,11 @@ defs["igGetFontSize"][1]["call_args"] = "()" defs["igGetFontSize"][1]["cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["defaults"] = {} defs["igGetFontSize"][1]["funcname"] = "GetFontSize" +<<<<<<< HEAD defs["igGetFontSize"][1]["location"] = "imgui:454" +======= +defs["igGetFontSize"][1]["location"] = "imgui:464" +>>>>>>> docking_inter defs["igGetFontSize"][1]["namespace"] = "ImGui" defs["igGetFontSize"][1]["ov_cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["ret"] = "float" @@ -16235,7 +20561,11 @@ defs["igGetFontTexUvWhitePixel"][1]["call_args"] = "()" defs["igGetFontTexUvWhitePixel"][1]["cimguiname"] = "igGetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][1]["defaults"] = {} defs["igGetFontTexUvWhitePixel"][1]["funcname"] = "GetFontTexUvWhitePixel" +<<<<<<< HEAD defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui:455" +======= +defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui:465" +>>>>>>> docking_inter defs["igGetFontTexUvWhitePixel"][1]["namespace"] = "ImGui" defs["igGetFontTexUvWhitePixel"][1]["nonUDT"] = 1 defs["igGetFontTexUvWhitePixel"][1]["ov_cimguiname"] = "igGetFontTexUvWhitePixel" @@ -16245,18 +20575,26 @@ defs["igGetFontTexUvWhitePixel"][1]["stname"] = "" defs["igGetFontTexUvWhitePixel"]["()"] = defs["igGetFontTexUvWhitePixel"][1] defs["igGetForegroundDrawList"] = {} defs["igGetForegroundDrawList"][1] = {} -defs["igGetForegroundDrawList"][1]["args"] = "()" +defs["igGetForegroundDrawList"][1]["args"] = "(ImGuiViewport* viewport)" defs["igGetForegroundDrawList"][1]["argsT"] = {} -defs["igGetForegroundDrawList"][1]["argsoriginal"] = "()" -defs["igGetForegroundDrawList"][1]["call_args"] = "()" +defs["igGetForegroundDrawList"][1]["argsT"][1] = {} +defs["igGetForegroundDrawList"][1]["argsT"][1]["name"] = "viewport" +defs["igGetForegroundDrawList"][1]["argsT"][1]["type"] = "ImGuiViewport*" +defs["igGetForegroundDrawList"][1]["argsoriginal"] = "(ImGuiViewport* viewport=((void*)0))" +defs["igGetForegroundDrawList"][1]["call_args"] = "(viewport)" defs["igGetForegroundDrawList"][1]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][1]["defaults"] = {} +defs["igGetForegroundDrawList"][1]["defaults"]["viewport"] = "NULL" defs["igGetForegroundDrawList"][1]["funcname"] = "GetForegroundDrawList" +<<<<<<< HEAD defs["igGetForegroundDrawList"][1]["location"] = "imgui:908" +======= +defs["igGetForegroundDrawList"][1]["location"] = "imgui:940" +>>>>>>> docking_inter defs["igGetForegroundDrawList"][1]["namespace"] = "ImGui" -defs["igGetForegroundDrawList"][1]["ov_cimguiname"] = "igGetForegroundDrawList_Nil" +defs["igGetForegroundDrawList"][1]["ov_cimguiname"] = "igGetForegroundDrawList_ViewportPtr" defs["igGetForegroundDrawList"][1]["ret"] = "ImDrawList*" -defs["igGetForegroundDrawList"][1]["signature"] = "()" +defs["igGetForegroundDrawList"][1]["signature"] = "(ImGuiViewport*)" defs["igGetForegroundDrawList"][1]["stname"] = "" defs["igGetForegroundDrawList"][2] = {} defs["igGetForegroundDrawList"][2]["args"] = "(ImGuiWindow* window)" @@ -16269,12 +20607,17 @@ defs["igGetForegroundDrawList"][2]["call_args"] = "(window)" defs["igGetForegroundDrawList"][2]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][2]["defaults"] = {} defs["igGetForegroundDrawList"][2]["funcname"] = "GetForegroundDrawList" +<<<<<<< HEAD defs["igGetForegroundDrawList"][2]["location"] = "imgui_internal:3045" +======= +defs["igGetForegroundDrawList"][2]["location"] = "imgui_internal:3310" +>>>>>>> docking_inter defs["igGetForegroundDrawList"][2]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][2]["ov_cimguiname"] = "igGetForegroundDrawList_WindowPtr" defs["igGetForegroundDrawList"][2]["ret"] = "ImDrawList*" defs["igGetForegroundDrawList"][2]["signature"] = "(ImGuiWindow*)" defs["igGetForegroundDrawList"][2]["stname"] = "" +<<<<<<< HEAD defs["igGetForegroundDrawList"][3] = {} defs["igGetForegroundDrawList"][3]["args"] = "(ImGuiViewport* viewport)" defs["igGetForegroundDrawList"][3]["argsT"] = {} @@ -16294,6 +20637,9 @@ defs["igGetForegroundDrawList"][3]["signature"] = "(ImGuiViewport*)" defs["igGetForegroundDrawList"][3]["stname"] = "" defs["igGetForegroundDrawList"]["()"] = defs["igGetForegroundDrawList"][1] defs["igGetForegroundDrawList"]["(ImGuiViewport*)"] = defs["igGetForegroundDrawList"][3] +======= +defs["igGetForegroundDrawList"]["(ImGuiViewport*)"] = defs["igGetForegroundDrawList"][1] +>>>>>>> docking_inter defs["igGetForegroundDrawList"]["(ImGuiWindow*)"] = defs["igGetForegroundDrawList"][2] defs["igGetFrameCount"] = {} defs["igGetFrameCount"][1] = {} @@ -16304,7 +20650,11 @@ defs["igGetFrameCount"][1]["call_args"] = "()" defs["igGetFrameCount"][1]["cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["defaults"] = {} defs["igGetFrameCount"][1]["funcname"] = "GetFrameCount" +<<<<<<< HEAD defs["igGetFrameCount"][1]["location"] = "imgui:914" +======= +defs["igGetFrameCount"][1]["location"] = "imgui:946" +>>>>>>> docking_inter defs["igGetFrameCount"][1]["namespace"] = "ImGui" defs["igGetFrameCount"][1]["ov_cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["ret"] = "int" @@ -16320,7 +20670,11 @@ defs["igGetFrameHeight"][1]["call_args"] = "()" defs["igGetFrameHeight"][1]["cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["defaults"] = {} defs["igGetFrameHeight"][1]["funcname"] = "GetFrameHeight" +<<<<<<< HEAD defs["igGetFrameHeight"][1]["location"] = "imgui:492" +======= +defs["igGetFrameHeight"][1]["location"] = "imgui:502" +>>>>>>> docking_inter defs["igGetFrameHeight"][1]["namespace"] = "ImGui" defs["igGetFrameHeight"][1]["ov_cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["ret"] = "float" @@ -16336,7 +20690,11 @@ defs["igGetFrameHeightWithSpacing"][1]["call_args"] = "()" defs["igGetFrameHeightWithSpacing"][1]["cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["defaults"] = {} defs["igGetFrameHeightWithSpacing"][1]["funcname"] = "GetFrameHeightWithSpacing" +<<<<<<< HEAD defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui:493" +======= +defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui:503" +>>>>>>> docking_inter defs["igGetFrameHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetFrameHeightWithSpacing"][1]["ov_cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["ret"] = "float" @@ -16352,7 +20710,11 @@ defs["igGetHoveredID"][1]["call_args"] = "()" defs["igGetHoveredID"][1]["cimguiname"] = "igGetHoveredID" defs["igGetHoveredID"][1]["defaults"] = {} defs["igGetHoveredID"][1]["funcname"] = "GetHoveredID" +<<<<<<< HEAD defs["igGetHoveredID"][1]["location"] = "imgui_internal:3110" +======= +defs["igGetHoveredID"][1]["location"] = "imgui_internal:3380" +>>>>>>> docking_inter defs["igGetHoveredID"][1]["namespace"] = "ImGui" defs["igGetHoveredID"][1]["ov_cimguiname"] = "igGetHoveredID" defs["igGetHoveredID"][1]["ret"] = "ImGuiID" @@ -16371,7 +20733,11 @@ defs["igGetID"][1]["call_args"] = "(str_id)" defs["igGetID"][1]["cimguiname"] = "igGetID" defs["igGetID"][1]["defaults"] = {} defs["igGetID"][1]["funcname"] = "GetID" +<<<<<<< HEAD defs["igGetID"][1]["location"] = "imgui:511" +======= +defs["igGetID"][1]["location"] = "imgui:521" +>>>>>>> docking_inter defs["igGetID"][1]["namespace"] = "ImGui" defs["igGetID"][1]["ov_cimguiname"] = "igGetID_Str" defs["igGetID"][1]["ret"] = "ImGuiID" @@ -16391,7 +20757,11 @@ defs["igGetID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igGetID"][2]["cimguiname"] = "igGetID" defs["igGetID"][2]["defaults"] = {} defs["igGetID"][2]["funcname"] = "GetID" +<<<<<<< HEAD defs["igGetID"][2]["location"] = "imgui:512" +======= +defs["igGetID"][2]["location"] = "imgui:522" +>>>>>>> docking_inter defs["igGetID"][2]["namespace"] = "ImGui" defs["igGetID"][2]["ov_cimguiname"] = "igGetID_StrStr" defs["igGetID"][2]["ret"] = "ImGuiID" @@ -16408,7 +20778,11 @@ defs["igGetID"][3]["call_args"] = "(ptr_id)" defs["igGetID"][3]["cimguiname"] = "igGetID" defs["igGetID"][3]["defaults"] = {} defs["igGetID"][3]["funcname"] = "GetID" +<<<<<<< HEAD defs["igGetID"][3]["location"] = "imgui:513" +======= +defs["igGetID"][3]["location"] = "imgui:523" +>>>>>>> docking_inter defs["igGetID"][3]["namespace"] = "ImGui" defs["igGetID"][3]["ov_cimguiname"] = "igGetID_Ptr" defs["igGetID"][3]["ret"] = "ImGuiID" @@ -16435,7 +20809,11 @@ defs["igGetIDWithSeed"][1]["call_args"] = "(str_id_begin,str_id_end,seed)" defs["igGetIDWithSeed"][1]["cimguiname"] = "igGetIDWithSeed" defs["igGetIDWithSeed"][1]["defaults"] = {} defs["igGetIDWithSeed"][1]["funcname"] = "GetIDWithSeed" +<<<<<<< HEAD defs["igGetIDWithSeed"][1]["location"] = "imgui_internal:3115" +======= +defs["igGetIDWithSeed"][1]["location"] = "imgui_internal:3385" +>>>>>>> docking_inter defs["igGetIDWithSeed"][1]["namespace"] = "ImGui" defs["igGetIDWithSeed"][1]["ov_cimguiname"] = "igGetIDWithSeed_Str" defs["igGetIDWithSeed"][1]["ret"] = "ImGuiID" @@ -16455,7 +20833,11 @@ defs["igGetIDWithSeed"][2]["call_args"] = "(n,seed)" defs["igGetIDWithSeed"][2]["cimguiname"] = "igGetIDWithSeed" defs["igGetIDWithSeed"][2]["defaults"] = {} defs["igGetIDWithSeed"][2]["funcname"] = "GetIDWithSeed" +<<<<<<< HEAD defs["igGetIDWithSeed"][2]["location"] = "imgui_internal:3116" +======= +defs["igGetIDWithSeed"][2]["location"] = "imgui_internal:3386" +>>>>>>> docking_inter defs["igGetIDWithSeed"][2]["namespace"] = "ImGui" defs["igGetIDWithSeed"][2]["ov_cimguiname"] = "igGetIDWithSeed_Int" defs["igGetIDWithSeed"][2]["ret"] = "ImGuiID" @@ -16472,7 +20854,11 @@ defs["igGetIO"][1]["call_args"] = "()" defs["igGetIO"][1]["cimguiname"] = "igGetIO" defs["igGetIO"][1]["defaults"] = {} defs["igGetIO"][1]["funcname"] = "GetIO" +<<<<<<< HEAD defs["igGetIO"][1]["location"] = "imgui:314" +======= +defs["igGetIO"][1]["location"] = "imgui:321" +>>>>>>> docking_inter defs["igGetIO"][1]["namespace"] = "ImGui" defs["igGetIO"][1]["ov_cimguiname"] = "igGetIO" defs["igGetIO"][1]["ret"] = "ImGuiIO*" @@ -16492,7 +20878,11 @@ defs["igGetInputTextState"][1]["call_args"] = "(id)" defs["igGetInputTextState"][1]["cimguiname"] = "igGetInputTextState" defs["igGetInputTextState"][1]["defaults"] = {} defs["igGetInputTextState"][1]["funcname"] = "GetInputTextState" +<<<<<<< HEAD defs["igGetInputTextState"][1]["location"] = "imgui_internal:3475" +======= +defs["igGetInputTextState"][1]["location"] = "imgui_internal:3807" +>>>>>>> docking_inter defs["igGetInputTextState"][1]["namespace"] = "ImGui" defs["igGetInputTextState"][1]["ov_cimguiname"] = "igGetInputTextState" defs["igGetInputTextState"][1]["ret"] = "ImGuiInputTextState*" @@ -16508,7 +20898,11 @@ defs["igGetItemFlags"][1]["call_args"] = "()" defs["igGetItemFlags"][1]["cimguiname"] = "igGetItemFlags" defs["igGetItemFlags"][1]["defaults"] = {} defs["igGetItemFlags"][1]["funcname"] = "GetItemFlags" +<<<<<<< HEAD defs["igGetItemFlags"][1]["location"] = "imgui_internal:3104" +======= +defs["igGetItemFlags"][1]["location"] = "imgui_internal:3374" +>>>>>>> docking_inter defs["igGetItemFlags"][1]["namespace"] = "ImGui" defs["igGetItemFlags"][1]["ov_cimguiname"] = "igGetItemFlags" defs["igGetItemFlags"][1]["ret"] = "ImGuiItemFlags" @@ -16524,7 +20918,11 @@ defs["igGetItemID"][1]["call_args"] = "()" defs["igGetItemID"][1]["cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["defaults"] = {} defs["igGetItemID"][1]["funcname"] = "GetItemID" +<<<<<<< HEAD defs["igGetItemID"][1]["location"] = "imgui:895" +======= +defs["igGetItemID"][1]["location"] = "imgui:927" +>>>>>>> docking_inter defs["igGetItemID"][1]["namespace"] = "ImGui" defs["igGetItemID"][1]["ov_cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["ret"] = "ImGuiID" @@ -16543,7 +20941,11 @@ defs["igGetItemRectMax"][1]["call_args"] = "()" defs["igGetItemRectMax"][1]["cimguiname"] = "igGetItemRectMax" defs["igGetItemRectMax"][1]["defaults"] = {} defs["igGetItemRectMax"][1]["funcname"] = "GetItemRectMax" +<<<<<<< HEAD defs["igGetItemRectMax"][1]["location"] = "imgui:897" +======= +defs["igGetItemRectMax"][1]["location"] = "imgui:929" +>>>>>>> docking_inter defs["igGetItemRectMax"][1]["namespace"] = "ImGui" defs["igGetItemRectMax"][1]["nonUDT"] = 1 defs["igGetItemRectMax"][1]["ov_cimguiname"] = "igGetItemRectMax" @@ -16563,7 +20965,11 @@ defs["igGetItemRectMin"][1]["call_args"] = "()" defs["igGetItemRectMin"][1]["cimguiname"] = "igGetItemRectMin" defs["igGetItemRectMin"][1]["defaults"] = {} defs["igGetItemRectMin"][1]["funcname"] = "GetItemRectMin" +<<<<<<< HEAD defs["igGetItemRectMin"][1]["location"] = "imgui:896" +======= +defs["igGetItemRectMin"][1]["location"] = "imgui:928" +>>>>>>> docking_inter defs["igGetItemRectMin"][1]["namespace"] = "ImGui" defs["igGetItemRectMin"][1]["nonUDT"] = 1 defs["igGetItemRectMin"][1]["ov_cimguiname"] = "igGetItemRectMin" @@ -16583,7 +20989,11 @@ defs["igGetItemRectSize"][1]["call_args"] = "()" defs["igGetItemRectSize"][1]["cimguiname"] = "igGetItemRectSize" defs["igGetItemRectSize"][1]["defaults"] = {} defs["igGetItemRectSize"][1]["funcname"] = "GetItemRectSize" +<<<<<<< HEAD defs["igGetItemRectSize"][1]["location"] = "imgui:898" +======= +defs["igGetItemRectSize"][1]["location"] = "imgui:930" +>>>>>>> docking_inter defs["igGetItemRectSize"][1]["namespace"] = "ImGui" defs["igGetItemRectSize"][1]["nonUDT"] = 1 defs["igGetItemRectSize"][1]["ov_cimguiname"] = "igGetItemRectSize" @@ -16600,7 +21010,11 @@ defs["igGetItemStatusFlags"][1]["call_args"] = "()" defs["igGetItemStatusFlags"][1]["cimguiname"] = "igGetItemStatusFlags" defs["igGetItemStatusFlags"][1]["defaults"] = {} defs["igGetItemStatusFlags"][1]["funcname"] = "GetItemStatusFlags" +<<<<<<< HEAD defs["igGetItemStatusFlags"][1]["location"] = "imgui_internal:3103" +======= +defs["igGetItemStatusFlags"][1]["location"] = "imgui_internal:3373" +>>>>>>> docking_inter defs["igGetItemStatusFlags"][1]["namespace"] = "ImGui" defs["igGetItemStatusFlags"][1]["ov_cimguiname"] = "igGetItemStatusFlags" defs["igGetItemStatusFlags"][1]["ret"] = "ImGuiItemStatusFlags" @@ -16619,7 +21033,11 @@ defs["igGetKeyChordName"][1]["call_args"] = "(key_chord)" defs["igGetKeyChordName"][1]["cimguiname"] = "igGetKeyChordName" defs["igGetKeyChordName"][1]["defaults"] = {} defs["igGetKeyChordName"][1]["funcname"] = "GetKeyChordName" +<<<<<<< HEAD defs["igGetKeyChordName"][1]["location"] = "imgui_internal:3220" +======= +defs["igGetKeyChordName"][1]["location"] = "imgui_internal:3494" +>>>>>>> docking_inter defs["igGetKeyChordName"][1]["namespace"] = "ImGui" defs["igGetKeyChordName"][1]["ov_cimguiname"] = "igGetKeyChordName" defs["igGetKeyChordName"][1]["ret"] = "const char*" @@ -16641,7 +21059,11 @@ defs["igGetKeyData"][1]["call_args"] = "(ctx,key)" defs["igGetKeyData"][1]["cimguiname"] = "igGetKeyData" defs["igGetKeyData"][1]["defaults"] = {} defs["igGetKeyData"][1]["funcname"] = "GetKeyData" +<<<<<<< HEAD defs["igGetKeyData"][1]["location"] = "imgui_internal:3218" +======= +defs["igGetKeyData"][1]["location"] = "imgui_internal:3492" +>>>>>>> docking_inter defs["igGetKeyData"][1]["namespace"] = "ImGui" defs["igGetKeyData"][1]["ov_cimguiname"] = "igGetKeyData_ContextPtr" defs["igGetKeyData"][1]["ret"] = "ImGuiKeyData*" @@ -16658,7 +21080,11 @@ defs["igGetKeyData"][2]["call_args"] = "(key)" defs["igGetKeyData"][2]["cimguiname"] = "igGetKeyData" defs["igGetKeyData"][2]["defaults"] = {} defs["igGetKeyData"][2]["funcname"] = "GetKeyData" +<<<<<<< HEAD defs["igGetKeyData"][2]["location"] = "imgui_internal:3219" +======= +defs["igGetKeyData"][2]["location"] = "imgui_internal:3493" +>>>>>>> docking_inter defs["igGetKeyData"][2]["namespace"] = "ImGui" defs["igGetKeyData"][2]["ov_cimguiname"] = "igGetKeyData_Key" defs["igGetKeyData"][2]["ret"] = "ImGuiKeyData*" @@ -16690,7 +21116,11 @@ defs["igGetKeyMagnitude2d"][1]["call_args"] = "(key_left,key_right,key_up,key_do defs["igGetKeyMagnitude2d"][1]["cimguiname"] = "igGetKeyMagnitude2d" defs["igGetKeyMagnitude2d"][1]["defaults"] = {} defs["igGetKeyMagnitude2d"][1]["funcname"] = "GetKeyMagnitude2d" +<<<<<<< HEAD defs["igGetKeyMagnitude2d"][1]["location"] = "imgui_internal:3223" +======= +defs["igGetKeyMagnitude2d"][1]["location"] = "imgui_internal:3497" +>>>>>>> docking_inter defs["igGetKeyMagnitude2d"][1]["namespace"] = "ImGui" defs["igGetKeyMagnitude2d"][1]["nonUDT"] = 1 defs["igGetKeyMagnitude2d"][1]["ov_cimguiname"] = "igGetKeyMagnitude2d" @@ -16710,7 +21140,11 @@ defs["igGetKeyName"][1]["call_args"] = "(key)" defs["igGetKeyName"][1]["cimguiname"] = "igGetKeyName" defs["igGetKeyName"][1]["defaults"] = {} defs["igGetKeyName"][1]["funcname"] = "GetKeyName" +<<<<<<< HEAD defs["igGetKeyName"][1]["location"] = "imgui:939" +======= +defs["igGetKeyName"][1]["location"] = "imgui:971" +>>>>>>> docking_inter defs["igGetKeyName"][1]["namespace"] = "ImGui" defs["igGetKeyName"][1]["ov_cimguiname"] = "igGetKeyName" defs["igGetKeyName"][1]["ret"] = "const char*" @@ -16729,7 +21163,11 @@ defs["igGetKeyOwner"][1]["call_args"] = "(key)" defs["igGetKeyOwner"][1]["cimguiname"] = "igGetKeyOwner" defs["igGetKeyOwner"][1]["defaults"] = {} defs["igGetKeyOwner"][1]["funcname"] = "GetKeyOwner" +<<<<<<< HEAD defs["igGetKeyOwner"][1]["location"] = "imgui_internal:3242" +======= +defs["igGetKeyOwner"][1]["location"] = "imgui_internal:3516" +>>>>>>> docking_inter defs["igGetKeyOwner"][1]["namespace"] = "ImGui" defs["igGetKeyOwner"][1]["ov_cimguiname"] = "igGetKeyOwner" defs["igGetKeyOwner"][1]["ret"] = "ImGuiID" @@ -16751,7 +21189,11 @@ defs["igGetKeyOwnerData"][1]["call_args"] = "(ctx,key)" defs["igGetKeyOwnerData"][1]["cimguiname"] = "igGetKeyOwnerData" defs["igGetKeyOwnerData"][1]["defaults"] = {} defs["igGetKeyOwnerData"][1]["funcname"] = "GetKeyOwnerData" +<<<<<<< HEAD defs["igGetKeyOwnerData"][1]["location"] = "imgui_internal:3247" +======= +defs["igGetKeyOwnerData"][1]["location"] = "imgui_internal:3521" +>>>>>>> docking_inter defs["igGetKeyOwnerData"][1]["namespace"] = "ImGui" defs["igGetKeyOwnerData"][1]["ov_cimguiname"] = "igGetKeyOwnerData" defs["igGetKeyOwnerData"][1]["ret"] = "ImGuiKeyOwnerData*" @@ -16776,7 +21218,11 @@ defs["igGetKeyPressedAmount"][1]["call_args"] = "(key,repeat_delay,rate)" defs["igGetKeyPressedAmount"][1]["cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["defaults"] = {} defs["igGetKeyPressedAmount"][1]["funcname"] = "GetKeyPressedAmount" +<<<<<<< HEAD defs["igGetKeyPressedAmount"][1]["location"] = "imgui:938" +======= +defs["igGetKeyPressedAmount"][1]["location"] = "imgui:970" +>>>>>>> docking_inter defs["igGetKeyPressedAmount"][1]["namespace"] = "ImGui" defs["igGetKeyPressedAmount"][1]["ov_cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["ret"] = "int" @@ -16792,7 +21238,11 @@ defs["igGetMainViewport"][1]["call_args"] = "()" defs["igGetMainViewport"][1]["cimguiname"] = "igGetMainViewport" defs["igGetMainViewport"][1]["defaults"] = {} defs["igGetMainViewport"][1]["funcname"] = "GetMainViewport" +<<<<<<< HEAD defs["igGetMainViewport"][1]["location"] = "imgui:904" +======= +defs["igGetMainViewport"][1]["location"] = "imgui:936" +>>>>>>> docking_inter defs["igGetMainViewport"][1]["namespace"] = "ImGui" defs["igGetMainViewport"][1]["ov_cimguiname"] = "igGetMainViewport" defs["igGetMainViewport"][1]["ret"] = "ImGuiViewport*" @@ -16811,7 +21261,11 @@ defs["igGetMouseClickedCount"][1]["call_args"] = "(button)" defs["igGetMouseClickedCount"][1]["cimguiname"] = "igGetMouseClickedCount" defs["igGetMouseClickedCount"][1]["defaults"] = {} defs["igGetMouseClickedCount"][1]["funcname"] = "GetMouseClickedCount" +<<<<<<< HEAD defs["igGetMouseClickedCount"][1]["location"] = "imgui:968" +======= +defs["igGetMouseClickedCount"][1]["location"] = "imgui:1000" +>>>>>>> docking_inter defs["igGetMouseClickedCount"][1]["namespace"] = "ImGui" defs["igGetMouseClickedCount"][1]["ov_cimguiname"] = "igGetMouseClickedCount" defs["igGetMouseClickedCount"][1]["ret"] = "int" @@ -16827,7 +21281,11 @@ defs["igGetMouseCursor"][1]["call_args"] = "()" defs["igGetMouseCursor"][1]["cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["defaults"] = {} defs["igGetMouseCursor"][1]["funcname"] = "GetMouseCursor" +<<<<<<< HEAD defs["igGetMouseCursor"][1]["location"] = "imgui:977" +======= +defs["igGetMouseCursor"][1]["location"] = "imgui:1009" +>>>>>>> docking_inter defs["igGetMouseCursor"][1]["namespace"] = "ImGui" defs["igGetMouseCursor"][1]["ov_cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["ret"] = "ImGuiMouseCursor" @@ -16854,7 +21312,11 @@ defs["igGetMouseDragDelta"][1]["defaults"] = {} defs["igGetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igGetMouseDragDelta"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igGetMouseDragDelta"][1]["funcname"] = "GetMouseDragDelta" +<<<<<<< HEAD defs["igGetMouseDragDelta"][1]["location"] = "imgui:975" +======= +defs["igGetMouseDragDelta"][1]["location"] = "imgui:1007" +>>>>>>> docking_inter defs["igGetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igGetMouseDragDelta"][1]["nonUDT"] = 1 defs["igGetMouseDragDelta"][1]["ov_cimguiname"] = "igGetMouseDragDelta" @@ -16874,7 +21336,11 @@ defs["igGetMousePos"][1]["call_args"] = "()" defs["igGetMousePos"][1]["cimguiname"] = "igGetMousePos" defs["igGetMousePos"][1]["defaults"] = {} defs["igGetMousePos"][1]["funcname"] = "GetMousePos" +<<<<<<< HEAD defs["igGetMousePos"][1]["location"] = "imgui:972" +======= +defs["igGetMousePos"][1]["location"] = "imgui:1004" +>>>>>>> docking_inter defs["igGetMousePos"][1]["namespace"] = "ImGui" defs["igGetMousePos"][1]["nonUDT"] = 1 defs["igGetMousePos"][1]["ov_cimguiname"] = "igGetMousePos" @@ -16894,7 +21360,11 @@ defs["igGetMousePosOnOpeningCurrentPopup"][1]["call_args"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][1]["cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" defs["igGetMousePosOnOpeningCurrentPopup"][1]["defaults"] = {} defs["igGetMousePosOnOpeningCurrentPopup"][1]["funcname"] = "GetMousePosOnOpeningCurrentPopup" +<<<<<<< HEAD defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui:973" +======= +defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui:1005" +>>>>>>> docking_inter defs["igGetMousePosOnOpeningCurrentPopup"][1]["namespace"] = "ImGui" defs["igGetMousePosOnOpeningCurrentPopup"][1]["nonUDT"] = 1 defs["igGetMousePosOnOpeningCurrentPopup"][1]["ov_cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" @@ -16914,13 +21384,37 @@ defs["igGetNavTweakPressedAmount"][1]["call_args"] = "(axis)" defs["igGetNavTweakPressedAmount"][1]["cimguiname"] = "igGetNavTweakPressedAmount" defs["igGetNavTweakPressedAmount"][1]["defaults"] = {} defs["igGetNavTweakPressedAmount"][1]["funcname"] = "GetNavTweakPressedAmount" +<<<<<<< HEAD defs["igGetNavTweakPressedAmount"][1]["location"] = "imgui_internal:3224" +======= +defs["igGetNavTweakPressedAmount"][1]["location"] = "imgui_internal:3498" +>>>>>>> docking_inter defs["igGetNavTweakPressedAmount"][1]["namespace"] = "ImGui" defs["igGetNavTweakPressedAmount"][1]["ov_cimguiname"] = "igGetNavTweakPressedAmount" defs["igGetNavTweakPressedAmount"][1]["ret"] = "float" defs["igGetNavTweakPressedAmount"][1]["signature"] = "(ImGuiAxis)" defs["igGetNavTweakPressedAmount"][1]["stname"] = "" defs["igGetNavTweakPressedAmount"]["(ImGuiAxis)"] = defs["igGetNavTweakPressedAmount"][1] +<<<<<<< HEAD +======= +defs["igGetPlatformIO"] = {} +defs["igGetPlatformIO"][1] = {} +defs["igGetPlatformIO"][1]["args"] = "()" +defs["igGetPlatformIO"][1]["argsT"] = {} +defs["igGetPlatformIO"][1]["argsoriginal"] = "()" +defs["igGetPlatformIO"][1]["call_args"] = "()" +defs["igGetPlatformIO"][1]["cimguiname"] = "igGetPlatformIO" +defs["igGetPlatformIO"][1]["defaults"] = {} +defs["igGetPlatformIO"][1]["funcname"] = "GetPlatformIO" +defs["igGetPlatformIO"][1]["location"] = "imgui:1046" +defs["igGetPlatformIO"][1]["namespace"] = "ImGui" +defs["igGetPlatformIO"][1]["ov_cimguiname"] = "igGetPlatformIO" +defs["igGetPlatformIO"][1]["ret"] = "ImGuiPlatformIO*" +defs["igGetPlatformIO"][1]["retref"] = "&" +defs["igGetPlatformIO"][1]["signature"] = "()" +defs["igGetPlatformIO"][1]["stname"] = "" +defs["igGetPlatformIO"]["()"] = defs["igGetPlatformIO"][1] +>>>>>>> docking_inter defs["igGetPopupAllowedExtentRect"] = {} defs["igGetPopupAllowedExtentRect"][1] = {} defs["igGetPopupAllowedExtentRect"][1]["args"] = "(ImRect *pOut,ImGuiWindow* window)" @@ -16936,7 +21430,11 @@ defs["igGetPopupAllowedExtentRect"][1]["call_args"] = "(window)" defs["igGetPopupAllowedExtentRect"][1]["cimguiname"] = "igGetPopupAllowedExtentRect" defs["igGetPopupAllowedExtentRect"][1]["defaults"] = {} defs["igGetPopupAllowedExtentRect"][1]["funcname"] = "GetPopupAllowedExtentRect" +<<<<<<< HEAD defs["igGetPopupAllowedExtentRect"][1]["location"] = "imgui_internal:3156" +======= +defs["igGetPopupAllowedExtentRect"][1]["location"] = "imgui_internal:3426" +>>>>>>> docking_inter defs["igGetPopupAllowedExtentRect"][1]["namespace"] = "ImGui" defs["igGetPopupAllowedExtentRect"][1]["nonUDT"] = 1 defs["igGetPopupAllowedExtentRect"][1]["ov_cimguiname"] = "igGetPopupAllowedExtentRect" @@ -16953,7 +21451,11 @@ defs["igGetScrollMaxX"][1]["call_args"] = "()" defs["igGetScrollMaxX"][1]["cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["defaults"] = {} defs["igGetScrollMaxX"][1]["funcname"] = "GetScrollMaxX" +<<<<<<< HEAD defs["igGetScrollMaxX"][1]["location"] = "imgui:422" +======= +defs["igGetScrollMaxX"][1]["location"] = "imgui:432" +>>>>>>> docking_inter defs["igGetScrollMaxX"][1]["namespace"] = "ImGui" defs["igGetScrollMaxX"][1]["ov_cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["ret"] = "float" @@ -16969,7 +21471,11 @@ defs["igGetScrollMaxY"][1]["call_args"] = "()" defs["igGetScrollMaxY"][1]["cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["defaults"] = {} defs["igGetScrollMaxY"][1]["funcname"] = "GetScrollMaxY" +<<<<<<< HEAD defs["igGetScrollMaxY"][1]["location"] = "imgui:423" +======= +defs["igGetScrollMaxY"][1]["location"] = "imgui:433" +>>>>>>> docking_inter defs["igGetScrollMaxY"][1]["namespace"] = "ImGui" defs["igGetScrollMaxY"][1]["ov_cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["ret"] = "float" @@ -16985,7 +21491,11 @@ defs["igGetScrollX"][1]["call_args"] = "()" defs["igGetScrollX"][1]["cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["defaults"] = {} defs["igGetScrollX"][1]["funcname"] = "GetScrollX" +<<<<<<< HEAD defs["igGetScrollX"][1]["location"] = "imgui:418" +======= +defs["igGetScrollX"][1]["location"] = "imgui:428" +>>>>>>> docking_inter defs["igGetScrollX"][1]["namespace"] = "ImGui" defs["igGetScrollX"][1]["ov_cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["ret"] = "float" @@ -17001,7 +21511,11 @@ defs["igGetScrollY"][1]["call_args"] = "()" defs["igGetScrollY"][1]["cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["defaults"] = {} defs["igGetScrollY"][1]["funcname"] = "GetScrollY" +<<<<<<< HEAD defs["igGetScrollY"][1]["location"] = "imgui:419" +======= +defs["igGetScrollY"][1]["location"] = "imgui:429" +>>>>>>> docking_inter defs["igGetScrollY"][1]["namespace"] = "ImGui" defs["igGetScrollY"][1]["ov_cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["ret"] = "float" @@ -17020,7 +21534,11 @@ defs["igGetShortcutRoutingData"][1]["call_args"] = "(key_chord)" defs["igGetShortcutRoutingData"][1]["cimguiname"] = "igGetShortcutRoutingData" defs["igGetShortcutRoutingData"][1]["defaults"] = {} defs["igGetShortcutRoutingData"][1]["funcname"] = "GetShortcutRoutingData" +<<<<<<< HEAD defs["igGetShortcutRoutingData"][1]["location"] = "imgui_internal:3281" +======= +defs["igGetShortcutRoutingData"][1]["location"] = "imgui_internal:3555" +>>>>>>> docking_inter defs["igGetShortcutRoutingData"][1]["namespace"] = "ImGui" defs["igGetShortcutRoutingData"][1]["ov_cimguiname"] = "igGetShortcutRoutingData" defs["igGetShortcutRoutingData"][1]["ret"] = "ImGuiKeyRoutingData*" @@ -17036,7 +21554,11 @@ defs["igGetStateStorage"][1]["call_args"] = "()" defs["igGetStateStorage"][1]["cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["defaults"] = {} defs["igGetStateStorage"][1]["funcname"] = "GetStateStorage" +<<<<<<< HEAD defs["igGetStateStorage"][1]["location"] = "imgui:918" +======= +defs["igGetStateStorage"][1]["location"] = "imgui:950" +>>>>>>> docking_inter defs["igGetStateStorage"][1]["namespace"] = "ImGui" defs["igGetStateStorage"][1]["ov_cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["ret"] = "ImGuiStorage*" @@ -17052,7 +21574,11 @@ defs["igGetStyle"][1]["call_args"] = "()" defs["igGetStyle"][1]["cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["defaults"] = {} defs["igGetStyle"][1]["funcname"] = "GetStyle" +<<<<<<< HEAD defs["igGetStyle"][1]["location"] = "imgui:315" +======= +defs["igGetStyle"][1]["location"] = "imgui:322" +>>>>>>> docking_inter defs["igGetStyle"][1]["namespace"] = "ImGui" defs["igGetStyle"][1]["ov_cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["ret"] = "ImGuiStyle*" @@ -17072,7 +21598,11 @@ defs["igGetStyleColorName"][1]["call_args"] = "(idx)" defs["igGetStyleColorName"][1]["cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["defaults"] = {} defs["igGetStyleColorName"][1]["funcname"] = "GetStyleColorName" +<<<<<<< HEAD defs["igGetStyleColorName"][1]["location"] = "imgui:916" +======= +defs["igGetStyleColorName"][1]["location"] = "imgui:948" +>>>>>>> docking_inter defs["igGetStyleColorName"][1]["namespace"] = "ImGui" defs["igGetStyleColorName"][1]["ov_cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["ret"] = "const char*" @@ -17091,7 +21621,11 @@ defs["igGetStyleColorVec4"][1]["call_args"] = "(idx)" defs["igGetStyleColorVec4"][1]["cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["defaults"] = {} defs["igGetStyleColorVec4"][1]["funcname"] = "GetStyleColorVec4" +<<<<<<< HEAD defs["igGetStyleColorVec4"][1]["location"] = "imgui:459" +======= +defs["igGetStyleColorVec4"][1]["location"] = "imgui:469" +>>>>>>> docking_inter defs["igGetStyleColorVec4"][1]["namespace"] = "ImGui" defs["igGetStyleColorVec4"][1]["ov_cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["ret"] = "const ImVec4*" @@ -17111,7 +21645,11 @@ defs["igGetStyleVarInfo"][1]["call_args"] = "(idx)" defs["igGetStyleVarInfo"][1]["cimguiname"] = "igGetStyleVarInfo" defs["igGetStyleVarInfo"][1]["defaults"] = {} defs["igGetStyleVarInfo"][1]["funcname"] = "GetStyleVarInfo" +<<<<<<< HEAD defs["igGetStyleVarInfo"][1]["location"] = "imgui_internal:3136" +======= +defs["igGetStyleVarInfo"][1]["location"] = "imgui_internal:3406" +>>>>>>> docking_inter defs["igGetStyleVarInfo"][1]["namespace"] = "ImGui" defs["igGetStyleVarInfo"][1]["ov_cimguiname"] = "igGetStyleVarInfo" defs["igGetStyleVarInfo"][1]["ret"] = "const ImGuiDataVarInfo*" @@ -17127,7 +21665,11 @@ defs["igGetTextLineHeight"][1]["call_args"] = "()" defs["igGetTextLineHeight"][1]["cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["defaults"] = {} defs["igGetTextLineHeight"][1]["funcname"] = "GetTextLineHeight" +<<<<<<< HEAD defs["igGetTextLineHeight"][1]["location"] = "imgui:490" +======= +defs["igGetTextLineHeight"][1]["location"] = "imgui:500" +>>>>>>> docking_inter defs["igGetTextLineHeight"][1]["namespace"] = "ImGui" defs["igGetTextLineHeight"][1]["ov_cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["ret"] = "float" @@ -17143,7 +21685,11 @@ defs["igGetTextLineHeightWithSpacing"][1]["call_args"] = "()" defs["igGetTextLineHeightWithSpacing"][1]["cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["defaults"] = {} defs["igGetTextLineHeightWithSpacing"][1]["funcname"] = "GetTextLineHeightWithSpacing" +<<<<<<< HEAD defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui:491" +======= +defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui:501" +>>>>>>> docking_inter defs["igGetTextLineHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetTextLineHeightWithSpacing"][1]["ov_cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["ret"] = "float" @@ -17159,7 +21705,11 @@ defs["igGetTime"][1]["call_args"] = "()" defs["igGetTime"][1]["cimguiname"] = "igGetTime" defs["igGetTime"][1]["defaults"] = {} defs["igGetTime"][1]["funcname"] = "GetTime" +<<<<<<< HEAD defs["igGetTime"][1]["location"] = "imgui:913" +======= +defs["igGetTime"][1]["location"] = "imgui:945" +>>>>>>> docking_inter defs["igGetTime"][1]["namespace"] = "ImGui" defs["igGetTime"][1]["ov_cimguiname"] = "igGetTime" defs["igGetTime"][1]["ret"] = "double" @@ -17175,7 +21725,11 @@ defs["igGetTopMostAndVisiblePopupModal"][1]["call_args"] = "()" defs["igGetTopMostAndVisiblePopupModal"][1]["cimguiname"] = "igGetTopMostAndVisiblePopupModal" defs["igGetTopMostAndVisiblePopupModal"][1]["defaults"] = {} defs["igGetTopMostAndVisiblePopupModal"][1]["funcname"] = "GetTopMostAndVisiblePopupModal" +<<<<<<< HEAD defs["igGetTopMostAndVisiblePopupModal"][1]["location"] = "imgui_internal:3158" +======= +defs["igGetTopMostAndVisiblePopupModal"][1]["location"] = "imgui_internal:3428" +>>>>>>> docking_inter defs["igGetTopMostAndVisiblePopupModal"][1]["namespace"] = "ImGui" defs["igGetTopMostAndVisiblePopupModal"][1]["ov_cimguiname"] = "igGetTopMostAndVisiblePopupModal" defs["igGetTopMostAndVisiblePopupModal"][1]["ret"] = "ImGuiWindow*" @@ -17191,7 +21745,11 @@ defs["igGetTopMostPopupModal"][1]["call_args"] = "()" defs["igGetTopMostPopupModal"][1]["cimguiname"] = "igGetTopMostPopupModal" defs["igGetTopMostPopupModal"][1]["defaults"] = {} defs["igGetTopMostPopupModal"][1]["funcname"] = "GetTopMostPopupModal" +<<<<<<< HEAD defs["igGetTopMostPopupModal"][1]["location"] = "imgui_internal:3157" +======= +defs["igGetTopMostPopupModal"][1]["location"] = "imgui_internal:3427" +>>>>>>> docking_inter defs["igGetTopMostPopupModal"][1]["namespace"] = "ImGui" defs["igGetTopMostPopupModal"][1]["ov_cimguiname"] = "igGetTopMostPopupModal" defs["igGetTopMostPopupModal"][1]["ret"] = "ImGuiWindow*" @@ -17207,7 +21765,11 @@ defs["igGetTreeNodeToLabelSpacing"][1]["call_args"] = "()" defs["igGetTreeNodeToLabelSpacing"][1]["cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["defaults"] = {} defs["igGetTreeNodeToLabelSpacing"][1]["funcname"] = "GetTreeNodeToLabelSpacing" +<<<<<<< HEAD defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:651" +======= +defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:661" +>>>>>>> docking_inter defs["igGetTreeNodeToLabelSpacing"][1]["namespace"] = "ImGui" defs["igGetTreeNodeToLabelSpacing"][1]["ov_cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["ret"] = "float" @@ -17232,7 +21794,11 @@ defs["igGetTypematicRepeatRate"][1]["call_args"] = "(flags,repeat_delay,repeat_r defs["igGetTypematicRepeatRate"][1]["cimguiname"] = "igGetTypematicRepeatRate" defs["igGetTypematicRepeatRate"][1]["defaults"] = {} defs["igGetTypematicRepeatRate"][1]["funcname"] = "GetTypematicRepeatRate" +<<<<<<< HEAD defs["igGetTypematicRepeatRate"][1]["location"] = "imgui_internal:3226" +======= +defs["igGetTypematicRepeatRate"][1]["location"] = "imgui_internal:3500" +>>>>>>> docking_inter defs["igGetTypematicRepeatRate"][1]["namespace"] = "ImGui" defs["igGetTypematicRepeatRate"][1]["ov_cimguiname"] = "igGetTypematicRepeatRate" defs["igGetTypematicRepeatRate"][1]["ret"] = "void" @@ -17252,7 +21818,11 @@ defs["igGetTypingSelectRequest"][1]["cimguiname"] = "igGetTypingSelectRequest" defs["igGetTypingSelectRequest"][1]["defaults"] = {} defs["igGetTypingSelectRequest"][1]["defaults"]["flags"] = "ImGuiTypingSelectFlags_None" defs["igGetTypingSelectRequest"][1]["funcname"] = "GetTypingSelectRequest" +<<<<<<< HEAD defs["igGetTypingSelectRequest"][1]["location"] = "imgui_internal:3303" +======= +defs["igGetTypingSelectRequest"][1]["location"] = "imgui_internal:3632" +>>>>>>> docking_inter defs["igGetTypingSelectRequest"][1]["namespace"] = "ImGui" defs["igGetTypingSelectRequest"][1]["ov_cimguiname"] = "igGetTypingSelectRequest" defs["igGetTypingSelectRequest"][1]["ret"] = "ImGuiTypingSelectRequest*" @@ -17268,13 +21838,58 @@ defs["igGetVersion"][1]["call_args"] = "()" defs["igGetVersion"][1]["cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["defaults"] = {} defs["igGetVersion"][1]["funcname"] = "GetVersion" +<<<<<<< HEAD defs["igGetVersion"][1]["location"] = "imgui:331" +======= +defs["igGetVersion"][1]["location"] = "imgui:338" +>>>>>>> docking_inter defs["igGetVersion"][1]["namespace"] = "ImGui" defs["igGetVersion"][1]["ov_cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["ret"] = "const char*" defs["igGetVersion"][1]["signature"] = "()" defs["igGetVersion"][1]["stname"] = "" defs["igGetVersion"]["()"] = defs["igGetVersion"][1] +<<<<<<< HEAD +======= +defs["igGetViewportPlatformMonitor"] = {} +defs["igGetViewportPlatformMonitor"][1] = {} +defs["igGetViewportPlatformMonitor"][1]["args"] = "(ImGuiViewport* viewport)" +defs["igGetViewportPlatformMonitor"][1]["argsT"] = {} +defs["igGetViewportPlatformMonitor"][1]["argsT"][1] = {} +defs["igGetViewportPlatformMonitor"][1]["argsT"][1]["name"] = "viewport" +defs["igGetViewportPlatformMonitor"][1]["argsT"][1]["type"] = "ImGuiViewport*" +defs["igGetViewportPlatformMonitor"][1]["argsoriginal"] = "(ImGuiViewport* viewport)" +defs["igGetViewportPlatformMonitor"][1]["call_args"] = "(viewport)" +defs["igGetViewportPlatformMonitor"][1]["cimguiname"] = "igGetViewportPlatformMonitor" +defs["igGetViewportPlatformMonitor"][1]["defaults"] = {} +defs["igGetViewportPlatformMonitor"][1]["funcname"] = "GetViewportPlatformMonitor" +defs["igGetViewportPlatformMonitor"][1]["location"] = "imgui_internal:3337" +defs["igGetViewportPlatformMonitor"][1]["namespace"] = "ImGui" +defs["igGetViewportPlatformMonitor"][1]["ov_cimguiname"] = "igGetViewportPlatformMonitor" +defs["igGetViewportPlatformMonitor"][1]["ret"] = "const ImGuiPlatformMonitor*" +defs["igGetViewportPlatformMonitor"][1]["signature"] = "(ImGuiViewport*)" +defs["igGetViewportPlatformMonitor"][1]["stname"] = "" +defs["igGetViewportPlatformMonitor"]["(ImGuiViewport*)"] = defs["igGetViewportPlatformMonitor"][1] +defs["igGetWindowAlwaysWantOwnTabBar"] = {} +defs["igGetWindowAlwaysWantOwnTabBar"][1] = {} +defs["igGetWindowAlwaysWantOwnTabBar"][1]["args"] = "(ImGuiWindow* window)" +defs["igGetWindowAlwaysWantOwnTabBar"][1]["argsT"] = {} +defs["igGetWindowAlwaysWantOwnTabBar"][1]["argsT"][1] = {} +defs["igGetWindowAlwaysWantOwnTabBar"][1]["argsT"][1]["name"] = "window" +defs["igGetWindowAlwaysWantOwnTabBar"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igGetWindowAlwaysWantOwnTabBar"][1]["argsoriginal"] = "(ImGuiWindow* window)" +defs["igGetWindowAlwaysWantOwnTabBar"][1]["call_args"] = "(window)" +defs["igGetWindowAlwaysWantOwnTabBar"][1]["cimguiname"] = "igGetWindowAlwaysWantOwnTabBar" +defs["igGetWindowAlwaysWantOwnTabBar"][1]["defaults"] = {} +defs["igGetWindowAlwaysWantOwnTabBar"][1]["funcname"] = "GetWindowAlwaysWantOwnTabBar" +defs["igGetWindowAlwaysWantOwnTabBar"][1]["location"] = "imgui_internal:3582" +defs["igGetWindowAlwaysWantOwnTabBar"][1]["namespace"] = "ImGui" +defs["igGetWindowAlwaysWantOwnTabBar"][1]["ov_cimguiname"] = "igGetWindowAlwaysWantOwnTabBar" +defs["igGetWindowAlwaysWantOwnTabBar"][1]["ret"] = "bool" +defs["igGetWindowAlwaysWantOwnTabBar"][1]["signature"] = "(ImGuiWindow*)" +defs["igGetWindowAlwaysWantOwnTabBar"][1]["stname"] = "" +defs["igGetWindowAlwaysWantOwnTabBar"]["(ImGuiWindow*)"] = defs["igGetWindowAlwaysWantOwnTabBar"][1] +>>>>>>> docking_inter defs["igGetWindowContentRegionMax"] = {} defs["igGetWindowContentRegionMax"][1] = {} defs["igGetWindowContentRegionMax"][1]["args"] = "(ImVec2 *pOut)" @@ -17287,7 +21902,11 @@ defs["igGetWindowContentRegionMax"][1]["call_args"] = "()" defs["igGetWindowContentRegionMax"][1]["cimguiname"] = "igGetWindowContentRegionMax" defs["igGetWindowContentRegionMax"][1]["defaults"] = {} defs["igGetWindowContentRegionMax"][1]["funcname"] = "GetWindowContentRegionMax" +<<<<<<< HEAD defs["igGetWindowContentRegionMax"][1]["location"] = "imgui:413" +======= +defs["igGetWindowContentRegionMax"][1]["location"] = "imgui:423" +>>>>>>> docking_inter defs["igGetWindowContentRegionMax"][1]["namespace"] = "ImGui" defs["igGetWindowContentRegionMax"][1]["nonUDT"] = 1 defs["igGetWindowContentRegionMax"][1]["ov_cimguiname"] = "igGetWindowContentRegionMax" @@ -17307,7 +21926,11 @@ defs["igGetWindowContentRegionMin"][1]["call_args"] = "()" defs["igGetWindowContentRegionMin"][1]["cimguiname"] = "igGetWindowContentRegionMin" defs["igGetWindowContentRegionMin"][1]["defaults"] = {} defs["igGetWindowContentRegionMin"][1]["funcname"] = "GetWindowContentRegionMin" +<<<<<<< HEAD defs["igGetWindowContentRegionMin"][1]["location"] = "imgui:412" +======= +defs["igGetWindowContentRegionMin"][1]["location"] = "imgui:422" +>>>>>>> docking_inter defs["igGetWindowContentRegionMin"][1]["namespace"] = "ImGui" defs["igGetWindowContentRegionMin"][1]["nonUDT"] = 1 defs["igGetWindowContentRegionMin"][1]["ov_cimguiname"] = "igGetWindowContentRegionMin" @@ -17315,6 +21938,57 @@ defs["igGetWindowContentRegionMin"][1]["ret"] = "void" defs["igGetWindowContentRegionMin"][1]["signature"] = "()" defs["igGetWindowContentRegionMin"][1]["stname"] = "" defs["igGetWindowContentRegionMin"]["()"] = defs["igGetWindowContentRegionMin"][1] +<<<<<<< HEAD +======= +defs["igGetWindowDockID"] = {} +defs["igGetWindowDockID"][1] = {} +defs["igGetWindowDockID"][1]["args"] = "()" +defs["igGetWindowDockID"][1]["argsT"] = {} +defs["igGetWindowDockID"][1]["argsoriginal"] = "()" +defs["igGetWindowDockID"][1]["call_args"] = "()" +defs["igGetWindowDockID"][1]["cimguiname"] = "igGetWindowDockID" +defs["igGetWindowDockID"][1]["defaults"] = {} +defs["igGetWindowDockID"][1]["funcname"] = "GetWindowDockID" +defs["igGetWindowDockID"][1]["location"] = "imgui:864" +defs["igGetWindowDockID"][1]["namespace"] = "ImGui" +defs["igGetWindowDockID"][1]["ov_cimguiname"] = "igGetWindowDockID" +defs["igGetWindowDockID"][1]["ret"] = "ImGuiID" +defs["igGetWindowDockID"][1]["signature"] = "()" +defs["igGetWindowDockID"][1]["stname"] = "" +defs["igGetWindowDockID"]["()"] = defs["igGetWindowDockID"][1] +defs["igGetWindowDockNode"] = {} +defs["igGetWindowDockNode"][1] = {} +defs["igGetWindowDockNode"][1]["args"] = "()" +defs["igGetWindowDockNode"][1]["argsT"] = {} +defs["igGetWindowDockNode"][1]["argsoriginal"] = "()" +defs["igGetWindowDockNode"][1]["call_args"] = "()" +defs["igGetWindowDockNode"][1]["cimguiname"] = "igGetWindowDockNode" +defs["igGetWindowDockNode"][1]["defaults"] = {} +defs["igGetWindowDockNode"][1]["funcname"] = "GetWindowDockNode" +defs["igGetWindowDockNode"][1]["location"] = "imgui_internal:3581" +defs["igGetWindowDockNode"][1]["namespace"] = "ImGui" +defs["igGetWindowDockNode"][1]["ov_cimguiname"] = "igGetWindowDockNode" +defs["igGetWindowDockNode"][1]["ret"] = "ImGuiDockNode*" +defs["igGetWindowDockNode"][1]["signature"] = "()" +defs["igGetWindowDockNode"][1]["stname"] = "" +defs["igGetWindowDockNode"]["()"] = defs["igGetWindowDockNode"][1] +defs["igGetWindowDpiScale"] = {} +defs["igGetWindowDpiScale"][1] = {} +defs["igGetWindowDpiScale"][1]["args"] = "()" +defs["igGetWindowDpiScale"][1]["argsT"] = {} +defs["igGetWindowDpiScale"][1]["argsoriginal"] = "()" +defs["igGetWindowDpiScale"][1]["call_args"] = "()" +defs["igGetWindowDpiScale"][1]["cimguiname"] = "igGetWindowDpiScale" +defs["igGetWindowDpiScale"][1]["defaults"] = {} +defs["igGetWindowDpiScale"][1]["funcname"] = "GetWindowDpiScale" +defs["igGetWindowDpiScale"][1]["location"] = "imgui:389" +defs["igGetWindowDpiScale"][1]["namespace"] = "ImGui" +defs["igGetWindowDpiScale"][1]["ov_cimguiname"] = "igGetWindowDpiScale" +defs["igGetWindowDpiScale"][1]["ret"] = "float" +defs["igGetWindowDpiScale"][1]["signature"] = "()" +defs["igGetWindowDpiScale"][1]["stname"] = "" +defs["igGetWindowDpiScale"]["()"] = defs["igGetWindowDpiScale"][1] +>>>>>>> docking_inter defs["igGetWindowDrawList"] = {} defs["igGetWindowDrawList"][1] = {} defs["igGetWindowDrawList"][1]["args"] = "()" @@ -17324,7 +21998,11 @@ defs["igGetWindowDrawList"][1]["call_args"] = "()" defs["igGetWindowDrawList"][1]["cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["defaults"] = {} defs["igGetWindowDrawList"][1]["funcname"] = "GetWindowDrawList" +<<<<<<< HEAD defs["igGetWindowDrawList"][1]["location"] = "imgui:381" +======= +defs["igGetWindowDrawList"][1]["location"] = "imgui:388" +>>>>>>> docking_inter defs["igGetWindowDrawList"][1]["namespace"] = "ImGui" defs["igGetWindowDrawList"][1]["ov_cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["ret"] = "ImDrawList*" @@ -17340,7 +22018,11 @@ defs["igGetWindowHeight"][1]["call_args"] = "()" defs["igGetWindowHeight"][1]["cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["defaults"] = {} defs["igGetWindowHeight"][1]["funcname"] = "GetWindowHeight" +<<<<<<< HEAD defs["igGetWindowHeight"][1]["location"] = "imgui:385" +======= +defs["igGetWindowHeight"][1]["location"] = "imgui:393" +>>>>>>> docking_inter defs["igGetWindowHeight"][1]["namespace"] = "ImGui" defs["igGetWindowHeight"][1]["ov_cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["ret"] = "float" @@ -17359,7 +22041,11 @@ defs["igGetWindowPos"][1]["call_args"] = "()" defs["igGetWindowPos"][1]["cimguiname"] = "igGetWindowPos" defs["igGetWindowPos"][1]["defaults"] = {} defs["igGetWindowPos"][1]["funcname"] = "GetWindowPos" +<<<<<<< HEAD defs["igGetWindowPos"][1]["location"] = "imgui:382" +======= +defs["igGetWindowPos"][1]["location"] = "imgui:390" +>>>>>>> docking_inter defs["igGetWindowPos"][1]["namespace"] = "ImGui" defs["igGetWindowPos"][1]["nonUDT"] = 1 defs["igGetWindowPos"][1]["ov_cimguiname"] = "igGetWindowPos" @@ -17382,7 +22068,11 @@ defs["igGetWindowResizeBorderID"][1]["call_args"] = "(window,dir)" defs["igGetWindowResizeBorderID"][1]["cimguiname"] = "igGetWindowResizeBorderID" defs["igGetWindowResizeBorderID"][1]["defaults"] = {} defs["igGetWindowResizeBorderID"][1]["funcname"] = "GetWindowResizeBorderID" +<<<<<<< HEAD defs["igGetWindowResizeBorderID"][1]["location"] = "imgui_internal:3438" +======= +defs["igGetWindowResizeBorderID"][1]["location"] = "imgui_internal:3770" +>>>>>>> docking_inter defs["igGetWindowResizeBorderID"][1]["namespace"] = "ImGui" defs["igGetWindowResizeBorderID"][1]["ov_cimguiname"] = "igGetWindowResizeBorderID" defs["igGetWindowResizeBorderID"][1]["ret"] = "ImGuiID" @@ -17404,7 +22094,11 @@ defs["igGetWindowResizeCornerID"][1]["call_args"] = "(window,n)" defs["igGetWindowResizeCornerID"][1]["cimguiname"] = "igGetWindowResizeCornerID" defs["igGetWindowResizeCornerID"][1]["defaults"] = {} defs["igGetWindowResizeCornerID"][1]["funcname"] = "GetWindowResizeCornerID" +<<<<<<< HEAD defs["igGetWindowResizeCornerID"][1]["location"] = "imgui_internal:3437" +======= +defs["igGetWindowResizeCornerID"][1]["location"] = "imgui_internal:3769" +>>>>>>> docking_inter defs["igGetWindowResizeCornerID"][1]["namespace"] = "ImGui" defs["igGetWindowResizeCornerID"][1]["ov_cimguiname"] = "igGetWindowResizeCornerID" defs["igGetWindowResizeCornerID"][1]["ret"] = "ImGuiID" @@ -17426,7 +22120,11 @@ defs["igGetWindowScrollbarID"][1]["call_args"] = "(window,axis)" defs["igGetWindowScrollbarID"][1]["cimguiname"] = "igGetWindowScrollbarID" defs["igGetWindowScrollbarID"][1]["defaults"] = {} defs["igGetWindowScrollbarID"][1]["funcname"] = "GetWindowScrollbarID" +<<<<<<< HEAD defs["igGetWindowScrollbarID"][1]["location"] = "imgui_internal:3436" +======= +defs["igGetWindowScrollbarID"][1]["location"] = "imgui_internal:3768" +>>>>>>> docking_inter defs["igGetWindowScrollbarID"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarID"][1]["ov_cimguiname"] = "igGetWindowScrollbarID" defs["igGetWindowScrollbarID"][1]["ret"] = "ImGuiID" @@ -17451,7 +22149,11 @@ defs["igGetWindowScrollbarRect"][1]["call_args"] = "(window,axis)" defs["igGetWindowScrollbarRect"][1]["cimguiname"] = "igGetWindowScrollbarRect" defs["igGetWindowScrollbarRect"][1]["defaults"] = {} defs["igGetWindowScrollbarRect"][1]["funcname"] = "GetWindowScrollbarRect" +<<<<<<< HEAD defs["igGetWindowScrollbarRect"][1]["location"] = "imgui_internal:3435" +======= +defs["igGetWindowScrollbarRect"][1]["location"] = "imgui_internal:3767" +>>>>>>> docking_inter defs["igGetWindowScrollbarRect"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarRect"][1]["nonUDT"] = 1 defs["igGetWindowScrollbarRect"][1]["ov_cimguiname"] = "igGetWindowScrollbarRect" @@ -17471,7 +22173,11 @@ defs["igGetWindowSize"][1]["call_args"] = "()" defs["igGetWindowSize"][1]["cimguiname"] = "igGetWindowSize" defs["igGetWindowSize"][1]["defaults"] = {} defs["igGetWindowSize"][1]["funcname"] = "GetWindowSize" +<<<<<<< HEAD defs["igGetWindowSize"][1]["location"] = "imgui:383" +======= +defs["igGetWindowSize"][1]["location"] = "imgui:391" +>>>>>>> docking_inter defs["igGetWindowSize"][1]["namespace"] = "ImGui" defs["igGetWindowSize"][1]["nonUDT"] = 1 defs["igGetWindowSize"][1]["ov_cimguiname"] = "igGetWindowSize" @@ -17479,6 +22185,25 @@ defs["igGetWindowSize"][1]["ret"] = "void" defs["igGetWindowSize"][1]["signature"] = "()" defs["igGetWindowSize"][1]["stname"] = "" defs["igGetWindowSize"]["()"] = defs["igGetWindowSize"][1] +<<<<<<< HEAD +======= +defs["igGetWindowViewport"] = {} +defs["igGetWindowViewport"][1] = {} +defs["igGetWindowViewport"][1]["args"] = "()" +defs["igGetWindowViewport"][1]["argsT"] = {} +defs["igGetWindowViewport"][1]["argsoriginal"] = "()" +defs["igGetWindowViewport"][1]["call_args"] = "()" +defs["igGetWindowViewport"][1]["cimguiname"] = "igGetWindowViewport" +defs["igGetWindowViewport"][1]["defaults"] = {} +defs["igGetWindowViewport"][1]["funcname"] = "GetWindowViewport" +defs["igGetWindowViewport"][1]["location"] = "imgui:394" +defs["igGetWindowViewport"][1]["namespace"] = "ImGui" +defs["igGetWindowViewport"][1]["ov_cimguiname"] = "igGetWindowViewport" +defs["igGetWindowViewport"][1]["ret"] = "ImGuiViewport*" +defs["igGetWindowViewport"][1]["signature"] = "()" +defs["igGetWindowViewport"][1]["stname"] = "" +defs["igGetWindowViewport"]["()"] = defs["igGetWindowViewport"][1] +>>>>>>> docking_inter defs["igGetWindowWidth"] = {} defs["igGetWindowWidth"][1] = {} defs["igGetWindowWidth"][1]["args"] = "()" @@ -17488,7 +22213,11 @@ defs["igGetWindowWidth"][1]["call_args"] = "()" defs["igGetWindowWidth"][1]["cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["defaults"] = {} defs["igGetWindowWidth"][1]["funcname"] = "GetWindowWidth" +<<<<<<< HEAD defs["igGetWindowWidth"][1]["location"] = "imgui:384" +======= +defs["igGetWindowWidth"][1]["location"] = "imgui:392" +>>>>>>> docking_inter defs["igGetWindowWidth"][1]["namespace"] = "ImGui" defs["igGetWindowWidth"][1]["ov_cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["ret"] = "float" @@ -17507,7 +22236,11 @@ defs["igImAbs"][1]["call_args"] = "(x)" defs["igImAbs"][1]["cimguiname"] = "igImAbs" defs["igImAbs"][1]["defaults"] = {} defs["igImAbs"][1]["funcname"] = "ImAbs" +<<<<<<< HEAD defs["igImAbs"][1]["location"] = "imgui_internal:451" +======= +defs["igImAbs"][1]["location"] = "imgui_internal:464" +>>>>>>> docking_inter defs["igImAbs"][1]["ov_cimguiname"] = "igImAbs_Int" defs["igImAbs"][1]["ret"] = "int" defs["igImAbs"][1]["signature"] = "(int)" @@ -17523,7 +22256,11 @@ defs["igImAbs"][2]["call_args"] = "(x)" defs["igImAbs"][2]["cimguiname"] = "igImAbs" defs["igImAbs"][2]["defaults"] = {} defs["igImAbs"][2]["funcname"] = "ImAbs" +<<<<<<< HEAD defs["igImAbs"][2]["location"] = "imgui_internal:452" +======= +defs["igImAbs"][2]["location"] = "imgui_internal:465" +>>>>>>> docking_inter defs["igImAbs"][2]["ov_cimguiname"] = "igImAbs_Float" defs["igImAbs"][2]["ret"] = "float" defs["igImAbs"][2]["signature"] = "(float)" @@ -17539,7 +22276,11 @@ defs["igImAbs"][3]["call_args"] = "(x)" defs["igImAbs"][3]["cimguiname"] = "igImAbs" defs["igImAbs"][3]["defaults"] = {} defs["igImAbs"][3]["funcname"] = "ImAbs" +<<<<<<< HEAD defs["igImAbs"][3]["location"] = "imgui_internal:453" +======= +defs["igImAbs"][3]["location"] = "imgui_internal:466" +>>>>>>> docking_inter defs["igImAbs"][3]["ov_cimguiname"] = "igImAbs_double" defs["igImAbs"][3]["ret"] = "double" defs["igImAbs"][3]["signature"] = "(double)" @@ -17562,7 +22303,11 @@ defs["igImAlphaBlendColors"][1]["call_args"] = "(col_a,col_b)" defs["igImAlphaBlendColors"][1]["cimguiname"] = "igImAlphaBlendColors" defs["igImAlphaBlendColors"][1]["defaults"] = {} defs["igImAlphaBlendColors"][1]["funcname"] = "ImAlphaBlendColors" +<<<<<<< HEAD defs["igImAlphaBlendColors"][1]["location"] = "imgui_internal:363" +======= +defs["igImAlphaBlendColors"][1]["location"] = "imgui_internal:376" +>>>>>>> docking_inter defs["igImAlphaBlendColors"][1]["ov_cimguiname"] = "igImAlphaBlendColors" defs["igImAlphaBlendColors"][1]["ret"] = "ImU32" defs["igImAlphaBlendColors"][1]["signature"] = "(ImU32,ImU32)" @@ -17595,7 +22340,11 @@ defs["igImBezierCubicCalc"][1]["call_args"] = "(p1,p2,p3,p4,t)" defs["igImBezierCubicCalc"][1]["cimguiname"] = "igImBezierCubicCalc" defs["igImBezierCubicCalc"][1]["defaults"] = {} defs["igImBezierCubicCalc"][1]["funcname"] = "ImBezierCubicCalc" +<<<<<<< HEAD defs["igImBezierCubicCalc"][1]["location"] = "imgui_internal:497" +======= +defs["igImBezierCubicCalc"][1]["location"] = "imgui_internal:510" +>>>>>>> docking_inter defs["igImBezierCubicCalc"][1]["nonUDT"] = 1 defs["igImBezierCubicCalc"][1]["ov_cimguiname"] = "igImBezierCubicCalc" defs["igImBezierCubicCalc"][1]["ret"] = "void" @@ -17632,7 +22381,11 @@ defs["igImBezierCubicClosestPoint"][1]["call_args"] = "(p1,p2,p3,p4,p,num_segmen defs["igImBezierCubicClosestPoint"][1]["cimguiname"] = "igImBezierCubicClosestPoint" defs["igImBezierCubicClosestPoint"][1]["defaults"] = {} defs["igImBezierCubicClosestPoint"][1]["funcname"] = "ImBezierCubicClosestPoint" +<<<<<<< HEAD defs["igImBezierCubicClosestPoint"][1]["location"] = "imgui_internal:498" +======= +defs["igImBezierCubicClosestPoint"][1]["location"] = "imgui_internal:511" +>>>>>>> docking_inter defs["igImBezierCubicClosestPoint"][1]["nonUDT"] = 1 defs["igImBezierCubicClosestPoint"][1]["ov_cimguiname"] = "igImBezierCubicClosestPoint" defs["igImBezierCubicClosestPoint"][1]["ret"] = "void" @@ -17669,7 +22422,11 @@ defs["igImBezierCubicClosestPointCasteljau"][1]["call_args"] = "(p1,p2,p3,p4,p,t defs["igImBezierCubicClosestPointCasteljau"][1]["cimguiname"] = "igImBezierCubicClosestPointCasteljau" defs["igImBezierCubicClosestPointCasteljau"][1]["defaults"] = {} defs["igImBezierCubicClosestPointCasteljau"][1]["funcname"] = "ImBezierCubicClosestPointCasteljau" +<<<<<<< HEAD defs["igImBezierCubicClosestPointCasteljau"][1]["location"] = "imgui_internal:499" +======= +defs["igImBezierCubicClosestPointCasteljau"][1]["location"] = "imgui_internal:512" +>>>>>>> docking_inter defs["igImBezierCubicClosestPointCasteljau"][1]["nonUDT"] = 1 defs["igImBezierCubicClosestPointCasteljau"][1]["ov_cimguiname"] = "igImBezierCubicClosestPointCasteljau" defs["igImBezierCubicClosestPointCasteljau"][1]["ret"] = "void" @@ -17700,7 +22457,11 @@ defs["igImBezierQuadraticCalc"][1]["call_args"] = "(p1,p2,p3,t)" defs["igImBezierQuadraticCalc"][1]["cimguiname"] = "igImBezierQuadraticCalc" defs["igImBezierQuadraticCalc"][1]["defaults"] = {} defs["igImBezierQuadraticCalc"][1]["funcname"] = "ImBezierQuadraticCalc" +<<<<<<< HEAD defs["igImBezierQuadraticCalc"][1]["location"] = "imgui_internal:500" +======= +defs["igImBezierQuadraticCalc"][1]["location"] = "imgui_internal:513" +>>>>>>> docking_inter defs["igImBezierQuadraticCalc"][1]["nonUDT"] = 1 defs["igImBezierQuadraticCalc"][1]["ov_cimguiname"] = "igImBezierQuadraticCalc" defs["igImBezierQuadraticCalc"][1]["ret"] = "void" @@ -17722,7 +22483,11 @@ defs["igImBitArrayClearAllBits"][1]["call_args"] = "(arr,bitcount)" defs["igImBitArrayClearAllBits"][1]["cimguiname"] = "igImBitArrayClearAllBits" defs["igImBitArrayClearAllBits"][1]["defaults"] = {} defs["igImBitArrayClearAllBits"][1]["funcname"] = "ImBitArrayClearAllBits" +<<<<<<< HEAD defs["igImBitArrayClearAllBits"][1]["location"] = "imgui_internal:570" +======= +defs["igImBitArrayClearAllBits"][1]["location"] = "imgui_internal:583" +>>>>>>> docking_inter defs["igImBitArrayClearAllBits"][1]["ov_cimguiname"] = "igImBitArrayClearAllBits" defs["igImBitArrayClearAllBits"][1]["ret"] = "void" defs["igImBitArrayClearAllBits"][1]["signature"] = "(ImU32*,int)" @@ -17743,7 +22508,11 @@ defs["igImBitArrayClearBit"][1]["call_args"] = "(arr,n)" defs["igImBitArrayClearBit"][1]["cimguiname"] = "igImBitArrayClearBit" defs["igImBitArrayClearBit"][1]["defaults"] = {} defs["igImBitArrayClearBit"][1]["funcname"] = "ImBitArrayClearBit" +<<<<<<< HEAD defs["igImBitArrayClearBit"][1]["location"] = "imgui_internal:572" +======= +defs["igImBitArrayClearBit"][1]["location"] = "imgui_internal:585" +>>>>>>> docking_inter defs["igImBitArrayClearBit"][1]["ov_cimguiname"] = "igImBitArrayClearBit" defs["igImBitArrayClearBit"][1]["ret"] = "void" defs["igImBitArrayClearBit"][1]["signature"] = "(ImU32*,int)" @@ -17761,7 +22530,11 @@ defs["igImBitArrayGetStorageSizeInBytes"][1]["call_args"] = "(bitcount)" defs["igImBitArrayGetStorageSizeInBytes"][1]["cimguiname"] = "igImBitArrayGetStorageSizeInBytes" defs["igImBitArrayGetStorageSizeInBytes"][1]["defaults"] = {} defs["igImBitArrayGetStorageSizeInBytes"][1]["funcname"] = "ImBitArrayGetStorageSizeInBytes" +<<<<<<< HEAD defs["igImBitArrayGetStorageSizeInBytes"][1]["location"] = "imgui_internal:569" +======= +defs["igImBitArrayGetStorageSizeInBytes"][1]["location"] = "imgui_internal:582" +>>>>>>> docking_inter defs["igImBitArrayGetStorageSizeInBytes"][1]["ov_cimguiname"] = "igImBitArrayGetStorageSizeInBytes" defs["igImBitArrayGetStorageSizeInBytes"][1]["ret"] = "size_t" defs["igImBitArrayGetStorageSizeInBytes"][1]["signature"] = "(int)" @@ -17782,7 +22555,11 @@ defs["igImBitArraySetBit"][1]["call_args"] = "(arr,n)" defs["igImBitArraySetBit"][1]["cimguiname"] = "igImBitArraySetBit" defs["igImBitArraySetBit"][1]["defaults"] = {} defs["igImBitArraySetBit"][1]["funcname"] = "ImBitArraySetBit" +<<<<<<< HEAD defs["igImBitArraySetBit"][1]["location"] = "imgui_internal:573" +======= +defs["igImBitArraySetBit"][1]["location"] = "imgui_internal:586" +>>>>>>> docking_inter defs["igImBitArraySetBit"][1]["ov_cimguiname"] = "igImBitArraySetBit" defs["igImBitArraySetBit"][1]["ret"] = "void" defs["igImBitArraySetBit"][1]["signature"] = "(ImU32*,int)" @@ -17806,7 +22583,11 @@ defs["igImBitArraySetBitRange"][1]["call_args"] = "(arr,n,n2)" defs["igImBitArraySetBitRange"][1]["cimguiname"] = "igImBitArraySetBitRange" defs["igImBitArraySetBitRange"][1]["defaults"] = {} defs["igImBitArraySetBitRange"][1]["funcname"] = "ImBitArraySetBitRange" +<<<<<<< HEAD defs["igImBitArraySetBitRange"][1]["location"] = "imgui_internal:574" +======= +defs["igImBitArraySetBitRange"][1]["location"] = "imgui_internal:587" +>>>>>>> docking_inter defs["igImBitArraySetBitRange"][1]["ov_cimguiname"] = "igImBitArraySetBitRange" defs["igImBitArraySetBitRange"][1]["ret"] = "void" defs["igImBitArraySetBitRange"][1]["signature"] = "(ImU32*,int,int)" @@ -17827,7 +22608,11 @@ defs["igImBitArrayTestBit"][1]["call_args"] = "(arr,n)" defs["igImBitArrayTestBit"][1]["cimguiname"] = "igImBitArrayTestBit" defs["igImBitArrayTestBit"][1]["defaults"] = {} defs["igImBitArrayTestBit"][1]["funcname"] = "ImBitArrayTestBit" +<<<<<<< HEAD defs["igImBitArrayTestBit"][1]["location"] = "imgui_internal:571" +======= +defs["igImBitArrayTestBit"][1]["location"] = "imgui_internal:584" +>>>>>>> docking_inter defs["igImBitArrayTestBit"][1]["ov_cimguiname"] = "igImBitArrayTestBit" defs["igImBitArrayTestBit"][1]["ret"] = "bool" defs["igImBitArrayTestBit"][1]["signature"] = "(const ImU32*,int)" @@ -17845,7 +22630,11 @@ defs["igImCharIsBlankA"][1]["call_args"] = "(c)" defs["igImCharIsBlankA"][1]["cimguiname"] = "igImCharIsBlankA" defs["igImCharIsBlankA"][1]["defaults"] = {} defs["igImCharIsBlankA"][1]["funcname"] = "ImCharIsBlankA" +<<<<<<< HEAD defs["igImCharIsBlankA"][1]["location"] = "imgui_internal:385" +======= +defs["igImCharIsBlankA"][1]["location"] = "imgui_internal:398" +>>>>>>> docking_inter defs["igImCharIsBlankA"][1]["ov_cimguiname"] = "igImCharIsBlankA" defs["igImCharIsBlankA"][1]["ret"] = "bool" defs["igImCharIsBlankA"][1]["signature"] = "(char)" @@ -17863,7 +22652,11 @@ defs["igImCharIsBlankW"][1]["call_args"] = "(c)" defs["igImCharIsBlankW"][1]["cimguiname"] = "igImCharIsBlankW" defs["igImCharIsBlankW"][1]["defaults"] = {} defs["igImCharIsBlankW"][1]["funcname"] = "ImCharIsBlankW" +<<<<<<< HEAD defs["igImCharIsBlankW"][1]["location"] = "imgui_internal:386" +======= +defs["igImCharIsBlankW"][1]["location"] = "imgui_internal:399" +>>>>>>> docking_inter defs["igImCharIsBlankW"][1]["ov_cimguiname"] = "igImCharIsBlankW" defs["igImCharIsBlankW"][1]["ret"] = "bool" defs["igImCharIsBlankW"][1]["signature"] = "(unsigned int)" @@ -17890,7 +22683,11 @@ defs["igImClamp"][1]["call_args"] = "(v,mn,mx)" defs["igImClamp"][1]["cimguiname"] = "igImClamp" defs["igImClamp"][1]["defaults"] = {} defs["igImClamp"][1]["funcname"] = "ImClamp" +<<<<<<< HEAD defs["igImClamp"][1]["location"] = "imgui_internal:475" +======= +defs["igImClamp"][1]["location"] = "imgui_internal:488" +>>>>>>> docking_inter defs["igImClamp"][1]["nonUDT"] = 1 defs["igImClamp"][1]["ov_cimguiname"] = "igImClamp" defs["igImClamp"][1]["ret"] = "void" @@ -17912,7 +22709,11 @@ defs["igImDot"][1]["call_args"] = "(a,b)" defs["igImDot"][1]["cimguiname"] = "igImDot" defs["igImDot"][1]["defaults"] = {} defs["igImDot"][1]["funcname"] = "ImDot" +<<<<<<< HEAD defs["igImDot"][1]["location"] = "imgui_internal:488" +======= +defs["igImDot"][1]["location"] = "imgui_internal:501" +>>>>>>> docking_inter defs["igImDot"][1]["ov_cimguiname"] = "igImDot" defs["igImDot"][1]["ret"] = "float" defs["igImDot"][1]["signature"] = "(const ImVec2,const ImVec2)" @@ -17936,7 +22737,11 @@ defs["igImExponentialMovingAverage"][1]["call_args"] = "(avg,sample,n)" defs["igImExponentialMovingAverage"][1]["cimguiname"] = "igImExponentialMovingAverage" defs["igImExponentialMovingAverage"][1]["defaults"] = {} defs["igImExponentialMovingAverage"][1]["funcname"] = "ImExponentialMovingAverage" +<<<<<<< HEAD defs["igImExponentialMovingAverage"][1]["location"] = "imgui_internal:493" +======= +defs["igImExponentialMovingAverage"][1]["location"] = "imgui_internal:506" +>>>>>>> docking_inter defs["igImExponentialMovingAverage"][1]["ov_cimguiname"] = "igImExponentialMovingAverage" defs["igImExponentialMovingAverage"][1]["ret"] = "float" defs["igImExponentialMovingAverage"][1]["signature"] = "(float,float,int)" @@ -17954,7 +22759,11 @@ defs["igImFileClose"][1]["call_args"] = "(file)" defs["igImFileClose"][1]["cimguiname"] = "igImFileClose" defs["igImFileClose"][1]["defaults"] = {} defs["igImFileClose"][1]["funcname"] = "ImFileClose" +<<<<<<< HEAD defs["igImFileClose"][1]["location"] = "imgui_internal:425" +======= +defs["igImFileClose"][1]["location"] = "imgui_internal:438" +>>>>>>> docking_inter defs["igImFileClose"][1]["ov_cimguiname"] = "igImFileClose" defs["igImFileClose"][1]["ret"] = "bool" defs["igImFileClose"][1]["signature"] = "(ImFileHandle)" @@ -17972,7 +22781,11 @@ defs["igImFileGetSize"][1]["call_args"] = "(file)" defs["igImFileGetSize"][1]["cimguiname"] = "igImFileGetSize" defs["igImFileGetSize"][1]["defaults"] = {} defs["igImFileGetSize"][1]["funcname"] = "ImFileGetSize" +<<<<<<< HEAD defs["igImFileGetSize"][1]["location"] = "imgui_internal:426" +======= +defs["igImFileGetSize"][1]["location"] = "imgui_internal:439" +>>>>>>> docking_inter defs["igImFileGetSize"][1]["ov_cimguiname"] = "igImFileGetSize" defs["igImFileGetSize"][1]["ret"] = "ImU64" defs["igImFileGetSize"][1]["signature"] = "(ImFileHandle)" @@ -18001,7 +22814,11 @@ defs["igImFileLoadToMemory"][1]["defaults"] = {} defs["igImFileLoadToMemory"][1]["defaults"]["out_file_size"] = "NULL" defs["igImFileLoadToMemory"][1]["defaults"]["padding_bytes"] = "0" defs["igImFileLoadToMemory"][1]["funcname"] = "ImFileLoadToMemory" +<<<<<<< HEAD defs["igImFileLoadToMemory"][1]["location"] = "imgui_internal:432" +======= +defs["igImFileLoadToMemory"][1]["location"] = "imgui_internal:445" +>>>>>>> docking_inter defs["igImFileLoadToMemory"][1]["ov_cimguiname"] = "igImFileLoadToMemory" defs["igImFileLoadToMemory"][1]["ret"] = "void*" defs["igImFileLoadToMemory"][1]["signature"] = "(const char*,const char*,size_t*,int)" @@ -18022,7 +22839,11 @@ defs["igImFileOpen"][1]["call_args"] = "(filename,mode)" defs["igImFileOpen"][1]["cimguiname"] = "igImFileOpen" defs["igImFileOpen"][1]["defaults"] = {} defs["igImFileOpen"][1]["funcname"] = "ImFileOpen" +<<<<<<< HEAD defs["igImFileOpen"][1]["location"] = "imgui_internal:424" +======= +defs["igImFileOpen"][1]["location"] = "imgui_internal:437" +>>>>>>> docking_inter defs["igImFileOpen"][1]["ov_cimguiname"] = "igImFileOpen" defs["igImFileOpen"][1]["ret"] = "ImFileHandle" defs["igImFileOpen"][1]["signature"] = "(const char*,const char*)" @@ -18049,7 +22870,11 @@ defs["igImFileRead"][1]["call_args"] = "(data,size,count,file)" defs["igImFileRead"][1]["cimguiname"] = "igImFileRead" defs["igImFileRead"][1]["defaults"] = {} defs["igImFileRead"][1]["funcname"] = "ImFileRead" +<<<<<<< HEAD defs["igImFileRead"][1]["location"] = "imgui_internal:427" +======= +defs["igImFileRead"][1]["location"] = "imgui_internal:440" +>>>>>>> docking_inter defs["igImFileRead"][1]["ov_cimguiname"] = "igImFileRead" defs["igImFileRead"][1]["ret"] = "ImU64" defs["igImFileRead"][1]["signature"] = "(void*,ImU64,ImU64,ImFileHandle)" @@ -18076,7 +22901,11 @@ defs["igImFileWrite"][1]["call_args"] = "(data,size,count,file)" defs["igImFileWrite"][1]["cimguiname"] = "igImFileWrite" defs["igImFileWrite"][1]["defaults"] = {} defs["igImFileWrite"][1]["funcname"] = "ImFileWrite" +<<<<<<< HEAD defs["igImFileWrite"][1]["location"] = "imgui_internal:428" +======= +defs["igImFileWrite"][1]["location"] = "imgui_internal:441" +>>>>>>> docking_inter defs["igImFileWrite"][1]["ov_cimguiname"] = "igImFileWrite" defs["igImFileWrite"][1]["ret"] = "ImU64" defs["igImFileWrite"][1]["signature"] = "(const void*,ImU64,ImU64,ImFileHandle)" @@ -18094,7 +22923,11 @@ defs["igImFloor"][1]["call_args"] = "(f)" defs["igImFloor"][1]["cimguiname"] = "igImFloor" defs["igImFloor"][1]["defaults"] = {} defs["igImFloor"][1]["funcname"] = "ImFloor" +<<<<<<< HEAD defs["igImFloor"][1]["location"] = "imgui_internal:485" +======= +defs["igImFloor"][1]["location"] = "imgui_internal:498" +>>>>>>> docking_inter defs["igImFloor"][1]["ov_cimguiname"] = "igImFloor_Float" defs["igImFloor"][1]["ret"] = "float" defs["igImFloor"][1]["signature"] = "(float)" @@ -18113,7 +22946,11 @@ defs["igImFloor"][2]["call_args"] = "(v)" defs["igImFloor"][2]["cimguiname"] = "igImFloor" defs["igImFloor"][2]["defaults"] = {} defs["igImFloor"][2]["funcname"] = "ImFloor" +<<<<<<< HEAD defs["igImFloor"][2]["location"] = "imgui_internal:486" +======= +defs["igImFloor"][2]["location"] = "imgui_internal:499" +>>>>>>> docking_inter defs["igImFloor"][2]["nonUDT"] = 1 defs["igImFloor"][2]["ov_cimguiname"] = "igImFloor_Vec2" defs["igImFloor"][2]["ret"] = "void" @@ -18133,7 +22970,11 @@ defs["igImFontAtlasBuildFinish"][1]["call_args"] = "(atlas)" defs["igImFontAtlasBuildFinish"][1]["cimguiname"] = "igImFontAtlasBuildFinish" defs["igImFontAtlasBuildFinish"][1]["defaults"] = {} defs["igImFontAtlasBuildFinish"][1]["funcname"] = "ImFontAtlasBuildFinish" +<<<<<<< HEAD defs["igImFontAtlasBuildFinish"][1]["location"] = "imgui_internal:3572" +======= +defs["igImFontAtlasBuildFinish"][1]["location"] = "imgui_internal:3905" +>>>>>>> docking_inter defs["igImFontAtlasBuildFinish"][1]["ov_cimguiname"] = "igImFontAtlasBuildFinish" defs["igImFontAtlasBuildFinish"][1]["ret"] = "void" defs["igImFontAtlasBuildFinish"][1]["signature"] = "(ImFontAtlas*)" @@ -18151,7 +22992,11 @@ defs["igImFontAtlasBuildInit"][1]["call_args"] = "(atlas)" defs["igImFontAtlasBuildInit"][1]["cimguiname"] = "igImFontAtlasBuildInit" defs["igImFontAtlasBuildInit"][1]["defaults"] = {} defs["igImFontAtlasBuildInit"][1]["funcname"] = "ImFontAtlasBuildInit" +<<<<<<< HEAD defs["igImFontAtlasBuildInit"][1]["location"] = "imgui_internal:3569" +======= +defs["igImFontAtlasBuildInit"][1]["location"] = "imgui_internal:3902" +>>>>>>> docking_inter defs["igImFontAtlasBuildInit"][1]["ov_cimguiname"] = "igImFontAtlasBuildInit" defs["igImFontAtlasBuildInit"][1]["ret"] = "void" defs["igImFontAtlasBuildInit"][1]["signature"] = "(ImFontAtlas*)" @@ -18172,7 +23017,11 @@ defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["call_args"] = "(out_table, defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["cimguiname"] = "igImFontAtlasBuildMultiplyCalcLookupTable" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["defaults"] = {} defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["funcname"] = "ImFontAtlasBuildMultiplyCalcLookupTable" +<<<<<<< HEAD defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["location"] = "imgui_internal:3575" +======= +defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["location"] = "imgui_internal:3908" +>>>>>>> docking_inter defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ov_cimguiname"] = "igImFontAtlasBuildMultiplyCalcLookupTable" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ret"] = "void" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["signature"] = "(unsigned char[256],float)" @@ -18208,7 +23057,11 @@ defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["call_args"] = "(table,pixels,x, defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["cimguiname"] = "igImFontAtlasBuildMultiplyRectAlpha8" defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["defaults"] = {} defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["funcname"] = "ImFontAtlasBuildMultiplyRectAlpha8" +<<<<<<< HEAD defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["location"] = "imgui_internal:3576" +======= +defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["location"] = "imgui_internal:3909" +>>>>>>> docking_inter defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["ov_cimguiname"] = "igImFontAtlasBuildMultiplyRectAlpha8" defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["ret"] = "void" defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["signature"] = "(const unsigned char[256],unsigned char*,int,int,int,int,int)" @@ -18229,7 +23082,11 @@ defs["igImFontAtlasBuildPackCustomRects"][1]["call_args"] = "(atlas,stbrp_contex defs["igImFontAtlasBuildPackCustomRects"][1]["cimguiname"] = "igImFontAtlasBuildPackCustomRects" defs["igImFontAtlasBuildPackCustomRects"][1]["defaults"] = {} defs["igImFontAtlasBuildPackCustomRects"][1]["funcname"] = "ImFontAtlasBuildPackCustomRects" +<<<<<<< HEAD defs["igImFontAtlasBuildPackCustomRects"][1]["location"] = "imgui_internal:3571" +======= +defs["igImFontAtlasBuildPackCustomRects"][1]["location"] = "imgui_internal:3904" +>>>>>>> docking_inter defs["igImFontAtlasBuildPackCustomRects"][1]["ov_cimguiname"] = "igImFontAtlasBuildPackCustomRects" defs["igImFontAtlasBuildPackCustomRects"][1]["ret"] = "void" defs["igImFontAtlasBuildPackCustomRects"][1]["signature"] = "(ImFontAtlas*,void*)" @@ -18268,7 +23125,11 @@ defs["igImFontAtlasBuildRender32bppRectFromString"][1]["call_args"] = "(atlas,x, defs["igImFontAtlasBuildRender32bppRectFromString"][1]["cimguiname"] = "igImFontAtlasBuildRender32bppRectFromString" defs["igImFontAtlasBuildRender32bppRectFromString"][1]["defaults"] = {} defs["igImFontAtlasBuildRender32bppRectFromString"][1]["funcname"] = "ImFontAtlasBuildRender32bppRectFromString" +<<<<<<< HEAD defs["igImFontAtlasBuildRender32bppRectFromString"][1]["location"] = "imgui_internal:3574" +======= +defs["igImFontAtlasBuildRender32bppRectFromString"][1]["location"] = "imgui_internal:3907" +>>>>>>> docking_inter defs["igImFontAtlasBuildRender32bppRectFromString"][1]["ov_cimguiname"] = "igImFontAtlasBuildRender32bppRectFromString" defs["igImFontAtlasBuildRender32bppRectFromString"][1]["ret"] = "void" defs["igImFontAtlasBuildRender32bppRectFromString"][1]["signature"] = "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned int)" @@ -18307,7 +23168,11 @@ defs["igImFontAtlasBuildRender8bppRectFromString"][1]["call_args"] = "(atlas,x,y defs["igImFontAtlasBuildRender8bppRectFromString"][1]["cimguiname"] = "igImFontAtlasBuildRender8bppRectFromString" defs["igImFontAtlasBuildRender8bppRectFromString"][1]["defaults"] = {} defs["igImFontAtlasBuildRender8bppRectFromString"][1]["funcname"] = "ImFontAtlasBuildRender8bppRectFromString" +<<<<<<< HEAD defs["igImFontAtlasBuildRender8bppRectFromString"][1]["location"] = "imgui_internal:3573" +======= +defs["igImFontAtlasBuildRender8bppRectFromString"][1]["location"] = "imgui_internal:3906" +>>>>>>> docking_inter defs["igImFontAtlasBuildRender8bppRectFromString"][1]["ov_cimguiname"] = "igImFontAtlasBuildRender8bppRectFromString" defs["igImFontAtlasBuildRender8bppRectFromString"][1]["ret"] = "void" defs["igImFontAtlasBuildRender8bppRectFromString"][1]["signature"] = "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned char)" @@ -18337,7 +23202,11 @@ defs["igImFontAtlasBuildSetupFont"][1]["call_args"] = "(atlas,font,font_config,a defs["igImFontAtlasBuildSetupFont"][1]["cimguiname"] = "igImFontAtlasBuildSetupFont" defs["igImFontAtlasBuildSetupFont"][1]["defaults"] = {} defs["igImFontAtlasBuildSetupFont"][1]["funcname"] = "ImFontAtlasBuildSetupFont" +<<<<<<< HEAD defs["igImFontAtlasBuildSetupFont"][1]["location"] = "imgui_internal:3570" +======= +defs["igImFontAtlasBuildSetupFont"][1]["location"] = "imgui_internal:3903" +>>>>>>> docking_inter defs["igImFontAtlasBuildSetupFont"][1]["ov_cimguiname"] = "igImFontAtlasBuildSetupFont" defs["igImFontAtlasBuildSetupFont"][1]["ret"] = "void" defs["igImFontAtlasBuildSetupFont"][1]["signature"] = "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)" @@ -18352,7 +23221,11 @@ defs["igImFontAtlasGetBuilderForStbTruetype"][1]["call_args"] = "()" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["cimguiname"] = "igImFontAtlasGetBuilderForStbTruetype" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["defaults"] = {} defs["igImFontAtlasGetBuilderForStbTruetype"][1]["funcname"] = "ImFontAtlasGetBuilderForStbTruetype" +<<<<<<< HEAD defs["igImFontAtlasGetBuilderForStbTruetype"][1]["location"] = "imgui_internal:3566" +======= +defs["igImFontAtlasGetBuilderForStbTruetype"][1]["location"] = "imgui_internal:3899" +>>>>>>> docking_inter defs["igImFontAtlasGetBuilderForStbTruetype"][1]["ov_cimguiname"] = "igImFontAtlasGetBuilderForStbTruetype" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["ret"] = "const ImFontBuilderIO*" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["signature"] = "()" @@ -18370,7 +23243,11 @@ defs["igImFontAtlasUpdateConfigDataPointers"][1]["call_args"] = "(atlas)" defs["igImFontAtlasUpdateConfigDataPointers"][1]["cimguiname"] = "igImFontAtlasUpdateConfigDataPointers" defs["igImFontAtlasUpdateConfigDataPointers"][1]["defaults"] = {} defs["igImFontAtlasUpdateConfigDataPointers"][1]["funcname"] = "ImFontAtlasUpdateConfigDataPointers" +<<<<<<< HEAD defs["igImFontAtlasUpdateConfigDataPointers"][1]["location"] = "imgui_internal:3568" +======= +defs["igImFontAtlasUpdateConfigDataPointers"][1]["location"] = "imgui_internal:3901" +>>>>>>> docking_inter defs["igImFontAtlasUpdateConfigDataPointers"][1]["ov_cimguiname"] = "igImFontAtlasUpdateConfigDataPointers" defs["igImFontAtlasUpdateConfigDataPointers"][1]["ret"] = "void" defs["igImFontAtlasUpdateConfigDataPointers"][1]["signature"] = "(ImFontAtlas*)" @@ -18398,7 +23275,11 @@ defs["igImFormatString"][1]["cimguiname"] = "igImFormatString" defs["igImFormatString"][1]["defaults"] = {} defs["igImFormatString"][1]["funcname"] = "ImFormatString" defs["igImFormatString"][1]["isvararg"] = "...)" +<<<<<<< HEAD defs["igImFormatString"][1]["location"] = "imgui_internal:390" +======= +defs["igImFormatString"][1]["location"] = "imgui_internal:403" +>>>>>>> docking_inter defs["igImFormatString"][1]["ov_cimguiname"] = "igImFormatString" defs["igImFormatString"][1]["ret"] = "int" defs["igImFormatString"][1]["signature"] = "(char*,size_t,const char*,...)" @@ -18426,7 +23307,11 @@ defs["igImFormatStringToTempBuffer"][1]["cimguiname"] = "igImFormatStringToTempB defs["igImFormatStringToTempBuffer"][1]["defaults"] = {} defs["igImFormatStringToTempBuffer"][1]["funcname"] = "ImFormatStringToTempBuffer" defs["igImFormatStringToTempBuffer"][1]["isvararg"] = "...)" +<<<<<<< HEAD defs["igImFormatStringToTempBuffer"][1]["location"] = "imgui_internal:392" +======= +defs["igImFormatStringToTempBuffer"][1]["location"] = "imgui_internal:405" +>>>>>>> docking_inter defs["igImFormatStringToTempBuffer"][1]["ov_cimguiname"] = "igImFormatStringToTempBuffer" defs["igImFormatStringToTempBuffer"][1]["ret"] = "void" defs["igImFormatStringToTempBuffer"][1]["signature"] = "(const char**,const char**,const char*,...)" @@ -18453,7 +23338,11 @@ defs["igImFormatStringToTempBufferV"][1]["call_args"] = "(out_buf,out_buf_end,fm defs["igImFormatStringToTempBufferV"][1]["cimguiname"] = "igImFormatStringToTempBufferV" defs["igImFormatStringToTempBufferV"][1]["defaults"] = {} defs["igImFormatStringToTempBufferV"][1]["funcname"] = "ImFormatStringToTempBufferV" +<<<<<<< HEAD defs["igImFormatStringToTempBufferV"][1]["location"] = "imgui_internal:393" +======= +defs["igImFormatStringToTempBufferV"][1]["location"] = "imgui_internal:406" +>>>>>>> docking_inter defs["igImFormatStringToTempBufferV"][1]["ov_cimguiname"] = "igImFormatStringToTempBufferV" defs["igImFormatStringToTempBufferV"][1]["ret"] = "void" defs["igImFormatStringToTempBufferV"][1]["signature"] = "(const char**,const char**,const char*,va_list)" @@ -18480,7 +23369,11 @@ defs["igImFormatStringV"][1]["call_args"] = "(buf,buf_size,fmt,args)" defs["igImFormatStringV"][1]["cimguiname"] = "igImFormatStringV" defs["igImFormatStringV"][1]["defaults"] = {} defs["igImFormatStringV"][1]["funcname"] = "ImFormatStringV" +<<<<<<< HEAD defs["igImFormatStringV"][1]["location"] = "imgui_internal:391" +======= +defs["igImFormatStringV"][1]["location"] = "imgui_internal:404" +>>>>>>> docking_inter defs["igImFormatStringV"][1]["ov_cimguiname"] = "igImFormatStringV" defs["igImFormatStringV"][1]["ret"] = "int" defs["igImFormatStringV"][1]["signature"] = "(char*,size_t,const char*,va_list)" @@ -18505,7 +23398,11 @@ defs["igImHashData"][1]["cimguiname"] = "igImHashData" defs["igImHashData"][1]["defaults"] = {} defs["igImHashData"][1]["defaults"]["seed"] = "0" defs["igImHashData"][1]["funcname"] = "ImHashData" +<<<<<<< HEAD defs["igImHashData"][1]["location"] = "imgui_internal:354" +======= +defs["igImHashData"][1]["location"] = "imgui_internal:367" +>>>>>>> docking_inter defs["igImHashData"][1]["ov_cimguiname"] = "igImHashData" defs["igImHashData"][1]["ret"] = "ImGuiID" defs["igImHashData"][1]["signature"] = "(const void*,size_t,ImGuiID)" @@ -18531,7 +23428,11 @@ defs["igImHashStr"][1]["defaults"] = {} defs["igImHashStr"][1]["defaults"]["data_size"] = "0" defs["igImHashStr"][1]["defaults"]["seed"] = "0" defs["igImHashStr"][1]["funcname"] = "ImHashStr" +<<<<<<< HEAD defs["igImHashStr"][1]["location"] = "imgui_internal:355" +======= +defs["igImHashStr"][1]["location"] = "imgui_internal:368" +>>>>>>> docking_inter defs["igImHashStr"][1]["ov_cimguiname"] = "igImHashStr" defs["igImHashStr"][1]["ret"] = "ImGuiID" defs["igImHashStr"][1]["signature"] = "(const char*,size_t,ImGuiID)" @@ -18552,7 +23453,11 @@ defs["igImInvLength"][1]["call_args"] = "(lhs,fail_value)" defs["igImInvLength"][1]["cimguiname"] = "igImInvLength" defs["igImInvLength"][1]["defaults"] = {} defs["igImInvLength"][1]["funcname"] = "ImInvLength" +<<<<<<< HEAD defs["igImInvLength"][1]["location"] = "imgui_internal:482" +======= +defs["igImInvLength"][1]["location"] = "imgui_internal:495" +>>>>>>> docking_inter defs["igImInvLength"][1]["ov_cimguiname"] = "igImInvLength" defs["igImInvLength"][1]["ret"] = "float" defs["igImInvLength"][1]["signature"] = "(const ImVec2,float)" @@ -18570,7 +23475,11 @@ defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["call_args"] = "(f)" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["cimguiname"] = "igImIsFloatAboveGuaranteedIntegerPrecision" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["defaults"] = {} defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["funcname"] = "ImIsFloatAboveGuaranteedIntegerPrecision" +<<<<<<< HEAD defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["location"] = "imgui_internal:492" +======= +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["location"] = "imgui_internal:505" +>>>>>>> docking_inter defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["ov_cimguiname"] = "igImIsFloatAboveGuaranteedIntegerPrecision" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["ret"] = "bool" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["signature"] = "(float)" @@ -18588,7 +23497,11 @@ defs["igImIsPowerOfTwo"][1]["call_args"] = "(v)" defs["igImIsPowerOfTwo"][1]["cimguiname"] = "igImIsPowerOfTwo" defs["igImIsPowerOfTwo"][1]["defaults"] = {} defs["igImIsPowerOfTwo"][1]["funcname"] = "ImIsPowerOfTwo" +<<<<<<< HEAD defs["igImIsPowerOfTwo"][1]["location"] = "imgui_internal:366" +======= +defs["igImIsPowerOfTwo"][1]["location"] = "imgui_internal:379" +>>>>>>> docking_inter defs["igImIsPowerOfTwo"][1]["ov_cimguiname"] = "igImIsPowerOfTwo_Int" defs["igImIsPowerOfTwo"][1]["ret"] = "bool" defs["igImIsPowerOfTwo"][1]["signature"] = "(int)" @@ -18604,7 +23517,11 @@ defs["igImIsPowerOfTwo"][2]["call_args"] = "(v)" defs["igImIsPowerOfTwo"][2]["cimguiname"] = "igImIsPowerOfTwo" defs["igImIsPowerOfTwo"][2]["defaults"] = {} defs["igImIsPowerOfTwo"][2]["funcname"] = "ImIsPowerOfTwo" +<<<<<<< HEAD defs["igImIsPowerOfTwo"][2]["location"] = "imgui_internal:367" +======= +defs["igImIsPowerOfTwo"][2]["location"] = "imgui_internal:380" +>>>>>>> docking_inter defs["igImIsPowerOfTwo"][2]["ov_cimguiname"] = "igImIsPowerOfTwo_U64" defs["igImIsPowerOfTwo"][2]["ret"] = "bool" defs["igImIsPowerOfTwo"][2]["signature"] = "(ImU64)" @@ -18623,7 +23540,11 @@ defs["igImLengthSqr"][1]["call_args"] = "(lhs)" defs["igImLengthSqr"][1]["cimguiname"] = "igImLengthSqr" defs["igImLengthSqr"][1]["defaults"] = {} defs["igImLengthSqr"][1]["funcname"] = "ImLengthSqr" +<<<<<<< HEAD defs["igImLengthSqr"][1]["location"] = "imgui_internal:480" +======= +defs["igImLengthSqr"][1]["location"] = "imgui_internal:493" +>>>>>>> docking_inter defs["igImLengthSqr"][1]["ov_cimguiname"] = "igImLengthSqr_Vec2" defs["igImLengthSqr"][1]["ret"] = "float" defs["igImLengthSqr"][1]["signature"] = "(const ImVec2)" @@ -18639,7 +23560,11 @@ defs["igImLengthSqr"][2]["call_args"] = "(lhs)" defs["igImLengthSqr"][2]["cimguiname"] = "igImLengthSqr" defs["igImLengthSqr"][2]["defaults"] = {} defs["igImLengthSqr"][2]["funcname"] = "ImLengthSqr" +<<<<<<< HEAD defs["igImLengthSqr"][2]["location"] = "imgui_internal:481" +======= +defs["igImLengthSqr"][2]["location"] = "imgui_internal:494" +>>>>>>> docking_inter defs["igImLengthSqr"][2]["ov_cimguiname"] = "igImLengthSqr_Vec4" defs["igImLengthSqr"][2]["ret"] = "float" defs["igImLengthSqr"][2]["signature"] = "(const ImVec4)" @@ -18667,7 +23592,11 @@ defs["igImLerp"][1]["call_args"] = "(a,b,t)" defs["igImLerp"][1]["cimguiname"] = "igImLerp" defs["igImLerp"][1]["defaults"] = {} defs["igImLerp"][1]["funcname"] = "ImLerp" +<<<<<<< HEAD defs["igImLerp"][1]["location"] = "imgui_internal:476" +======= +defs["igImLerp"][1]["location"] = "imgui_internal:489" +>>>>>>> docking_inter defs["igImLerp"][1]["nonUDT"] = 1 defs["igImLerp"][1]["ov_cimguiname"] = "igImLerp_Vec2Float" defs["igImLerp"][1]["ret"] = "void" @@ -18693,7 +23622,11 @@ defs["igImLerp"][2]["call_args"] = "(a,b,t)" defs["igImLerp"][2]["cimguiname"] = "igImLerp" defs["igImLerp"][2]["defaults"] = {} defs["igImLerp"][2]["funcname"] = "ImLerp" +<<<<<<< HEAD defs["igImLerp"][2]["location"] = "imgui_internal:477" +======= +defs["igImLerp"][2]["location"] = "imgui_internal:490" +>>>>>>> docking_inter defs["igImLerp"][2]["nonUDT"] = 1 defs["igImLerp"][2]["ov_cimguiname"] = "igImLerp_Vec2Vec2" defs["igImLerp"][2]["ret"] = "void" @@ -18719,7 +23652,11 @@ defs["igImLerp"][3]["call_args"] = "(a,b,t)" defs["igImLerp"][3]["cimguiname"] = "igImLerp" defs["igImLerp"][3]["defaults"] = {} defs["igImLerp"][3]["funcname"] = "ImLerp" +<<<<<<< HEAD defs["igImLerp"][3]["location"] = "imgui_internal:478" +======= +defs["igImLerp"][3]["location"] = "imgui_internal:491" +>>>>>>> docking_inter defs["igImLerp"][3]["nonUDT"] = 1 defs["igImLerp"][3]["ov_cimguiname"] = "igImLerp_Vec4" defs["igImLerp"][3]["ret"] = "void" @@ -18749,7 +23686,11 @@ defs["igImLineClosestPoint"][1]["call_args"] = "(a,b,p)" defs["igImLineClosestPoint"][1]["cimguiname"] = "igImLineClosestPoint" defs["igImLineClosestPoint"][1]["defaults"] = {} defs["igImLineClosestPoint"][1]["funcname"] = "ImLineClosestPoint" +<<<<<<< HEAD defs["igImLineClosestPoint"][1]["location"] = "imgui_internal:501" +======= +defs["igImLineClosestPoint"][1]["location"] = "imgui_internal:514" +>>>>>>> docking_inter defs["igImLineClosestPoint"][1]["nonUDT"] = 1 defs["igImLineClosestPoint"][1]["ov_cimguiname"] = "igImLineClosestPoint" defs["igImLineClosestPoint"][1]["ret"] = "void" @@ -18774,7 +23715,11 @@ defs["igImLinearSweep"][1]["call_args"] = "(current,target,speed)" defs["igImLinearSweep"][1]["cimguiname"] = "igImLinearSweep" defs["igImLinearSweep"][1]["defaults"] = {} defs["igImLinearSweep"][1]["funcname"] = "ImLinearSweep" +<<<<<<< HEAD defs["igImLinearSweep"][1]["location"] = "imgui_internal:490" +======= +defs["igImLinearSweep"][1]["location"] = "imgui_internal:503" +>>>>>>> docking_inter defs["igImLinearSweep"][1]["ov_cimguiname"] = "igImLinearSweep" defs["igImLinearSweep"][1]["ret"] = "float" defs["igImLinearSweep"][1]["signature"] = "(float,float,float)" @@ -18792,7 +23737,11 @@ defs["igImLog"][1]["call_args"] = "(x)" defs["igImLog"][1]["cimguiname"] = "igImLog" defs["igImLog"][1]["defaults"] = {} defs["igImLog"][1]["funcname"] = "ImLog" +<<<<<<< HEAD defs["igImLog"][1]["location"] = "imgui_internal:449" +======= +defs["igImLog"][1]["location"] = "imgui_internal:462" +>>>>>>> docking_inter defs["igImLog"][1]["ov_cimguiname"] = "igImLog_Float" defs["igImLog"][1]["ret"] = "float" defs["igImLog"][1]["signature"] = "(float)" @@ -18808,13 +23757,41 @@ defs["igImLog"][2]["call_args"] = "(x)" defs["igImLog"][2]["cimguiname"] = "igImLog" defs["igImLog"][2]["defaults"] = {} defs["igImLog"][2]["funcname"] = "ImLog" +<<<<<<< HEAD defs["igImLog"][2]["location"] = "imgui_internal:450" +======= +defs["igImLog"][2]["location"] = "imgui_internal:463" +>>>>>>> docking_inter defs["igImLog"][2]["ov_cimguiname"] = "igImLog_double" defs["igImLog"][2]["ret"] = "double" defs["igImLog"][2]["signature"] = "(double)" defs["igImLog"][2]["stname"] = "" defs["igImLog"]["(double)"] = defs["igImLog"][2] defs["igImLog"]["(float)"] = defs["igImLog"][1] +defs["igImLowerBound"] = {} +defs["igImLowerBound"][1] = {} +defs["igImLowerBound"][1]["args"] = "(ImGuiStoragePair* in_begin,ImGuiStoragePair* in_end,ImGuiID key)" +defs["igImLowerBound"][1]["argsT"] = {} +defs["igImLowerBound"][1]["argsT"][1] = {} +defs["igImLowerBound"][1]["argsT"][1]["name"] = "in_begin" +defs["igImLowerBound"][1]["argsT"][1]["type"] = "ImGuiStoragePair*" +defs["igImLowerBound"][1]["argsT"][2] = {} +defs["igImLowerBound"][1]["argsT"][2]["name"] = "in_end" +defs["igImLowerBound"][1]["argsT"][2]["type"] = "ImGuiStoragePair*" +defs["igImLowerBound"][1]["argsT"][3] = {} +defs["igImLowerBound"][1]["argsT"][3]["name"] = "key" +defs["igImLowerBound"][1]["argsT"][3]["type"] = "ImGuiID" +defs["igImLowerBound"][1]["argsoriginal"] = "(ImGuiStoragePair* in_begin,ImGuiStoragePair* in_end,ImGuiID key)" +defs["igImLowerBound"][1]["call_args"] = "(in_begin,in_end,key)" +defs["igImLowerBound"][1]["cimguiname"] = "igImLowerBound" +defs["igImLowerBound"][1]["defaults"] = {} +defs["igImLowerBound"][1]["funcname"] = "ImLowerBound" +defs["igImLowerBound"][1]["location"] = "imgui_internal:753" +defs["igImLowerBound"][1]["ov_cimguiname"] = "igImLowerBound" +defs["igImLowerBound"][1]["ret"] = "ImGuiStoragePair*" +defs["igImLowerBound"][1]["signature"] = "(ImGuiStoragePair*,ImGuiStoragePair*,ImGuiID)" +defs["igImLowerBound"][1]["stname"] = "" +defs["igImLowerBound"]["(ImGuiStoragePair*,ImGuiStoragePair*,ImGuiID)"] = defs["igImLowerBound"][1] defs["igImMax"] = {} defs["igImMax"][1] = {} defs["igImMax"][1]["args"] = "(ImVec2 *pOut,const ImVec2 lhs,const ImVec2 rhs)" @@ -18833,7 +23810,11 @@ defs["igImMax"][1]["call_args"] = "(lhs,rhs)" defs["igImMax"][1]["cimguiname"] = "igImMax" defs["igImMax"][1]["defaults"] = {} defs["igImMax"][1]["funcname"] = "ImMax" +<<<<<<< HEAD defs["igImMax"][1]["location"] = "imgui_internal:474" +======= +defs["igImMax"][1]["location"] = "imgui_internal:487" +>>>>>>> docking_inter defs["igImMax"][1]["nonUDT"] = 1 defs["igImMax"][1]["ov_cimguiname"] = "igImMax" defs["igImMax"][1]["ret"] = "void" @@ -18858,7 +23839,11 @@ defs["igImMin"][1]["call_args"] = "(lhs,rhs)" defs["igImMin"][1]["cimguiname"] = "igImMin" defs["igImMin"][1]["defaults"] = {} defs["igImMin"][1]["funcname"] = "ImMin" +<<<<<<< HEAD defs["igImMin"][1]["location"] = "imgui_internal:473" +======= +defs["igImMin"][1]["location"] = "imgui_internal:486" +>>>>>>> docking_inter defs["igImMin"][1]["nonUDT"] = 1 defs["igImMin"][1]["ov_cimguiname"] = "igImMin" defs["igImMin"][1]["ret"] = "void" @@ -18880,7 +23865,11 @@ defs["igImModPositive"][1]["call_args"] = "(a,b)" defs["igImModPositive"][1]["cimguiname"] = "igImModPositive" defs["igImModPositive"][1]["defaults"] = {} defs["igImModPositive"][1]["funcname"] = "ImModPositive" +<<<<<<< HEAD defs["igImModPositive"][1]["location"] = "imgui_internal:487" +======= +defs["igImModPositive"][1]["location"] = "imgui_internal:500" +>>>>>>> docking_inter defs["igImModPositive"][1]["ov_cimguiname"] = "igImModPositive" defs["igImModPositive"][1]["ret"] = "int" defs["igImModPositive"][1]["signature"] = "(int,int)" @@ -18904,7 +23893,11 @@ defs["igImMul"][1]["call_args"] = "(lhs,rhs)" defs["igImMul"][1]["cimguiname"] = "igImMul" defs["igImMul"][1]["defaults"] = {} defs["igImMul"][1]["funcname"] = "ImMul" +<<<<<<< HEAD defs["igImMul"][1]["location"] = "imgui_internal:491" +======= +defs["igImMul"][1]["location"] = "imgui_internal:504" +>>>>>>> docking_inter defs["igImMul"][1]["nonUDT"] = 1 defs["igImMul"][1]["ov_cimguiname"] = "igImMul" defs["igImMul"][1]["ret"] = "void" @@ -18923,7 +23916,11 @@ defs["igImParseFormatFindEnd"][1]["call_args"] = "(format)" defs["igImParseFormatFindEnd"][1]["cimguiname"] = "igImParseFormatFindEnd" defs["igImParseFormatFindEnd"][1]["defaults"] = {} defs["igImParseFormatFindEnd"][1]["funcname"] = "ImParseFormatFindEnd" +<<<<<<< HEAD defs["igImParseFormatFindEnd"][1]["location"] = "imgui_internal:395" +======= +defs["igImParseFormatFindEnd"][1]["location"] = "imgui_internal:408" +>>>>>>> docking_inter defs["igImParseFormatFindEnd"][1]["ov_cimguiname"] = "igImParseFormatFindEnd" defs["igImParseFormatFindEnd"][1]["ret"] = "const char*" defs["igImParseFormatFindEnd"][1]["signature"] = "(const char*)" @@ -18941,7 +23938,11 @@ defs["igImParseFormatFindStart"][1]["call_args"] = "(format)" defs["igImParseFormatFindStart"][1]["cimguiname"] = "igImParseFormatFindStart" defs["igImParseFormatFindStart"][1]["defaults"] = {} defs["igImParseFormatFindStart"][1]["funcname"] = "ImParseFormatFindStart" +<<<<<<< HEAD defs["igImParseFormatFindStart"][1]["location"] = "imgui_internal:394" +======= +defs["igImParseFormatFindStart"][1]["location"] = "imgui_internal:407" +>>>>>>> docking_inter defs["igImParseFormatFindStart"][1]["ov_cimguiname"] = "igImParseFormatFindStart" defs["igImParseFormatFindStart"][1]["ret"] = "const char*" defs["igImParseFormatFindStart"][1]["signature"] = "(const char*)" @@ -18962,7 +23963,11 @@ defs["igImParseFormatPrecision"][1]["call_args"] = "(format,default_value)" defs["igImParseFormatPrecision"][1]["cimguiname"] = "igImParseFormatPrecision" defs["igImParseFormatPrecision"][1]["defaults"] = {} defs["igImParseFormatPrecision"][1]["funcname"] = "ImParseFormatPrecision" +<<<<<<< HEAD defs["igImParseFormatPrecision"][1]["location"] = "imgui_internal:399" +======= +defs["igImParseFormatPrecision"][1]["location"] = "imgui_internal:412" +>>>>>>> docking_inter defs["igImParseFormatPrecision"][1]["ov_cimguiname"] = "igImParseFormatPrecision" defs["igImParseFormatPrecision"][1]["ret"] = "int" defs["igImParseFormatPrecision"][1]["signature"] = "(const char*,int)" @@ -18986,7 +23991,11 @@ defs["igImParseFormatSanitizeForPrinting"][1]["call_args"] = "(fmt_in,fmt_out,fm defs["igImParseFormatSanitizeForPrinting"][1]["cimguiname"] = "igImParseFormatSanitizeForPrinting" defs["igImParseFormatSanitizeForPrinting"][1]["defaults"] = {} defs["igImParseFormatSanitizeForPrinting"][1]["funcname"] = "ImParseFormatSanitizeForPrinting" +<<<<<<< HEAD defs["igImParseFormatSanitizeForPrinting"][1]["location"] = "imgui_internal:397" +======= +defs["igImParseFormatSanitizeForPrinting"][1]["location"] = "imgui_internal:410" +>>>>>>> docking_inter defs["igImParseFormatSanitizeForPrinting"][1]["ov_cimguiname"] = "igImParseFormatSanitizeForPrinting" defs["igImParseFormatSanitizeForPrinting"][1]["ret"] = "void" defs["igImParseFormatSanitizeForPrinting"][1]["signature"] = "(const char*,char*,size_t)" @@ -19010,7 +24019,11 @@ defs["igImParseFormatSanitizeForScanning"][1]["call_args"] = "(fmt_in,fmt_out,fm defs["igImParseFormatSanitizeForScanning"][1]["cimguiname"] = "igImParseFormatSanitizeForScanning" defs["igImParseFormatSanitizeForScanning"][1]["defaults"] = {} defs["igImParseFormatSanitizeForScanning"][1]["funcname"] = "ImParseFormatSanitizeForScanning" +<<<<<<< HEAD defs["igImParseFormatSanitizeForScanning"][1]["location"] = "imgui_internal:398" +======= +defs["igImParseFormatSanitizeForScanning"][1]["location"] = "imgui_internal:411" +>>>>>>> docking_inter defs["igImParseFormatSanitizeForScanning"][1]["ov_cimguiname"] = "igImParseFormatSanitizeForScanning" defs["igImParseFormatSanitizeForScanning"][1]["ret"] = "const char*" defs["igImParseFormatSanitizeForScanning"][1]["signature"] = "(const char*,char*,size_t)" @@ -19034,7 +24047,11 @@ defs["igImParseFormatTrimDecorations"][1]["call_args"] = "(format,buf,buf_size)" defs["igImParseFormatTrimDecorations"][1]["cimguiname"] = "igImParseFormatTrimDecorations" defs["igImParseFormatTrimDecorations"][1]["defaults"] = {} defs["igImParseFormatTrimDecorations"][1]["funcname"] = "ImParseFormatTrimDecorations" +<<<<<<< HEAD defs["igImParseFormatTrimDecorations"][1]["location"] = "imgui_internal:396" +======= +defs["igImParseFormatTrimDecorations"][1]["location"] = "imgui_internal:409" +>>>>>>> docking_inter defs["igImParseFormatTrimDecorations"][1]["ov_cimguiname"] = "igImParseFormatTrimDecorations" defs["igImParseFormatTrimDecorations"][1]["ret"] = "const char*" defs["igImParseFormatTrimDecorations"][1]["signature"] = "(const char*,char*,size_t)" @@ -19055,7 +24072,11 @@ defs["igImPow"][1]["call_args"] = "(x,y)" defs["igImPow"][1]["cimguiname"] = "igImPow" defs["igImPow"][1]["defaults"] = {} defs["igImPow"][1]["funcname"] = "ImPow" +<<<<<<< HEAD defs["igImPow"][1]["location"] = "imgui_internal:447" +======= +defs["igImPow"][1]["location"] = "imgui_internal:460" +>>>>>>> docking_inter defs["igImPow"][1]["ov_cimguiname"] = "igImPow_Float" defs["igImPow"][1]["ret"] = "float" defs["igImPow"][1]["signature"] = "(float,float)" @@ -19074,7 +24095,11 @@ defs["igImPow"][2]["call_args"] = "(x,y)" defs["igImPow"][2]["cimguiname"] = "igImPow" defs["igImPow"][2]["defaults"] = {} defs["igImPow"][2]["funcname"] = "ImPow" +<<<<<<< HEAD defs["igImPow"][2]["location"] = "imgui_internal:448" +======= +defs["igImPow"][2]["location"] = "imgui_internal:461" +>>>>>>> docking_inter defs["igImPow"][2]["ov_cimguiname"] = "igImPow_double" defs["igImPow"][2]["ret"] = "double" defs["igImPow"][2]["signature"] = "(double,double)" @@ -19104,7 +24129,11 @@ defs["igImQsort"][1]["call_args"] = "(base,count,size_of_element,compare_func)" defs["igImQsort"][1]["cimguiname"] = "igImQsort" defs["igImQsort"][1]["defaults"] = {} defs["igImQsort"][1]["funcname"] = "ImQsort" +<<<<<<< HEAD defs["igImQsort"][1]["location"] = "imgui_internal:359" +======= +defs["igImQsort"][1]["location"] = "imgui_internal:372" +>>>>>>> docking_inter defs["igImQsort"][1]["ov_cimguiname"] = "igImQsort" defs["igImQsort"][1]["ret"] = "void" defs["igImQsort"][1]["signature"] = "(void*,size_t,size_t,int(*)(void const*,void const*))" @@ -19131,7 +24160,11 @@ defs["igImRotate"][1]["call_args"] = "(v,cos_a,sin_a)" defs["igImRotate"][1]["cimguiname"] = "igImRotate" defs["igImRotate"][1]["defaults"] = {} defs["igImRotate"][1]["funcname"] = "ImRotate" +<<<<<<< HEAD defs["igImRotate"][1]["location"] = "imgui_internal:489" +======= +defs["igImRotate"][1]["location"] = "imgui_internal:502" +>>>>>>> docking_inter defs["igImRotate"][1]["nonUDT"] = 1 defs["igImRotate"][1]["ov_cimguiname"] = "igImRotate" defs["igImRotate"][1]["ret"] = "void" @@ -19150,7 +24183,11 @@ defs["igImRsqrt"][1]["call_args"] = "(x)" defs["igImRsqrt"][1]["cimguiname"] = "igImRsqrt" defs["igImRsqrt"][1]["defaults"] = {} defs["igImRsqrt"][1]["funcname"] = "ImRsqrt" +<<<<<<< HEAD defs["igImRsqrt"][1]["location"] = "imgui_internal:459" +======= +defs["igImRsqrt"][1]["location"] = "imgui_internal:472" +>>>>>>> docking_inter defs["igImRsqrt"][1]["ov_cimguiname"] = "igImRsqrt_Float" defs["igImRsqrt"][1]["ret"] = "float" defs["igImRsqrt"][1]["signature"] = "(float)" @@ -19166,7 +24203,11 @@ defs["igImRsqrt"][2]["call_args"] = "(x)" defs["igImRsqrt"][2]["cimguiname"] = "igImRsqrt" defs["igImRsqrt"][2]["defaults"] = {} defs["igImRsqrt"][2]["funcname"] = "ImRsqrt" +<<<<<<< HEAD defs["igImRsqrt"][2]["location"] = "imgui_internal:461" +======= +defs["igImRsqrt"][2]["location"] = "imgui_internal:474" +>>>>>>> docking_inter defs["igImRsqrt"][2]["ov_cimguiname"] = "igImRsqrt_double" defs["igImRsqrt"][2]["ret"] = "double" defs["igImRsqrt"][2]["signature"] = "(double)" @@ -19185,7 +24226,11 @@ defs["igImSaturate"][1]["call_args"] = "(f)" defs["igImSaturate"][1]["cimguiname"] = "igImSaturate" defs["igImSaturate"][1]["defaults"] = {} defs["igImSaturate"][1]["funcname"] = "ImSaturate" +<<<<<<< HEAD defs["igImSaturate"][1]["location"] = "imgui_internal:479" +======= +defs["igImSaturate"][1]["location"] = "imgui_internal:492" +>>>>>>> docking_inter defs["igImSaturate"][1]["ov_cimguiname"] = "igImSaturate" defs["igImSaturate"][1]["ret"] = "float" defs["igImSaturate"][1]["signature"] = "(float)" @@ -19203,7 +24248,11 @@ defs["igImSign"][1]["call_args"] = "(x)" defs["igImSign"][1]["cimguiname"] = "igImSign" defs["igImSign"][1]["defaults"] = {} defs["igImSign"][1]["funcname"] = "ImSign" +<<<<<<< HEAD defs["igImSign"][1]["location"] = "imgui_internal:454" +======= +defs["igImSign"][1]["location"] = "imgui_internal:467" +>>>>>>> docking_inter defs["igImSign"][1]["ov_cimguiname"] = "igImSign_Float" defs["igImSign"][1]["ret"] = "float" defs["igImSign"][1]["signature"] = "(float)" @@ -19219,7 +24268,11 @@ defs["igImSign"][2]["call_args"] = "(x)" defs["igImSign"][2]["cimguiname"] = "igImSign" defs["igImSign"][2]["defaults"] = {} defs["igImSign"][2]["funcname"] = "ImSign" +<<<<<<< HEAD defs["igImSign"][2]["location"] = "imgui_internal:455" +======= +defs["igImSign"][2]["location"] = "imgui_internal:468" +>>>>>>> docking_inter defs["igImSign"][2]["ov_cimguiname"] = "igImSign_double" defs["igImSign"][2]["ret"] = "double" defs["igImSign"][2]["signature"] = "(double)" @@ -19238,7 +24291,11 @@ defs["igImStrSkipBlank"][1]["call_args"] = "(str)" defs["igImStrSkipBlank"][1]["cimguiname"] = "igImStrSkipBlank" defs["igImStrSkipBlank"][1]["defaults"] = {} defs["igImStrSkipBlank"][1]["funcname"] = "ImStrSkipBlank" +<<<<<<< HEAD defs["igImStrSkipBlank"][1]["location"] = "imgui_internal:380" +======= +defs["igImStrSkipBlank"][1]["location"] = "imgui_internal:393" +>>>>>>> docking_inter defs["igImStrSkipBlank"][1]["ov_cimguiname"] = "igImStrSkipBlank" defs["igImStrSkipBlank"][1]["ret"] = "const char*" defs["igImStrSkipBlank"][1]["signature"] = "(const char*)" @@ -19256,7 +24313,11 @@ defs["igImStrTrimBlanks"][1]["call_args"] = "(str)" defs["igImStrTrimBlanks"][1]["cimguiname"] = "igImStrTrimBlanks" defs["igImStrTrimBlanks"][1]["defaults"] = {} defs["igImStrTrimBlanks"][1]["funcname"] = "ImStrTrimBlanks" +<<<<<<< HEAD defs["igImStrTrimBlanks"][1]["location"] = "imgui_internal:379" +======= +defs["igImStrTrimBlanks"][1]["location"] = "imgui_internal:392" +>>>>>>> docking_inter defs["igImStrTrimBlanks"][1]["ov_cimguiname"] = "igImStrTrimBlanks" defs["igImStrTrimBlanks"][1]["ret"] = "void" defs["igImStrTrimBlanks"][1]["signature"] = "(char*)" @@ -19277,7 +24338,11 @@ defs["igImStrbolW"][1]["call_args"] = "(buf_mid_line,buf_begin)" defs["igImStrbolW"][1]["cimguiname"] = "igImStrbolW" defs["igImStrbolW"][1]["defaults"] = {} defs["igImStrbolW"][1]["funcname"] = "ImStrbolW" +<<<<<<< HEAD defs["igImStrbolW"][1]["location"] = "imgui_internal:382" +======= +defs["igImStrbolW"][1]["location"] = "imgui_internal:395" +>>>>>>> docking_inter defs["igImStrbolW"][1]["ov_cimguiname"] = "igImStrbolW" defs["igImStrbolW"][1]["ret"] = "const ImWchar*" defs["igImStrbolW"][1]["signature"] = "(const ImWchar*,const ImWchar*)" @@ -19301,7 +24366,11 @@ defs["igImStrchrRange"][1]["call_args"] = "(str_begin,str_end,c)" defs["igImStrchrRange"][1]["cimguiname"] = "igImStrchrRange" defs["igImStrchrRange"][1]["defaults"] = {} defs["igImStrchrRange"][1]["funcname"] = "ImStrchrRange" +<<<<<<< HEAD defs["igImStrchrRange"][1]["location"] = "imgui_internal:376" +======= +defs["igImStrchrRange"][1]["location"] = "imgui_internal:389" +>>>>>>> docking_inter defs["igImStrchrRange"][1]["ov_cimguiname"] = "igImStrchrRange" defs["igImStrchrRange"][1]["ret"] = "const char*" defs["igImStrchrRange"][1]["signature"] = "(const char*,const char*,char)" @@ -19319,7 +24388,11 @@ defs["igImStrdup"][1]["call_args"] = "(str)" defs["igImStrdup"][1]["cimguiname"] = "igImStrdup" defs["igImStrdup"][1]["defaults"] = {} defs["igImStrdup"][1]["funcname"] = "ImStrdup" +<<<<<<< HEAD defs["igImStrdup"][1]["location"] = "imgui_internal:374" +======= +defs["igImStrdup"][1]["location"] = "imgui_internal:387" +>>>>>>> docking_inter defs["igImStrdup"][1]["ov_cimguiname"] = "igImStrdup" defs["igImStrdup"][1]["ret"] = "char*" defs["igImStrdup"][1]["signature"] = "(const char*)" @@ -19343,7 +24416,11 @@ defs["igImStrdupcpy"][1]["call_args"] = "(dst,p_dst_size,str)" defs["igImStrdupcpy"][1]["cimguiname"] = "igImStrdupcpy" defs["igImStrdupcpy"][1]["defaults"] = {} defs["igImStrdupcpy"][1]["funcname"] = "ImStrdupcpy" +<<<<<<< HEAD defs["igImStrdupcpy"][1]["location"] = "imgui_internal:375" +======= +defs["igImStrdupcpy"][1]["location"] = "imgui_internal:388" +>>>>>>> docking_inter defs["igImStrdupcpy"][1]["ov_cimguiname"] = "igImStrdupcpy" defs["igImStrdupcpy"][1]["ret"] = "char*" defs["igImStrdupcpy"][1]["signature"] = "(char*,size_t*,const char*)" @@ -19364,7 +24441,11 @@ defs["igImStreolRange"][1]["call_args"] = "(str,str_end)" defs["igImStreolRange"][1]["cimguiname"] = "igImStreolRange" defs["igImStreolRange"][1]["defaults"] = {} defs["igImStreolRange"][1]["funcname"] = "ImStreolRange" +<<<<<<< HEAD defs["igImStreolRange"][1]["location"] = "imgui_internal:377" +======= +defs["igImStreolRange"][1]["location"] = "imgui_internal:390" +>>>>>>> docking_inter defs["igImStreolRange"][1]["ov_cimguiname"] = "igImStreolRange" defs["igImStreolRange"][1]["ret"] = "const char*" defs["igImStreolRange"][1]["signature"] = "(const char*,const char*)" @@ -19385,7 +24466,11 @@ defs["igImStricmp"][1]["call_args"] = "(str1,str2)" defs["igImStricmp"][1]["cimguiname"] = "igImStricmp" defs["igImStricmp"][1]["defaults"] = {} defs["igImStricmp"][1]["funcname"] = "ImStricmp" +<<<<<<< HEAD defs["igImStricmp"][1]["location"] = "imgui_internal:371" +======= +defs["igImStricmp"][1]["location"] = "imgui_internal:384" +>>>>>>> docking_inter defs["igImStricmp"][1]["ov_cimguiname"] = "igImStricmp" defs["igImStricmp"][1]["ret"] = "int" defs["igImStricmp"][1]["signature"] = "(const char*,const char*)" @@ -19412,7 +24497,11 @@ defs["igImStristr"][1]["call_args"] = "(haystack,haystack_end,needle,needle_end) defs["igImStristr"][1]["cimguiname"] = "igImStristr" defs["igImStristr"][1]["defaults"] = {} defs["igImStristr"][1]["funcname"] = "ImStristr" +<<<<<<< HEAD defs["igImStristr"][1]["location"] = "imgui_internal:378" +======= +defs["igImStristr"][1]["location"] = "imgui_internal:391" +>>>>>>> docking_inter defs["igImStristr"][1]["ov_cimguiname"] = "igImStristr" defs["igImStristr"][1]["ret"] = "const char*" defs["igImStristr"][1]["signature"] = "(const char*,const char*,const char*,const char*)" @@ -19430,7 +24519,11 @@ defs["igImStrlenW"][1]["call_args"] = "(str)" defs["igImStrlenW"][1]["cimguiname"] = "igImStrlenW" defs["igImStrlenW"][1]["defaults"] = {} defs["igImStrlenW"][1]["funcname"] = "ImStrlenW" +<<<<<<< HEAD defs["igImStrlenW"][1]["location"] = "imgui_internal:381" +======= +defs["igImStrlenW"][1]["location"] = "imgui_internal:394" +>>>>>>> docking_inter defs["igImStrlenW"][1]["ov_cimguiname"] = "igImStrlenW" defs["igImStrlenW"][1]["ret"] = "int" defs["igImStrlenW"][1]["signature"] = "(const ImWchar*)" @@ -19454,7 +24547,11 @@ defs["igImStrncpy"][1]["call_args"] = "(dst,src,count)" defs["igImStrncpy"][1]["cimguiname"] = "igImStrncpy" defs["igImStrncpy"][1]["defaults"] = {} defs["igImStrncpy"][1]["funcname"] = "ImStrncpy" +<<<<<<< HEAD defs["igImStrncpy"][1]["location"] = "imgui_internal:373" +======= +defs["igImStrncpy"][1]["location"] = "imgui_internal:386" +>>>>>>> docking_inter defs["igImStrncpy"][1]["ov_cimguiname"] = "igImStrncpy" defs["igImStrncpy"][1]["ret"] = "void" defs["igImStrncpy"][1]["signature"] = "(char*,const char*,size_t)" @@ -19478,7 +24575,11 @@ defs["igImStrnicmp"][1]["call_args"] = "(str1,str2,count)" defs["igImStrnicmp"][1]["cimguiname"] = "igImStrnicmp" defs["igImStrnicmp"][1]["defaults"] = {} defs["igImStrnicmp"][1]["funcname"] = "ImStrnicmp" +<<<<<<< HEAD defs["igImStrnicmp"][1]["location"] = "imgui_internal:372" +======= +defs["igImStrnicmp"][1]["location"] = "imgui_internal:385" +>>>>>>> docking_inter defs["igImStrnicmp"][1]["ov_cimguiname"] = "igImStrnicmp" defs["igImStrnicmp"][1]["ret"] = "int" defs["igImStrnicmp"][1]["signature"] = "(const char*,const char*,size_t)" @@ -19502,7 +24603,11 @@ defs["igImTextCharFromUtf8"][1]["call_args"] = "(out_char,in_text,in_text_end)" defs["igImTextCharFromUtf8"][1]["cimguiname"] = "igImTextCharFromUtf8" defs["igImTextCharFromUtf8"][1]["defaults"] = {} defs["igImTextCharFromUtf8"][1]["funcname"] = "ImTextCharFromUtf8" +<<<<<<< HEAD defs["igImTextCharFromUtf8"][1]["location"] = "imgui_internal:404" +======= +defs["igImTextCharFromUtf8"][1]["location"] = "imgui_internal:417" +>>>>>>> docking_inter defs["igImTextCharFromUtf8"][1]["ov_cimguiname"] = "igImTextCharFromUtf8" defs["igImTextCharFromUtf8"][1]["ret"] = "int" defs["igImTextCharFromUtf8"][1]["signature"] = "(unsigned int*,const char*,const char*)" @@ -19523,7 +24628,11 @@ defs["igImTextCharToUtf8"][1]["call_args"] = "(out_buf,c)" defs["igImTextCharToUtf8"][1]["cimguiname"] = "igImTextCharToUtf8" defs["igImTextCharToUtf8"][1]["defaults"] = {} defs["igImTextCharToUtf8"][1]["funcname"] = "ImTextCharToUtf8" +<<<<<<< HEAD defs["igImTextCharToUtf8"][1]["location"] = "imgui_internal:402" +======= +defs["igImTextCharToUtf8"][1]["location"] = "imgui_internal:415" +>>>>>>> docking_inter defs["igImTextCharToUtf8"][1]["ov_cimguiname"] = "igImTextCharToUtf8" defs["igImTextCharToUtf8"][1]["ret"] = "const char*" defs["igImTextCharToUtf8"][1]["signature"] = "(char[5],unsigned int)" @@ -19544,7 +24653,11 @@ defs["igImTextCountCharsFromUtf8"][1]["call_args"] = "(in_text,in_text_end)" defs["igImTextCountCharsFromUtf8"][1]["cimguiname"] = "igImTextCountCharsFromUtf8" defs["igImTextCountCharsFromUtf8"][1]["defaults"] = {} defs["igImTextCountCharsFromUtf8"][1]["funcname"] = "ImTextCountCharsFromUtf8" +<<<<<<< HEAD defs["igImTextCountCharsFromUtf8"][1]["location"] = "imgui_internal:406" +======= +defs["igImTextCountCharsFromUtf8"][1]["location"] = "imgui_internal:419" +>>>>>>> docking_inter defs["igImTextCountCharsFromUtf8"][1]["ov_cimguiname"] = "igImTextCountCharsFromUtf8" defs["igImTextCountCharsFromUtf8"][1]["ret"] = "int" defs["igImTextCountCharsFromUtf8"][1]["signature"] = "(const char*,const char*)" @@ -19565,7 +24678,11 @@ defs["igImTextCountLines"][1]["call_args"] = "(in_text,in_text_end)" defs["igImTextCountLines"][1]["cimguiname"] = "igImTextCountLines" defs["igImTextCountLines"][1]["defaults"] = {} defs["igImTextCountLines"][1]["funcname"] = "ImTextCountLines" +<<<<<<< HEAD defs["igImTextCountLines"][1]["location"] = "imgui_internal:410" +======= +defs["igImTextCountLines"][1]["location"] = "imgui_internal:423" +>>>>>>> docking_inter defs["igImTextCountLines"][1]["ov_cimguiname"] = "igImTextCountLines" defs["igImTextCountLines"][1]["ret"] = "int" defs["igImTextCountLines"][1]["signature"] = "(const char*,const char*)" @@ -19586,7 +24703,11 @@ defs["igImTextCountUtf8BytesFromChar"][1]["call_args"] = "(in_text,in_text_end)" defs["igImTextCountUtf8BytesFromChar"][1]["cimguiname"] = "igImTextCountUtf8BytesFromChar" defs["igImTextCountUtf8BytesFromChar"][1]["defaults"] = {} defs["igImTextCountUtf8BytesFromChar"][1]["funcname"] = "ImTextCountUtf8BytesFromChar" +<<<<<<< HEAD defs["igImTextCountUtf8BytesFromChar"][1]["location"] = "imgui_internal:407" +======= +defs["igImTextCountUtf8BytesFromChar"][1]["location"] = "imgui_internal:420" +>>>>>>> docking_inter defs["igImTextCountUtf8BytesFromChar"][1]["ov_cimguiname"] = "igImTextCountUtf8BytesFromChar" defs["igImTextCountUtf8BytesFromChar"][1]["ret"] = "int" defs["igImTextCountUtf8BytesFromChar"][1]["signature"] = "(const char*,const char*)" @@ -19607,7 +24728,11 @@ defs["igImTextCountUtf8BytesFromStr"][1]["call_args"] = "(in_text,in_text_end)" defs["igImTextCountUtf8BytesFromStr"][1]["cimguiname"] = "igImTextCountUtf8BytesFromStr" defs["igImTextCountUtf8BytesFromStr"][1]["defaults"] = {} defs["igImTextCountUtf8BytesFromStr"][1]["funcname"] = "ImTextCountUtf8BytesFromStr" +<<<<<<< HEAD defs["igImTextCountUtf8BytesFromStr"][1]["location"] = "imgui_internal:408" +======= +defs["igImTextCountUtf8BytesFromStr"][1]["location"] = "imgui_internal:421" +>>>>>>> docking_inter defs["igImTextCountUtf8BytesFromStr"][1]["ov_cimguiname"] = "igImTextCountUtf8BytesFromStr" defs["igImTextCountUtf8BytesFromStr"][1]["ret"] = "int" defs["igImTextCountUtf8BytesFromStr"][1]["signature"] = "(const ImWchar*,const ImWchar*)" @@ -19628,7 +24753,11 @@ defs["igImTextFindPreviousUtf8Codepoint"][1]["call_args"] = "(in_text_start,in_t defs["igImTextFindPreviousUtf8Codepoint"][1]["cimguiname"] = "igImTextFindPreviousUtf8Codepoint" defs["igImTextFindPreviousUtf8Codepoint"][1]["defaults"] = {} defs["igImTextFindPreviousUtf8Codepoint"][1]["funcname"] = "ImTextFindPreviousUtf8Codepoint" +<<<<<<< HEAD defs["igImTextFindPreviousUtf8Codepoint"][1]["location"] = "imgui_internal:409" +======= +defs["igImTextFindPreviousUtf8Codepoint"][1]["location"] = "imgui_internal:422" +>>>>>>> docking_inter defs["igImTextFindPreviousUtf8Codepoint"][1]["ov_cimguiname"] = "igImTextFindPreviousUtf8Codepoint" defs["igImTextFindPreviousUtf8Codepoint"][1]["ret"] = "const char*" defs["igImTextFindPreviousUtf8Codepoint"][1]["signature"] = "(const char*,const char*)" @@ -19659,7 +24788,11 @@ defs["igImTextStrFromUtf8"][1]["cimguiname"] = "igImTextStrFromUtf8" defs["igImTextStrFromUtf8"][1]["defaults"] = {} defs["igImTextStrFromUtf8"][1]["defaults"]["in_remaining"] = "NULL" defs["igImTextStrFromUtf8"][1]["funcname"] = "ImTextStrFromUtf8" +<<<<<<< HEAD defs["igImTextStrFromUtf8"][1]["location"] = "imgui_internal:405" +======= +defs["igImTextStrFromUtf8"][1]["location"] = "imgui_internal:418" +>>>>>>> docking_inter defs["igImTextStrFromUtf8"][1]["ov_cimguiname"] = "igImTextStrFromUtf8" defs["igImTextStrFromUtf8"][1]["ret"] = "int" defs["igImTextStrFromUtf8"][1]["signature"] = "(ImWchar*,int,const char*,const char*,const char**)" @@ -19686,7 +24819,11 @@ defs["igImTextStrToUtf8"][1]["call_args"] = "(out_buf,out_buf_size,in_text,in_te defs["igImTextStrToUtf8"][1]["cimguiname"] = "igImTextStrToUtf8" defs["igImTextStrToUtf8"][1]["defaults"] = {} defs["igImTextStrToUtf8"][1]["funcname"] = "ImTextStrToUtf8" +<<<<<<< HEAD defs["igImTextStrToUtf8"][1]["location"] = "imgui_internal:403" +======= +defs["igImTextStrToUtf8"][1]["location"] = "imgui_internal:416" +>>>>>>> docking_inter defs["igImTextStrToUtf8"][1]["ov_cimguiname"] = "igImTextStrToUtf8" defs["igImTextStrToUtf8"][1]["ret"] = "int" defs["igImTextStrToUtf8"][1]["signature"] = "(char*,int,const ImWchar*,const ImWchar*)" @@ -19704,7 +24841,11 @@ defs["igImToUpper"][1]["call_args"] = "(c)" defs["igImToUpper"][1]["cimguiname"] = "igImToUpper" defs["igImToUpper"][1]["defaults"] = {} defs["igImToUpper"][1]["funcname"] = "ImToUpper" +<<<<<<< HEAD defs["igImToUpper"][1]["location"] = "imgui_internal:384" +======= +defs["igImToUpper"][1]["location"] = "imgui_internal:397" +>>>>>>> docking_inter defs["igImToUpper"][1]["ov_cimguiname"] = "igImToUpper" defs["igImToUpper"][1]["ret"] = "char" defs["igImToUpper"][1]["signature"] = "(char)" @@ -19728,7 +24869,11 @@ defs["igImTriangleArea"][1]["call_args"] = "(a,b,c)" defs["igImTriangleArea"][1]["cimguiname"] = "igImTriangleArea" defs["igImTriangleArea"][1]["defaults"] = {} defs["igImTriangleArea"][1]["funcname"] = "ImTriangleArea" +<<<<<<< HEAD defs["igImTriangleArea"][1]["location"] = "imgui_internal:505" +======= +defs["igImTriangleArea"][1]["location"] = "imgui_internal:518" +>>>>>>> docking_inter defs["igImTriangleArea"][1]["ov_cimguiname"] = "igImTriangleArea" defs["igImTriangleArea"][1]["ret"] = "float" defs["igImTriangleArea"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2)" @@ -19767,7 +24912,11 @@ defs["igImTriangleBarycentricCoords"][1]["call_args"] = "(a,b,c,p,*out_u,*out_v, defs["igImTriangleBarycentricCoords"][1]["cimguiname"] = "igImTriangleBarycentricCoords" defs["igImTriangleBarycentricCoords"][1]["defaults"] = {} defs["igImTriangleBarycentricCoords"][1]["funcname"] = "ImTriangleBarycentricCoords" +<<<<<<< HEAD defs["igImTriangleBarycentricCoords"][1]["location"] = "imgui_internal:504" +======= +defs["igImTriangleBarycentricCoords"][1]["location"] = "imgui_internal:517" +>>>>>>> docking_inter defs["igImTriangleBarycentricCoords"][1]["ov_cimguiname"] = "igImTriangleBarycentricCoords" defs["igImTriangleBarycentricCoords"][1]["ret"] = "void" defs["igImTriangleBarycentricCoords"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,float*,float*,float*)" @@ -19797,7 +24946,11 @@ defs["igImTriangleClosestPoint"][1]["call_args"] = "(a,b,c,p)" defs["igImTriangleClosestPoint"][1]["cimguiname"] = "igImTriangleClosestPoint" defs["igImTriangleClosestPoint"][1]["defaults"] = {} defs["igImTriangleClosestPoint"][1]["funcname"] = "ImTriangleClosestPoint" +<<<<<<< HEAD defs["igImTriangleClosestPoint"][1]["location"] = "imgui_internal:503" +======= +defs["igImTriangleClosestPoint"][1]["location"] = "imgui_internal:516" +>>>>>>> docking_inter defs["igImTriangleClosestPoint"][1]["nonUDT"] = 1 defs["igImTriangleClosestPoint"][1]["ov_cimguiname"] = "igImTriangleClosestPoint" defs["igImTriangleClosestPoint"][1]["ret"] = "void" @@ -19825,7 +24978,11 @@ defs["igImTriangleContainsPoint"][1]["call_args"] = "(a,b,c,p)" defs["igImTriangleContainsPoint"][1]["cimguiname"] = "igImTriangleContainsPoint" defs["igImTriangleContainsPoint"][1]["defaults"] = {} defs["igImTriangleContainsPoint"][1]["funcname"] = "ImTriangleContainsPoint" +<<<<<<< HEAD defs["igImTriangleContainsPoint"][1]["location"] = "imgui_internal:502" +======= +defs["igImTriangleContainsPoint"][1]["location"] = "imgui_internal:515" +>>>>>>> docking_inter defs["igImTriangleContainsPoint"][1]["ov_cimguiname"] = "igImTriangleContainsPoint" defs["igImTriangleContainsPoint"][1]["ret"] = "bool" defs["igImTriangleContainsPoint"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)" @@ -19849,7 +25006,11 @@ defs["igImTriangleIsClockwise"][1]["call_args"] = "(a,b,c)" defs["igImTriangleIsClockwise"][1]["cimguiname"] = "igImTriangleIsClockwise" defs["igImTriangleIsClockwise"][1]["defaults"] = {} defs["igImTriangleIsClockwise"][1]["funcname"] = "ImTriangleIsClockwise" +<<<<<<< HEAD defs["igImTriangleIsClockwise"][1]["location"] = "imgui_internal:506" +======= +defs["igImTriangleIsClockwise"][1]["location"] = "imgui_internal:519" +>>>>>>> docking_inter defs["igImTriangleIsClockwise"][1]["ov_cimguiname"] = "igImTriangleIsClockwise" defs["igImTriangleIsClockwise"][1]["ret"] = "bool" defs["igImTriangleIsClockwise"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2)" @@ -19867,7 +25028,11 @@ defs["igImTrunc"][1]["call_args"] = "(f)" defs["igImTrunc"][1]["cimguiname"] = "igImTrunc" defs["igImTrunc"][1]["defaults"] = {} defs["igImTrunc"][1]["funcname"] = "ImTrunc" +<<<<<<< HEAD defs["igImTrunc"][1]["location"] = "imgui_internal:483" +======= +defs["igImTrunc"][1]["location"] = "imgui_internal:496" +>>>>>>> docking_inter defs["igImTrunc"][1]["ov_cimguiname"] = "igImTrunc_Float" defs["igImTrunc"][1]["ret"] = "float" defs["igImTrunc"][1]["signature"] = "(float)" @@ -19886,7 +25051,11 @@ defs["igImTrunc"][2]["call_args"] = "(v)" defs["igImTrunc"][2]["cimguiname"] = "igImTrunc" defs["igImTrunc"][2]["defaults"] = {} defs["igImTrunc"][2]["funcname"] = "ImTrunc" +<<<<<<< HEAD defs["igImTrunc"][2]["location"] = "imgui_internal:484" +======= +defs["igImTrunc"][2]["location"] = "imgui_internal:497" +>>>>>>> docking_inter defs["igImTrunc"][2]["nonUDT"] = 1 defs["igImTrunc"][2]["ov_cimguiname"] = "igImTrunc_Vec2" defs["igImTrunc"][2]["ret"] = "void" @@ -19906,7 +25075,11 @@ defs["igImUpperPowerOfTwo"][1]["call_args"] = "(v)" defs["igImUpperPowerOfTwo"][1]["cimguiname"] = "igImUpperPowerOfTwo" defs["igImUpperPowerOfTwo"][1]["defaults"] = {} defs["igImUpperPowerOfTwo"][1]["funcname"] = "ImUpperPowerOfTwo" +<<<<<<< HEAD defs["igImUpperPowerOfTwo"][1]["location"] = "imgui_internal:368" +======= +defs["igImUpperPowerOfTwo"][1]["location"] = "imgui_internal:381" +>>>>>>> docking_inter defs["igImUpperPowerOfTwo"][1]["ov_cimguiname"] = "igImUpperPowerOfTwo" defs["igImUpperPowerOfTwo"][1]["ret"] = "int" defs["igImUpperPowerOfTwo"][1]["signature"] = "(int)" @@ -19943,7 +25116,11 @@ defs["igImage"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImage"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImage"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImage"][1]["funcname"] = "Image" +<<<<<<< HEAD defs["igImage"][1]["location"] = "imgui:550" +======= +defs["igImage"][1]["location"] = "imgui:560" +>>>>>>> docking_inter defs["igImage"][1]["namespace"] = "ImGui" defs["igImage"][1]["ov_cimguiname"] = "igImage" defs["igImage"][1]["ret"] = "void" @@ -19984,7 +25161,11 @@ defs["igImageButton"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImageButton"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImageButton"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImageButton"][1]["funcname"] = "ImageButton" +<<<<<<< HEAD defs["igImageButton"][1]["location"] = "imgui:551" +======= +defs["igImageButton"][1]["location"] = "imgui:561" +>>>>>>> docking_inter defs["igImageButton"][1]["namespace"] = "ImGui" defs["igImageButton"][1]["ov_cimguiname"] = "igImageButton" defs["igImageButton"][1]["ret"] = "bool" @@ -20025,7 +25206,11 @@ defs["igImageButtonEx"][1]["cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["defaults"] = {} defs["igImageButtonEx"][1]["defaults"]["flags"] = "0" defs["igImageButtonEx"][1]["funcname"] = "ImageButtonEx" +<<<<<<< HEAD defs["igImageButtonEx"][1]["location"] = "imgui_internal:3424" +======= +defs["igImageButtonEx"][1]["location"] = "imgui_internal:3756" +>>>>>>> docking_inter defs["igImageButtonEx"][1]["namespace"] = "ImGui" defs["igImageButtonEx"][1]["ov_cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["ret"] = "bool" @@ -20045,7 +25230,11 @@ defs["igIndent"][1]["cimguiname"] = "igIndent" defs["igIndent"][1]["defaults"] = {} defs["igIndent"][1]["defaults"]["indent_w"] = "0.0f" defs["igIndent"][1]["funcname"] = "Indent" +<<<<<<< HEAD defs["igIndent"][1]["location"] = "imgui:485" +======= +defs["igIndent"][1]["location"] = "imgui:495" +>>>>>>> docking_inter defs["igIndent"][1]["namespace"] = "ImGui" defs["igIndent"][1]["ov_cimguiname"] = "igIndent" defs["igIndent"][1]["ret"] = "void" @@ -20061,7 +25250,11 @@ defs["igInitialize"][1]["call_args"] = "()" defs["igInitialize"][1]["cimguiname"] = "igInitialize" defs["igInitialize"][1]["defaults"] = {} defs["igInitialize"][1]["funcname"] = "Initialize" +<<<<<<< HEAD defs["igInitialize"][1]["location"] = "imgui_internal:3051" +======= +defs["igInitialize"][1]["location"] = "imgui_internal:3314" +>>>>>>> docking_inter defs["igInitialize"][1]["namespace"] = "ImGui" defs["igInitialize"][1]["ov_cimguiname"] = "igInitialize" defs["igInitialize"][1]["ret"] = "void" @@ -20099,7 +25292,11 @@ defs["igInputDouble"][1]["defaults"]["format"] = "\"%.6f\"" defs["igInputDouble"][1]["defaults"]["step"] = "0.0" defs["igInputDouble"][1]["defaults"]["step_fast"] = "0.0" defs["igInputDouble"][1]["funcname"] = "InputDouble" +<<<<<<< HEAD defs["igInputDouble"][1]["location"] = "imgui:622" +======= +defs["igInputDouble"][1]["location"] = "imgui:632" +>>>>>>> docking_inter defs["igInputDouble"][1]["namespace"] = "ImGui" defs["igInputDouble"][1]["ov_cimguiname"] = "igInputDouble" defs["igInputDouble"][1]["ret"] = "bool" @@ -20137,7 +25334,11 @@ defs["igInputFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat"][1]["defaults"]["step"] = "0.0f" defs["igInputFloat"][1]["defaults"]["step_fast"] = "0.0f" defs["igInputFloat"][1]["funcname"] = "InputFloat" +<<<<<<< HEAD defs["igInputFloat"][1]["location"] = "imgui:614" +======= +defs["igInputFloat"][1]["location"] = "imgui:624" +>>>>>>> docking_inter defs["igInputFloat"][1]["namespace"] = "ImGui" defs["igInputFloat"][1]["ov_cimguiname"] = "igInputFloat" defs["igInputFloat"][1]["ret"] = "bool" @@ -20167,7 +25368,11 @@ defs["igInputFloat2"][1]["defaults"] = {} defs["igInputFloat2"][1]["defaults"]["flags"] = "0" defs["igInputFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat2"][1]["funcname"] = "InputFloat2" +<<<<<<< HEAD defs["igInputFloat2"][1]["location"] = "imgui:615" +======= +defs["igInputFloat2"][1]["location"] = "imgui:625" +>>>>>>> docking_inter defs["igInputFloat2"][1]["namespace"] = "ImGui" defs["igInputFloat2"][1]["ov_cimguiname"] = "igInputFloat2" defs["igInputFloat2"][1]["ret"] = "bool" @@ -20197,7 +25402,11 @@ defs["igInputFloat3"][1]["defaults"] = {} defs["igInputFloat3"][1]["defaults"]["flags"] = "0" defs["igInputFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat3"][1]["funcname"] = "InputFloat3" +<<<<<<< HEAD defs["igInputFloat3"][1]["location"] = "imgui:616" +======= +defs["igInputFloat3"][1]["location"] = "imgui:626" +>>>>>>> docking_inter defs["igInputFloat3"][1]["namespace"] = "ImGui" defs["igInputFloat3"][1]["ov_cimguiname"] = "igInputFloat3" defs["igInputFloat3"][1]["ret"] = "bool" @@ -20227,7 +25436,11 @@ defs["igInputFloat4"][1]["defaults"] = {} defs["igInputFloat4"][1]["defaults"]["flags"] = "0" defs["igInputFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat4"][1]["funcname"] = "InputFloat4" +<<<<<<< HEAD defs["igInputFloat4"][1]["location"] = "imgui:617" +======= +defs["igInputFloat4"][1]["location"] = "imgui:627" +>>>>>>> docking_inter defs["igInputFloat4"][1]["namespace"] = "ImGui" defs["igInputFloat4"][1]["ov_cimguiname"] = "igInputFloat4" defs["igInputFloat4"][1]["ret"] = "bool" @@ -20261,7 +25474,11 @@ defs["igInputInt"][1]["defaults"]["flags"] = "0" defs["igInputInt"][1]["defaults"]["step"] = "1" defs["igInputInt"][1]["defaults"]["step_fast"] = "100" defs["igInputInt"][1]["funcname"] = "InputInt" +<<<<<<< HEAD defs["igInputInt"][1]["location"] = "imgui:618" +======= +defs["igInputInt"][1]["location"] = "imgui:628" +>>>>>>> docking_inter defs["igInputInt"][1]["namespace"] = "ImGui" defs["igInputInt"][1]["ov_cimguiname"] = "igInputInt" defs["igInputInt"][1]["ret"] = "bool" @@ -20287,7 +25504,11 @@ defs["igInputInt2"][1]["cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["defaults"] = {} defs["igInputInt2"][1]["defaults"]["flags"] = "0" defs["igInputInt2"][1]["funcname"] = "InputInt2" +<<<<<<< HEAD defs["igInputInt2"][1]["location"] = "imgui:619" +======= +defs["igInputInt2"][1]["location"] = "imgui:629" +>>>>>>> docking_inter defs["igInputInt2"][1]["namespace"] = "ImGui" defs["igInputInt2"][1]["ov_cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["ret"] = "bool" @@ -20313,7 +25534,11 @@ defs["igInputInt3"][1]["cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["defaults"] = {} defs["igInputInt3"][1]["defaults"]["flags"] = "0" defs["igInputInt3"][1]["funcname"] = "InputInt3" +<<<<<<< HEAD defs["igInputInt3"][1]["location"] = "imgui:620" +======= +defs["igInputInt3"][1]["location"] = "imgui:630" +>>>>>>> docking_inter defs["igInputInt3"][1]["namespace"] = "ImGui" defs["igInputInt3"][1]["ov_cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["ret"] = "bool" @@ -20339,7 +25564,11 @@ defs["igInputInt4"][1]["cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["defaults"] = {} defs["igInputInt4"][1]["defaults"]["flags"] = "0" defs["igInputInt4"][1]["funcname"] = "InputInt4" +<<<<<<< HEAD defs["igInputInt4"][1]["location"] = "imgui:621" +======= +defs["igInputInt4"][1]["location"] = "imgui:631" +>>>>>>> docking_inter defs["igInputInt4"][1]["namespace"] = "ImGui" defs["igInputInt4"][1]["ov_cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["ret"] = "bool" @@ -20380,7 +25609,11 @@ defs["igInputScalar"][1]["defaults"]["format"] = "NULL" defs["igInputScalar"][1]["defaults"]["p_step"] = "NULL" defs["igInputScalar"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalar"][1]["funcname"] = "InputScalar" +<<<<<<< HEAD defs["igInputScalar"][1]["location"] = "imgui:623" +======= +defs["igInputScalar"][1]["location"] = "imgui:633" +>>>>>>> docking_inter defs["igInputScalar"][1]["namespace"] = "ImGui" defs["igInputScalar"][1]["ov_cimguiname"] = "igInputScalar" defs["igInputScalar"][1]["ret"] = "bool" @@ -20424,7 +25657,11 @@ defs["igInputScalarN"][1]["defaults"]["format"] = "NULL" defs["igInputScalarN"][1]["defaults"]["p_step"] = "NULL" defs["igInputScalarN"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalarN"][1]["funcname"] = "InputScalarN" +<<<<<<< HEAD defs["igInputScalarN"][1]["location"] = "imgui:624" +======= +defs["igInputScalarN"][1]["location"] = "imgui:634" +>>>>>>> docking_inter defs["igInputScalarN"][1]["namespace"] = "ImGui" defs["igInputScalarN"][1]["ov_cimguiname"] = "igInputScalarN" defs["igInputScalarN"][1]["ret"] = "bool" @@ -20461,7 +25698,11 @@ defs["igInputText"][1]["defaults"]["callback"] = "NULL" defs["igInputText"][1]["defaults"]["flags"] = "0" defs["igInputText"][1]["defaults"]["user_data"] = "NULL" defs["igInputText"][1]["funcname"] = "InputText" +<<<<<<< HEAD defs["igInputText"][1]["location"] = "imgui:611" +======= +defs["igInputText"][1]["location"] = "imgui:621" +>>>>>>> docking_inter defs["igInputText"][1]["namespace"] = "ImGui" defs["igInputText"][1]["ov_cimguiname"] = "igInputText" defs["igInputText"][1]["ret"] = "bool" @@ -20480,7 +25721,11 @@ defs["igInputTextDeactivateHook"][1]["call_args"] = "(id)" defs["igInputTextDeactivateHook"][1]["cimguiname"] = "igInputTextDeactivateHook" defs["igInputTextDeactivateHook"][1]["defaults"] = {} defs["igInputTextDeactivateHook"][1]["funcname"] = "InputTextDeactivateHook" +<<<<<<< HEAD defs["igInputTextDeactivateHook"][1]["location"] = "imgui_internal:3471" +======= +defs["igInputTextDeactivateHook"][1]["location"] = "imgui_internal:3803" +>>>>>>> docking_inter defs["igInputTextDeactivateHook"][1]["namespace"] = "ImGui" defs["igInputTextDeactivateHook"][1]["ov_cimguiname"] = "igInputTextDeactivateHook" defs["igInputTextDeactivateHook"][1]["ret"] = "void" @@ -20522,7 +25767,11 @@ defs["igInputTextEx"][1]["defaults"] = {} defs["igInputTextEx"][1]["defaults"]["callback"] = "NULL" defs["igInputTextEx"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextEx"][1]["funcname"] = "InputTextEx" +<<<<<<< HEAD defs["igInputTextEx"][1]["location"] = "imgui_internal:3470" +======= +defs["igInputTextEx"][1]["location"] = "imgui_internal:3802" +>>>>>>> docking_inter defs["igInputTextEx"][1]["namespace"] = "ImGui" defs["igInputTextEx"][1]["ov_cimguiname"] = "igInputTextEx" defs["igInputTextEx"][1]["ret"] = "bool" @@ -20563,7 +25812,11 @@ defs["igInputTextMultiline"][1]["defaults"]["flags"] = "0" defs["igInputTextMultiline"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igInputTextMultiline"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextMultiline"][1]["funcname"] = "InputTextMultiline" +<<<<<<< HEAD defs["igInputTextMultiline"][1]["location"] = "imgui:612" +======= +defs["igInputTextMultiline"][1]["location"] = "imgui:622" +>>>>>>> docking_inter defs["igInputTextMultiline"][1]["namespace"] = "ImGui" defs["igInputTextMultiline"][1]["ov_cimguiname"] = "igInputTextMultiline" defs["igInputTextMultiline"][1]["ret"] = "bool" @@ -20603,7 +25856,11 @@ defs["igInputTextWithHint"][1]["defaults"]["callback"] = "NULL" defs["igInputTextWithHint"][1]["defaults"]["flags"] = "0" defs["igInputTextWithHint"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextWithHint"][1]["funcname"] = "InputTextWithHint" +<<<<<<< HEAD defs["igInputTextWithHint"][1]["location"] = "imgui:613" +======= +defs["igInputTextWithHint"][1]["location"] = "imgui:623" +>>>>>>> docking_inter defs["igInputTextWithHint"][1]["namespace"] = "ImGui" defs["igInputTextWithHint"][1]["ov_cimguiname"] = "igInputTextWithHint" defs["igInputTextWithHint"][1]["ret"] = "bool" @@ -20629,7 +25886,11 @@ defs["igInvisibleButton"][1]["cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["defaults"] = {} defs["igInvisibleButton"][1]["defaults"]["flags"] = "0" defs["igInvisibleButton"][1]["funcname"] = "InvisibleButton" +<<<<<<< HEAD defs["igInvisibleButton"][1]["location"] = "imgui:536" +======= +defs["igInvisibleButton"][1]["location"] = "imgui:546" +>>>>>>> docking_inter defs["igInvisibleButton"][1]["namespace"] = "ImGui" defs["igInvisibleButton"][1]["ov_cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["ret"] = "bool" @@ -20648,7 +25909,11 @@ defs["igIsActiveIdUsingNavDir"][1]["call_args"] = "(dir)" defs["igIsActiveIdUsingNavDir"][1]["cimguiname"] = "igIsActiveIdUsingNavDir" defs["igIsActiveIdUsingNavDir"][1]["defaults"] = {} defs["igIsActiveIdUsingNavDir"][1]["funcname"] = "IsActiveIdUsingNavDir" +<<<<<<< HEAD defs["igIsActiveIdUsingNavDir"][1]["location"] = "imgui_internal:3229" +======= +defs["igIsActiveIdUsingNavDir"][1]["location"] = "imgui_internal:3503" +>>>>>>> docking_inter defs["igIsActiveIdUsingNavDir"][1]["namespace"] = "ImGui" defs["igIsActiveIdUsingNavDir"][1]["ov_cimguiname"] = "igIsActiveIdUsingNavDir" defs["igIsActiveIdUsingNavDir"][1]["ret"] = "bool" @@ -20667,7 +25932,11 @@ defs["igIsAliasKey"][1]["call_args"] = "(key)" defs["igIsAliasKey"][1]["cimguiname"] = "igIsAliasKey" defs["igIsAliasKey"][1]["defaults"] = {} defs["igIsAliasKey"][1]["funcname"] = "IsAliasKey" +<<<<<<< HEAD defs["igIsAliasKey"][1]["location"] = "imgui_internal:3206" +======= +defs["igIsAliasKey"][1]["location"] = "imgui_internal:3480" +>>>>>>> docking_inter defs["igIsAliasKey"][1]["namespace"] = "ImGui" defs["igIsAliasKey"][1]["ov_cimguiname"] = "igIsAliasKey" defs["igIsAliasKey"][1]["ret"] = "bool" @@ -20683,7 +25952,11 @@ defs["igIsAnyItemActive"][1]["call_args"] = "()" defs["igIsAnyItemActive"][1]["cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["defaults"] = {} defs["igIsAnyItemActive"][1]["funcname"] = "IsAnyItemActive" +<<<<<<< HEAD defs["igIsAnyItemActive"][1]["location"] = "imgui:893" +======= +defs["igIsAnyItemActive"][1]["location"] = "imgui:925" +>>>>>>> docking_inter defs["igIsAnyItemActive"][1]["namespace"] = "ImGui" defs["igIsAnyItemActive"][1]["ov_cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["ret"] = "bool" @@ -20699,7 +25972,11 @@ defs["igIsAnyItemFocused"][1]["call_args"] = "()" defs["igIsAnyItemFocused"][1]["cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["defaults"] = {} defs["igIsAnyItemFocused"][1]["funcname"] = "IsAnyItemFocused" +<<<<<<< HEAD defs["igIsAnyItemFocused"][1]["location"] = "imgui:894" +======= +defs["igIsAnyItemFocused"][1]["location"] = "imgui:926" +>>>>>>> docking_inter defs["igIsAnyItemFocused"][1]["namespace"] = "ImGui" defs["igIsAnyItemFocused"][1]["ov_cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["ret"] = "bool" @@ -20715,7 +25992,11 @@ defs["igIsAnyItemHovered"][1]["call_args"] = "()" defs["igIsAnyItemHovered"][1]["cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["defaults"] = {} defs["igIsAnyItemHovered"][1]["funcname"] = "IsAnyItemHovered" +<<<<<<< HEAD defs["igIsAnyItemHovered"][1]["location"] = "imgui:892" +======= +defs["igIsAnyItemHovered"][1]["location"] = "imgui:924" +>>>>>>> docking_inter defs["igIsAnyItemHovered"][1]["namespace"] = "ImGui" defs["igIsAnyItemHovered"][1]["ov_cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["ret"] = "bool" @@ -20731,7 +26012,11 @@ defs["igIsAnyMouseDown"][1]["call_args"] = "()" defs["igIsAnyMouseDown"][1]["cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["defaults"] = {} defs["igIsAnyMouseDown"][1]["funcname"] = "IsAnyMouseDown" +<<<<<<< HEAD defs["igIsAnyMouseDown"][1]["location"] = "imgui:971" +======= +defs["igIsAnyMouseDown"][1]["location"] = "imgui:1003" +>>>>>>> docking_inter defs["igIsAnyMouseDown"][1]["namespace"] = "ImGui" defs["igIsAnyMouseDown"][1]["ov_cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["ret"] = "bool" @@ -20753,7 +26038,11 @@ defs["igIsClippedEx"][1]["call_args"] = "(bb,id)" defs["igIsClippedEx"][1]["cimguiname"] = "igIsClippedEx" defs["igIsClippedEx"][1]["defaults"] = {} defs["igIsClippedEx"][1]["funcname"] = "IsClippedEx" +<<<<<<< HEAD defs["igIsClippedEx"][1]["location"] = "imgui_internal:3124" +======= +defs["igIsClippedEx"][1]["location"] = "imgui_internal:3394" +>>>>>>> docking_inter defs["igIsClippedEx"][1]["namespace"] = "ImGui" defs["igIsClippedEx"][1]["ov_cimguiname"] = "igIsClippedEx" defs["igIsClippedEx"][1]["ret"] = "bool" @@ -20769,7 +26058,11 @@ defs["igIsDragDropActive"][1]["call_args"] = "()" defs["igIsDragDropActive"][1]["cimguiname"] = "igIsDragDropActive" defs["igIsDragDropActive"][1]["defaults"] = {} defs["igIsDragDropActive"][1]["funcname"] = "IsDragDropActive" +<<<<<<< HEAD defs["igIsDragDropActive"][1]["location"] = "imgui_internal:3296" +======= +defs["igIsDragDropActive"][1]["location"] = "imgui_internal:3625" +>>>>>>> docking_inter defs["igIsDragDropActive"][1]["namespace"] = "ImGui" defs["igIsDragDropActive"][1]["ov_cimguiname"] = "igIsDragDropActive" defs["igIsDragDropActive"][1]["ret"] = "bool" @@ -20785,7 +26078,11 @@ defs["igIsDragDropPayloadBeingAccepted"][1]["call_args"] = "()" defs["igIsDragDropPayloadBeingAccepted"][1]["cimguiname"] = "igIsDragDropPayloadBeingAccepted" defs["igIsDragDropPayloadBeingAccepted"][1]["defaults"] = {} defs["igIsDragDropPayloadBeingAccepted"][1]["funcname"] = "IsDragDropPayloadBeingAccepted" +<<<<<<< HEAD defs["igIsDragDropPayloadBeingAccepted"][1]["location"] = "imgui_internal:3299" +======= +defs["igIsDragDropPayloadBeingAccepted"][1]["location"] = "imgui_internal:3628" +>>>>>>> docking_inter defs["igIsDragDropPayloadBeingAccepted"][1]["namespace"] = "ImGui" defs["igIsDragDropPayloadBeingAccepted"][1]["ov_cimguiname"] = "igIsDragDropPayloadBeingAccepted" defs["igIsDragDropPayloadBeingAccepted"][1]["ret"] = "bool" @@ -20804,7 +26101,11 @@ defs["igIsGamepadKey"][1]["call_args"] = "(key)" defs["igIsGamepadKey"][1]["cimguiname"] = "igIsGamepadKey" defs["igIsGamepadKey"][1]["defaults"] = {} defs["igIsGamepadKey"][1]["funcname"] = "IsGamepadKey" +<<<<<<< HEAD defs["igIsGamepadKey"][1]["location"] = "imgui_internal:3204" +======= +defs["igIsGamepadKey"][1]["location"] = "imgui_internal:3478" +>>>>>>> docking_inter defs["igIsGamepadKey"][1]["namespace"] = "ImGui" defs["igIsGamepadKey"][1]["ov_cimguiname"] = "igIsGamepadKey" defs["igIsGamepadKey"][1]["ret"] = "bool" @@ -20820,7 +26121,11 @@ defs["igIsItemActivated"][1]["call_args"] = "()" defs["igIsItemActivated"][1]["cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["defaults"] = {} defs["igIsItemActivated"][1]["funcname"] = "IsItemActivated" +<<<<<<< HEAD defs["igIsItemActivated"][1]["location"] = "imgui:888" +======= +defs["igIsItemActivated"][1]["location"] = "imgui:920" +>>>>>>> docking_inter defs["igIsItemActivated"][1]["namespace"] = "ImGui" defs["igIsItemActivated"][1]["ov_cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["ret"] = "bool" @@ -20836,7 +26141,11 @@ defs["igIsItemActive"][1]["call_args"] = "()" defs["igIsItemActive"][1]["cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["defaults"] = {} defs["igIsItemActive"][1]["funcname"] = "IsItemActive" +<<<<<<< HEAD defs["igIsItemActive"][1]["location"] = "imgui:883" +======= +defs["igIsItemActive"][1]["location"] = "imgui:915" +>>>>>>> docking_inter defs["igIsItemActive"][1]["namespace"] = "ImGui" defs["igIsItemActive"][1]["ov_cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["ret"] = "bool" @@ -20856,7 +26165,11 @@ defs["igIsItemClicked"][1]["cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["defaults"] = {} defs["igIsItemClicked"][1]["defaults"]["mouse_button"] = "0" defs["igIsItemClicked"][1]["funcname"] = "IsItemClicked" +<<<<<<< HEAD defs["igIsItemClicked"][1]["location"] = "imgui:885" +======= +defs["igIsItemClicked"][1]["location"] = "imgui:917" +>>>>>>> docking_inter defs["igIsItemClicked"][1]["namespace"] = "ImGui" defs["igIsItemClicked"][1]["ov_cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["ret"] = "bool" @@ -20872,7 +26185,11 @@ defs["igIsItemDeactivated"][1]["call_args"] = "()" defs["igIsItemDeactivated"][1]["cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["defaults"] = {} defs["igIsItemDeactivated"][1]["funcname"] = "IsItemDeactivated" +<<<<<<< HEAD defs["igIsItemDeactivated"][1]["location"] = "imgui:889" +======= +defs["igIsItemDeactivated"][1]["location"] = "imgui:921" +>>>>>>> docking_inter defs["igIsItemDeactivated"][1]["namespace"] = "ImGui" defs["igIsItemDeactivated"][1]["ov_cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["ret"] = "bool" @@ -20888,7 +26205,11 @@ defs["igIsItemDeactivatedAfterEdit"][1]["call_args"] = "()" defs["igIsItemDeactivatedAfterEdit"][1]["cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["defaults"] = {} defs["igIsItemDeactivatedAfterEdit"][1]["funcname"] = "IsItemDeactivatedAfterEdit" +<<<<<<< HEAD defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui:890" +======= +defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui:922" +>>>>>>> docking_inter defs["igIsItemDeactivatedAfterEdit"][1]["namespace"] = "ImGui" defs["igIsItemDeactivatedAfterEdit"][1]["ov_cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["ret"] = "bool" @@ -20904,7 +26225,11 @@ defs["igIsItemEdited"][1]["call_args"] = "()" defs["igIsItemEdited"][1]["cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["defaults"] = {} defs["igIsItemEdited"][1]["funcname"] = "IsItemEdited" +<<<<<<< HEAD defs["igIsItemEdited"][1]["location"] = "imgui:887" +======= +defs["igIsItemEdited"][1]["location"] = "imgui:919" +>>>>>>> docking_inter defs["igIsItemEdited"][1]["namespace"] = "ImGui" defs["igIsItemEdited"][1]["ov_cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["ret"] = "bool" @@ -20920,7 +26245,11 @@ defs["igIsItemFocused"][1]["call_args"] = "()" defs["igIsItemFocused"][1]["cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["defaults"] = {} defs["igIsItemFocused"][1]["funcname"] = "IsItemFocused" +<<<<<<< HEAD defs["igIsItemFocused"][1]["location"] = "imgui:884" +======= +defs["igIsItemFocused"][1]["location"] = "imgui:916" +>>>>>>> docking_inter defs["igIsItemFocused"][1]["namespace"] = "ImGui" defs["igIsItemFocused"][1]["ov_cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["ret"] = "bool" @@ -20940,7 +26269,11 @@ defs["igIsItemHovered"][1]["cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["defaults"] = {} defs["igIsItemHovered"][1]["defaults"]["flags"] = "0" defs["igIsItemHovered"][1]["funcname"] = "IsItemHovered" +<<<<<<< HEAD defs["igIsItemHovered"][1]["location"] = "imgui:882" +======= +defs["igIsItemHovered"][1]["location"] = "imgui:914" +>>>>>>> docking_inter defs["igIsItemHovered"][1]["namespace"] = "ImGui" defs["igIsItemHovered"][1]["ov_cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["ret"] = "bool" @@ -20956,7 +26289,11 @@ defs["igIsItemToggledOpen"][1]["call_args"] = "()" defs["igIsItemToggledOpen"][1]["cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["defaults"] = {} defs["igIsItemToggledOpen"][1]["funcname"] = "IsItemToggledOpen" +<<<<<<< HEAD defs["igIsItemToggledOpen"][1]["location"] = "imgui:891" +======= +defs["igIsItemToggledOpen"][1]["location"] = "imgui:923" +>>>>>>> docking_inter defs["igIsItemToggledOpen"][1]["namespace"] = "ImGui" defs["igIsItemToggledOpen"][1]["ov_cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["ret"] = "bool" @@ -20972,7 +26309,11 @@ defs["igIsItemToggledSelection"][1]["call_args"] = "()" defs["igIsItemToggledSelection"][1]["cimguiname"] = "igIsItemToggledSelection" defs["igIsItemToggledSelection"][1]["defaults"] = {} defs["igIsItemToggledSelection"][1]["funcname"] = "IsItemToggledSelection" +<<<<<<< HEAD defs["igIsItemToggledSelection"][1]["location"] = "imgui_internal:3129" +======= +defs["igIsItemToggledSelection"][1]["location"] = "imgui_internal:3399" +>>>>>>> docking_inter defs["igIsItemToggledSelection"][1]["namespace"] = "ImGui" defs["igIsItemToggledSelection"][1]["ov_cimguiname"] = "igIsItemToggledSelection" defs["igIsItemToggledSelection"][1]["ret"] = "bool" @@ -20988,7 +26329,11 @@ defs["igIsItemVisible"][1]["call_args"] = "()" defs["igIsItemVisible"][1]["cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["defaults"] = {} defs["igIsItemVisible"][1]["funcname"] = "IsItemVisible" +<<<<<<< HEAD defs["igIsItemVisible"][1]["location"] = "imgui:886" +======= +defs["igIsItemVisible"][1]["location"] = "imgui:918" +>>>>>>> docking_inter defs["igIsItemVisible"][1]["namespace"] = "ImGui" defs["igIsItemVisible"][1]["ov_cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["ret"] = "bool" @@ -21007,7 +26352,11 @@ defs["igIsKeyChordPressed"][1]["call_args"] = "(key_chord)" defs["igIsKeyChordPressed"][1]["cimguiname"] = "igIsKeyChordPressed" defs["igIsKeyChordPressed"][1]["defaults"] = {} defs["igIsKeyChordPressed"][1]["funcname"] = "IsKeyChordPressed" +<<<<<<< HEAD defs["igIsKeyChordPressed"][1]["location"] = "imgui:937" +======= +defs["igIsKeyChordPressed"][1]["location"] = "imgui:969" +>>>>>>> docking_inter defs["igIsKeyChordPressed"][1]["namespace"] = "ImGui" defs["igIsKeyChordPressed"][1]["ov_cimguiname"] = "igIsKeyChordPressed_Nil" defs["igIsKeyChordPressed"][1]["ret"] = "bool" @@ -21031,7 +26380,11 @@ defs["igIsKeyChordPressed"][2]["cimguiname"] = "igIsKeyChordPressed" defs["igIsKeyChordPressed"][2]["defaults"] = {} defs["igIsKeyChordPressed"][2]["defaults"]["owner_id"] = "0" defs["igIsKeyChordPressed"][2]["funcname"] = "IsKeyChordPressed" +<<<<<<< HEAD defs["igIsKeyChordPressed"][2]["location"] = "imgui_internal:3258" +======= +defs["igIsKeyChordPressed"][2]["location"] = "imgui_internal:3532" +>>>>>>> docking_inter defs["igIsKeyChordPressed"][2]["namespace"] = "ImGui" defs["igIsKeyChordPressed"][2]["ov_cimguiname"] = "igIsKeyChordPressed_InputFlags" defs["igIsKeyChordPressed"][2]["ret"] = "bool" @@ -21051,7 +26404,11 @@ defs["igIsKeyDown"][1]["call_args"] = "(key)" defs["igIsKeyDown"][1]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["defaults"] = {} defs["igIsKeyDown"][1]["funcname"] = "IsKeyDown" +<<<<<<< HEAD defs["igIsKeyDown"][1]["location"] = "imgui:934" +======= +defs["igIsKeyDown"][1]["location"] = "imgui:966" +>>>>>>> docking_inter defs["igIsKeyDown"][1]["namespace"] = "ImGui" defs["igIsKeyDown"][1]["ov_cimguiname"] = "igIsKeyDown_Nil" defs["igIsKeyDown"][1]["ret"] = "bool" @@ -21071,7 +26428,11 @@ defs["igIsKeyDown"][2]["call_args"] = "(key,owner_id)" defs["igIsKeyDown"][2]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][2]["defaults"] = {} defs["igIsKeyDown"][2]["funcname"] = "IsKeyDown" +<<<<<<< HEAD defs["igIsKeyDown"][2]["location"] = "imgui_internal:3255" +======= +defs["igIsKeyDown"][2]["location"] = "imgui_internal:3529" +>>>>>>> docking_inter defs["igIsKeyDown"][2]["namespace"] = "ImGui" defs["igIsKeyDown"][2]["ov_cimguiname"] = "igIsKeyDown_ID" defs["igIsKeyDown"][2]["ret"] = "bool" @@ -21095,7 +26456,11 @@ defs["igIsKeyPressed"][1]["cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][1]["defaults"] = {} defs["igIsKeyPressed"][1]["defaults"]["repeat"] = "true" defs["igIsKeyPressed"][1]["funcname"] = "IsKeyPressed" +<<<<<<< HEAD defs["igIsKeyPressed"][1]["location"] = "imgui:935" +======= +defs["igIsKeyPressed"][1]["location"] = "imgui:967" +>>>>>>> docking_inter defs["igIsKeyPressed"][1]["namespace"] = "ImGui" defs["igIsKeyPressed"][1]["ov_cimguiname"] = "igIsKeyPressed_Bool" defs["igIsKeyPressed"][1]["ret"] = "bool" @@ -21119,7 +26484,11 @@ defs["igIsKeyPressed"][2]["cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][2]["defaults"] = {} defs["igIsKeyPressed"][2]["defaults"]["owner_id"] = "0" defs["igIsKeyPressed"][2]["funcname"] = "IsKeyPressed" +<<<<<<< HEAD defs["igIsKeyPressed"][2]["location"] = "imgui_internal:3256" +======= +defs["igIsKeyPressed"][2]["location"] = "imgui_internal:3530" +>>>>>>> docking_inter defs["igIsKeyPressed"][2]["namespace"] = "ImGui" defs["igIsKeyPressed"][2]["ov_cimguiname"] = "igIsKeyPressed_InputFlags" defs["igIsKeyPressed"][2]["ret"] = "bool" @@ -21139,7 +26508,11 @@ defs["igIsKeyReleased"][1]["call_args"] = "(key)" defs["igIsKeyReleased"][1]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["defaults"] = {} defs["igIsKeyReleased"][1]["funcname"] = "IsKeyReleased" +<<<<<<< HEAD defs["igIsKeyReleased"][1]["location"] = "imgui:936" +======= +defs["igIsKeyReleased"][1]["location"] = "imgui:968" +>>>>>>> docking_inter defs["igIsKeyReleased"][1]["namespace"] = "ImGui" defs["igIsKeyReleased"][1]["ov_cimguiname"] = "igIsKeyReleased_Nil" defs["igIsKeyReleased"][1]["ret"] = "bool" @@ -21159,7 +26532,11 @@ defs["igIsKeyReleased"][2]["call_args"] = "(key,owner_id)" defs["igIsKeyReleased"][2]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][2]["defaults"] = {} defs["igIsKeyReleased"][2]["funcname"] = "IsKeyReleased" +<<<<<<< HEAD defs["igIsKeyReleased"][2]["location"] = "imgui_internal:3257" +======= +defs["igIsKeyReleased"][2]["location"] = "imgui_internal:3531" +>>>>>>> docking_inter defs["igIsKeyReleased"][2]["namespace"] = "ImGui" defs["igIsKeyReleased"][2]["ov_cimguiname"] = "igIsKeyReleased_ID" defs["igIsKeyReleased"][2]["ret"] = "bool" @@ -21179,7 +26556,11 @@ defs["igIsKeyboardKey"][1]["call_args"] = "(key)" defs["igIsKeyboardKey"][1]["cimguiname"] = "igIsKeyboardKey" defs["igIsKeyboardKey"][1]["defaults"] = {} defs["igIsKeyboardKey"][1]["funcname"] = "IsKeyboardKey" +<<<<<<< HEAD defs["igIsKeyboardKey"][1]["location"] = "imgui_internal:3203" +======= +defs["igIsKeyboardKey"][1]["location"] = "imgui_internal:3477" +>>>>>>> docking_inter defs["igIsKeyboardKey"][1]["namespace"] = "ImGui" defs["igIsKeyboardKey"][1]["ov_cimguiname"] = "igIsKeyboardKey" defs["igIsKeyboardKey"][1]["ret"] = "bool" @@ -21198,7 +26579,11 @@ defs["igIsLegacyKey"][1]["call_args"] = "(key)" defs["igIsLegacyKey"][1]["cimguiname"] = "igIsLegacyKey" defs["igIsLegacyKey"][1]["defaults"] = {} defs["igIsLegacyKey"][1]["funcname"] = "IsLegacyKey" +<<<<<<< HEAD defs["igIsLegacyKey"][1]["location"] = "imgui_internal:3202" +======= +defs["igIsLegacyKey"][1]["location"] = "imgui_internal:3476" +>>>>>>> docking_inter defs["igIsLegacyKey"][1]["namespace"] = "ImGui" defs["igIsLegacyKey"][1]["ov_cimguiname"] = "igIsLegacyKey" defs["igIsLegacyKey"][1]["ret"] = "bool" @@ -21217,7 +26602,11 @@ defs["igIsModKey"][1]["call_args"] = "(key)" defs["igIsModKey"][1]["cimguiname"] = "igIsModKey" defs["igIsModKey"][1]["defaults"] = {} defs["igIsModKey"][1]["funcname"] = "IsModKey" +<<<<<<< HEAD defs["igIsModKey"][1]["location"] = "imgui_internal:3207" +======= +defs["igIsModKey"][1]["location"] = "imgui_internal:3481" +>>>>>>> docking_inter defs["igIsModKey"][1]["namespace"] = "ImGui" defs["igIsModKey"][1]["ov_cimguiname"] = "igIsModKey" defs["igIsModKey"][1]["ret"] = "bool" @@ -21240,7 +26629,11 @@ defs["igIsMouseClicked"][1]["cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][1]["defaults"] = {} defs["igIsMouseClicked"][1]["defaults"]["repeat"] = "false" defs["igIsMouseClicked"][1]["funcname"] = "IsMouseClicked" +<<<<<<< HEAD defs["igIsMouseClicked"][1]["location"] = "imgui:965" +======= +defs["igIsMouseClicked"][1]["location"] = "imgui:997" +>>>>>>> docking_inter defs["igIsMouseClicked"][1]["namespace"] = "ImGui" defs["igIsMouseClicked"][1]["ov_cimguiname"] = "igIsMouseClicked_Bool" defs["igIsMouseClicked"][1]["ret"] = "bool" @@ -21264,7 +26657,11 @@ defs["igIsMouseClicked"][2]["cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][2]["defaults"] = {} defs["igIsMouseClicked"][2]["defaults"]["owner_id"] = "0" defs["igIsMouseClicked"][2]["funcname"] = "IsMouseClicked" +<<<<<<< HEAD defs["igIsMouseClicked"][2]["location"] = "imgui_internal:3260" +======= +defs["igIsMouseClicked"][2]["location"] = "imgui_internal:3534" +>>>>>>> docking_inter defs["igIsMouseClicked"][2]["namespace"] = "ImGui" defs["igIsMouseClicked"][2]["ov_cimguiname"] = "igIsMouseClicked_InputFlags" defs["igIsMouseClicked"][2]["ret"] = "bool" @@ -21284,7 +26681,11 @@ defs["igIsMouseDoubleClicked"][1]["call_args"] = "(button)" defs["igIsMouseDoubleClicked"][1]["cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["defaults"] = {} defs["igIsMouseDoubleClicked"][1]["funcname"] = "IsMouseDoubleClicked" +<<<<<<< HEAD defs["igIsMouseDoubleClicked"][1]["location"] = "imgui:967" +======= +defs["igIsMouseDoubleClicked"][1]["location"] = "imgui:999" +>>>>>>> docking_inter defs["igIsMouseDoubleClicked"][1]["namespace"] = "ImGui" defs["igIsMouseDoubleClicked"][1]["ov_cimguiname"] = "igIsMouseDoubleClicked_Nil" defs["igIsMouseDoubleClicked"][1]["ret"] = "bool" @@ -21304,7 +26705,11 @@ defs["igIsMouseDoubleClicked"][2]["call_args"] = "(button,owner_id)" defs["igIsMouseDoubleClicked"][2]["cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][2]["defaults"] = {} defs["igIsMouseDoubleClicked"][2]["funcname"] = "IsMouseDoubleClicked" +<<<<<<< HEAD defs["igIsMouseDoubleClicked"][2]["location"] = "imgui_internal:3262" +======= +defs["igIsMouseDoubleClicked"][2]["location"] = "imgui_internal:3536" +>>>>>>> docking_inter defs["igIsMouseDoubleClicked"][2]["namespace"] = "ImGui" defs["igIsMouseDoubleClicked"][2]["ov_cimguiname"] = "igIsMouseDoubleClicked_ID" defs["igIsMouseDoubleClicked"][2]["ret"] = "bool" @@ -21324,7 +26729,11 @@ defs["igIsMouseDown"][1]["call_args"] = "(button)" defs["igIsMouseDown"][1]["cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][1]["defaults"] = {} defs["igIsMouseDown"][1]["funcname"] = "IsMouseDown" +<<<<<<< HEAD defs["igIsMouseDown"][1]["location"] = "imgui:964" +======= +defs["igIsMouseDown"][1]["location"] = "imgui:996" +>>>>>>> docking_inter defs["igIsMouseDown"][1]["namespace"] = "ImGui" defs["igIsMouseDown"][1]["ov_cimguiname"] = "igIsMouseDown_Nil" defs["igIsMouseDown"][1]["ret"] = "bool" @@ -21344,7 +26753,11 @@ defs["igIsMouseDown"][2]["call_args"] = "(button,owner_id)" defs["igIsMouseDown"][2]["cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][2]["defaults"] = {} defs["igIsMouseDown"][2]["funcname"] = "IsMouseDown" +<<<<<<< HEAD defs["igIsMouseDown"][2]["location"] = "imgui_internal:3259" +======= +defs["igIsMouseDown"][2]["location"] = "imgui_internal:3533" +>>>>>>> docking_inter defs["igIsMouseDown"][2]["namespace"] = "ImGui" defs["igIsMouseDown"][2]["ov_cimguiname"] = "igIsMouseDown_ID" defs["igIsMouseDown"][2]["ret"] = "bool" @@ -21368,7 +26781,11 @@ defs["igIsMouseDragPastThreshold"][1]["cimguiname"] = "igIsMouseDragPastThreshol defs["igIsMouseDragPastThreshold"][1]["defaults"] = {} defs["igIsMouseDragPastThreshold"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igIsMouseDragPastThreshold"][1]["funcname"] = "IsMouseDragPastThreshold" +<<<<<<< HEAD defs["igIsMouseDragPastThreshold"][1]["location"] = "imgui_internal:3222" +======= +defs["igIsMouseDragPastThreshold"][1]["location"] = "imgui_internal:3496" +>>>>>>> docking_inter defs["igIsMouseDragPastThreshold"][1]["namespace"] = "ImGui" defs["igIsMouseDragPastThreshold"][1]["ov_cimguiname"] = "igIsMouseDragPastThreshold" defs["igIsMouseDragPastThreshold"][1]["ret"] = "bool" @@ -21391,7 +26808,11 @@ defs["igIsMouseDragging"][1]["cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["defaults"] = {} defs["igIsMouseDragging"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igIsMouseDragging"][1]["funcname"] = "IsMouseDragging" +<<<<<<< HEAD defs["igIsMouseDragging"][1]["location"] = "imgui:974" +======= +defs["igIsMouseDragging"][1]["location"] = "imgui:1006" +>>>>>>> docking_inter defs["igIsMouseDragging"][1]["namespace"] = "ImGui" defs["igIsMouseDragging"][1]["ov_cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["ret"] = "bool" @@ -21417,7 +26838,11 @@ defs["igIsMouseHoveringRect"][1]["cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["defaults"] = {} defs["igIsMouseHoveringRect"][1]["defaults"]["clip"] = "true" defs["igIsMouseHoveringRect"][1]["funcname"] = "IsMouseHoveringRect" +<<<<<<< HEAD defs["igIsMouseHoveringRect"][1]["location"] = "imgui:969" +======= +defs["igIsMouseHoveringRect"][1]["location"] = "imgui:1001" +>>>>>>> docking_inter defs["igIsMouseHoveringRect"][1]["namespace"] = "ImGui" defs["igIsMouseHoveringRect"][1]["ov_cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["ret"] = "bool" @@ -21436,7 +26861,11 @@ defs["igIsMouseKey"][1]["call_args"] = "(key)" defs["igIsMouseKey"][1]["cimguiname"] = "igIsMouseKey" defs["igIsMouseKey"][1]["defaults"] = {} defs["igIsMouseKey"][1]["funcname"] = "IsMouseKey" +<<<<<<< HEAD defs["igIsMouseKey"][1]["location"] = "imgui_internal:3205" +======= +defs["igIsMouseKey"][1]["location"] = "imgui_internal:3479" +>>>>>>> docking_inter defs["igIsMouseKey"][1]["namespace"] = "ImGui" defs["igIsMouseKey"][1]["ov_cimguiname"] = "igIsMouseKey" defs["igIsMouseKey"][1]["ret"] = "bool" @@ -21456,7 +26885,11 @@ defs["igIsMousePosValid"][1]["cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["defaults"] = {} defs["igIsMousePosValid"][1]["defaults"]["mouse_pos"] = "NULL" defs["igIsMousePosValid"][1]["funcname"] = "IsMousePosValid" +<<<<<<< HEAD defs["igIsMousePosValid"][1]["location"] = "imgui:970" +======= +defs["igIsMousePosValid"][1]["location"] = "imgui:1002" +>>>>>>> docking_inter defs["igIsMousePosValid"][1]["namespace"] = "ImGui" defs["igIsMousePosValid"][1]["ov_cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["ret"] = "bool" @@ -21475,7 +26908,11 @@ defs["igIsMouseReleased"][1]["call_args"] = "(button)" defs["igIsMouseReleased"][1]["cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][1]["defaults"] = {} defs["igIsMouseReleased"][1]["funcname"] = "IsMouseReleased" +<<<<<<< HEAD defs["igIsMouseReleased"][1]["location"] = "imgui:966" +======= +defs["igIsMouseReleased"][1]["location"] = "imgui:998" +>>>>>>> docking_inter defs["igIsMouseReleased"][1]["namespace"] = "ImGui" defs["igIsMouseReleased"][1]["ov_cimguiname"] = "igIsMouseReleased_Nil" defs["igIsMouseReleased"][1]["ret"] = "bool" @@ -21495,7 +26932,11 @@ defs["igIsMouseReleased"][2]["call_args"] = "(button,owner_id)" defs["igIsMouseReleased"][2]["cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][2]["defaults"] = {} defs["igIsMouseReleased"][2]["funcname"] = "IsMouseReleased" +<<<<<<< HEAD defs["igIsMouseReleased"][2]["location"] = "imgui_internal:3261" +======= +defs["igIsMouseReleased"][2]["location"] = "imgui_internal:3535" +>>>>>>> docking_inter defs["igIsMouseReleased"][2]["namespace"] = "ImGui" defs["igIsMouseReleased"][2]["ov_cimguiname"] = "igIsMouseReleased_ID" defs["igIsMouseReleased"][2]["ret"] = "bool" @@ -21515,7 +26956,11 @@ defs["igIsNamedKey"][1]["call_args"] = "(key)" defs["igIsNamedKey"][1]["cimguiname"] = "igIsNamedKey" defs["igIsNamedKey"][1]["defaults"] = {} defs["igIsNamedKey"][1]["funcname"] = "IsNamedKey" +<<<<<<< HEAD defs["igIsNamedKey"][1]["location"] = "imgui_internal:3200" +======= +defs["igIsNamedKey"][1]["location"] = "imgui_internal:3474" +>>>>>>> docking_inter defs["igIsNamedKey"][1]["namespace"] = "ImGui" defs["igIsNamedKey"][1]["ov_cimguiname"] = "igIsNamedKey" defs["igIsNamedKey"][1]["ret"] = "bool" @@ -21534,7 +26979,11 @@ defs["igIsNamedKeyOrMod"][1]["call_args"] = "(key)" defs["igIsNamedKeyOrMod"][1]["cimguiname"] = "igIsNamedKeyOrMod" defs["igIsNamedKeyOrMod"][1]["defaults"] = {} defs["igIsNamedKeyOrMod"][1]["funcname"] = "IsNamedKeyOrMod" +<<<<<<< HEAD defs["igIsNamedKeyOrMod"][1]["location"] = "imgui_internal:3201" +======= +defs["igIsNamedKeyOrMod"][1]["location"] = "imgui_internal:3475" +>>>>>>> docking_inter defs["igIsNamedKeyOrMod"][1]["namespace"] = "ImGui" defs["igIsNamedKeyOrMod"][1]["ov_cimguiname"] = "igIsNamedKeyOrMod" defs["igIsNamedKeyOrMod"][1]["ret"] = "bool" @@ -21557,7 +27006,11 @@ defs["igIsPopupOpen"][1]["cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][1]["defaults"] = {} defs["igIsPopupOpen"][1]["defaults"]["flags"] = "0" defs["igIsPopupOpen"][1]["funcname"] = "IsPopupOpen" +<<<<<<< HEAD defs["igIsPopupOpen"][1]["location"] = "imgui:758" +======= +defs["igIsPopupOpen"][1]["location"] = "imgui:768" +>>>>>>> docking_inter defs["igIsPopupOpen"][1]["namespace"] = "ImGui" defs["igIsPopupOpen"][1]["ov_cimguiname"] = "igIsPopupOpen_Str" defs["igIsPopupOpen"][1]["ret"] = "bool" @@ -21577,7 +27030,11 @@ defs["igIsPopupOpen"][2]["call_args"] = "(id,popup_flags)" defs["igIsPopupOpen"][2]["cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][2]["defaults"] = {} defs["igIsPopupOpen"][2]["funcname"] = "IsPopupOpen" +<<<<<<< HEAD defs["igIsPopupOpen"][2]["location"] = "imgui_internal:3152" +======= +defs["igIsPopupOpen"][2]["location"] = "imgui_internal:3425" +>>>>>>> docking_inter defs["igIsPopupOpen"][2]["namespace"] = "ImGui" defs["igIsPopupOpen"][2]["ov_cimguiname"] = "igIsPopupOpen_ID" defs["igIsPopupOpen"][2]["ret"] = "bool" @@ -21597,7 +27054,11 @@ defs["igIsRectVisible"][1]["call_args"] = "(size)" defs["igIsRectVisible"][1]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][1]["defaults"] = {} defs["igIsRectVisible"][1]["funcname"] = "IsRectVisible" +<<<<<<< HEAD defs["igIsRectVisible"][1]["location"] = "imgui:911" +======= +defs["igIsRectVisible"][1]["location"] = "imgui:943" +>>>>>>> docking_inter defs["igIsRectVisible"][1]["namespace"] = "ImGui" defs["igIsRectVisible"][1]["ov_cimguiname"] = "igIsRectVisible_Nil" defs["igIsRectVisible"][1]["ret"] = "bool" @@ -21617,7 +27078,11 @@ defs["igIsRectVisible"][2]["call_args"] = "(rect_min,rect_max)" defs["igIsRectVisible"][2]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][2]["defaults"] = {} defs["igIsRectVisible"][2]["funcname"] = "IsRectVisible" +<<<<<<< HEAD defs["igIsRectVisible"][2]["location"] = "imgui:912" +======= +defs["igIsRectVisible"][2]["location"] = "imgui:944" +>>>>>>> docking_inter defs["igIsRectVisible"][2]["namespace"] = "ImGui" defs["igIsRectVisible"][2]["ov_cimguiname"] = "igIsRectVisible_Vec2" defs["igIsRectVisible"][2]["ret"] = "bool" @@ -21640,7 +27105,11 @@ defs["igIsWindowAbove"][1]["call_args"] = "(potential_above,potential_below)" defs["igIsWindowAbove"][1]["cimguiname"] = "igIsWindowAbove" defs["igIsWindowAbove"][1]["defaults"] = {} defs["igIsWindowAbove"][1]["funcname"] = "IsWindowAbove" +<<<<<<< HEAD defs["igIsWindowAbove"][1]["location"] = "imgui_internal:3017" +======= +defs["igIsWindowAbove"][1]["location"] = "imgui_internal:3282" +>>>>>>> docking_inter defs["igIsWindowAbove"][1]["namespace"] = "ImGui" defs["igIsWindowAbove"][1]["ov_cimguiname"] = "igIsWindowAbove" defs["igIsWindowAbove"][1]["ret"] = "bool" @@ -21656,7 +27125,11 @@ defs["igIsWindowAppearing"][1]["call_args"] = "()" defs["igIsWindowAppearing"][1]["cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["defaults"] = {} defs["igIsWindowAppearing"][1]["funcname"] = "IsWindowAppearing" +<<<<<<< HEAD defs["igIsWindowAppearing"][1]["location"] = "imgui:377" +======= +defs["igIsWindowAppearing"][1]["location"] = "imgui:384" +>>>>>>> docking_inter defs["igIsWindowAppearing"][1]["namespace"] = "ImGui" defs["igIsWindowAppearing"][1]["ov_cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["ret"] = "bool" @@ -21681,7 +27154,11 @@ defs["igIsWindowChildOf"][1]["call_args"] = "(window,potential_parent,popup_hier defs["igIsWindowChildOf"][1]["cimguiname"] = "igIsWindowChildOf" defs["igIsWindowChildOf"][1]["defaults"] = {} defs["igIsWindowChildOf"][1]["funcname"] = "IsWindowChildOf" +<<<<<<< HEAD defs["igIsWindowChildOf"][1]["location"] = "imgui_internal:3015" +======= +defs["igIsWindowChildOf"][1]["location"] = "imgui_internal:3280" +>>>>>>> docking_inter defs["igIsWindowChildOf"][1]["namespace"] = "ImGui" defs["igIsWindowChildOf"][1]["ov_cimguiname"] = "igIsWindowChildOf" defs["igIsWindowChildOf"][1]["ret"] = "bool" @@ -21697,7 +27174,11 @@ defs["igIsWindowCollapsed"][1]["call_args"] = "()" defs["igIsWindowCollapsed"][1]["cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["defaults"] = {} defs["igIsWindowCollapsed"][1]["funcname"] = "IsWindowCollapsed" +<<<<<<< HEAD defs["igIsWindowCollapsed"][1]["location"] = "imgui:378" +======= +defs["igIsWindowCollapsed"][1]["location"] = "imgui:385" +>>>>>>> docking_inter defs["igIsWindowCollapsed"][1]["namespace"] = "ImGui" defs["igIsWindowCollapsed"][1]["ov_cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["ret"] = "bool" @@ -21720,13 +27201,36 @@ defs["igIsWindowContentHoverable"][1]["cimguiname"] = "igIsWindowContentHoverabl defs["igIsWindowContentHoverable"][1]["defaults"] = {} defs["igIsWindowContentHoverable"][1]["defaults"]["flags"] = "0" defs["igIsWindowContentHoverable"][1]["funcname"] = "IsWindowContentHoverable" +<<<<<<< HEAD defs["igIsWindowContentHoverable"][1]["location"] = "imgui_internal:3123" +======= +defs["igIsWindowContentHoverable"][1]["location"] = "imgui_internal:3393" +>>>>>>> docking_inter defs["igIsWindowContentHoverable"][1]["namespace"] = "ImGui" defs["igIsWindowContentHoverable"][1]["ov_cimguiname"] = "igIsWindowContentHoverable" defs["igIsWindowContentHoverable"][1]["ret"] = "bool" defs["igIsWindowContentHoverable"][1]["signature"] = "(ImGuiWindow*,ImGuiHoveredFlags)" defs["igIsWindowContentHoverable"][1]["stname"] = "" defs["igIsWindowContentHoverable"]["(ImGuiWindow*,ImGuiHoveredFlags)"] = defs["igIsWindowContentHoverable"][1] +<<<<<<< HEAD +======= +defs["igIsWindowDocked"] = {} +defs["igIsWindowDocked"][1] = {} +defs["igIsWindowDocked"][1]["args"] = "()" +defs["igIsWindowDocked"][1]["argsT"] = {} +defs["igIsWindowDocked"][1]["argsoriginal"] = "()" +defs["igIsWindowDocked"][1]["call_args"] = "()" +defs["igIsWindowDocked"][1]["cimguiname"] = "igIsWindowDocked" +defs["igIsWindowDocked"][1]["defaults"] = {} +defs["igIsWindowDocked"][1]["funcname"] = "IsWindowDocked" +defs["igIsWindowDocked"][1]["location"] = "imgui:865" +defs["igIsWindowDocked"][1]["namespace"] = "ImGui" +defs["igIsWindowDocked"][1]["ov_cimguiname"] = "igIsWindowDocked" +defs["igIsWindowDocked"][1]["ret"] = "bool" +defs["igIsWindowDocked"][1]["signature"] = "()" +defs["igIsWindowDocked"][1]["stname"] = "" +defs["igIsWindowDocked"]["()"] = defs["igIsWindowDocked"][1] +>>>>>>> docking_inter defs["igIsWindowFocused"] = {} defs["igIsWindowFocused"][1] = {} defs["igIsWindowFocused"][1]["args"] = "(ImGuiFocusedFlags flags)" @@ -21740,7 +27244,11 @@ defs["igIsWindowFocused"][1]["cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["defaults"] = {} defs["igIsWindowFocused"][1]["defaults"]["flags"] = "0" defs["igIsWindowFocused"][1]["funcname"] = "IsWindowFocused" +<<<<<<< HEAD defs["igIsWindowFocused"][1]["location"] = "imgui:379" +======= +defs["igIsWindowFocused"][1]["location"] = "imgui:386" +>>>>>>> docking_inter defs["igIsWindowFocused"][1]["namespace"] = "ImGui" defs["igIsWindowFocused"][1]["ov_cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["ret"] = "bool" @@ -21760,7 +27268,11 @@ defs["igIsWindowHovered"][1]["cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["defaults"] = {} defs["igIsWindowHovered"][1]["defaults"]["flags"] = "0" defs["igIsWindowHovered"][1]["funcname"] = "IsWindowHovered" +<<<<<<< HEAD defs["igIsWindowHovered"][1]["location"] = "imgui:380" +======= +defs["igIsWindowHovered"][1]["location"] = "imgui:387" +>>>>>>> docking_inter defs["igIsWindowHovered"][1]["namespace"] = "ImGui" defs["igIsWindowHovered"][1]["ov_cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["ret"] = "bool" @@ -21779,7 +27291,11 @@ defs["igIsWindowNavFocusable"][1]["call_args"] = "(window)" defs["igIsWindowNavFocusable"][1]["cimguiname"] = "igIsWindowNavFocusable" defs["igIsWindowNavFocusable"][1]["defaults"] = {} defs["igIsWindowNavFocusable"][1]["funcname"] = "IsWindowNavFocusable" +<<<<<<< HEAD defs["igIsWindowNavFocusable"][1]["location"] = "imgui_internal:3018" +======= +defs["igIsWindowNavFocusable"][1]["location"] = "imgui_internal:3283" +>>>>>>> docking_inter defs["igIsWindowNavFocusable"][1]["namespace"] = "ImGui" defs["igIsWindowNavFocusable"][1]["ov_cimguiname"] = "igIsWindowNavFocusable" defs["igIsWindowNavFocusable"][1]["ret"] = "bool" @@ -21801,7 +27317,11 @@ defs["igIsWindowWithinBeginStackOf"][1]["call_args"] = "(window,potential_parent defs["igIsWindowWithinBeginStackOf"][1]["cimguiname"] = "igIsWindowWithinBeginStackOf" defs["igIsWindowWithinBeginStackOf"][1]["defaults"] = {} defs["igIsWindowWithinBeginStackOf"][1]["funcname"] = "IsWindowWithinBeginStackOf" +<<<<<<< HEAD defs["igIsWindowWithinBeginStackOf"][1]["location"] = "imgui_internal:3016" +======= +defs["igIsWindowWithinBeginStackOf"][1]["location"] = "imgui_internal:3281" +>>>>>>> docking_inter defs["igIsWindowWithinBeginStackOf"][1]["namespace"] = "ImGui" defs["igIsWindowWithinBeginStackOf"][1]["ov_cimguiname"] = "igIsWindowWithinBeginStackOf" defs["igIsWindowWithinBeginStackOf"][1]["ret"] = "bool" @@ -21831,7 +27351,11 @@ defs["igItemAdd"][1]["defaults"] = {} defs["igItemAdd"][1]["defaults"]["extra_flags"] = "0" defs["igItemAdd"][1]["defaults"]["nav_bb"] = "NULL" defs["igItemAdd"][1]["funcname"] = "ItemAdd" +<<<<<<< HEAD defs["igItemAdd"][1]["location"] = "imgui_internal:3121" +======= +defs["igItemAdd"][1]["location"] = "imgui_internal:3391" +>>>>>>> docking_inter defs["igItemAdd"][1]["namespace"] = "ImGui" defs["igItemAdd"][1]["ov_cimguiname"] = "igItemAdd" defs["igItemAdd"][1]["ret"] = "bool" @@ -21856,7 +27380,11 @@ defs["igItemHoverable"][1]["call_args"] = "(bb,id,item_flags)" defs["igItemHoverable"][1]["cimguiname"] = "igItemHoverable" defs["igItemHoverable"][1]["defaults"] = {} defs["igItemHoverable"][1]["funcname"] = "ItemHoverable" +<<<<<<< HEAD defs["igItemHoverable"][1]["location"] = "imgui_internal:3122" +======= +defs["igItemHoverable"][1]["location"] = "imgui_internal:3392" +>>>>>>> docking_inter defs["igItemHoverable"][1]["namespace"] = "ImGui" defs["igItemHoverable"][1]["ov_cimguiname"] = "igItemHoverable" defs["igItemHoverable"][1]["ret"] = "bool" @@ -21879,7 +27407,11 @@ defs["igItemSize"][1]["cimguiname"] = "igItemSize" defs["igItemSize"][1]["defaults"] = {} defs["igItemSize"][1]["defaults"]["text_baseline_y"] = "-1.0f" defs["igItemSize"][1]["funcname"] = "ItemSize" +<<<<<<< HEAD defs["igItemSize"][1]["location"] = "imgui_internal:3119" +======= +defs["igItemSize"][1]["location"] = "imgui_internal:3389" +>>>>>>> docking_inter defs["igItemSize"][1]["namespace"] = "ImGui" defs["igItemSize"][1]["ov_cimguiname"] = "igItemSize_Vec2" defs["igItemSize"][1]["ret"] = "void" @@ -21900,7 +27432,11 @@ defs["igItemSize"][2]["cimguiname"] = "igItemSize" defs["igItemSize"][2]["defaults"] = {} defs["igItemSize"][2]["defaults"]["text_baseline_y"] = "-1.0f" defs["igItemSize"][2]["funcname"] = "ItemSize" +<<<<<<< HEAD defs["igItemSize"][2]["location"] = "imgui_internal:3120" +======= +defs["igItemSize"][2]["location"] = "imgui_internal:3390" +>>>>>>> docking_inter defs["igItemSize"][2]["namespace"] = "ImGui" defs["igItemSize"][2]["ov_cimguiname"] = "igItemSize_Rect" defs["igItemSize"][2]["ret"] = "void" @@ -21920,7 +27456,11 @@ defs["igKeepAliveID"][1]["call_args"] = "(id)" defs["igKeepAliveID"][1]["cimguiname"] = "igKeepAliveID" defs["igKeepAliveID"][1]["defaults"] = {} defs["igKeepAliveID"][1]["funcname"] = "KeepAliveID" +<<<<<<< HEAD defs["igKeepAliveID"][1]["location"] = "imgui_internal:3112" +======= +defs["igKeepAliveID"][1]["location"] = "imgui_internal:3382" +>>>>>>> docking_inter defs["igKeepAliveID"][1]["namespace"] = "ImGui" defs["igKeepAliveID"][1]["ov_cimguiname"] = "igKeepAliveID" defs["igKeepAliveID"][1]["ret"] = "void" @@ -21946,7 +27486,11 @@ defs["igLabelText"][1]["cimguiname"] = "igLabelText" defs["igLabelText"][1]["defaults"] = {} defs["igLabelText"][1]["funcname"] = "LabelText" defs["igLabelText"][1]["isvararg"] = "...)" +<<<<<<< HEAD defs["igLabelText"][1]["location"] = "imgui:525" +======= +defs["igLabelText"][1]["location"] = "imgui:535" +>>>>>>> docking_inter defs["igLabelText"][1]["namespace"] = "ImGui" defs["igLabelText"][1]["ov_cimguiname"] = "igLabelText" defs["igLabelText"][1]["ret"] = "void" @@ -21971,7 +27515,11 @@ defs["igLabelTextV"][1]["call_args"] = "(label,fmt,args)" defs["igLabelTextV"][1]["cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["defaults"] = {} defs["igLabelTextV"][1]["funcname"] = "LabelTextV" +<<<<<<< HEAD defs["igLabelTextV"][1]["location"] = "imgui:526" +======= +defs["igLabelTextV"][1]["location"] = "imgui:536" +>>>>>>> docking_inter defs["igLabelTextV"][1]["namespace"] = "ImGui" defs["igLabelTextV"][1]["ov_cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["ret"] = "void" @@ -22003,7 +27551,11 @@ defs["igListBox"][1]["cimguiname"] = "igListBox" defs["igListBox"][1]["defaults"] = {} defs["igListBox"][1]["defaults"]["height_in_items"] = "-1" defs["igListBox"][1]["funcname"] = "ListBox" +<<<<<<< HEAD defs["igListBox"][1]["location"] = "imgui:670" +======= +defs["igListBox"][1]["location"] = "imgui:680" +>>>>>>> docking_inter defs["igListBox"][1]["namespace"] = "ImGui" defs["igListBox"][1]["ov_cimguiname"] = "igListBox_Str_arr" defs["igListBox"][1]["ret"] = "bool" @@ -22038,7 +27590,11 @@ defs["igListBox"][2]["cimguiname"] = "igListBox" defs["igListBox"][2]["defaults"] = {} defs["igListBox"][2]["defaults"]["height_in_items"] = "-1" defs["igListBox"][2]["funcname"] = "ListBox" +<<<<<<< HEAD defs["igListBox"][2]["location"] = "imgui:671" +======= +defs["igListBox"][2]["location"] = "imgui:681" +>>>>>>> docking_inter defs["igListBox"][2]["namespace"] = "ImGui" defs["igListBox"][2]["ov_cimguiname"] = "igListBox_FnStrPtr" defs["igListBox"][2]["ret"] = "bool" @@ -22058,7 +27614,11 @@ defs["igLoadIniSettingsFromDisk"][1]["call_args"] = "(ini_filename)" defs["igLoadIniSettingsFromDisk"][1]["cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["defaults"] = {} defs["igLoadIniSettingsFromDisk"][1]["funcname"] = "LoadIniSettingsFromDisk" +<<<<<<< HEAD defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui:990" +======= +defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui:1022" +>>>>>>> docking_inter defs["igLoadIniSettingsFromDisk"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromDisk"][1]["ov_cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["ret"] = "void" @@ -22081,7 +27641,11 @@ defs["igLoadIniSettingsFromMemory"][1]["cimguiname"] = "igLoadIniSettingsFromMem defs["igLoadIniSettingsFromMemory"][1]["defaults"] = {} defs["igLoadIniSettingsFromMemory"][1]["defaults"]["ini_size"] = "0" defs["igLoadIniSettingsFromMemory"][1]["funcname"] = "LoadIniSettingsFromMemory" +<<<<<<< HEAD defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui:991" +======= +defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui:1023" +>>>>>>> docking_inter defs["igLoadIniSettingsFromMemory"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromMemory"][1]["ov_cimguiname"] = "igLoadIniSettingsFromMemory" defs["igLoadIniSettingsFromMemory"][1]["ret"] = "void" @@ -22100,7 +27664,11 @@ defs["igLocalizeGetMsg"][1]["call_args"] = "(key)" defs["igLocalizeGetMsg"][1]["cimguiname"] = "igLocalizeGetMsg" defs["igLocalizeGetMsg"][1]["defaults"] = {} defs["igLocalizeGetMsg"][1]["funcname"] = "LocalizeGetMsg" +<<<<<<< HEAD defs["igLocalizeGetMsg"][1]["location"] = "imgui_internal:3086" +======= +defs["igLocalizeGetMsg"][1]["location"] = "imgui_internal:3356" +>>>>>>> docking_inter defs["igLocalizeGetMsg"][1]["namespace"] = "ImGui" defs["igLocalizeGetMsg"][1]["ov_cimguiname"] = "igLocalizeGetMsg" defs["igLocalizeGetMsg"][1]["ret"] = "const char*" @@ -22122,7 +27690,11 @@ defs["igLocalizeRegisterEntries"][1]["call_args"] = "(entries,count)" defs["igLocalizeRegisterEntries"][1]["cimguiname"] = "igLocalizeRegisterEntries" defs["igLocalizeRegisterEntries"][1]["defaults"] = {} defs["igLocalizeRegisterEntries"][1]["funcname"] = "LocalizeRegisterEntries" +<<<<<<< HEAD defs["igLocalizeRegisterEntries"][1]["location"] = "imgui_internal:3085" +======= +defs["igLocalizeRegisterEntries"][1]["location"] = "imgui_internal:3355" +>>>>>>> docking_inter defs["igLocalizeRegisterEntries"][1]["namespace"] = "ImGui" defs["igLocalizeRegisterEntries"][1]["ov_cimguiname"] = "igLocalizeRegisterEntries" defs["igLocalizeRegisterEntries"][1]["ret"] = "void" @@ -22144,7 +27716,11 @@ defs["igLogBegin"][1]["call_args"] = "(type,auto_open_depth)" defs["igLogBegin"][1]["cimguiname"] = "igLogBegin" defs["igLogBegin"][1]["defaults"] = {} defs["igLogBegin"][1]["funcname"] = "LogBegin" +<<<<<<< HEAD defs["igLogBegin"][1]["location"] = "imgui_internal:3141" +======= +defs["igLogBegin"][1]["location"] = "imgui_internal:3411" +>>>>>>> docking_inter defs["igLogBegin"][1]["namespace"] = "ImGui" defs["igLogBegin"][1]["ov_cimguiname"] = "igLogBegin" defs["igLogBegin"][1]["ret"] = "void" @@ -22160,7 +27736,11 @@ defs["igLogButtons"][1]["call_args"] = "()" defs["igLogButtons"][1]["cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["defaults"] = {} defs["igLogButtons"][1]["funcname"] = "LogButtons" +<<<<<<< HEAD defs["igLogButtons"][1]["location"] = "imgui:842" +======= +defs["igLogButtons"][1]["location"] = "imgui:873" +>>>>>>> docking_inter defs["igLogButtons"][1]["namespace"] = "ImGui" defs["igLogButtons"][1]["ov_cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["ret"] = "void" @@ -22176,7 +27756,11 @@ defs["igLogFinish"][1]["call_args"] = "()" defs["igLogFinish"][1]["cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["defaults"] = {} defs["igLogFinish"][1]["funcname"] = "LogFinish" +<<<<<<< HEAD defs["igLogFinish"][1]["location"] = "imgui:841" +======= +defs["igLogFinish"][1]["location"] = "imgui:872" +>>>>>>> docking_inter defs["igLogFinish"][1]["namespace"] = "ImGui" defs["igLogFinish"][1]["ov_cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["ret"] = "void" @@ -22202,7 +27786,11 @@ defs["igLogRenderedText"][1]["cimguiname"] = "igLogRenderedText" defs["igLogRenderedText"][1]["defaults"] = {} defs["igLogRenderedText"][1]["defaults"]["text_end"] = "NULL" defs["igLogRenderedText"][1]["funcname"] = "LogRenderedText" +<<<<<<< HEAD defs["igLogRenderedText"][1]["location"] = "imgui_internal:3143" +======= +defs["igLogRenderedText"][1]["location"] = "imgui_internal:3413" +>>>>>>> docking_inter defs["igLogRenderedText"][1]["namespace"] = "ImGui" defs["igLogRenderedText"][1]["ov_cimguiname"] = "igLogRenderedText" defs["igLogRenderedText"][1]["ret"] = "void" @@ -22224,7 +27812,11 @@ defs["igLogSetNextTextDecoration"][1]["call_args"] = "(prefix,suffix)" defs["igLogSetNextTextDecoration"][1]["cimguiname"] = "igLogSetNextTextDecoration" defs["igLogSetNextTextDecoration"][1]["defaults"] = {} defs["igLogSetNextTextDecoration"][1]["funcname"] = "LogSetNextTextDecoration" +<<<<<<< HEAD defs["igLogSetNextTextDecoration"][1]["location"] = "imgui_internal:3144" +======= +defs["igLogSetNextTextDecoration"][1]["location"] = "imgui_internal:3414" +>>>>>>> docking_inter defs["igLogSetNextTextDecoration"][1]["namespace"] = "ImGui" defs["igLogSetNextTextDecoration"][1]["ov_cimguiname"] = "igLogSetNextTextDecoration" defs["igLogSetNextTextDecoration"][1]["ret"] = "void" @@ -22247,7 +27839,11 @@ defs["igLogText"][1]["cimguiname"] = "igLogText" defs["igLogText"][1]["defaults"] = {} defs["igLogText"][1]["funcname"] = "LogText" defs["igLogText"][1]["isvararg"] = "...)" +<<<<<<< HEAD defs["igLogText"][1]["location"] = "imgui:843" +======= +defs["igLogText"][1]["location"] = "imgui:874" +>>>>>>> docking_inter defs["igLogText"][1]["manual"] = true defs["igLogText"][1]["namespace"] = "ImGui" defs["igLogText"][1]["ov_cimguiname"] = "igLogText" @@ -22270,7 +27866,11 @@ defs["igLogTextV"][1]["call_args"] = "(fmt,args)" defs["igLogTextV"][1]["cimguiname"] = "igLogTextV" defs["igLogTextV"][1]["defaults"] = {} defs["igLogTextV"][1]["funcname"] = "LogTextV" +<<<<<<< HEAD defs["igLogTextV"][1]["location"] = "imgui:844" +======= +defs["igLogTextV"][1]["location"] = "imgui:875" +>>>>>>> docking_inter defs["igLogTextV"][1]["namespace"] = "ImGui" defs["igLogTextV"][1]["ov_cimguiname"] = "igLogTextV" defs["igLogTextV"][1]["ret"] = "void" @@ -22290,7 +27890,11 @@ defs["igLogToBuffer"][1]["cimguiname"] = "igLogToBuffer" defs["igLogToBuffer"][1]["defaults"] = {} defs["igLogToBuffer"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToBuffer"][1]["funcname"] = "LogToBuffer" +<<<<<<< HEAD defs["igLogToBuffer"][1]["location"] = "imgui_internal:3142" +======= +defs["igLogToBuffer"][1]["location"] = "imgui_internal:3412" +>>>>>>> docking_inter defs["igLogToBuffer"][1]["namespace"] = "ImGui" defs["igLogToBuffer"][1]["ov_cimguiname"] = "igLogToBuffer" defs["igLogToBuffer"][1]["ret"] = "void" @@ -22310,7 +27914,11 @@ defs["igLogToClipboard"][1]["cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["defaults"] = {} defs["igLogToClipboard"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToClipboard"][1]["funcname"] = "LogToClipboard" +<<<<<<< HEAD defs["igLogToClipboard"][1]["location"] = "imgui:840" +======= +defs["igLogToClipboard"][1]["location"] = "imgui:871" +>>>>>>> docking_inter defs["igLogToClipboard"][1]["namespace"] = "ImGui" defs["igLogToClipboard"][1]["ov_cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["ret"] = "void" @@ -22334,7 +27942,11 @@ defs["igLogToFile"][1]["defaults"] = {} defs["igLogToFile"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToFile"][1]["defaults"]["filename"] = "NULL" defs["igLogToFile"][1]["funcname"] = "LogToFile" +<<<<<<< HEAD defs["igLogToFile"][1]["location"] = "imgui:839" +======= +defs["igLogToFile"][1]["location"] = "imgui:870" +>>>>>>> docking_inter defs["igLogToFile"][1]["namespace"] = "ImGui" defs["igLogToFile"][1]["ov_cimguiname"] = "igLogToFile" defs["igLogToFile"][1]["ret"] = "void" @@ -22354,7 +27966,11 @@ defs["igLogToTTY"][1]["cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["defaults"] = {} defs["igLogToTTY"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToTTY"][1]["funcname"] = "LogToTTY" +<<<<<<< HEAD defs["igLogToTTY"][1]["location"] = "imgui:838" +======= +defs["igLogToTTY"][1]["location"] = "imgui:869" +>>>>>>> docking_inter defs["igLogToTTY"][1]["namespace"] = "ImGui" defs["igLogToTTY"][1]["ov_cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["ret"] = "void" @@ -22370,7 +27986,11 @@ defs["igMarkIniSettingsDirty"][1]["call_args"] = "()" defs["igMarkIniSettingsDirty"][1]["cimguiname"] = "igMarkIniSettingsDirty" defs["igMarkIniSettingsDirty"][1]["defaults"] = {} defs["igMarkIniSettingsDirty"][1]["funcname"] = "MarkIniSettingsDirty" +<<<<<<< HEAD defs["igMarkIniSettingsDirty"][1]["location"] = "imgui_internal:3071" +======= +defs["igMarkIniSettingsDirty"][1]["location"] = "imgui_internal:3341" +>>>>>>> docking_inter defs["igMarkIniSettingsDirty"][1]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][1]["ov_cimguiname"] = "igMarkIniSettingsDirty_Nil" defs["igMarkIniSettingsDirty"][1]["ret"] = "void" @@ -22387,7 +28007,11 @@ defs["igMarkIniSettingsDirty"][2]["call_args"] = "(window)" defs["igMarkIniSettingsDirty"][2]["cimguiname"] = "igMarkIniSettingsDirty" defs["igMarkIniSettingsDirty"][2]["defaults"] = {} defs["igMarkIniSettingsDirty"][2]["funcname"] = "MarkIniSettingsDirty" +<<<<<<< HEAD defs["igMarkIniSettingsDirty"][2]["location"] = "imgui_internal:3072" +======= +defs["igMarkIniSettingsDirty"][2]["location"] = "imgui_internal:3342" +>>>>>>> docking_inter defs["igMarkIniSettingsDirty"][2]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][2]["ov_cimguiname"] = "igMarkIniSettingsDirty_WindowPtr" defs["igMarkIniSettingsDirty"][2]["ret"] = "void" @@ -22407,7 +28031,11 @@ defs["igMarkItemEdited"][1]["call_args"] = "(id)" defs["igMarkItemEdited"][1]["cimguiname"] = "igMarkItemEdited" defs["igMarkItemEdited"][1]["defaults"] = {} defs["igMarkItemEdited"][1]["funcname"] = "MarkItemEdited" +<<<<<<< HEAD defs["igMarkItemEdited"][1]["location"] = "imgui_internal:3113" +======= +defs["igMarkItemEdited"][1]["location"] = "imgui_internal:3383" +>>>>>>> docking_inter defs["igMarkItemEdited"][1]["namespace"] = "ImGui" defs["igMarkItemEdited"][1]["ov_cimguiname"] = "igMarkItemEdited" defs["igMarkItemEdited"][1]["ret"] = "void" @@ -22426,7 +28054,11 @@ defs["igMemAlloc"][1]["call_args"] = "(size)" defs["igMemAlloc"][1]["cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["defaults"] = {} defs["igMemAlloc"][1]["funcname"] = "MemAlloc" +<<<<<<< HEAD defs["igMemAlloc"][1]["location"] = "imgui:1008" +======= +defs["igMemAlloc"][1]["location"] = "imgui:1040" +>>>>>>> docking_inter defs["igMemAlloc"][1]["namespace"] = "ImGui" defs["igMemAlloc"][1]["ov_cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["ret"] = "void*" @@ -22445,7 +28077,11 @@ defs["igMemFree"][1]["call_args"] = "(ptr)" defs["igMemFree"][1]["cimguiname"] = "igMemFree" defs["igMemFree"][1]["defaults"] = {} defs["igMemFree"][1]["funcname"] = "MemFree" +<<<<<<< HEAD defs["igMemFree"][1]["location"] = "imgui:1009" +======= +defs["igMemFree"][1]["location"] = "imgui:1041" +>>>>>>> docking_inter defs["igMemFree"][1]["namespace"] = "ImGui" defs["igMemFree"][1]["ov_cimguiname"] = "igMemFree" defs["igMemFree"][1]["ret"] = "void" @@ -22476,7 +28112,11 @@ defs["igMenuItem"][1]["defaults"]["enabled"] = "true" defs["igMenuItem"][1]["defaults"]["selected"] = "false" defs["igMenuItem"][1]["defaults"]["shortcut"] = "NULL" defs["igMenuItem"][1]["funcname"] = "MenuItem" +<<<<<<< HEAD defs["igMenuItem"][1]["location"] = "imgui:698" +======= +defs["igMenuItem"][1]["location"] = "imgui:708" +>>>>>>> docking_inter defs["igMenuItem"][1]["namespace"] = "ImGui" defs["igMenuItem"][1]["ov_cimguiname"] = "igMenuItem_Bool" defs["igMenuItem"][1]["ret"] = "bool" @@ -22503,7 +28143,11 @@ defs["igMenuItem"][2]["cimguiname"] = "igMenuItem" defs["igMenuItem"][2]["defaults"] = {} defs["igMenuItem"][2]["defaults"]["enabled"] = "true" defs["igMenuItem"][2]["funcname"] = "MenuItem" +<<<<<<< HEAD defs["igMenuItem"][2]["location"] = "imgui:699" +======= +defs["igMenuItem"][2]["location"] = "imgui:709" +>>>>>>> docking_inter defs["igMenuItem"][2]["namespace"] = "ImGui" defs["igMenuItem"][2]["ov_cimguiname"] = "igMenuItem_BoolPtr" defs["igMenuItem"][2]["ret"] = "bool" @@ -22538,7 +28182,11 @@ defs["igMenuItemEx"][1]["defaults"]["enabled"] = "true" defs["igMenuItemEx"][1]["defaults"]["selected"] = "false" defs["igMenuItemEx"][1]["defaults"]["shortcut"] = "NULL" defs["igMenuItemEx"][1]["funcname"] = "MenuItemEx" +<<<<<<< HEAD defs["igMenuItemEx"][1]["location"] = "imgui_internal:3166" +======= +defs["igMenuItemEx"][1]["location"] = "imgui_internal:3440" +>>>>>>> docking_inter defs["igMenuItemEx"][1]["namespace"] = "ImGui" defs["igMenuItemEx"][1]["ov_cimguiname"] = "igMenuItemEx" defs["igMenuItemEx"][1]["ret"] = "bool" @@ -22557,7 +28205,11 @@ defs["igMouseButtonToKey"][1]["call_args"] = "(button)" defs["igMouseButtonToKey"][1]["cimguiname"] = "igMouseButtonToKey" defs["igMouseButtonToKey"][1]["defaults"] = {} defs["igMouseButtonToKey"][1]["funcname"] = "MouseButtonToKey" +<<<<<<< HEAD defs["igMouseButtonToKey"][1]["location"] = "imgui_internal:3221" +======= +defs["igMouseButtonToKey"][1]["location"] = "imgui_internal:3495" +>>>>>>> docking_inter defs["igMouseButtonToKey"][1]["namespace"] = "ImGui" defs["igMouseButtonToKey"][1]["ov_cimguiname"] = "igMouseButtonToKey" defs["igMouseButtonToKey"][1]["ret"] = "ImGuiKey" @@ -22576,7 +28228,11 @@ defs["igNavClearPreferredPosForAxis"][1]["call_args"] = "(axis)" defs["igNavClearPreferredPosForAxis"][1]["cimguiname"] = "igNavClearPreferredPosForAxis" defs["igNavClearPreferredPosForAxis"][1]["defaults"] = {} defs["igNavClearPreferredPosForAxis"][1]["funcname"] = "NavClearPreferredPosForAxis" +<<<<<<< HEAD defs["igNavClearPreferredPosForAxis"][1]["location"] = "imgui_internal:3185" +======= +defs["igNavClearPreferredPosForAxis"][1]["location"] = "imgui_internal:3459" +>>>>>>> docking_inter defs["igNavClearPreferredPosForAxis"][1]["namespace"] = "ImGui" defs["igNavClearPreferredPosForAxis"][1]["ov_cimguiname"] = "igNavClearPreferredPosForAxis" defs["igNavClearPreferredPosForAxis"][1]["ret"] = "void" @@ -22595,7 +28251,11 @@ defs["igNavHighlightActivated"][1]["call_args"] = "(id)" defs["igNavHighlightActivated"][1]["cimguiname"] = "igNavHighlightActivated" defs["igNavHighlightActivated"][1]["defaults"] = {} defs["igNavHighlightActivated"][1]["funcname"] = "NavHighlightActivated" +<<<<<<< HEAD defs["igNavHighlightActivated"][1]["location"] = "imgui_internal:3184" +======= +defs["igNavHighlightActivated"][1]["location"] = "imgui_internal:3458" +>>>>>>> docking_inter defs["igNavHighlightActivated"][1]["namespace"] = "ImGui" defs["igNavHighlightActivated"][1]["ov_cimguiname"] = "igNavHighlightActivated" defs["igNavHighlightActivated"][1]["ret"] = "void" @@ -22611,7 +28271,11 @@ defs["igNavInitRequestApplyResult"][1]["call_args"] = "()" defs["igNavInitRequestApplyResult"][1]["cimguiname"] = "igNavInitRequestApplyResult" defs["igNavInitRequestApplyResult"][1]["defaults"] = {} defs["igNavInitRequestApplyResult"][1]["funcname"] = "NavInitRequestApplyResult" +<<<<<<< HEAD defs["igNavInitRequestApplyResult"][1]["location"] = "imgui_internal:3175" +======= +defs["igNavInitRequestApplyResult"][1]["location"] = "imgui_internal:3449" +>>>>>>> docking_inter defs["igNavInitRequestApplyResult"][1]["namespace"] = "ImGui" defs["igNavInitRequestApplyResult"][1]["ov_cimguiname"] = "igNavInitRequestApplyResult" defs["igNavInitRequestApplyResult"][1]["ret"] = "void" @@ -22633,7 +28297,11 @@ defs["igNavInitWindow"][1]["call_args"] = "(window,force_reinit)" defs["igNavInitWindow"][1]["cimguiname"] = "igNavInitWindow" defs["igNavInitWindow"][1]["defaults"] = {} defs["igNavInitWindow"][1]["funcname"] = "NavInitWindow" +<<<<<<< HEAD defs["igNavInitWindow"][1]["location"] = "imgui_internal:3174" +======= +defs["igNavInitWindow"][1]["location"] = "imgui_internal:3448" +>>>>>>> docking_inter defs["igNavInitWindow"][1]["namespace"] = "ImGui" defs["igNavInitWindow"][1]["ov_cimguiname"] = "igNavInitWindow" defs["igNavInitWindow"][1]["ret"] = "void" @@ -22649,7 +28317,11 @@ defs["igNavMoveRequestApplyResult"][1]["call_args"] = "()" defs["igNavMoveRequestApplyResult"][1]["cimguiname"] = "igNavMoveRequestApplyResult" defs["igNavMoveRequestApplyResult"][1]["defaults"] = {} defs["igNavMoveRequestApplyResult"][1]["funcname"] = "NavMoveRequestApplyResult" +<<<<<<< HEAD defs["igNavMoveRequestApplyResult"][1]["location"] = "imgui_internal:3182" +======= +defs["igNavMoveRequestApplyResult"][1]["location"] = "imgui_internal:3456" +>>>>>>> docking_inter defs["igNavMoveRequestApplyResult"][1]["namespace"] = "ImGui" defs["igNavMoveRequestApplyResult"][1]["ov_cimguiname"] = "igNavMoveRequestApplyResult" defs["igNavMoveRequestApplyResult"][1]["ret"] = "void" @@ -22665,7 +28337,11 @@ defs["igNavMoveRequestButNoResultYet"][1]["call_args"] = "()" defs["igNavMoveRequestButNoResultYet"][1]["cimguiname"] = "igNavMoveRequestButNoResultYet" defs["igNavMoveRequestButNoResultYet"][1]["defaults"] = {} defs["igNavMoveRequestButNoResultYet"][1]["funcname"] = "NavMoveRequestButNoResultYet" +<<<<<<< HEAD defs["igNavMoveRequestButNoResultYet"][1]["location"] = "imgui_internal:3176" +======= +defs["igNavMoveRequestButNoResultYet"][1]["location"] = "imgui_internal:3450" +>>>>>>> docking_inter defs["igNavMoveRequestButNoResultYet"][1]["namespace"] = "ImGui" defs["igNavMoveRequestButNoResultYet"][1]["ov_cimguiname"] = "igNavMoveRequestButNoResultYet" defs["igNavMoveRequestButNoResultYet"][1]["ret"] = "bool" @@ -22681,7 +28357,11 @@ defs["igNavMoveRequestCancel"][1]["call_args"] = "()" defs["igNavMoveRequestCancel"][1]["cimguiname"] = "igNavMoveRequestCancel" defs["igNavMoveRequestCancel"][1]["defaults"] = {} defs["igNavMoveRequestCancel"][1]["funcname"] = "NavMoveRequestCancel" +<<<<<<< HEAD defs["igNavMoveRequestCancel"][1]["location"] = "imgui_internal:3181" +======= +defs["igNavMoveRequestCancel"][1]["location"] = "imgui_internal:3455" +>>>>>>> docking_inter defs["igNavMoveRequestCancel"][1]["namespace"] = "ImGui" defs["igNavMoveRequestCancel"][1]["ov_cimguiname"] = "igNavMoveRequestCancel" defs["igNavMoveRequestCancel"][1]["ret"] = "void" @@ -22709,7 +28389,11 @@ defs["igNavMoveRequestForward"][1]["call_args"] = "(move_dir,clip_dir,move_flags defs["igNavMoveRequestForward"][1]["cimguiname"] = "igNavMoveRequestForward" defs["igNavMoveRequestForward"][1]["defaults"] = {} defs["igNavMoveRequestForward"][1]["funcname"] = "NavMoveRequestForward" +<<<<<<< HEAD defs["igNavMoveRequestForward"][1]["location"] = "imgui_internal:3178" +======= +defs["igNavMoveRequestForward"][1]["location"] = "imgui_internal:3452" +>>>>>>> docking_inter defs["igNavMoveRequestForward"][1]["namespace"] = "ImGui" defs["igNavMoveRequestForward"][1]["ov_cimguiname"] = "igNavMoveRequestForward" defs["igNavMoveRequestForward"][1]["ret"] = "void" @@ -22728,7 +28412,11 @@ defs["igNavMoveRequestResolveWithLastItem"][1]["call_args"] = "(result)" defs["igNavMoveRequestResolveWithLastItem"][1]["cimguiname"] = "igNavMoveRequestResolveWithLastItem" defs["igNavMoveRequestResolveWithLastItem"][1]["defaults"] = {} defs["igNavMoveRequestResolveWithLastItem"][1]["funcname"] = "NavMoveRequestResolveWithLastItem" +<<<<<<< HEAD defs["igNavMoveRequestResolveWithLastItem"][1]["location"] = "imgui_internal:3179" +======= +defs["igNavMoveRequestResolveWithLastItem"][1]["location"] = "imgui_internal:3453" +>>>>>>> docking_inter defs["igNavMoveRequestResolveWithLastItem"][1]["namespace"] = "ImGui" defs["igNavMoveRequestResolveWithLastItem"][1]["ov_cimguiname"] = "igNavMoveRequestResolveWithLastItem" defs["igNavMoveRequestResolveWithLastItem"][1]["ret"] = "void" @@ -22750,7 +28438,11 @@ defs["igNavMoveRequestResolveWithPastTreeNode"][1]["call_args"] = "(result,tree_ defs["igNavMoveRequestResolveWithPastTreeNode"][1]["cimguiname"] = "igNavMoveRequestResolveWithPastTreeNode" defs["igNavMoveRequestResolveWithPastTreeNode"][1]["defaults"] = {} defs["igNavMoveRequestResolveWithPastTreeNode"][1]["funcname"] = "NavMoveRequestResolveWithPastTreeNode" +<<<<<<< HEAD defs["igNavMoveRequestResolveWithPastTreeNode"][1]["location"] = "imgui_internal:3180" +======= +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["location"] = "imgui_internal:3454" +>>>>>>> docking_inter defs["igNavMoveRequestResolveWithPastTreeNode"][1]["namespace"] = "ImGui" defs["igNavMoveRequestResolveWithPastTreeNode"][1]["ov_cimguiname"] = "igNavMoveRequestResolveWithPastTreeNode" defs["igNavMoveRequestResolveWithPastTreeNode"][1]["ret"] = "void" @@ -22778,7 +28470,11 @@ defs["igNavMoveRequestSubmit"][1]["call_args"] = "(move_dir,clip_dir,move_flags, defs["igNavMoveRequestSubmit"][1]["cimguiname"] = "igNavMoveRequestSubmit" defs["igNavMoveRequestSubmit"][1]["defaults"] = {} defs["igNavMoveRequestSubmit"][1]["funcname"] = "NavMoveRequestSubmit" +<<<<<<< HEAD defs["igNavMoveRequestSubmit"][1]["location"] = "imgui_internal:3177" +======= +defs["igNavMoveRequestSubmit"][1]["location"] = "imgui_internal:3451" +>>>>>>> docking_inter defs["igNavMoveRequestSubmit"][1]["namespace"] = "ImGui" defs["igNavMoveRequestSubmit"][1]["ov_cimguiname"] = "igNavMoveRequestSubmit" defs["igNavMoveRequestSubmit"][1]["ret"] = "void" @@ -22800,7 +28496,11 @@ defs["igNavMoveRequestTryWrapping"][1]["call_args"] = "(window,move_flags)" defs["igNavMoveRequestTryWrapping"][1]["cimguiname"] = "igNavMoveRequestTryWrapping" defs["igNavMoveRequestTryWrapping"][1]["defaults"] = {} defs["igNavMoveRequestTryWrapping"][1]["funcname"] = "NavMoveRequestTryWrapping" +<<<<<<< HEAD defs["igNavMoveRequestTryWrapping"][1]["location"] = "imgui_internal:3183" +======= +defs["igNavMoveRequestTryWrapping"][1]["location"] = "imgui_internal:3457" +>>>>>>> docking_inter defs["igNavMoveRequestTryWrapping"][1]["namespace"] = "ImGui" defs["igNavMoveRequestTryWrapping"][1]["ov_cimguiname"] = "igNavMoveRequestTryWrapping" defs["igNavMoveRequestTryWrapping"][1]["ret"] = "void" @@ -22816,7 +28516,11 @@ defs["igNavRestoreHighlightAfterMove"][1]["call_args"] = "()" defs["igNavRestoreHighlightAfterMove"][1]["cimguiname"] = "igNavRestoreHighlightAfterMove" defs["igNavRestoreHighlightAfterMove"][1]["defaults"] = {} defs["igNavRestoreHighlightAfterMove"][1]["funcname"] = "NavRestoreHighlightAfterMove" +<<<<<<< HEAD defs["igNavRestoreHighlightAfterMove"][1]["location"] = "imgui_internal:3186" +======= +defs["igNavRestoreHighlightAfterMove"][1]["location"] = "imgui_internal:3460" +>>>>>>> docking_inter defs["igNavRestoreHighlightAfterMove"][1]["namespace"] = "ImGui" defs["igNavRestoreHighlightAfterMove"][1]["ov_cimguiname"] = "igNavRestoreHighlightAfterMove" defs["igNavRestoreHighlightAfterMove"][1]["ret"] = "void" @@ -22832,7 +28536,11 @@ defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["call_args"] = "()" defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["cimguiname"] = "igNavUpdateCurrentWindowIsScrollPushableX" defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["defaults"] = {} defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["funcname"] = "NavUpdateCurrentWindowIsScrollPushableX" +<<<<<<< HEAD defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["location"] = "imgui_internal:3187" +======= +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["location"] = "imgui_internal:3461" +>>>>>>> docking_inter defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["namespace"] = "ImGui" defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["ov_cimguiname"] = "igNavUpdateCurrentWindowIsScrollPushableX" defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["ret"] = "void" @@ -22848,7 +28556,11 @@ defs["igNewFrame"][1]["call_args"] = "()" defs["igNewFrame"][1]["cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["defaults"] = {} defs["igNewFrame"][1]["funcname"] = "NewFrame" +<<<<<<< HEAD defs["igNewFrame"][1]["location"] = "imgui:316" +======= +defs["igNewFrame"][1]["location"] = "imgui:323" +>>>>>>> docking_inter defs["igNewFrame"][1]["namespace"] = "ImGui" defs["igNewFrame"][1]["ov_cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["ret"] = "void" @@ -22864,7 +28576,11 @@ defs["igNewLine"][1]["call_args"] = "()" defs["igNewLine"][1]["cimguiname"] = "igNewLine" defs["igNewLine"][1]["defaults"] = {} defs["igNewLine"][1]["funcname"] = "NewLine" +<<<<<<< HEAD defs["igNewLine"][1]["location"] = "imgui:482" +======= +defs["igNewLine"][1]["location"] = "imgui:492" +>>>>>>> docking_inter defs["igNewLine"][1]["namespace"] = "ImGui" defs["igNewLine"][1]["ov_cimguiname"] = "igNewLine" defs["igNewLine"][1]["ret"] = "void" @@ -22880,7 +28596,11 @@ defs["igNextColumn"][1]["call_args"] = "()" defs["igNextColumn"][1]["cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["defaults"] = {} defs["igNextColumn"][1]["funcname"] = "NextColumn" +<<<<<<< HEAD defs["igNextColumn"][1]["location"] = "imgui:819" +======= +defs["igNextColumn"][1]["location"] = "imgui:830" +>>>>>>> docking_inter defs["igNextColumn"][1]["namespace"] = "ImGui" defs["igNextColumn"][1]["ov_cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["ret"] = "void" @@ -22903,7 +28623,11 @@ defs["igOpenPopup"][1]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][1]["defaults"] = {} defs["igOpenPopup"][1]["defaults"]["popup_flags"] = "0" defs["igOpenPopup"][1]["funcname"] = "OpenPopup" +<<<<<<< HEAD defs["igOpenPopup"][1]["location"] = "imgui:740" +======= +defs["igOpenPopup"][1]["location"] = "imgui:750" +>>>>>>> docking_inter defs["igOpenPopup"][1]["namespace"] = "ImGui" defs["igOpenPopup"][1]["ov_cimguiname"] = "igOpenPopup_Str" defs["igOpenPopup"][1]["ret"] = "void" @@ -22924,7 +28648,11 @@ defs["igOpenPopup"][2]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][2]["defaults"] = {} defs["igOpenPopup"][2]["defaults"]["popup_flags"] = "0" defs["igOpenPopup"][2]["funcname"] = "OpenPopup" +<<<<<<< HEAD defs["igOpenPopup"][2]["location"] = "imgui:741" +======= +defs["igOpenPopup"][2]["location"] = "imgui:751" +>>>>>>> docking_inter defs["igOpenPopup"][2]["namespace"] = "ImGui" defs["igOpenPopup"][2]["ov_cimguiname"] = "igOpenPopup_ID" defs["igOpenPopup"][2]["ret"] = "void" @@ -22948,7 +28676,11 @@ defs["igOpenPopupEx"][1]["cimguiname"] = "igOpenPopupEx" defs["igOpenPopupEx"][1]["defaults"] = {} defs["igOpenPopupEx"][1]["defaults"]["popup_flags"] = "ImGuiPopupFlags_None" defs["igOpenPopupEx"][1]["funcname"] = "OpenPopupEx" +<<<<<<< HEAD defs["igOpenPopupEx"][1]["location"] = "imgui_internal:3148" +======= +defs["igOpenPopupEx"][1]["location"] = "imgui_internal:3421" +>>>>>>> docking_inter defs["igOpenPopupEx"][1]["namespace"] = "ImGui" defs["igOpenPopupEx"][1]["ov_cimguiname"] = "igOpenPopupEx" defs["igOpenPopupEx"][1]["ret"] = "void" @@ -22972,7 +28704,11 @@ defs["igOpenPopupOnItemClick"][1]["defaults"] = {} defs["igOpenPopupOnItemClick"][1]["defaults"]["popup_flags"] = "1" defs["igOpenPopupOnItemClick"][1]["defaults"]["str_id"] = "NULL" defs["igOpenPopupOnItemClick"][1]["funcname"] = "OpenPopupOnItemClick" +<<<<<<< HEAD defs["igOpenPopupOnItemClick"][1]["location"] = "imgui:742" +======= +defs["igOpenPopupOnItemClick"][1]["location"] = "imgui:752" +>>>>>>> docking_inter defs["igOpenPopupOnItemClick"][1]["namespace"] = "ImGui" defs["igOpenPopupOnItemClick"][1]["ov_cimguiname"] = "igOpenPopupOnItemClick" defs["igOpenPopupOnItemClick"][1]["ret"] = "void" @@ -23020,7 +28756,11 @@ defs["igPlotEx"][1]["call_args"] = "(plot_type,label,values_getter,data,values_c defs["igPlotEx"][1]["cimguiname"] = "igPlotEx" defs["igPlotEx"][1]["defaults"] = {} defs["igPlotEx"][1]["funcname"] = "PlotEx" +<<<<<<< HEAD defs["igPlotEx"][1]["location"] = "imgui_internal:3484" +======= +defs["igPlotEx"][1]["location"] = "imgui_internal:3816" +>>>>>>> docking_inter defs["igPlotEx"][1]["namespace"] = "ImGui" defs["igPlotEx"][1]["ov_cimguiname"] = "igPlotEx" defs["igPlotEx"][1]["ret"] = "int" @@ -23069,7 +28809,11 @@ defs["igPlotHistogram"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotHistogram"][1]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][1]["funcname"] = "PlotHistogram" +<<<<<<< HEAD defs["igPlotHistogram"][1]["location"] = "imgui:677" +======= +defs["igPlotHistogram"][1]["location"] = "imgui:687" +>>>>>>> docking_inter defs["igPlotHistogram"][1]["namespace"] = "ImGui" defs["igPlotHistogram"][1]["ov_cimguiname"] = "igPlotHistogram_FloatPtr" defs["igPlotHistogram"][1]["ret"] = "void" @@ -23117,7 +28861,11 @@ defs["igPlotHistogram"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][2]["funcname"] = "PlotHistogram" +<<<<<<< HEAD defs["igPlotHistogram"][2]["location"] = "imgui:678" +======= +defs["igPlotHistogram"][2]["location"] = "imgui:688" +>>>>>>> docking_inter defs["igPlotHistogram"][2]["namespace"] = "ImGui" defs["igPlotHistogram"][2]["ov_cimguiname"] = "igPlotHistogram_FnFloatPtr" defs["igPlotHistogram"][2]["ret"] = "void" @@ -23167,7 +28915,11 @@ defs["igPlotLines"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotLines"][1]["defaults"]["values_offset"] = "0" defs["igPlotLines"][1]["funcname"] = "PlotLines" +<<<<<<< HEAD defs["igPlotLines"][1]["location"] = "imgui:675" +======= +defs["igPlotLines"][1]["location"] = "imgui:685" +>>>>>>> docking_inter defs["igPlotLines"][1]["namespace"] = "ImGui" defs["igPlotLines"][1]["ov_cimguiname"] = "igPlotLines_FloatPtr" defs["igPlotLines"][1]["ret"] = "void" @@ -23215,7 +28967,11 @@ defs["igPlotLines"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["values_offset"] = "0" defs["igPlotLines"][2]["funcname"] = "PlotLines" +<<<<<<< HEAD defs["igPlotLines"][2]["location"] = "imgui:676" +======= +defs["igPlotLines"][2]["location"] = "imgui:686" +>>>>>>> docking_inter defs["igPlotLines"][2]["namespace"] = "ImGui" defs["igPlotLines"][2]["ov_cimguiname"] = "igPlotLines_FnFloatPtr" defs["igPlotLines"][2]["ret"] = "void" @@ -23232,7 +28988,11 @@ defs["igPopButtonRepeat"][1]["call_args"] = "()" defs["igPopButtonRepeat"][1]["cimguiname"] = "igPopButtonRepeat" defs["igPopButtonRepeat"][1]["defaults"] = {} defs["igPopButtonRepeat"][1]["funcname"] = "PopButtonRepeat" +<<<<<<< HEAD defs["igPopButtonRepeat"][1]["location"] = "imgui:441" +======= +defs["igPopButtonRepeat"][1]["location"] = "imgui:451" +>>>>>>> docking_inter defs["igPopButtonRepeat"][1]["namespace"] = "ImGui" defs["igPopButtonRepeat"][1]["ov_cimguiname"] = "igPopButtonRepeat" defs["igPopButtonRepeat"][1]["ret"] = "void" @@ -23248,7 +29008,11 @@ defs["igPopClipRect"][1]["call_args"] = "()" defs["igPopClipRect"][1]["cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["defaults"] = {} defs["igPopClipRect"][1]["funcname"] = "PopClipRect" +<<<<<<< HEAD defs["igPopClipRect"][1]["location"] = "imgui:869" +======= +defs["igPopClipRect"][1]["location"] = "imgui:901" +>>>>>>> docking_inter defs["igPopClipRect"][1]["namespace"] = "ImGui" defs["igPopClipRect"][1]["ov_cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["ret"] = "void" @@ -23264,7 +29028,11 @@ defs["igPopColumnsBackground"][1]["call_args"] = "()" defs["igPopColumnsBackground"][1]["cimguiname"] = "igPopColumnsBackground" defs["igPopColumnsBackground"][1]["defaults"] = {} defs["igPopColumnsBackground"][1]["funcname"] = "PopColumnsBackground" +<<<<<<< HEAD defs["igPopColumnsBackground"][1]["location"] = "imgui_internal:3314" +======= +defs["igPopColumnsBackground"][1]["location"] = "imgui_internal:3643" +>>>>>>> docking_inter defs["igPopColumnsBackground"][1]["namespace"] = "ImGui" defs["igPopColumnsBackground"][1]["ov_cimguiname"] = "igPopColumnsBackground" defs["igPopColumnsBackground"][1]["ret"] = "void" @@ -23280,7 +29048,11 @@ defs["igPopFocusScope"][1]["call_args"] = "()" defs["igPopFocusScope"][1]["cimguiname"] = "igPopFocusScope" defs["igPopFocusScope"][1]["defaults"] = {} defs["igPopFocusScope"][1]["funcname"] = "PopFocusScope" +<<<<<<< HEAD defs["igPopFocusScope"][1]["location"] = "imgui_internal:3292" +======= +defs["igPopFocusScope"][1]["location"] = "imgui_internal:3621" +>>>>>>> docking_inter defs["igPopFocusScope"][1]["namespace"] = "ImGui" defs["igPopFocusScope"][1]["ov_cimguiname"] = "igPopFocusScope" defs["igPopFocusScope"][1]["ret"] = "void" @@ -23296,7 +29068,11 @@ defs["igPopFont"][1]["call_args"] = "()" defs["igPopFont"][1]["cimguiname"] = "igPopFont" defs["igPopFont"][1]["defaults"] = {} defs["igPopFont"][1]["funcname"] = "PopFont" +<<<<<<< HEAD defs["igPopFont"][1]["location"] = "imgui:431" +======= +defs["igPopFont"][1]["location"] = "imgui:441" +>>>>>>> docking_inter defs["igPopFont"][1]["namespace"] = "ImGui" defs["igPopFont"][1]["ov_cimguiname"] = "igPopFont" defs["igPopFont"][1]["ret"] = "void" @@ -23312,7 +29088,11 @@ defs["igPopID"][1]["call_args"] = "()" defs["igPopID"][1]["cimguiname"] = "igPopID" defs["igPopID"][1]["defaults"] = {} defs["igPopID"][1]["funcname"] = "PopID" +<<<<<<< HEAD defs["igPopID"][1]["location"] = "imgui:510" +======= +defs["igPopID"][1]["location"] = "imgui:520" +>>>>>>> docking_inter defs["igPopID"][1]["namespace"] = "ImGui" defs["igPopID"][1]["ov_cimguiname"] = "igPopID" defs["igPopID"][1]["ret"] = "void" @@ -23328,7 +29108,11 @@ defs["igPopItemFlag"][1]["call_args"] = "()" defs["igPopItemFlag"][1]["cimguiname"] = "igPopItemFlag" defs["igPopItemFlag"][1]["defaults"] = {} defs["igPopItemFlag"][1]["funcname"] = "PopItemFlag" +<<<<<<< HEAD defs["igPopItemFlag"][1]["location"] = "imgui_internal:3135" +======= +defs["igPopItemFlag"][1]["location"] = "imgui_internal:3405" +>>>>>>> docking_inter defs["igPopItemFlag"][1]["namespace"] = "ImGui" defs["igPopItemFlag"][1]["ov_cimguiname"] = "igPopItemFlag" defs["igPopItemFlag"][1]["ret"] = "void" @@ -23344,7 +29128,11 @@ defs["igPopItemWidth"][1]["call_args"] = "()" defs["igPopItemWidth"][1]["cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["defaults"] = {} defs["igPopItemWidth"][1]["funcname"] = "PopItemWidth" +<<<<<<< HEAD defs["igPopItemWidth"][1]["location"] = "imgui:445" +======= +defs["igPopItemWidth"][1]["location"] = "imgui:455" +>>>>>>> docking_inter defs["igPopItemWidth"][1]["namespace"] = "ImGui" defs["igPopItemWidth"][1]["ov_cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["ret"] = "void" @@ -23364,7 +29152,11 @@ defs["igPopStyleColor"][1]["cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["defaults"] = {} defs["igPopStyleColor"][1]["defaults"]["count"] = "1" defs["igPopStyleColor"][1]["funcname"] = "PopStyleColor" +<<<<<<< HEAD defs["igPopStyleColor"][1]["location"] = "imgui:434" +======= +defs["igPopStyleColor"][1]["location"] = "imgui:444" +>>>>>>> docking_inter defs["igPopStyleColor"][1]["namespace"] = "ImGui" defs["igPopStyleColor"][1]["ov_cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["ret"] = "void" @@ -23384,7 +29176,11 @@ defs["igPopStyleVar"][1]["cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["defaults"] = {} defs["igPopStyleVar"][1]["defaults"]["count"] = "1" defs["igPopStyleVar"][1]["funcname"] = "PopStyleVar" +<<<<<<< HEAD defs["igPopStyleVar"][1]["location"] = "imgui:437" +======= +defs["igPopStyleVar"][1]["location"] = "imgui:447" +>>>>>>> docking_inter defs["igPopStyleVar"][1]["namespace"] = "ImGui" defs["igPopStyleVar"][1]["ov_cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["ret"] = "void" @@ -23400,7 +29196,11 @@ defs["igPopTabStop"][1]["call_args"] = "()" defs["igPopTabStop"][1]["cimguiname"] = "igPopTabStop" defs["igPopTabStop"][1]["defaults"] = {} defs["igPopTabStop"][1]["funcname"] = "PopTabStop" +<<<<<<< HEAD defs["igPopTabStop"][1]["location"] = "imgui:439" +======= +defs["igPopTabStop"][1]["location"] = "imgui:449" +>>>>>>> docking_inter defs["igPopTabStop"][1]["namespace"] = "ImGui" defs["igPopTabStop"][1]["ov_cimguiname"] = "igPopTabStop" defs["igPopTabStop"][1]["ret"] = "void" @@ -23416,7 +29216,11 @@ defs["igPopTextWrapPos"][1]["call_args"] = "()" defs["igPopTextWrapPos"][1]["cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["defaults"] = {} defs["igPopTextWrapPos"][1]["funcname"] = "PopTextWrapPos" +<<<<<<< HEAD defs["igPopTextWrapPos"][1]["location"] = "imgui:449" +======= +defs["igPopTextWrapPos"][1]["location"] = "imgui:459" +>>>>>>> docking_inter defs["igPopTextWrapPos"][1]["namespace"] = "ImGui" defs["igPopTextWrapPos"][1]["ov_cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["ret"] = "void" @@ -23443,7 +29247,11 @@ defs["igProgressBar"][1]["defaults"] = {} defs["igProgressBar"][1]["defaults"]["overlay"] = "NULL" defs["igProgressBar"][1]["defaults"]["size_arg"] = "ImVec2(-FLT_MIN,0)" defs["igProgressBar"][1]["funcname"] = "ProgressBar" +<<<<<<< HEAD defs["igProgressBar"][1]["location"] = "imgui:543" +======= +defs["igProgressBar"][1]["location"] = "imgui:553" +>>>>>>> docking_inter defs["igProgressBar"][1]["namespace"] = "ImGui" defs["igProgressBar"][1]["ov_cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["ret"] = "void" @@ -23462,7 +29270,11 @@ defs["igPushButtonRepeat"][1]["call_args"] = "(repeat)" defs["igPushButtonRepeat"][1]["cimguiname"] = "igPushButtonRepeat" defs["igPushButtonRepeat"][1]["defaults"] = {} defs["igPushButtonRepeat"][1]["funcname"] = "PushButtonRepeat" +<<<<<<< HEAD defs["igPushButtonRepeat"][1]["location"] = "imgui:440" +======= +defs["igPushButtonRepeat"][1]["location"] = "imgui:450" +>>>>>>> docking_inter defs["igPushButtonRepeat"][1]["namespace"] = "ImGui" defs["igPushButtonRepeat"][1]["ov_cimguiname"] = "igPushButtonRepeat" defs["igPushButtonRepeat"][1]["ret"] = "void" @@ -23487,7 +29299,11 @@ defs["igPushClipRect"][1]["call_args"] = "(clip_rect_min,clip_rect_max,intersect defs["igPushClipRect"][1]["cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["defaults"] = {} defs["igPushClipRect"][1]["funcname"] = "PushClipRect" +<<<<<<< HEAD defs["igPushClipRect"][1]["location"] = "imgui:868" +======= +defs["igPushClipRect"][1]["location"] = "imgui:900" +>>>>>>> docking_inter defs["igPushClipRect"][1]["namespace"] = "ImGui" defs["igPushClipRect"][1]["ov_cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["ret"] = "void" @@ -23506,7 +29322,11 @@ defs["igPushColumnClipRect"][1]["call_args"] = "(column_index)" defs["igPushColumnClipRect"][1]["cimguiname"] = "igPushColumnClipRect" defs["igPushColumnClipRect"][1]["defaults"] = {} defs["igPushColumnClipRect"][1]["funcname"] = "PushColumnClipRect" +<<<<<<< HEAD defs["igPushColumnClipRect"][1]["location"] = "imgui_internal:3312" +======= +defs["igPushColumnClipRect"][1]["location"] = "imgui_internal:3641" +>>>>>>> docking_inter defs["igPushColumnClipRect"][1]["namespace"] = "ImGui" defs["igPushColumnClipRect"][1]["ov_cimguiname"] = "igPushColumnClipRect" defs["igPushColumnClipRect"][1]["ret"] = "void" @@ -23522,7 +29342,11 @@ defs["igPushColumnsBackground"][1]["call_args"] = "()" defs["igPushColumnsBackground"][1]["cimguiname"] = "igPushColumnsBackground" defs["igPushColumnsBackground"][1]["defaults"] = {} defs["igPushColumnsBackground"][1]["funcname"] = "PushColumnsBackground" +<<<<<<< HEAD defs["igPushColumnsBackground"][1]["location"] = "imgui_internal:3313" +======= +defs["igPushColumnsBackground"][1]["location"] = "imgui_internal:3642" +>>>>>>> docking_inter defs["igPushColumnsBackground"][1]["namespace"] = "ImGui" defs["igPushColumnsBackground"][1]["ov_cimguiname"] = "igPushColumnsBackground" defs["igPushColumnsBackground"][1]["ret"] = "void" @@ -23541,7 +29365,11 @@ defs["igPushFocusScope"][1]["call_args"] = "(id)" defs["igPushFocusScope"][1]["cimguiname"] = "igPushFocusScope" defs["igPushFocusScope"][1]["defaults"] = {} defs["igPushFocusScope"][1]["funcname"] = "PushFocusScope" +<<<<<<< HEAD defs["igPushFocusScope"][1]["location"] = "imgui_internal:3291" +======= +defs["igPushFocusScope"][1]["location"] = "imgui_internal:3620" +>>>>>>> docking_inter defs["igPushFocusScope"][1]["namespace"] = "ImGui" defs["igPushFocusScope"][1]["ov_cimguiname"] = "igPushFocusScope" defs["igPushFocusScope"][1]["ret"] = "void" @@ -23560,7 +29388,11 @@ defs["igPushFont"][1]["call_args"] = "(font)" defs["igPushFont"][1]["cimguiname"] = "igPushFont" defs["igPushFont"][1]["defaults"] = {} defs["igPushFont"][1]["funcname"] = "PushFont" +<<<<<<< HEAD defs["igPushFont"][1]["location"] = "imgui:430" +======= +defs["igPushFont"][1]["location"] = "imgui:440" +>>>>>>> docking_inter defs["igPushFont"][1]["namespace"] = "ImGui" defs["igPushFont"][1]["ov_cimguiname"] = "igPushFont" defs["igPushFont"][1]["ret"] = "void" @@ -23579,7 +29411,11 @@ defs["igPushID"][1]["call_args"] = "(str_id)" defs["igPushID"][1]["cimguiname"] = "igPushID" defs["igPushID"][1]["defaults"] = {} defs["igPushID"][1]["funcname"] = "PushID" +<<<<<<< HEAD defs["igPushID"][1]["location"] = "imgui:506" +======= +defs["igPushID"][1]["location"] = "imgui:516" +>>>>>>> docking_inter defs["igPushID"][1]["namespace"] = "ImGui" defs["igPushID"][1]["ov_cimguiname"] = "igPushID_Str" defs["igPushID"][1]["ret"] = "void" @@ -23599,7 +29435,11 @@ defs["igPushID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igPushID"][2]["cimguiname"] = "igPushID" defs["igPushID"][2]["defaults"] = {} defs["igPushID"][2]["funcname"] = "PushID" +<<<<<<< HEAD defs["igPushID"][2]["location"] = "imgui:507" +======= +defs["igPushID"][2]["location"] = "imgui:517" +>>>>>>> docking_inter defs["igPushID"][2]["namespace"] = "ImGui" defs["igPushID"][2]["ov_cimguiname"] = "igPushID_StrStr" defs["igPushID"][2]["ret"] = "void" @@ -23616,7 +29456,11 @@ defs["igPushID"][3]["call_args"] = "(ptr_id)" defs["igPushID"][3]["cimguiname"] = "igPushID" defs["igPushID"][3]["defaults"] = {} defs["igPushID"][3]["funcname"] = "PushID" +<<<<<<< HEAD defs["igPushID"][3]["location"] = "imgui:508" +======= +defs["igPushID"][3]["location"] = "imgui:518" +>>>>>>> docking_inter defs["igPushID"][3]["namespace"] = "ImGui" defs["igPushID"][3]["ov_cimguiname"] = "igPushID_Ptr" defs["igPushID"][3]["ret"] = "void" @@ -23633,7 +29477,11 @@ defs["igPushID"][4]["call_args"] = "(int_id)" defs["igPushID"][4]["cimguiname"] = "igPushID" defs["igPushID"][4]["defaults"] = {} defs["igPushID"][4]["funcname"] = "PushID" +<<<<<<< HEAD defs["igPushID"][4]["location"] = "imgui:509" +======= +defs["igPushID"][4]["location"] = "imgui:519" +>>>>>>> docking_inter defs["igPushID"][4]["namespace"] = "ImGui" defs["igPushID"][4]["ov_cimguiname"] = "igPushID_Int" defs["igPushID"][4]["ret"] = "void" @@ -23658,7 +29506,11 @@ defs["igPushItemFlag"][1]["call_args"] = "(option,enabled)" defs["igPushItemFlag"][1]["cimguiname"] = "igPushItemFlag" defs["igPushItemFlag"][1]["defaults"] = {} defs["igPushItemFlag"][1]["funcname"] = "PushItemFlag" +<<<<<<< HEAD defs["igPushItemFlag"][1]["location"] = "imgui_internal:3134" +======= +defs["igPushItemFlag"][1]["location"] = "imgui_internal:3404" +>>>>>>> docking_inter defs["igPushItemFlag"][1]["namespace"] = "ImGui" defs["igPushItemFlag"][1]["ov_cimguiname"] = "igPushItemFlag" defs["igPushItemFlag"][1]["ret"] = "void" @@ -23677,7 +29529,11 @@ defs["igPushItemWidth"][1]["call_args"] = "(item_width)" defs["igPushItemWidth"][1]["cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["defaults"] = {} defs["igPushItemWidth"][1]["funcname"] = "PushItemWidth" +<<<<<<< HEAD defs["igPushItemWidth"][1]["location"] = "imgui:444" +======= +defs["igPushItemWidth"][1]["location"] = "imgui:454" +>>>>>>> docking_inter defs["igPushItemWidth"][1]["namespace"] = "ImGui" defs["igPushItemWidth"][1]["ov_cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["ret"] = "void" @@ -23699,7 +29555,11 @@ defs["igPushMultiItemsWidths"][1]["call_args"] = "(components,width_full)" defs["igPushMultiItemsWidths"][1]["cimguiname"] = "igPushMultiItemsWidths" defs["igPushMultiItemsWidths"][1]["defaults"] = {} defs["igPushMultiItemsWidths"][1]["funcname"] = "PushMultiItemsWidths" +<<<<<<< HEAD defs["igPushMultiItemsWidths"][1]["location"] = "imgui_internal:3128" +======= +defs["igPushMultiItemsWidths"][1]["location"] = "imgui_internal:3398" +>>>>>>> docking_inter defs["igPushMultiItemsWidths"][1]["namespace"] = "ImGui" defs["igPushMultiItemsWidths"][1]["ov_cimguiname"] = "igPushMultiItemsWidths" defs["igPushMultiItemsWidths"][1]["ret"] = "void" @@ -23718,7 +29578,11 @@ defs["igPushOverrideID"][1]["call_args"] = "(id)" defs["igPushOverrideID"][1]["cimguiname"] = "igPushOverrideID" defs["igPushOverrideID"][1]["defaults"] = {} defs["igPushOverrideID"][1]["funcname"] = "PushOverrideID" +<<<<<<< HEAD defs["igPushOverrideID"][1]["location"] = "imgui_internal:3114" +======= +defs["igPushOverrideID"][1]["location"] = "imgui_internal:3384" +>>>>>>> docking_inter defs["igPushOverrideID"][1]["namespace"] = "ImGui" defs["igPushOverrideID"][1]["ov_cimguiname"] = "igPushOverrideID" defs["igPushOverrideID"][1]["ret"] = "void" @@ -23740,7 +29604,11 @@ defs["igPushStyleColor"][1]["call_args"] = "(idx,col)" defs["igPushStyleColor"][1]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][1]["defaults"] = {} defs["igPushStyleColor"][1]["funcname"] = "PushStyleColor" +<<<<<<< HEAD defs["igPushStyleColor"][1]["location"] = "imgui:432" +======= +defs["igPushStyleColor"][1]["location"] = "imgui:442" +>>>>>>> docking_inter defs["igPushStyleColor"][1]["namespace"] = "ImGui" defs["igPushStyleColor"][1]["ov_cimguiname"] = "igPushStyleColor_U32" defs["igPushStyleColor"][1]["ret"] = "void" @@ -23760,7 +29628,11 @@ defs["igPushStyleColor"][2]["call_args"] = "(idx,col)" defs["igPushStyleColor"][2]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][2]["defaults"] = {} defs["igPushStyleColor"][2]["funcname"] = "PushStyleColor" +<<<<<<< HEAD defs["igPushStyleColor"][2]["location"] = "imgui:433" +======= +defs["igPushStyleColor"][2]["location"] = "imgui:443" +>>>>>>> docking_inter defs["igPushStyleColor"][2]["namespace"] = "ImGui" defs["igPushStyleColor"][2]["ov_cimguiname"] = "igPushStyleColor_Vec4" defs["igPushStyleColor"][2]["ret"] = "void" @@ -23783,7 +29655,11 @@ defs["igPushStyleVar"][1]["call_args"] = "(idx,val)" defs["igPushStyleVar"][1]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][1]["defaults"] = {} defs["igPushStyleVar"][1]["funcname"] = "PushStyleVar" +<<<<<<< HEAD defs["igPushStyleVar"][1]["location"] = "imgui:435" +======= +defs["igPushStyleVar"][1]["location"] = "imgui:445" +>>>>>>> docking_inter defs["igPushStyleVar"][1]["namespace"] = "ImGui" defs["igPushStyleVar"][1]["ov_cimguiname"] = "igPushStyleVar_Float" defs["igPushStyleVar"][1]["ret"] = "void" @@ -23803,7 +29679,11 @@ defs["igPushStyleVar"][2]["call_args"] = "(idx,val)" defs["igPushStyleVar"][2]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][2]["defaults"] = {} defs["igPushStyleVar"][2]["funcname"] = "PushStyleVar" +<<<<<<< HEAD defs["igPushStyleVar"][2]["location"] = "imgui:436" +======= +defs["igPushStyleVar"][2]["location"] = "imgui:446" +>>>>>>> docking_inter defs["igPushStyleVar"][2]["namespace"] = "ImGui" defs["igPushStyleVar"][2]["ov_cimguiname"] = "igPushStyleVar_Vec2" defs["igPushStyleVar"][2]["ret"] = "void" @@ -23823,7 +29703,11 @@ defs["igPushTabStop"][1]["call_args"] = "(tab_stop)" defs["igPushTabStop"][1]["cimguiname"] = "igPushTabStop" defs["igPushTabStop"][1]["defaults"] = {} defs["igPushTabStop"][1]["funcname"] = "PushTabStop" +<<<<<<< HEAD defs["igPushTabStop"][1]["location"] = "imgui:438" +======= +defs["igPushTabStop"][1]["location"] = "imgui:448" +>>>>>>> docking_inter defs["igPushTabStop"][1]["namespace"] = "ImGui" defs["igPushTabStop"][1]["ov_cimguiname"] = "igPushTabStop" defs["igPushTabStop"][1]["ret"] = "void" @@ -23843,7 +29727,11 @@ defs["igPushTextWrapPos"][1]["cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["defaults"] = {} defs["igPushTextWrapPos"][1]["defaults"]["wrap_local_pos_x"] = "0.0f" defs["igPushTextWrapPos"][1]["funcname"] = "PushTextWrapPos" +<<<<<<< HEAD defs["igPushTextWrapPos"][1]["location"] = "imgui:448" +======= +defs["igPushTextWrapPos"][1]["location"] = "imgui:458" +>>>>>>> docking_inter defs["igPushTextWrapPos"][1]["namespace"] = "ImGui" defs["igPushTextWrapPos"][1]["ov_cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["ret"] = "void" @@ -23865,7 +29753,11 @@ defs["igRadioButton"][1]["call_args"] = "(label,active)" defs["igRadioButton"][1]["cimguiname"] = "igRadioButton" defs["igRadioButton"][1]["defaults"] = {} defs["igRadioButton"][1]["funcname"] = "RadioButton" +<<<<<<< HEAD defs["igRadioButton"][1]["location"] = "imgui:541" +======= +defs["igRadioButton"][1]["location"] = "imgui:551" +>>>>>>> docking_inter defs["igRadioButton"][1]["namespace"] = "ImGui" defs["igRadioButton"][1]["ov_cimguiname"] = "igRadioButton_Bool" defs["igRadioButton"][1]["ret"] = "bool" @@ -23888,7 +29780,11 @@ defs["igRadioButton"][2]["call_args"] = "(label,v,v_button)" defs["igRadioButton"][2]["cimguiname"] = "igRadioButton" defs["igRadioButton"][2]["defaults"] = {} defs["igRadioButton"][2]["funcname"] = "RadioButton" +<<<<<<< HEAD defs["igRadioButton"][2]["location"] = "imgui:542" +======= +defs["igRadioButton"][2]["location"] = "imgui:552" +>>>>>>> docking_inter defs["igRadioButton"][2]["namespace"] = "ImGui" defs["igRadioButton"][2]["ov_cimguiname"] = "igRadioButton_IntPtr" defs["igRadioButton"][2]["ret"] = "bool" @@ -23911,7 +29807,11 @@ defs["igRemoveContextHook"][1]["call_args"] = "(context,hook_to_remove)" defs["igRemoveContextHook"][1]["cimguiname"] = "igRemoveContextHook" defs["igRemoveContextHook"][1]["defaults"] = {} defs["igRemoveContextHook"][1]["funcname"] = "RemoveContextHook" +<<<<<<< HEAD defs["igRemoveContextHook"][1]["location"] = "imgui_internal:3064" +======= +defs["igRemoveContextHook"][1]["location"] = "imgui_internal:3328" +>>>>>>> docking_inter defs["igRemoveContextHook"][1]["namespace"] = "ImGui" defs["igRemoveContextHook"][1]["ov_cimguiname"] = "igRemoveContextHook" defs["igRemoveContextHook"][1]["ret"] = "void" @@ -23930,7 +29830,11 @@ defs["igRemoveSettingsHandler"][1]["call_args"] = "(type_name)" defs["igRemoveSettingsHandler"][1]["cimguiname"] = "igRemoveSettingsHandler" defs["igRemoveSettingsHandler"][1]["defaults"] = {} defs["igRemoveSettingsHandler"][1]["funcname"] = "RemoveSettingsHandler" +<<<<<<< HEAD defs["igRemoveSettingsHandler"][1]["location"] = "imgui_internal:3075" +======= +defs["igRemoveSettingsHandler"][1]["location"] = "imgui_internal:3345" +>>>>>>> docking_inter defs["igRemoveSettingsHandler"][1]["namespace"] = "ImGui" defs["igRemoveSettingsHandler"][1]["ov_cimguiname"] = "igRemoveSettingsHandler" defs["igRemoveSettingsHandler"][1]["ret"] = "void" @@ -23946,7 +29850,11 @@ defs["igRender"][1]["call_args"] = "()" defs["igRender"][1]["cimguiname"] = "igRender" defs["igRender"][1]["defaults"] = {} defs["igRender"][1]["funcname"] = "Render" +<<<<<<< HEAD defs["igRender"][1]["location"] = "imgui:318" +======= +defs["igRender"][1]["location"] = "imgui:325" +>>>>>>> docking_inter defs["igRender"][1]["namespace"] = "ImGui" defs["igRender"][1]["ov_cimguiname"] = "igRender" defs["igRender"][1]["ret"] = "void" @@ -23978,13 +29886,48 @@ defs["igRenderArrow"][1]["cimguiname"] = "igRenderArrow" defs["igRenderArrow"][1]["defaults"] = {} defs["igRenderArrow"][1]["defaults"]["scale"] = "1.0f" defs["igRenderArrow"][1]["funcname"] = "RenderArrow" +<<<<<<< HEAD defs["igRenderArrow"][1]["location"] = "imgui_internal:3413" +======= +defs["igRenderArrow"][1]["location"] = "imgui_internal:3743" +>>>>>>> docking_inter defs["igRenderArrow"][1]["namespace"] = "ImGui" defs["igRenderArrow"][1]["ov_cimguiname"] = "igRenderArrow" defs["igRenderArrow"][1]["ret"] = "void" defs["igRenderArrow"][1]["signature"] = "(ImDrawList*,ImVec2,ImU32,ImGuiDir,float)" defs["igRenderArrow"][1]["stname"] = "" defs["igRenderArrow"]["(ImDrawList*,ImVec2,ImU32,ImGuiDir,float)"] = defs["igRenderArrow"][1] +<<<<<<< HEAD +======= +defs["igRenderArrowDockMenu"] = {} +defs["igRenderArrowDockMenu"][1] = {} +defs["igRenderArrowDockMenu"][1]["args"] = "(ImDrawList* draw_list,ImVec2 p_min,float sz,ImU32 col)" +defs["igRenderArrowDockMenu"][1]["argsT"] = {} +defs["igRenderArrowDockMenu"][1]["argsT"][1] = {} +defs["igRenderArrowDockMenu"][1]["argsT"][1]["name"] = "draw_list" +defs["igRenderArrowDockMenu"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["igRenderArrowDockMenu"][1]["argsT"][2] = {} +defs["igRenderArrowDockMenu"][1]["argsT"][2]["name"] = "p_min" +defs["igRenderArrowDockMenu"][1]["argsT"][2]["type"] = "ImVec2" +defs["igRenderArrowDockMenu"][1]["argsT"][3] = {} +defs["igRenderArrowDockMenu"][1]["argsT"][3]["name"] = "sz" +defs["igRenderArrowDockMenu"][1]["argsT"][3]["type"] = "float" +defs["igRenderArrowDockMenu"][1]["argsT"][4] = {} +defs["igRenderArrowDockMenu"][1]["argsT"][4]["name"] = "col" +defs["igRenderArrowDockMenu"][1]["argsT"][4]["type"] = "ImU32" +defs["igRenderArrowDockMenu"][1]["argsoriginal"] = "(ImDrawList* draw_list,ImVec2 p_min,float sz,ImU32 col)" +defs["igRenderArrowDockMenu"][1]["call_args"] = "(draw_list,p_min,sz,col)" +defs["igRenderArrowDockMenu"][1]["cimguiname"] = "igRenderArrowDockMenu" +defs["igRenderArrowDockMenu"][1]["defaults"] = {} +defs["igRenderArrowDockMenu"][1]["funcname"] = "RenderArrowDockMenu" +defs["igRenderArrowDockMenu"][1]["location"] = "imgui_internal:3747" +defs["igRenderArrowDockMenu"][1]["namespace"] = "ImGui" +defs["igRenderArrowDockMenu"][1]["ov_cimguiname"] = "igRenderArrowDockMenu" +defs["igRenderArrowDockMenu"][1]["ret"] = "void" +defs["igRenderArrowDockMenu"][1]["signature"] = "(ImDrawList*,ImVec2,float,ImU32)" +defs["igRenderArrowDockMenu"][1]["stname"] = "" +defs["igRenderArrowDockMenu"]["(ImDrawList*,ImVec2,float,ImU32)"] = defs["igRenderArrowDockMenu"][1] +>>>>>>> docking_inter defs["igRenderArrowPointingAt"] = {} defs["igRenderArrowPointingAt"][1] = {} defs["igRenderArrowPointingAt"][1]["args"] = "(ImDrawList* draw_list,ImVec2 pos,ImVec2 half_sz,ImGuiDir direction,ImU32 col)" @@ -24009,7 +29952,11 @@ defs["igRenderArrowPointingAt"][1]["call_args"] = "(draw_list,pos,half_sz,direct defs["igRenderArrowPointingAt"][1]["cimguiname"] = "igRenderArrowPointingAt" defs["igRenderArrowPointingAt"][1]["defaults"] = {} defs["igRenderArrowPointingAt"][1]["funcname"] = "RenderArrowPointingAt" +<<<<<<< HEAD defs["igRenderArrowPointingAt"][1]["location"] = "imgui_internal:3416" +======= +defs["igRenderArrowPointingAt"][1]["location"] = "imgui_internal:3746" +>>>>>>> docking_inter defs["igRenderArrowPointingAt"][1]["namespace"] = "ImGui" defs["igRenderArrowPointingAt"][1]["ov_cimguiname"] = "igRenderArrowPointingAt" defs["igRenderArrowPointingAt"][1]["ret"] = "void" @@ -24034,7 +29981,11 @@ defs["igRenderBullet"][1]["call_args"] = "(draw_list,pos,col)" defs["igRenderBullet"][1]["cimguiname"] = "igRenderBullet" defs["igRenderBullet"][1]["defaults"] = {} defs["igRenderBullet"][1]["funcname"] = "RenderBullet" +<<<<<<< HEAD defs["igRenderBullet"][1]["location"] = "imgui_internal:3414" +======= +defs["igRenderBullet"][1]["location"] = "imgui_internal:3744" +>>>>>>> docking_inter defs["igRenderBullet"][1]["namespace"] = "ImGui" defs["igRenderBullet"][1]["ov_cimguiname"] = "igRenderBullet" defs["igRenderBullet"][1]["ret"] = "void" @@ -24062,7 +30013,11 @@ defs["igRenderCheckMark"][1]["call_args"] = "(draw_list,pos,col,sz)" defs["igRenderCheckMark"][1]["cimguiname"] = "igRenderCheckMark" defs["igRenderCheckMark"][1]["defaults"] = {} defs["igRenderCheckMark"][1]["funcname"] = "RenderCheckMark" +<<<<<<< HEAD defs["igRenderCheckMark"][1]["location"] = "imgui_internal:3415" +======= +defs["igRenderCheckMark"][1]["location"] = "imgui_internal:3745" +>>>>>>> docking_inter defs["igRenderCheckMark"][1]["namespace"] = "ImGui" defs["igRenderCheckMark"][1]["ov_cimguiname"] = "igRenderCheckMark" defs["igRenderCheckMark"][1]["ret"] = "void" @@ -24104,7 +30059,11 @@ defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"] = {} defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"]["flags"] = "0" defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderColorRectWithAlphaCheckerboard"][1]["funcname"] = "RenderColorRectWithAlphaCheckerboard" +<<<<<<< HEAD defs["igRenderColorRectWithAlphaCheckerboard"][1]["location"] = "imgui_internal:3407" +======= +defs["igRenderColorRectWithAlphaCheckerboard"][1]["location"] = "imgui_internal:3737" +>>>>>>> docking_inter defs["igRenderColorRectWithAlphaCheckerboard"][1]["namespace"] = "ImGui" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ov_cimguiname"] = "igRenderColorRectWithAlphaCheckerboard" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ret"] = "void" @@ -24126,7 +30085,11 @@ defs["igRenderDragDropTargetRect"][1]["call_args"] = "(bb,item_clip_rect)" defs["igRenderDragDropTargetRect"][1]["cimguiname"] = "igRenderDragDropTargetRect" defs["igRenderDragDropTargetRect"][1]["defaults"] = {} defs["igRenderDragDropTargetRect"][1]["funcname"] = "RenderDragDropTargetRect" +<<<<<<< HEAD defs["igRenderDragDropTargetRect"][1]["location"] = "imgui_internal:3300" +======= +defs["igRenderDragDropTargetRect"][1]["location"] = "imgui_internal:3629" +>>>>>>> docking_inter defs["igRenderDragDropTargetRect"][1]["namespace"] = "ImGui" defs["igRenderDragDropTargetRect"][1]["ov_cimguiname"] = "igRenderDragDropTargetRect" defs["igRenderDragDropTargetRect"][1]["ret"] = "void" @@ -24159,7 +30122,11 @@ defs["igRenderFrame"][1]["defaults"] = {} defs["igRenderFrame"][1]["defaults"]["border"] = "true" defs["igRenderFrame"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderFrame"][1]["funcname"] = "RenderFrame" +<<<<<<< HEAD defs["igRenderFrame"][1]["location"] = "imgui_internal:3405" +======= +defs["igRenderFrame"][1]["location"] = "imgui_internal:3735" +>>>>>>> docking_inter defs["igRenderFrame"][1]["namespace"] = "ImGui" defs["igRenderFrame"][1]["ov_cimguiname"] = "igRenderFrame" defs["igRenderFrame"][1]["ret"] = "void" @@ -24185,7 +30152,11 @@ defs["igRenderFrameBorder"][1]["cimguiname"] = "igRenderFrameBorder" defs["igRenderFrameBorder"][1]["defaults"] = {} defs["igRenderFrameBorder"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderFrameBorder"][1]["funcname"] = "RenderFrameBorder" +<<<<<<< HEAD defs["igRenderFrameBorder"][1]["location"] = "imgui_internal:3406" +======= +defs["igRenderFrameBorder"][1]["location"] = "imgui_internal:3736" +>>>>>>> docking_inter defs["igRenderFrameBorder"][1]["namespace"] = "ImGui" defs["igRenderFrameBorder"][1]["ov_cimguiname"] = "igRenderFrameBorder" defs["igRenderFrameBorder"][1]["ret"] = "void" @@ -24219,7 +30190,11 @@ defs["igRenderMouseCursor"][1]["call_args"] = "(pos,scale,mouse_cursor,col_fill, defs["igRenderMouseCursor"][1]["cimguiname"] = "igRenderMouseCursor" defs["igRenderMouseCursor"][1]["defaults"] = {} defs["igRenderMouseCursor"][1]["funcname"] = "RenderMouseCursor" +<<<<<<< HEAD defs["igRenderMouseCursor"][1]["location"] = "imgui_internal:3410" +======= +defs["igRenderMouseCursor"][1]["location"] = "imgui_internal:3740" +>>>>>>> docking_inter defs["igRenderMouseCursor"][1]["namespace"] = "ImGui" defs["igRenderMouseCursor"][1]["ov_cimguiname"] = "igRenderMouseCursor" defs["igRenderMouseCursor"][1]["ret"] = "void" @@ -24245,13 +30220,44 @@ defs["igRenderNavHighlight"][1]["cimguiname"] = "igRenderNavHighlight" defs["igRenderNavHighlight"][1]["defaults"] = {} defs["igRenderNavHighlight"][1]["defaults"]["flags"] = "ImGuiNavHighlightFlags_None" defs["igRenderNavHighlight"][1]["funcname"] = "RenderNavHighlight" +<<<<<<< HEAD defs["igRenderNavHighlight"][1]["location"] = "imgui_internal:3408" +======= +defs["igRenderNavHighlight"][1]["location"] = "imgui_internal:3738" +>>>>>>> docking_inter defs["igRenderNavHighlight"][1]["namespace"] = "ImGui" defs["igRenderNavHighlight"][1]["ov_cimguiname"] = "igRenderNavHighlight" defs["igRenderNavHighlight"][1]["ret"] = "void" defs["igRenderNavHighlight"][1]["signature"] = "(const ImRect,ImGuiID,ImGuiNavHighlightFlags)" defs["igRenderNavHighlight"][1]["stname"] = "" defs["igRenderNavHighlight"]["(const ImRect,ImGuiID,ImGuiNavHighlightFlags)"] = defs["igRenderNavHighlight"][1] +<<<<<<< HEAD +======= +defs["igRenderPlatformWindowsDefault"] = {} +defs["igRenderPlatformWindowsDefault"][1] = {} +defs["igRenderPlatformWindowsDefault"][1]["args"] = "(void* platform_render_arg,void* renderer_render_arg)" +defs["igRenderPlatformWindowsDefault"][1]["argsT"] = {} +defs["igRenderPlatformWindowsDefault"][1]["argsT"][1] = {} +defs["igRenderPlatformWindowsDefault"][1]["argsT"][1]["name"] = "platform_render_arg" +defs["igRenderPlatformWindowsDefault"][1]["argsT"][1]["type"] = "void*" +defs["igRenderPlatformWindowsDefault"][1]["argsT"][2] = {} +defs["igRenderPlatformWindowsDefault"][1]["argsT"][2]["name"] = "renderer_render_arg" +defs["igRenderPlatformWindowsDefault"][1]["argsT"][2]["type"] = "void*" +defs["igRenderPlatformWindowsDefault"][1]["argsoriginal"] = "(void* platform_render_arg=((void*)0),void* renderer_render_arg=((void*)0))" +defs["igRenderPlatformWindowsDefault"][1]["call_args"] = "(platform_render_arg,renderer_render_arg)" +defs["igRenderPlatformWindowsDefault"][1]["cimguiname"] = "igRenderPlatformWindowsDefault" +defs["igRenderPlatformWindowsDefault"][1]["defaults"] = {} +defs["igRenderPlatformWindowsDefault"][1]["defaults"]["platform_render_arg"] = "NULL" +defs["igRenderPlatformWindowsDefault"][1]["defaults"]["renderer_render_arg"] = "NULL" +defs["igRenderPlatformWindowsDefault"][1]["funcname"] = "RenderPlatformWindowsDefault" +defs["igRenderPlatformWindowsDefault"][1]["location"] = "imgui:1048" +defs["igRenderPlatformWindowsDefault"][1]["namespace"] = "ImGui" +defs["igRenderPlatformWindowsDefault"][1]["ov_cimguiname"] = "igRenderPlatformWindowsDefault" +defs["igRenderPlatformWindowsDefault"][1]["ret"] = "void" +defs["igRenderPlatformWindowsDefault"][1]["signature"] = "(void*,void*)" +defs["igRenderPlatformWindowsDefault"][1]["stname"] = "" +defs["igRenderPlatformWindowsDefault"]["(void*,void*)"] = defs["igRenderPlatformWindowsDefault"][1] +>>>>>>> docking_inter defs["igRenderRectFilledRangeH"] = {} defs["igRenderRectFilledRangeH"][1] = {} defs["igRenderRectFilledRangeH"][1]["args"] = "(ImDrawList* draw_list,const ImRect rect,ImU32 col,float x_start_norm,float x_end_norm,float rounding)" @@ -24279,7 +30285,11 @@ defs["igRenderRectFilledRangeH"][1]["call_args"] = "(draw_list,rect,col,x_start_ defs["igRenderRectFilledRangeH"][1]["cimguiname"] = "igRenderRectFilledRangeH" defs["igRenderRectFilledRangeH"][1]["defaults"] = {} defs["igRenderRectFilledRangeH"][1]["funcname"] = "RenderRectFilledRangeH" +<<<<<<< HEAD defs["igRenderRectFilledRangeH"][1]["location"] = "imgui_internal:3417" +======= +defs["igRenderRectFilledRangeH"][1]["location"] = "imgui_internal:3748" +>>>>>>> docking_inter defs["igRenderRectFilledRangeH"][1]["namespace"] = "ImGui" defs["igRenderRectFilledRangeH"][1]["ov_cimguiname"] = "igRenderRectFilledRangeH" defs["igRenderRectFilledRangeH"][1]["ret"] = "void" @@ -24310,7 +30320,11 @@ defs["igRenderRectFilledWithHole"][1]["call_args"] = "(draw_list,outer,inner,col defs["igRenderRectFilledWithHole"][1]["cimguiname"] = "igRenderRectFilledWithHole" defs["igRenderRectFilledWithHole"][1]["defaults"] = {} defs["igRenderRectFilledWithHole"][1]["funcname"] = "RenderRectFilledWithHole" +<<<<<<< HEAD defs["igRenderRectFilledWithHole"][1]["location"] = "imgui_internal:3418" +======= +defs["igRenderRectFilledWithHole"][1]["location"] = "imgui_internal:3749" +>>>>>>> docking_inter defs["igRenderRectFilledWithHole"][1]["namespace"] = "ImGui" defs["igRenderRectFilledWithHole"][1]["ov_cimguiname"] = "igRenderRectFilledWithHole" defs["igRenderRectFilledWithHole"][1]["ret"] = "void" @@ -24340,7 +30354,11 @@ defs["igRenderText"][1]["defaults"] = {} defs["igRenderText"][1]["defaults"]["hide_text_after_hash"] = "true" defs["igRenderText"][1]["defaults"]["text_end"] = "NULL" defs["igRenderText"][1]["funcname"] = "RenderText" +<<<<<<< HEAD defs["igRenderText"][1]["location"] = "imgui_internal:3400" +======= +defs["igRenderText"][1]["location"] = "imgui_internal:3730" +>>>>>>> docking_inter defs["igRenderText"][1]["namespace"] = "ImGui" defs["igRenderText"][1]["ov_cimguiname"] = "igRenderText" defs["igRenderText"][1]["ret"] = "void" @@ -24379,7 +30397,11 @@ defs["igRenderTextClipped"][1]["defaults"] = {} defs["igRenderTextClipped"][1]["defaults"]["align"] = "ImVec2(0,0)" defs["igRenderTextClipped"][1]["defaults"]["clip_rect"] = "NULL" defs["igRenderTextClipped"][1]["funcname"] = "RenderTextClipped" +<<<<<<< HEAD defs["igRenderTextClipped"][1]["location"] = "imgui_internal:3402" +======= +defs["igRenderTextClipped"][1]["location"] = "imgui_internal:3732" +>>>>>>> docking_inter defs["igRenderTextClipped"][1]["namespace"] = "ImGui" defs["igRenderTextClipped"][1]["ov_cimguiname"] = "igRenderTextClipped" defs["igRenderTextClipped"][1]["ret"] = "void" @@ -24421,7 +30443,11 @@ defs["igRenderTextClippedEx"][1]["defaults"] = {} defs["igRenderTextClippedEx"][1]["defaults"]["align"] = "ImVec2(0,0)" defs["igRenderTextClippedEx"][1]["defaults"]["clip_rect"] = "NULL" defs["igRenderTextClippedEx"][1]["funcname"] = "RenderTextClippedEx" +<<<<<<< HEAD defs["igRenderTextClippedEx"][1]["location"] = "imgui_internal:3403" +======= +defs["igRenderTextClippedEx"][1]["location"] = "imgui_internal:3733" +>>>>>>> docking_inter defs["igRenderTextClippedEx"][1]["namespace"] = "ImGui" defs["igRenderTextClippedEx"][1]["ov_cimguiname"] = "igRenderTextClippedEx" defs["igRenderTextClippedEx"][1]["ret"] = "void" @@ -24461,7 +30487,11 @@ defs["igRenderTextEllipsis"][1]["call_args"] = "(draw_list,pos_min,pos_max,clip_ defs["igRenderTextEllipsis"][1]["cimguiname"] = "igRenderTextEllipsis" defs["igRenderTextEllipsis"][1]["defaults"] = {} defs["igRenderTextEllipsis"][1]["funcname"] = "RenderTextEllipsis" +<<<<<<< HEAD defs["igRenderTextEllipsis"][1]["location"] = "imgui_internal:3404" +======= +defs["igRenderTextEllipsis"][1]["location"] = "imgui_internal:3734" +>>>>>>> docking_inter defs["igRenderTextEllipsis"][1]["namespace"] = "ImGui" defs["igRenderTextEllipsis"][1]["ov_cimguiname"] = "igRenderTextEllipsis" defs["igRenderTextEllipsis"][1]["ret"] = "void" @@ -24489,7 +30519,11 @@ defs["igRenderTextWrapped"][1]["call_args"] = "(pos,text,text_end,wrap_width)" defs["igRenderTextWrapped"][1]["cimguiname"] = "igRenderTextWrapped" defs["igRenderTextWrapped"][1]["defaults"] = {} defs["igRenderTextWrapped"][1]["funcname"] = "RenderTextWrapped" +<<<<<<< HEAD defs["igRenderTextWrapped"][1]["location"] = "imgui_internal:3401" +======= +defs["igRenderTextWrapped"][1]["location"] = "imgui_internal:3731" +>>>>>>> docking_inter defs["igRenderTextWrapped"][1]["namespace"] = "ImGui" defs["igRenderTextWrapped"][1]["ov_cimguiname"] = "igRenderTextWrapped" defs["igRenderTextWrapped"][1]["ret"] = "void" @@ -24509,7 +30543,11 @@ defs["igResetMouseDragDelta"][1]["cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["defaults"] = {} defs["igResetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igResetMouseDragDelta"][1]["funcname"] = "ResetMouseDragDelta" +<<<<<<< HEAD defs["igResetMouseDragDelta"][1]["location"] = "imgui:976" +======= +defs["igResetMouseDragDelta"][1]["location"] = "imgui:1008" +>>>>>>> docking_inter defs["igResetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igResetMouseDragDelta"][1]["ov_cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["ret"] = "void" @@ -24533,7 +30571,11 @@ defs["igSameLine"][1]["defaults"] = {} defs["igSameLine"][1]["defaults"]["offset_from_start_x"] = "0.0f" defs["igSameLine"][1]["defaults"]["spacing"] = "-1.0f" defs["igSameLine"][1]["funcname"] = "SameLine" +<<<<<<< HEAD defs["igSameLine"][1]["location"] = "imgui:481" +======= +defs["igSameLine"][1]["location"] = "imgui:491" +>>>>>>> docking_inter defs["igSameLine"][1]["namespace"] = "ImGui" defs["igSameLine"][1]["ov_cimguiname"] = "igSameLine" defs["igSameLine"][1]["ret"] = "void" @@ -24552,7 +30594,11 @@ defs["igSaveIniSettingsToDisk"][1]["call_args"] = "(ini_filename)" defs["igSaveIniSettingsToDisk"][1]["cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["defaults"] = {} defs["igSaveIniSettingsToDisk"][1]["funcname"] = "SaveIniSettingsToDisk" +<<<<<<< HEAD defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui:992" +======= +defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui:1024" +>>>>>>> docking_inter defs["igSaveIniSettingsToDisk"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToDisk"][1]["ov_cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["ret"] = "void" @@ -24572,13 +30618,42 @@ defs["igSaveIniSettingsToMemory"][1]["cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["defaults"] = {} defs["igSaveIniSettingsToMemory"][1]["defaults"]["out_ini_size"] = "NULL" defs["igSaveIniSettingsToMemory"][1]["funcname"] = "SaveIniSettingsToMemory" +<<<<<<< HEAD defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui:993" +======= +defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui:1025" +>>>>>>> docking_inter defs["igSaveIniSettingsToMemory"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToMemory"][1]["ov_cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["ret"] = "const char*" defs["igSaveIniSettingsToMemory"][1]["signature"] = "(size_t*)" defs["igSaveIniSettingsToMemory"][1]["stname"] = "" defs["igSaveIniSettingsToMemory"]["(size_t*)"] = defs["igSaveIniSettingsToMemory"][1] +<<<<<<< HEAD +======= +defs["igScaleWindowsInViewport"] = {} +defs["igScaleWindowsInViewport"][1] = {} +defs["igScaleWindowsInViewport"][1]["args"] = "(ImGuiViewportP* viewport,float scale)" +defs["igScaleWindowsInViewport"][1]["argsT"] = {} +defs["igScaleWindowsInViewport"][1]["argsT"][1] = {} +defs["igScaleWindowsInViewport"][1]["argsT"][1]["name"] = "viewport" +defs["igScaleWindowsInViewport"][1]["argsT"][1]["type"] = "ImGuiViewportP*" +defs["igScaleWindowsInViewport"][1]["argsT"][2] = {} +defs["igScaleWindowsInViewport"][1]["argsT"][2]["name"] = "scale" +defs["igScaleWindowsInViewport"][1]["argsT"][2]["type"] = "float" +defs["igScaleWindowsInViewport"][1]["argsoriginal"] = "(ImGuiViewportP* viewport,float scale)" +defs["igScaleWindowsInViewport"][1]["call_args"] = "(viewport,scale)" +defs["igScaleWindowsInViewport"][1]["cimguiname"] = "igScaleWindowsInViewport" +defs["igScaleWindowsInViewport"][1]["defaults"] = {} +defs["igScaleWindowsInViewport"][1]["funcname"] = "ScaleWindowsInViewport" +defs["igScaleWindowsInViewport"][1]["location"] = "imgui_internal:3333" +defs["igScaleWindowsInViewport"][1]["namespace"] = "ImGui" +defs["igScaleWindowsInViewport"][1]["ov_cimguiname"] = "igScaleWindowsInViewport" +defs["igScaleWindowsInViewport"][1]["ret"] = "void" +defs["igScaleWindowsInViewport"][1]["signature"] = "(ImGuiViewportP*,float)" +defs["igScaleWindowsInViewport"][1]["stname"] = "" +defs["igScaleWindowsInViewport"]["(ImGuiViewportP*,float)"] = defs["igScaleWindowsInViewport"][1] +>>>>>>> docking_inter defs["igScrollToBringRectIntoView"] = {} defs["igScrollToBringRectIntoView"][1] = {} defs["igScrollToBringRectIntoView"][1]["args"] = "(ImGuiWindow* window,const ImRect rect)" @@ -24594,7 +30669,11 @@ defs["igScrollToBringRectIntoView"][1]["call_args"] = "(window,rect)" defs["igScrollToBringRectIntoView"][1]["cimguiname"] = "igScrollToBringRectIntoView" defs["igScrollToBringRectIntoView"][1]["defaults"] = {} defs["igScrollToBringRectIntoView"][1]["funcname"] = "ScrollToBringRectIntoView" +<<<<<<< HEAD defs["igScrollToBringRectIntoView"][1]["location"] = "imgui_internal:3099" +======= +defs["igScrollToBringRectIntoView"][1]["location"] = "imgui_internal:3369" +>>>>>>> docking_inter defs["igScrollToBringRectIntoView"][1]["namespace"] = "ImGui" defs["igScrollToBringRectIntoView"][1]["ov_cimguiname"] = "igScrollToBringRectIntoView" defs["igScrollToBringRectIntoView"][1]["ret"] = "void" @@ -24614,7 +30693,11 @@ defs["igScrollToItem"][1]["cimguiname"] = "igScrollToItem" defs["igScrollToItem"][1]["defaults"] = {} defs["igScrollToItem"][1]["defaults"]["flags"] = "0" defs["igScrollToItem"][1]["funcname"] = "ScrollToItem" +<<<<<<< HEAD defs["igScrollToItem"][1]["location"] = "imgui_internal:3095" +======= +defs["igScrollToItem"][1]["location"] = "imgui_internal:3365" +>>>>>>> docking_inter defs["igScrollToItem"][1]["namespace"] = "ImGui" defs["igScrollToItem"][1]["ov_cimguiname"] = "igScrollToItem" defs["igScrollToItem"][1]["ret"] = "void" @@ -24640,7 +30723,11 @@ defs["igScrollToRect"][1]["cimguiname"] = "igScrollToRect" defs["igScrollToRect"][1]["defaults"] = {} defs["igScrollToRect"][1]["defaults"]["flags"] = "0" defs["igScrollToRect"][1]["funcname"] = "ScrollToRect" +<<<<<<< HEAD defs["igScrollToRect"][1]["location"] = "imgui_internal:3096" +======= +defs["igScrollToRect"][1]["location"] = "imgui_internal:3366" +>>>>>>> docking_inter defs["igScrollToRect"][1]["namespace"] = "ImGui" defs["igScrollToRect"][1]["ov_cimguiname"] = "igScrollToRect" defs["igScrollToRect"][1]["ret"] = "void" @@ -24669,7 +30756,11 @@ defs["igScrollToRectEx"][1]["cimguiname"] = "igScrollToRectEx" defs["igScrollToRectEx"][1]["defaults"] = {} defs["igScrollToRectEx"][1]["defaults"]["flags"] = "0" defs["igScrollToRectEx"][1]["funcname"] = "ScrollToRectEx" +<<<<<<< HEAD defs["igScrollToRectEx"][1]["location"] = "imgui_internal:3097" +======= +defs["igScrollToRectEx"][1]["location"] = "imgui_internal:3367" +>>>>>>> docking_inter defs["igScrollToRectEx"][1]["namespace"] = "ImGui" defs["igScrollToRectEx"][1]["nonUDT"] = 1 defs["igScrollToRectEx"][1]["ov_cimguiname"] = "igScrollToRectEx" @@ -24689,7 +30780,11 @@ defs["igScrollbar"][1]["call_args"] = "(axis)" defs["igScrollbar"][1]["cimguiname"] = "igScrollbar" defs["igScrollbar"][1]["defaults"] = {} defs["igScrollbar"][1]["funcname"] = "Scrollbar" +<<<<<<< HEAD defs["igScrollbar"][1]["location"] = "imgui_internal:3433" +======= +defs["igScrollbar"][1]["location"] = "imgui_internal:3765" +>>>>>>> docking_inter defs["igScrollbar"][1]["namespace"] = "ImGui" defs["igScrollbar"][1]["ov_cimguiname"] = "igScrollbar" defs["igScrollbar"][1]["ret"] = "void" @@ -24726,7 +30821,11 @@ defs["igScrollbarEx"][1]["call_args"] = "(bb,id,axis,p_scroll_v,avail_v,contents defs["igScrollbarEx"][1]["cimguiname"] = "igScrollbarEx" defs["igScrollbarEx"][1]["defaults"] = {} defs["igScrollbarEx"][1]["funcname"] = "ScrollbarEx" +<<<<<<< HEAD defs["igScrollbarEx"][1]["location"] = "imgui_internal:3434" +======= +defs["igScrollbarEx"][1]["location"] = "imgui_internal:3766" +>>>>>>> docking_inter defs["igScrollbarEx"][1]["namespace"] = "ImGui" defs["igScrollbarEx"][1]["ov_cimguiname"] = "igScrollbarEx" defs["igScrollbarEx"][1]["ret"] = "bool" @@ -24757,7 +30856,11 @@ defs["igSelectable"][1]["defaults"]["flags"] = "0" defs["igSelectable"][1]["defaults"]["selected"] = "false" defs["igSelectable"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][1]["funcname"] = "Selectable" +<<<<<<< HEAD defs["igSelectable"][1]["location"] = "imgui:659" +======= +defs["igSelectable"][1]["location"] = "imgui:669" +>>>>>>> docking_inter defs["igSelectable"][1]["namespace"] = "ImGui" defs["igSelectable"][1]["ov_cimguiname"] = "igSelectable_Bool" defs["igSelectable"][1]["ret"] = "bool" @@ -24785,7 +30888,11 @@ defs["igSelectable"][2]["defaults"] = {} defs["igSelectable"][2]["defaults"]["flags"] = "0" defs["igSelectable"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][2]["funcname"] = "Selectable" +<<<<<<< HEAD defs["igSelectable"][2]["location"] = "imgui:660" +======= +defs["igSelectable"][2]["location"] = "imgui:670" +>>>>>>> docking_inter defs["igSelectable"][2]["namespace"] = "ImGui" defs["igSelectable"][2]["ov_cimguiname"] = "igSelectable_BoolPtr" defs["igSelectable"][2]["ret"] = "bool" @@ -24802,7 +30909,11 @@ defs["igSeparator"][1]["call_args"] = "()" defs["igSeparator"][1]["cimguiname"] = "igSeparator" defs["igSeparator"][1]["defaults"] = {} defs["igSeparator"][1]["funcname"] = "Separator" +<<<<<<< HEAD defs["igSeparator"][1]["location"] = "imgui:480" +======= +defs["igSeparator"][1]["location"] = "imgui:490" +>>>>>>> docking_inter defs["igSeparator"][1]["namespace"] = "ImGui" defs["igSeparator"][1]["ov_cimguiname"] = "igSeparator" defs["igSeparator"][1]["ret"] = "void" @@ -24825,7 +30936,11 @@ defs["igSeparatorEx"][1]["cimguiname"] = "igSeparatorEx" defs["igSeparatorEx"][1]["defaults"] = {} defs["igSeparatorEx"][1]["defaults"]["thickness"] = "1.0f" defs["igSeparatorEx"][1]["funcname"] = "SeparatorEx" +<<<<<<< HEAD defs["igSeparatorEx"][1]["location"] = "imgui_internal:3425" +======= +defs["igSeparatorEx"][1]["location"] = "imgui_internal:3757" +>>>>>>> docking_inter defs["igSeparatorEx"][1]["namespace"] = "ImGui" defs["igSeparatorEx"][1]["ov_cimguiname"] = "igSeparatorEx" defs["igSeparatorEx"][1]["ret"] = "void" @@ -24844,7 +30959,11 @@ defs["igSeparatorText"][1]["call_args"] = "(label)" defs["igSeparatorText"][1]["cimguiname"] = "igSeparatorText" defs["igSeparatorText"][1]["defaults"] = {} defs["igSeparatorText"][1]["funcname"] = "SeparatorText" +<<<<<<< HEAD defs["igSeparatorText"][1]["location"] = "imgui:529" +======= +defs["igSeparatorText"][1]["location"] = "imgui:539" +>>>>>>> docking_inter defs["igSeparatorText"][1]["namespace"] = "ImGui" defs["igSeparatorText"][1]["ov_cimguiname"] = "igSeparatorText" defs["igSeparatorText"][1]["ret"] = "void" @@ -24872,7 +30991,11 @@ defs["igSeparatorTextEx"][1]["call_args"] = "(id,label,label_end,extra_width)" defs["igSeparatorTextEx"][1]["cimguiname"] = "igSeparatorTextEx" defs["igSeparatorTextEx"][1]["defaults"] = {} defs["igSeparatorTextEx"][1]["funcname"] = "SeparatorTextEx" +<<<<<<< HEAD defs["igSeparatorTextEx"][1]["location"] = "imgui_internal:3426" +======= +defs["igSeparatorTextEx"][1]["location"] = "imgui_internal:3758" +>>>>>>> docking_inter defs["igSeparatorTextEx"][1]["namespace"] = "ImGui" defs["igSeparatorTextEx"][1]["ov_cimguiname"] = "igSeparatorTextEx" defs["igSeparatorTextEx"][1]["ret"] = "void" @@ -24894,7 +31017,11 @@ defs["igSetActiveID"][1]["call_args"] = "(id,window)" defs["igSetActiveID"][1]["cimguiname"] = "igSetActiveID" defs["igSetActiveID"][1]["defaults"] = {} defs["igSetActiveID"][1]["funcname"] = "SetActiveID" +<<<<<<< HEAD defs["igSetActiveID"][1]["location"] = "imgui_internal:3107" +======= +defs["igSetActiveID"][1]["location"] = "imgui_internal:3377" +>>>>>>> docking_inter defs["igSetActiveID"][1]["namespace"] = "ImGui" defs["igSetActiveID"][1]["ov_cimguiname"] = "igSetActiveID" defs["igSetActiveID"][1]["ret"] = "void" @@ -24910,7 +31037,11 @@ defs["igSetActiveIdUsingAllKeyboardKeys"][1]["call_args"] = "()" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["cimguiname"] = "igSetActiveIdUsingAllKeyboardKeys" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["defaults"] = {} defs["igSetActiveIdUsingAllKeyboardKeys"][1]["funcname"] = "SetActiveIdUsingAllKeyboardKeys" +<<<<<<< HEAD defs["igSetActiveIdUsingAllKeyboardKeys"][1]["location"] = "imgui_internal:3228" +======= +defs["igSetActiveIdUsingAllKeyboardKeys"][1]["location"] = "imgui_internal:3502" +>>>>>>> docking_inter defs["igSetActiveIdUsingAllKeyboardKeys"][1]["namespace"] = "ImGui" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["ov_cimguiname"] = "igSetActiveIdUsingAllKeyboardKeys" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["ret"] = "void" @@ -24936,7 +31067,11 @@ defs["igSetAllocatorFunctions"][1]["cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["defaults"] = {} defs["igSetAllocatorFunctions"][1]["defaults"]["user_data"] = "NULL" defs["igSetAllocatorFunctions"][1]["funcname"] = "SetAllocatorFunctions" +<<<<<<< HEAD defs["igSetAllocatorFunctions"][1]["location"] = "imgui:1006" +======= +defs["igSetAllocatorFunctions"][1]["location"] = "imgui:1038" +>>>>>>> docking_inter defs["igSetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igSetAllocatorFunctions"][1]["ov_cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["ret"] = "void" @@ -24955,7 +31090,11 @@ defs["igSetClipboardText"][1]["call_args"] = "(text)" defs["igSetClipboardText"][1]["cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["defaults"] = {} defs["igSetClipboardText"][1]["funcname"] = "SetClipboardText" +<<<<<<< HEAD defs["igSetClipboardText"][1]["location"] = "imgui:984" +======= +defs["igSetClipboardText"][1]["location"] = "imgui:1016" +>>>>>>> docking_inter defs["igSetClipboardText"][1]["namespace"] = "ImGui" defs["igSetClipboardText"][1]["ov_cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["ret"] = "void" @@ -24974,7 +31113,11 @@ defs["igSetColorEditOptions"][1]["call_args"] = "(flags)" defs["igSetColorEditOptions"][1]["cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["defaults"] = {} defs["igSetColorEditOptions"][1]["funcname"] = "SetColorEditOptions" +<<<<<<< HEAD defs["igSetColorEditOptions"][1]["location"] = "imgui:634" +======= +defs["igSetColorEditOptions"][1]["location"] = "imgui:644" +>>>>>>> docking_inter defs["igSetColorEditOptions"][1]["namespace"] = "ImGui" defs["igSetColorEditOptions"][1]["ov_cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["ret"] = "void" @@ -24996,7 +31139,11 @@ defs["igSetColumnOffset"][1]["call_args"] = "(column_index,offset_x)" defs["igSetColumnOffset"][1]["cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["defaults"] = {} defs["igSetColumnOffset"][1]["funcname"] = "SetColumnOffset" +<<<<<<< HEAD defs["igSetColumnOffset"][1]["location"] = "imgui:824" +======= +defs["igSetColumnOffset"][1]["location"] = "imgui:835" +>>>>>>> docking_inter defs["igSetColumnOffset"][1]["namespace"] = "ImGui" defs["igSetColumnOffset"][1]["ov_cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["ret"] = "void" @@ -25018,7 +31165,11 @@ defs["igSetColumnWidth"][1]["call_args"] = "(column_index,width)" defs["igSetColumnWidth"][1]["cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["defaults"] = {} defs["igSetColumnWidth"][1]["funcname"] = "SetColumnWidth" +<<<<<<< HEAD defs["igSetColumnWidth"][1]["location"] = "imgui:822" +======= +defs["igSetColumnWidth"][1]["location"] = "imgui:833" +>>>>>>> docking_inter defs["igSetColumnWidth"][1]["namespace"] = "ImGui" defs["igSetColumnWidth"][1]["ov_cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["ret"] = "void" @@ -25037,7 +31188,11 @@ defs["igSetCurrentContext"][1]["call_args"] = "(ctx)" defs["igSetCurrentContext"][1]["cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["defaults"] = {} defs["igSetCurrentContext"][1]["funcname"] = "SetCurrentContext" +<<<<<<< HEAD defs["igSetCurrentContext"][1]["location"] = "imgui:311" +======= +defs["igSetCurrentContext"][1]["location"] = "imgui:318" +>>>>>>> docking_inter defs["igSetCurrentContext"][1]["namespace"] = "ImGui" defs["igSetCurrentContext"][1]["ov_cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["ret"] = "void" @@ -25056,13 +31211,42 @@ defs["igSetCurrentFont"][1]["call_args"] = "(font)" defs["igSetCurrentFont"][1]["cimguiname"] = "igSetCurrentFont" defs["igSetCurrentFont"][1]["defaults"] = {} defs["igSetCurrentFont"][1]["funcname"] = "SetCurrentFont" +<<<<<<< HEAD defs["igSetCurrentFont"][1]["location"] = "imgui_internal:3043" +======= +defs["igSetCurrentFont"][1]["location"] = "imgui_internal:3308" +>>>>>>> docking_inter defs["igSetCurrentFont"][1]["namespace"] = "ImGui" defs["igSetCurrentFont"][1]["ov_cimguiname"] = "igSetCurrentFont" defs["igSetCurrentFont"][1]["ret"] = "void" defs["igSetCurrentFont"][1]["signature"] = "(ImFont*)" defs["igSetCurrentFont"][1]["stname"] = "" defs["igSetCurrentFont"]["(ImFont*)"] = defs["igSetCurrentFont"][1] +<<<<<<< HEAD +======= +defs["igSetCurrentViewport"] = {} +defs["igSetCurrentViewport"][1] = {} +defs["igSetCurrentViewport"][1]["args"] = "(ImGuiWindow* window,ImGuiViewportP* viewport)" +defs["igSetCurrentViewport"][1]["argsT"] = {} +defs["igSetCurrentViewport"][1]["argsT"][1] = {} +defs["igSetCurrentViewport"][1]["argsT"][1]["name"] = "window" +defs["igSetCurrentViewport"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igSetCurrentViewport"][1]["argsT"][2] = {} +defs["igSetCurrentViewport"][1]["argsT"][2]["name"] = "viewport" +defs["igSetCurrentViewport"][1]["argsT"][2]["type"] = "ImGuiViewportP*" +defs["igSetCurrentViewport"][1]["argsoriginal"] = "(ImGuiWindow* window,ImGuiViewportP* viewport)" +defs["igSetCurrentViewport"][1]["call_args"] = "(window,viewport)" +defs["igSetCurrentViewport"][1]["cimguiname"] = "igSetCurrentViewport" +defs["igSetCurrentViewport"][1]["defaults"] = {} +defs["igSetCurrentViewport"][1]["funcname"] = "SetCurrentViewport" +defs["igSetCurrentViewport"][1]["location"] = "imgui_internal:3336" +defs["igSetCurrentViewport"][1]["namespace"] = "ImGui" +defs["igSetCurrentViewport"][1]["ov_cimguiname"] = "igSetCurrentViewport" +defs["igSetCurrentViewport"][1]["ret"] = "void" +defs["igSetCurrentViewport"][1]["signature"] = "(ImGuiWindow*,ImGuiViewportP*)" +defs["igSetCurrentViewport"][1]["stname"] = "" +defs["igSetCurrentViewport"]["(ImGuiWindow*,ImGuiViewportP*)"] = defs["igSetCurrentViewport"][1] +>>>>>>> docking_inter defs["igSetCursorPos"] = {} defs["igSetCursorPos"][1] = {} defs["igSetCursorPos"][1]["args"] = "(const ImVec2 local_pos)" @@ -25075,7 +31259,11 @@ defs["igSetCursorPos"][1]["call_args"] = "(local_pos)" defs["igSetCursorPos"][1]["cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["defaults"] = {} defs["igSetCursorPos"][1]["funcname"] = "SetCursorPos" +<<<<<<< HEAD defs["igSetCursorPos"][1]["location"] = "imgui:474" +======= +defs["igSetCursorPos"][1]["location"] = "imgui:484" +>>>>>>> docking_inter defs["igSetCursorPos"][1]["namespace"] = "ImGui" defs["igSetCursorPos"][1]["ov_cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["ret"] = "void" @@ -25094,7 +31282,11 @@ defs["igSetCursorPosX"][1]["call_args"] = "(local_x)" defs["igSetCursorPosX"][1]["cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["defaults"] = {} defs["igSetCursorPosX"][1]["funcname"] = "SetCursorPosX" +<<<<<<< HEAD defs["igSetCursorPosX"][1]["location"] = "imgui:475" +======= +defs["igSetCursorPosX"][1]["location"] = "imgui:485" +>>>>>>> docking_inter defs["igSetCursorPosX"][1]["namespace"] = "ImGui" defs["igSetCursorPosX"][1]["ov_cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["ret"] = "void" @@ -25113,7 +31305,11 @@ defs["igSetCursorPosY"][1]["call_args"] = "(local_y)" defs["igSetCursorPosY"][1]["cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["defaults"] = {} defs["igSetCursorPosY"][1]["funcname"] = "SetCursorPosY" +<<<<<<< HEAD defs["igSetCursorPosY"][1]["location"] = "imgui:476" +======= +defs["igSetCursorPosY"][1]["location"] = "imgui:486" +>>>>>>> docking_inter defs["igSetCursorPosY"][1]["namespace"] = "ImGui" defs["igSetCursorPosY"][1]["ov_cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["ret"] = "void" @@ -25132,7 +31328,11 @@ defs["igSetCursorScreenPos"][1]["call_args"] = "(pos)" defs["igSetCursorScreenPos"][1]["cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["defaults"] = {} defs["igSetCursorScreenPos"][1]["funcname"] = "SetCursorScreenPos" +<<<<<<< HEAD defs["igSetCursorScreenPos"][1]["location"] = "imgui:470" +======= +defs["igSetCursorScreenPos"][1]["location"] = "imgui:480" +>>>>>>> docking_inter defs["igSetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igSetCursorScreenPos"][1]["ov_cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["ret"] = "void" @@ -25161,7 +31361,11 @@ defs["igSetDragDropPayload"][1]["cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["defaults"] = {} defs["igSetDragDropPayload"][1]["defaults"]["cond"] = "0" defs["igSetDragDropPayload"][1]["funcname"] = "SetDragDropPayload" +<<<<<<< HEAD defs["igSetDragDropPayload"][1]["location"] = "imgui:852" +======= +defs["igSetDragDropPayload"][1]["location"] = "imgui:883" +>>>>>>> docking_inter defs["igSetDragDropPayload"][1]["namespace"] = "ImGui" defs["igSetDragDropPayload"][1]["ov_cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["ret"] = "bool" @@ -25183,7 +31387,11 @@ defs["igSetFocusID"][1]["call_args"] = "(id,window)" defs["igSetFocusID"][1]["cimguiname"] = "igSetFocusID" defs["igSetFocusID"][1]["defaults"] = {} defs["igSetFocusID"][1]["funcname"] = "SetFocusID" +<<<<<<< HEAD defs["igSetFocusID"][1]["location"] = "imgui_internal:3108" +======= +defs["igSetFocusID"][1]["location"] = "imgui_internal:3378" +>>>>>>> docking_inter defs["igSetFocusID"][1]["namespace"] = "ImGui" defs["igSetFocusID"][1]["ov_cimguiname"] = "igSetFocusID" defs["igSetFocusID"][1]["ret"] = "void" @@ -25202,7 +31410,11 @@ defs["igSetHoveredID"][1]["call_args"] = "(id)" defs["igSetHoveredID"][1]["cimguiname"] = "igSetHoveredID" defs["igSetHoveredID"][1]["defaults"] = {} defs["igSetHoveredID"][1]["funcname"] = "SetHoveredID" +<<<<<<< HEAD defs["igSetHoveredID"][1]["location"] = "imgui_internal:3111" +======= +defs["igSetHoveredID"][1]["location"] = "imgui_internal:3381" +>>>>>>> docking_inter defs["igSetHoveredID"][1]["namespace"] = "ImGui" defs["igSetHoveredID"][1]["ov_cimguiname"] = "igSetHoveredID" defs["igSetHoveredID"][1]["ret"] = "void" @@ -25218,7 +31430,11 @@ defs["igSetItemDefaultFocus"][1]["call_args"] = "()" defs["igSetItemDefaultFocus"][1]["cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["defaults"] = {} defs["igSetItemDefaultFocus"][1]["funcname"] = "SetItemDefaultFocus" +<<<<<<< HEAD defs["igSetItemDefaultFocus"][1]["location"] = "imgui:873" +======= +defs["igSetItemDefaultFocus"][1]["location"] = "imgui:905" +>>>>>>> docking_inter defs["igSetItemDefaultFocus"][1]["namespace"] = "ImGui" defs["igSetItemDefaultFocus"][1]["ov_cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["ret"] = "void" @@ -25241,7 +31457,11 @@ defs["igSetItemKeyOwner"][1]["cimguiname"] = "igSetItemKeyOwner" defs["igSetItemKeyOwner"][1]["defaults"] = {} defs["igSetItemKeyOwner"][1]["defaults"]["flags"] = "0" defs["igSetItemKeyOwner"][1]["funcname"] = "SetItemKeyOwner" +<<<<<<< HEAD defs["igSetItemKeyOwner"][1]["location"] = "imgui_internal:3245" +======= +defs["igSetItemKeyOwner"][1]["location"] = "imgui_internal:3519" +>>>>>>> docking_inter defs["igSetItemKeyOwner"][1]["namespace"] = "ImGui" defs["igSetItemKeyOwner"][1]["ov_cimguiname"] = "igSetItemKeyOwner" defs["igSetItemKeyOwner"][1]["ret"] = "void" @@ -25264,7 +31484,11 @@ defs["igSetItemTooltip"][1]["cimguiname"] = "igSetItemTooltip" defs["igSetItemTooltip"][1]["defaults"] = {} defs["igSetItemTooltip"][1]["funcname"] = "SetItemTooltip" defs["igSetItemTooltip"][1]["isvararg"] = "...)" +<<<<<<< HEAD defs["igSetItemTooltip"][1]["location"] = "imgui:715" +======= +defs["igSetItemTooltip"][1]["location"] = "imgui:725" +>>>>>>> docking_inter defs["igSetItemTooltip"][1]["namespace"] = "ImGui" defs["igSetItemTooltip"][1]["ov_cimguiname"] = "igSetItemTooltip" defs["igSetItemTooltip"][1]["ret"] = "void" @@ -25286,7 +31510,11 @@ defs["igSetItemTooltipV"][1]["call_args"] = "(fmt,args)" defs["igSetItemTooltipV"][1]["cimguiname"] = "igSetItemTooltipV" defs["igSetItemTooltipV"][1]["defaults"] = {} defs["igSetItemTooltipV"][1]["funcname"] = "SetItemTooltipV" +<<<<<<< HEAD defs["igSetItemTooltipV"][1]["location"] = "imgui:716" +======= +defs["igSetItemTooltipV"][1]["location"] = "imgui:726" +>>>>>>> docking_inter defs["igSetItemTooltipV"][1]["namespace"] = "ImGui" defs["igSetItemTooltipV"][1]["ov_cimguiname"] = "igSetItemTooltipV" defs["igSetItemTooltipV"][1]["ret"] = "void" @@ -25312,7 +31540,11 @@ defs["igSetKeyOwner"][1]["cimguiname"] = "igSetKeyOwner" defs["igSetKeyOwner"][1]["defaults"] = {} defs["igSetKeyOwner"][1]["defaults"]["flags"] = "0" defs["igSetKeyOwner"][1]["funcname"] = "SetKeyOwner" +<<<<<<< HEAD defs["igSetKeyOwner"][1]["location"] = "imgui_internal:3243" +======= +defs["igSetKeyOwner"][1]["location"] = "imgui_internal:3517" +>>>>>>> docking_inter defs["igSetKeyOwner"][1]["namespace"] = "ImGui" defs["igSetKeyOwner"][1]["ov_cimguiname"] = "igSetKeyOwner" defs["igSetKeyOwner"][1]["ret"] = "void" @@ -25338,7 +31570,11 @@ defs["igSetKeyOwnersForKeyChord"][1]["cimguiname"] = "igSetKeyOwnersForKeyChord" defs["igSetKeyOwnersForKeyChord"][1]["defaults"] = {} defs["igSetKeyOwnersForKeyChord"][1]["defaults"]["flags"] = "0" defs["igSetKeyOwnersForKeyChord"][1]["funcname"] = "SetKeyOwnersForKeyChord" +<<<<<<< HEAD defs["igSetKeyOwnersForKeyChord"][1]["location"] = "imgui_internal:3244" +======= +defs["igSetKeyOwnersForKeyChord"][1]["location"] = "imgui_internal:3518" +>>>>>>> docking_inter defs["igSetKeyOwnersForKeyChord"][1]["namespace"] = "ImGui" defs["igSetKeyOwnersForKeyChord"][1]["ov_cimguiname"] = "igSetKeyOwnersForKeyChord" defs["igSetKeyOwnersForKeyChord"][1]["ret"] = "void" @@ -25358,7 +31594,11 @@ defs["igSetKeyboardFocusHere"][1]["cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["defaults"] = {} defs["igSetKeyboardFocusHere"][1]["defaults"]["offset"] = "0" defs["igSetKeyboardFocusHere"][1]["funcname"] = "SetKeyboardFocusHere" +<<<<<<< HEAD defs["igSetKeyboardFocusHere"][1]["location"] = "imgui:874" +======= +defs["igSetKeyboardFocusHere"][1]["location"] = "imgui:906" +>>>>>>> docking_inter defs["igSetKeyboardFocusHere"][1]["namespace"] = "ImGui" defs["igSetKeyboardFocusHere"][1]["ov_cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["ret"] = "void" @@ -25386,7 +31626,11 @@ defs["igSetLastItemData"][1]["call_args"] = "(item_id,in_flags,status_flags,item defs["igSetLastItemData"][1]["cimguiname"] = "igSetLastItemData" defs["igSetLastItemData"][1]["defaults"] = {} defs["igSetLastItemData"][1]["funcname"] = "SetLastItemData" +<<<<<<< HEAD defs["igSetLastItemData"][1]["location"] = "imgui_internal:3125" +======= +defs["igSetLastItemData"][1]["location"] = "imgui_internal:3395" +>>>>>>> docking_inter defs["igSetLastItemData"][1]["namespace"] = "ImGui" defs["igSetLastItemData"][1]["ov_cimguiname"] = "igSetLastItemData" defs["igSetLastItemData"][1]["ret"] = "void" @@ -25405,7 +31649,11 @@ defs["igSetMouseCursor"][1]["call_args"] = "(cursor_type)" defs["igSetMouseCursor"][1]["cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["defaults"] = {} defs["igSetMouseCursor"][1]["funcname"] = "SetMouseCursor" +<<<<<<< HEAD defs["igSetMouseCursor"][1]["location"] = "imgui:978" +======= +defs["igSetMouseCursor"][1]["location"] = "imgui:1010" +>>>>>>> docking_inter defs["igSetMouseCursor"][1]["namespace"] = "ImGui" defs["igSetMouseCursor"][1]["ov_cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["ret"] = "void" @@ -25424,7 +31672,11 @@ defs["igSetNavFocusScope"][1]["call_args"] = "(focus_scope_id)" defs["igSetNavFocusScope"][1]["cimguiname"] = "igSetNavFocusScope" defs["igSetNavFocusScope"][1]["defaults"] = {} defs["igSetNavFocusScope"][1]["funcname"] = "SetNavFocusScope" +<<<<<<< HEAD defs["igSetNavFocusScope"][1]["location"] = "imgui_internal:3190" +======= +defs["igSetNavFocusScope"][1]["location"] = "imgui_internal:3464" +>>>>>>> docking_inter defs["igSetNavFocusScope"][1]["namespace"] = "ImGui" defs["igSetNavFocusScope"][1]["ov_cimguiname"] = "igSetNavFocusScope" defs["igSetNavFocusScope"][1]["ret"] = "void" @@ -25452,7 +31704,11 @@ defs["igSetNavID"][1]["call_args"] = "(id,nav_layer,focus_scope_id,rect_rel)" defs["igSetNavID"][1]["cimguiname"] = "igSetNavID" defs["igSetNavID"][1]["defaults"] = {} defs["igSetNavID"][1]["funcname"] = "SetNavID" +<<<<<<< HEAD defs["igSetNavID"][1]["location"] = "imgui_internal:3189" +======= +defs["igSetNavID"][1]["location"] = "imgui_internal:3463" +>>>>>>> docking_inter defs["igSetNavID"][1]["namespace"] = "ImGui" defs["igSetNavID"][1]["ov_cimguiname"] = "igSetNavID" defs["igSetNavID"][1]["ret"] = "void" @@ -25471,7 +31727,11 @@ defs["igSetNavWindow"][1]["call_args"] = "(window)" defs["igSetNavWindow"][1]["cimguiname"] = "igSetNavWindow" defs["igSetNavWindow"][1]["defaults"] = {} defs["igSetNavWindow"][1]["funcname"] = "SetNavWindow" +<<<<<<< HEAD defs["igSetNavWindow"][1]["location"] = "imgui_internal:3188" +======= +defs["igSetNavWindow"][1]["location"] = "imgui_internal:3462" +>>>>>>> docking_inter defs["igSetNavWindow"][1]["namespace"] = "ImGui" defs["igSetNavWindow"][1]["ov_cimguiname"] = "igSetNavWindow" defs["igSetNavWindow"][1]["ret"] = "void" @@ -25490,7 +31750,11 @@ defs["igSetNextFrameWantCaptureKeyboard"][1]["call_args"] = "(want_capture_keybo defs["igSetNextFrameWantCaptureKeyboard"][1]["cimguiname"] = "igSetNextFrameWantCaptureKeyboard" defs["igSetNextFrameWantCaptureKeyboard"][1]["defaults"] = {} defs["igSetNextFrameWantCaptureKeyboard"][1]["funcname"] = "SetNextFrameWantCaptureKeyboard" +<<<<<<< HEAD defs["igSetNextFrameWantCaptureKeyboard"][1]["location"] = "imgui:940" +======= +defs["igSetNextFrameWantCaptureKeyboard"][1]["location"] = "imgui:972" +>>>>>>> docking_inter defs["igSetNextFrameWantCaptureKeyboard"][1]["namespace"] = "ImGui" defs["igSetNextFrameWantCaptureKeyboard"][1]["ov_cimguiname"] = "igSetNextFrameWantCaptureKeyboard" defs["igSetNextFrameWantCaptureKeyboard"][1]["ret"] = "void" @@ -25509,7 +31773,11 @@ defs["igSetNextFrameWantCaptureMouse"][1]["call_args"] = "(want_capture_mouse)" defs["igSetNextFrameWantCaptureMouse"][1]["cimguiname"] = "igSetNextFrameWantCaptureMouse" defs["igSetNextFrameWantCaptureMouse"][1]["defaults"] = {} defs["igSetNextFrameWantCaptureMouse"][1]["funcname"] = "SetNextFrameWantCaptureMouse" +<<<<<<< HEAD defs["igSetNextFrameWantCaptureMouse"][1]["location"] = "imgui:979" +======= +defs["igSetNextFrameWantCaptureMouse"][1]["location"] = "imgui:1011" +>>>>>>> docking_inter defs["igSetNextFrameWantCaptureMouse"][1]["namespace"] = "ImGui" defs["igSetNextFrameWantCaptureMouse"][1]["ov_cimguiname"] = "igSetNextFrameWantCaptureMouse" defs["igSetNextFrameWantCaptureMouse"][1]["ret"] = "void" @@ -25525,7 +31793,11 @@ defs["igSetNextItemAllowOverlap"][1]["call_args"] = "()" defs["igSetNextItemAllowOverlap"][1]["cimguiname"] = "igSetNextItemAllowOverlap" defs["igSetNextItemAllowOverlap"][1]["defaults"] = {} defs["igSetNextItemAllowOverlap"][1]["funcname"] = "SetNextItemAllowOverlap" +<<<<<<< HEAD defs["igSetNextItemAllowOverlap"][1]["location"] = "imgui:877" +======= +defs["igSetNextItemAllowOverlap"][1]["location"] = "imgui:909" +>>>>>>> docking_inter defs["igSetNextItemAllowOverlap"][1]["namespace"] = "ImGui" defs["igSetNextItemAllowOverlap"][1]["ov_cimguiname"] = "igSetNextItemAllowOverlap" defs["igSetNextItemAllowOverlap"][1]["ret"] = "void" @@ -25548,7 +31820,11 @@ defs["igSetNextItemOpen"][1]["cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["defaults"] = {} defs["igSetNextItemOpen"][1]["defaults"]["cond"] = "0" defs["igSetNextItemOpen"][1]["funcname"] = "SetNextItemOpen" +<<<<<<< HEAD defs["igSetNextItemOpen"][1]["location"] = "imgui:654" +======= +defs["igSetNextItemOpen"][1]["location"] = "imgui:664" +>>>>>>> docking_inter defs["igSetNextItemOpen"][1]["namespace"] = "ImGui" defs["igSetNextItemOpen"][1]["ov_cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["ret"] = "void" @@ -25570,7 +31846,11 @@ defs["igSetNextItemRefVal"][1]["call_args"] = "(data_type,p_data)" defs["igSetNextItemRefVal"][1]["cimguiname"] = "igSetNextItemRefVal" defs["igSetNextItemRefVal"][1]["defaults"] = {} defs["igSetNextItemRefVal"][1]["funcname"] = "SetNextItemRefVal" +<<<<<<< HEAD defs["igSetNextItemRefVal"][1]["location"] = "imgui_internal:3476" +======= +defs["igSetNextItemRefVal"][1]["location"] = "imgui_internal:3808" +>>>>>>> docking_inter defs["igSetNextItemRefVal"][1]["namespace"] = "ImGui" defs["igSetNextItemRefVal"][1]["ov_cimguiname"] = "igSetNextItemRefVal" defs["igSetNextItemRefVal"][1]["ret"] = "void" @@ -25589,7 +31869,11 @@ defs["igSetNextItemSelectionUserData"][1]["call_args"] = "(selection_user_data)" defs["igSetNextItemSelectionUserData"][1]["cimguiname"] = "igSetNextItemSelectionUserData" defs["igSetNextItemSelectionUserData"][1]["defaults"] = {} defs["igSetNextItemSelectionUserData"][1]["funcname"] = "SetNextItemSelectionUserData" +<<<<<<< HEAD defs["igSetNextItemSelectionUserData"][1]["location"] = "imgui_internal:3449" +======= +defs["igSetNextItemSelectionUserData"][1]["location"] = "imgui_internal:3781" +>>>>>>> docking_inter defs["igSetNextItemSelectionUserData"][1]["namespace"] = "ImGui" defs["igSetNextItemSelectionUserData"][1]["ov_cimguiname"] = "igSetNextItemSelectionUserData" defs["igSetNextItemSelectionUserData"][1]["ret"] = "void" @@ -25612,7 +31896,11 @@ defs["igSetNextItemShortcut"][1]["cimguiname"] = "igSetNextItemShortcut" defs["igSetNextItemShortcut"][1]["defaults"] = {} defs["igSetNextItemShortcut"][1]["defaults"]["flags"] = "0" defs["igSetNextItemShortcut"][1]["funcname"] = "SetNextItemShortcut" +<<<<<<< HEAD defs["igSetNextItemShortcut"][1]["location"] = "imgui:958" +======= +defs["igSetNextItemShortcut"][1]["location"] = "imgui:990" +>>>>>>> docking_inter defs["igSetNextItemShortcut"][1]["namespace"] = "ImGui" defs["igSetNextItemShortcut"][1]["ov_cimguiname"] = "igSetNextItemShortcut" defs["igSetNextItemShortcut"][1]["ret"] = "void" @@ -25631,7 +31919,11 @@ defs["igSetNextItemWidth"][1]["call_args"] = "(item_width)" defs["igSetNextItemWidth"][1]["cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["defaults"] = {} defs["igSetNextItemWidth"][1]["funcname"] = "SetNextItemWidth" +<<<<<<< HEAD defs["igSetNextItemWidth"][1]["location"] = "imgui:446" +======= +defs["igSetNextItemWidth"][1]["location"] = "imgui:456" +>>>>>>> docking_inter defs["igSetNextItemWidth"][1]["namespace"] = "ImGui" defs["igSetNextItemWidth"][1]["ov_cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["ret"] = "void" @@ -25650,13 +31942,39 @@ defs["igSetNextWindowBgAlpha"][1]["call_args"] = "(alpha)" defs["igSetNextWindowBgAlpha"][1]["cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["defaults"] = {} defs["igSetNextWindowBgAlpha"][1]["funcname"] = "SetNextWindowBgAlpha" +<<<<<<< HEAD defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui:396" +======= +defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui:405" +>>>>>>> docking_inter defs["igSetNextWindowBgAlpha"][1]["namespace"] = "ImGui" defs["igSetNextWindowBgAlpha"][1]["ov_cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["ret"] = "void" defs["igSetNextWindowBgAlpha"][1]["signature"] = "(float)" defs["igSetNextWindowBgAlpha"][1]["stname"] = "" defs["igSetNextWindowBgAlpha"]["(float)"] = defs["igSetNextWindowBgAlpha"][1] +<<<<<<< HEAD +======= +defs["igSetNextWindowClass"] = {} +defs["igSetNextWindowClass"][1] = {} +defs["igSetNextWindowClass"][1]["args"] = "(const ImGuiWindowClass* window_class)" +defs["igSetNextWindowClass"][1]["argsT"] = {} +defs["igSetNextWindowClass"][1]["argsT"][1] = {} +defs["igSetNextWindowClass"][1]["argsT"][1]["name"] = "window_class" +defs["igSetNextWindowClass"][1]["argsT"][1]["type"] = "const ImGuiWindowClass*" +defs["igSetNextWindowClass"][1]["argsoriginal"] = "(const ImGuiWindowClass* window_class)" +defs["igSetNextWindowClass"][1]["call_args"] = "(window_class)" +defs["igSetNextWindowClass"][1]["cimguiname"] = "igSetNextWindowClass" +defs["igSetNextWindowClass"][1]["defaults"] = {} +defs["igSetNextWindowClass"][1]["funcname"] = "SetNextWindowClass" +defs["igSetNextWindowClass"][1]["location"] = "imgui:863" +defs["igSetNextWindowClass"][1]["namespace"] = "ImGui" +defs["igSetNextWindowClass"][1]["ov_cimguiname"] = "igSetNextWindowClass" +defs["igSetNextWindowClass"][1]["ret"] = "void" +defs["igSetNextWindowClass"][1]["signature"] = "(const ImGuiWindowClass*)" +defs["igSetNextWindowClass"][1]["stname"] = "" +defs["igSetNextWindowClass"]["(const ImGuiWindowClass*)"] = defs["igSetNextWindowClass"][1] +>>>>>>> docking_inter defs["igSetNextWindowCollapsed"] = {} defs["igSetNextWindowCollapsed"][1] = {} defs["igSetNextWindowCollapsed"][1]["args"] = "(bool collapsed,ImGuiCond cond)" @@ -25673,7 +31991,11 @@ defs["igSetNextWindowCollapsed"][1]["cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["defaults"] = {} defs["igSetNextWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowCollapsed"][1]["funcname"] = "SetNextWindowCollapsed" +<<<<<<< HEAD defs["igSetNextWindowCollapsed"][1]["location"] = "imgui:393" +======= +defs["igSetNextWindowCollapsed"][1]["location"] = "imgui:402" +>>>>>>> docking_inter defs["igSetNextWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetNextWindowCollapsed"][1]["ov_cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["ret"] = "void" @@ -25692,13 +32014,43 @@ defs["igSetNextWindowContentSize"][1]["call_args"] = "(size)" defs["igSetNextWindowContentSize"][1]["cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["defaults"] = {} defs["igSetNextWindowContentSize"][1]["funcname"] = "SetNextWindowContentSize" +<<<<<<< HEAD defs["igSetNextWindowContentSize"][1]["location"] = "imgui:392" +======= +defs["igSetNextWindowContentSize"][1]["location"] = "imgui:401" +>>>>>>> docking_inter defs["igSetNextWindowContentSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowContentSize"][1]["ov_cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["ret"] = "void" defs["igSetNextWindowContentSize"][1]["signature"] = "(const ImVec2)" defs["igSetNextWindowContentSize"][1]["stname"] = "" defs["igSetNextWindowContentSize"]["(const ImVec2)"] = defs["igSetNextWindowContentSize"][1] +<<<<<<< HEAD +======= +defs["igSetNextWindowDockID"] = {} +defs["igSetNextWindowDockID"][1] = {} +defs["igSetNextWindowDockID"][1]["args"] = "(ImGuiID dock_id,ImGuiCond cond)" +defs["igSetNextWindowDockID"][1]["argsT"] = {} +defs["igSetNextWindowDockID"][1]["argsT"][1] = {} +defs["igSetNextWindowDockID"][1]["argsT"][1]["name"] = "dock_id" +defs["igSetNextWindowDockID"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igSetNextWindowDockID"][1]["argsT"][2] = {} +defs["igSetNextWindowDockID"][1]["argsT"][2]["name"] = "cond" +defs["igSetNextWindowDockID"][1]["argsT"][2]["type"] = "ImGuiCond" +defs["igSetNextWindowDockID"][1]["argsoriginal"] = "(ImGuiID dock_id,ImGuiCond cond=0)" +defs["igSetNextWindowDockID"][1]["call_args"] = "(dock_id,cond)" +defs["igSetNextWindowDockID"][1]["cimguiname"] = "igSetNextWindowDockID" +defs["igSetNextWindowDockID"][1]["defaults"] = {} +defs["igSetNextWindowDockID"][1]["defaults"]["cond"] = "0" +defs["igSetNextWindowDockID"][1]["funcname"] = "SetNextWindowDockID" +defs["igSetNextWindowDockID"][1]["location"] = "imgui:862" +defs["igSetNextWindowDockID"][1]["namespace"] = "ImGui" +defs["igSetNextWindowDockID"][1]["ov_cimguiname"] = "igSetNextWindowDockID" +defs["igSetNextWindowDockID"][1]["ret"] = "void" +defs["igSetNextWindowDockID"][1]["signature"] = "(ImGuiID,ImGuiCond)" +defs["igSetNextWindowDockID"][1]["stname"] = "" +defs["igSetNextWindowDockID"]["(ImGuiID,ImGuiCond)"] = defs["igSetNextWindowDockID"][1] +>>>>>>> docking_inter defs["igSetNextWindowFocus"] = {} defs["igSetNextWindowFocus"][1] = {} defs["igSetNextWindowFocus"][1]["args"] = "()" @@ -25708,7 +32060,11 @@ defs["igSetNextWindowFocus"][1]["call_args"] = "()" defs["igSetNextWindowFocus"][1]["cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["defaults"] = {} defs["igSetNextWindowFocus"][1]["funcname"] = "SetNextWindowFocus" +<<<<<<< HEAD defs["igSetNextWindowFocus"][1]["location"] = "imgui:394" +======= +defs["igSetNextWindowFocus"][1]["location"] = "imgui:403" +>>>>>>> docking_inter defs["igSetNextWindowFocus"][1]["namespace"] = "ImGui" defs["igSetNextWindowFocus"][1]["ov_cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["ret"] = "void" @@ -25735,7 +32091,11 @@ defs["igSetNextWindowPos"][1]["defaults"] = {} defs["igSetNextWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowPos"][1]["defaults"]["pivot"] = "ImVec2(0,0)" defs["igSetNextWindowPos"][1]["funcname"] = "SetNextWindowPos" +<<<<<<< HEAD defs["igSetNextWindowPos"][1]["location"] = "imgui:389" +======= +defs["igSetNextWindowPos"][1]["location"] = "imgui:398" +>>>>>>> docking_inter defs["igSetNextWindowPos"][1]["namespace"] = "ImGui" defs["igSetNextWindowPos"][1]["ov_cimguiname"] = "igSetNextWindowPos" defs["igSetNextWindowPos"][1]["ret"] = "void" @@ -25754,7 +32114,11 @@ defs["igSetNextWindowRefreshPolicy"][1]["call_args"] = "(flags)" defs["igSetNextWindowRefreshPolicy"][1]["cimguiname"] = "igSetNextWindowRefreshPolicy" defs["igSetNextWindowRefreshPolicy"][1]["defaults"] = {} defs["igSetNextWindowRefreshPolicy"][1]["funcname"] = "SetNextWindowRefreshPolicy" +<<<<<<< HEAD defs["igSetNextWindowRefreshPolicy"][1]["location"] = "imgui_internal:3040" +======= +defs["igSetNextWindowRefreshPolicy"][1]["location"] = "imgui_internal:3305" +>>>>>>> docking_inter defs["igSetNextWindowRefreshPolicy"][1]["namespace"] = "ImGui" defs["igSetNextWindowRefreshPolicy"][1]["ov_cimguiname"] = "igSetNextWindowRefreshPolicy" defs["igSetNextWindowRefreshPolicy"][1]["ret"] = "void" @@ -25773,7 +32137,11 @@ defs["igSetNextWindowScroll"][1]["call_args"] = "(scroll)" defs["igSetNextWindowScroll"][1]["cimguiname"] = "igSetNextWindowScroll" defs["igSetNextWindowScroll"][1]["defaults"] = {} defs["igSetNextWindowScroll"][1]["funcname"] = "SetNextWindowScroll" +<<<<<<< HEAD defs["igSetNextWindowScroll"][1]["location"] = "imgui:395" +======= +defs["igSetNextWindowScroll"][1]["location"] = "imgui:404" +>>>>>>> docking_inter defs["igSetNextWindowScroll"][1]["namespace"] = "ImGui" defs["igSetNextWindowScroll"][1]["ov_cimguiname"] = "igSetNextWindowScroll" defs["igSetNextWindowScroll"][1]["ret"] = "void" @@ -25796,7 +32164,11 @@ defs["igSetNextWindowSize"][1]["cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["defaults"] = {} defs["igSetNextWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowSize"][1]["funcname"] = "SetNextWindowSize" +<<<<<<< HEAD defs["igSetNextWindowSize"][1]["location"] = "imgui:390" +======= +defs["igSetNextWindowSize"][1]["location"] = "imgui:399" +>>>>>>> docking_inter defs["igSetNextWindowSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowSize"][1]["ov_cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["ret"] = "void" @@ -25826,13 +32198,39 @@ defs["igSetNextWindowSizeConstraints"][1]["defaults"] = {} defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback"] = "NULL" defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback_data"] = "NULL" defs["igSetNextWindowSizeConstraints"][1]["funcname"] = "SetNextWindowSizeConstraints" +<<<<<<< HEAD defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui:391" +======= +defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui:400" +>>>>>>> docking_inter defs["igSetNextWindowSizeConstraints"][1]["namespace"] = "ImGui" defs["igSetNextWindowSizeConstraints"][1]["ov_cimguiname"] = "igSetNextWindowSizeConstraints" defs["igSetNextWindowSizeConstraints"][1]["ret"] = "void" defs["igSetNextWindowSizeConstraints"][1]["signature"] = "(const ImVec2,const ImVec2,ImGuiSizeCallback,void*)" defs["igSetNextWindowSizeConstraints"][1]["stname"] = "" defs["igSetNextWindowSizeConstraints"]["(const ImVec2,const ImVec2,ImGuiSizeCallback,void*)"] = defs["igSetNextWindowSizeConstraints"][1] +<<<<<<< HEAD +======= +defs["igSetNextWindowViewport"] = {} +defs["igSetNextWindowViewport"][1] = {} +defs["igSetNextWindowViewport"][1]["args"] = "(ImGuiID viewport_id)" +defs["igSetNextWindowViewport"][1]["argsT"] = {} +defs["igSetNextWindowViewport"][1]["argsT"][1] = {} +defs["igSetNextWindowViewport"][1]["argsT"][1]["name"] = "viewport_id" +defs["igSetNextWindowViewport"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igSetNextWindowViewport"][1]["argsoriginal"] = "(ImGuiID viewport_id)" +defs["igSetNextWindowViewport"][1]["call_args"] = "(viewport_id)" +defs["igSetNextWindowViewport"][1]["cimguiname"] = "igSetNextWindowViewport" +defs["igSetNextWindowViewport"][1]["defaults"] = {} +defs["igSetNextWindowViewport"][1]["funcname"] = "SetNextWindowViewport" +defs["igSetNextWindowViewport"][1]["location"] = "imgui:406" +defs["igSetNextWindowViewport"][1]["namespace"] = "ImGui" +defs["igSetNextWindowViewport"][1]["ov_cimguiname"] = "igSetNextWindowViewport" +defs["igSetNextWindowViewport"][1]["ret"] = "void" +defs["igSetNextWindowViewport"][1]["signature"] = "(ImGuiID)" +defs["igSetNextWindowViewport"][1]["stname"] = "" +defs["igSetNextWindowViewport"]["(ImGuiID)"] = defs["igSetNextWindowViewport"][1] +>>>>>>> docking_inter defs["igSetScrollFromPosX"] = {} defs["igSetScrollFromPosX"][1] = {} defs["igSetScrollFromPosX"][1]["args"] = "(float local_x,float center_x_ratio)" @@ -25849,7 +32247,11 @@ defs["igSetScrollFromPosX"][1]["cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][1]["defaults"] = {} defs["igSetScrollFromPosX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollFromPosX"][1]["funcname"] = "SetScrollFromPosX" +<<<<<<< HEAD defs["igSetScrollFromPosX"][1]["location"] = "imgui:426" +======= +defs["igSetScrollFromPosX"][1]["location"] = "imgui:436" +>>>>>>> docking_inter defs["igSetScrollFromPosX"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][1]["ov_cimguiname"] = "igSetScrollFromPosX_Float" defs["igSetScrollFromPosX"][1]["ret"] = "void" @@ -25872,7 +32274,11 @@ defs["igSetScrollFromPosX"][2]["call_args"] = "(window,local_x,center_x_ratio)" defs["igSetScrollFromPosX"][2]["cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][2]["defaults"] = {} defs["igSetScrollFromPosX"][2]["funcname"] = "SetScrollFromPosX" +<<<<<<< HEAD defs["igSetScrollFromPosX"][2]["location"] = "imgui_internal:3091" +======= +defs["igSetScrollFromPosX"][2]["location"] = "imgui_internal:3361" +>>>>>>> docking_inter defs["igSetScrollFromPosX"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][2]["ov_cimguiname"] = "igSetScrollFromPosX_WindowPtr" defs["igSetScrollFromPosX"][2]["ret"] = "void" @@ -25896,7 +32302,11 @@ defs["igSetScrollFromPosY"][1]["cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][1]["defaults"] = {} defs["igSetScrollFromPosY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollFromPosY"][1]["funcname"] = "SetScrollFromPosY" +<<<<<<< HEAD defs["igSetScrollFromPosY"][1]["location"] = "imgui:427" +======= +defs["igSetScrollFromPosY"][1]["location"] = "imgui:437" +>>>>>>> docking_inter defs["igSetScrollFromPosY"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][1]["ov_cimguiname"] = "igSetScrollFromPosY_Float" defs["igSetScrollFromPosY"][1]["ret"] = "void" @@ -25919,7 +32329,11 @@ defs["igSetScrollFromPosY"][2]["call_args"] = "(window,local_y,center_y_ratio)" defs["igSetScrollFromPosY"][2]["cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][2]["defaults"] = {} defs["igSetScrollFromPosY"][2]["funcname"] = "SetScrollFromPosY" +<<<<<<< HEAD defs["igSetScrollFromPosY"][2]["location"] = "imgui_internal:3092" +======= +defs["igSetScrollFromPosY"][2]["location"] = "imgui_internal:3362" +>>>>>>> docking_inter defs["igSetScrollFromPosY"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][2]["ov_cimguiname"] = "igSetScrollFromPosY_WindowPtr" defs["igSetScrollFromPosY"][2]["ret"] = "void" @@ -25940,7 +32354,11 @@ defs["igSetScrollHereX"][1]["cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["defaults"] = {} defs["igSetScrollHereX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollHereX"][1]["funcname"] = "SetScrollHereX" +<<<<<<< HEAD defs["igSetScrollHereX"][1]["location"] = "imgui:424" +======= +defs["igSetScrollHereX"][1]["location"] = "imgui:434" +>>>>>>> docking_inter defs["igSetScrollHereX"][1]["namespace"] = "ImGui" defs["igSetScrollHereX"][1]["ov_cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["ret"] = "void" @@ -25960,7 +32378,11 @@ defs["igSetScrollHereY"][1]["cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["defaults"] = {} defs["igSetScrollHereY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollHereY"][1]["funcname"] = "SetScrollHereY" +<<<<<<< HEAD defs["igSetScrollHereY"][1]["location"] = "imgui:425" +======= +defs["igSetScrollHereY"][1]["location"] = "imgui:435" +>>>>>>> docking_inter defs["igSetScrollHereY"][1]["namespace"] = "ImGui" defs["igSetScrollHereY"][1]["ov_cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["ret"] = "void" @@ -25979,7 +32401,11 @@ defs["igSetScrollX"][1]["call_args"] = "(scroll_x)" defs["igSetScrollX"][1]["cimguiname"] = "igSetScrollX" defs["igSetScrollX"][1]["defaults"] = {} defs["igSetScrollX"][1]["funcname"] = "SetScrollX" +<<<<<<< HEAD defs["igSetScrollX"][1]["location"] = "imgui:420" +======= +defs["igSetScrollX"][1]["location"] = "imgui:430" +>>>>>>> docking_inter defs["igSetScrollX"][1]["namespace"] = "ImGui" defs["igSetScrollX"][1]["ov_cimguiname"] = "igSetScrollX_Float" defs["igSetScrollX"][1]["ret"] = "void" @@ -25999,7 +32425,11 @@ defs["igSetScrollX"][2]["call_args"] = "(window,scroll_x)" defs["igSetScrollX"][2]["cimguiname"] = "igSetScrollX" defs["igSetScrollX"][2]["defaults"] = {} defs["igSetScrollX"][2]["funcname"] = "SetScrollX" +<<<<<<< HEAD defs["igSetScrollX"][2]["location"] = "imgui_internal:3089" +======= +defs["igSetScrollX"][2]["location"] = "imgui_internal:3359" +>>>>>>> docking_inter defs["igSetScrollX"][2]["namespace"] = "ImGui" defs["igSetScrollX"][2]["ov_cimguiname"] = "igSetScrollX_WindowPtr" defs["igSetScrollX"][2]["ret"] = "void" @@ -26019,7 +32449,11 @@ defs["igSetScrollY"][1]["call_args"] = "(scroll_y)" defs["igSetScrollY"][1]["cimguiname"] = "igSetScrollY" defs["igSetScrollY"][1]["defaults"] = {} defs["igSetScrollY"][1]["funcname"] = "SetScrollY" +<<<<<<< HEAD defs["igSetScrollY"][1]["location"] = "imgui:421" +======= +defs["igSetScrollY"][1]["location"] = "imgui:431" +>>>>>>> docking_inter defs["igSetScrollY"][1]["namespace"] = "ImGui" defs["igSetScrollY"][1]["ov_cimguiname"] = "igSetScrollY_Float" defs["igSetScrollY"][1]["ret"] = "void" @@ -26039,7 +32473,11 @@ defs["igSetScrollY"][2]["call_args"] = "(window,scroll_y)" defs["igSetScrollY"][2]["cimguiname"] = "igSetScrollY" defs["igSetScrollY"][2]["defaults"] = {} defs["igSetScrollY"][2]["funcname"] = "SetScrollY" +<<<<<<< HEAD defs["igSetScrollY"][2]["location"] = "imgui_internal:3090" +======= +defs["igSetScrollY"][2]["location"] = "imgui_internal:3360" +>>>>>>> docking_inter defs["igSetScrollY"][2]["namespace"] = "ImGui" defs["igSetScrollY"][2]["ov_cimguiname"] = "igSetScrollY_WindowPtr" defs["igSetScrollY"][2]["ret"] = "void" @@ -26065,7 +32503,11 @@ defs["igSetShortcutRouting"][1]["call_args"] = "(key_chord,flags,owner_id)" defs["igSetShortcutRouting"][1]["cimguiname"] = "igSetShortcutRouting" defs["igSetShortcutRouting"][1]["defaults"] = {} defs["igSetShortcutRouting"][1]["funcname"] = "SetShortcutRouting" +<<<<<<< HEAD defs["igSetShortcutRouting"][1]["location"] = "imgui_internal:3279" +======= +defs["igSetShortcutRouting"][1]["location"] = "imgui_internal:3553" +>>>>>>> docking_inter defs["igSetShortcutRouting"][1]["namespace"] = "ImGui" defs["igSetShortcutRouting"][1]["ov_cimguiname"] = "igSetShortcutRouting" defs["igSetShortcutRouting"][1]["ret"] = "bool" @@ -26084,7 +32526,11 @@ defs["igSetStateStorage"][1]["call_args"] = "(storage)" defs["igSetStateStorage"][1]["cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["defaults"] = {} defs["igSetStateStorage"][1]["funcname"] = "SetStateStorage" +<<<<<<< HEAD defs["igSetStateStorage"][1]["location"] = "imgui:917" +======= +defs["igSetStateStorage"][1]["location"] = "imgui:949" +>>>>>>> docking_inter defs["igSetStateStorage"][1]["namespace"] = "ImGui" defs["igSetStateStorage"][1]["ov_cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["ret"] = "void" @@ -26103,7 +32549,11 @@ defs["igSetTabItemClosed"][1]["call_args"] = "(tab_or_docked_window_label)" defs["igSetTabItemClosed"][1]["cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["defaults"] = {} defs["igSetTabItemClosed"][1]["funcname"] = "SetTabItemClosed" +<<<<<<< HEAD defs["igSetTabItemClosed"][1]["location"] = "imgui:834" +======= +defs["igSetTabItemClosed"][1]["location"] = "imgui:845" +>>>>>>> docking_inter defs["igSetTabItemClosed"][1]["namespace"] = "ImGui" defs["igSetTabItemClosed"][1]["ov_cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["ret"] = "void" @@ -26126,7 +32576,11 @@ defs["igSetTooltip"][1]["cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["defaults"] = {} defs["igSetTooltip"][1]["funcname"] = "SetTooltip" defs["igSetTooltip"][1]["isvararg"] = "...)" +<<<<<<< HEAD defs["igSetTooltip"][1]["location"] = "imgui:707" +======= +defs["igSetTooltip"][1]["location"] = "imgui:717" +>>>>>>> docking_inter defs["igSetTooltip"][1]["namespace"] = "ImGui" defs["igSetTooltip"][1]["ov_cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["ret"] = "void" @@ -26148,7 +32602,11 @@ defs["igSetTooltipV"][1]["call_args"] = "(fmt,args)" defs["igSetTooltipV"][1]["cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["defaults"] = {} defs["igSetTooltipV"][1]["funcname"] = "SetTooltipV" +<<<<<<< HEAD defs["igSetTooltipV"][1]["location"] = "imgui:708" +======= +defs["igSetTooltipV"][1]["location"] = "imgui:718" +>>>>>>> docking_inter defs["igSetTooltipV"][1]["namespace"] = "ImGui" defs["igSetTooltipV"][1]["ov_cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["ret"] = "void" @@ -26170,7 +32628,11 @@ defs["igSetWindowClipRectBeforeSetChannel"][1]["call_args"] = "(window,clip_rect defs["igSetWindowClipRectBeforeSetChannel"][1]["cimguiname"] = "igSetWindowClipRectBeforeSetChannel" defs["igSetWindowClipRectBeforeSetChannel"][1]["defaults"] = {} defs["igSetWindowClipRectBeforeSetChannel"][1]["funcname"] = "SetWindowClipRectBeforeSetChannel" +<<<<<<< HEAD defs["igSetWindowClipRectBeforeSetChannel"][1]["location"] = "imgui_internal:3309" +======= +defs["igSetWindowClipRectBeforeSetChannel"][1]["location"] = "imgui_internal:3638" +>>>>>>> docking_inter defs["igSetWindowClipRectBeforeSetChannel"][1]["namespace"] = "ImGui" defs["igSetWindowClipRectBeforeSetChannel"][1]["ov_cimguiname"] = "igSetWindowClipRectBeforeSetChannel" defs["igSetWindowClipRectBeforeSetChannel"][1]["ret"] = "void" @@ -26193,7 +32655,11 @@ defs["igSetWindowCollapsed"][1]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][1]["defaults"] = {} defs["igSetWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][1]["funcname"] = "SetWindowCollapsed" +<<<<<<< HEAD defs["igSetWindowCollapsed"][1]["location"] = "imgui:399" +======= +defs["igSetWindowCollapsed"][1]["location"] = "imgui:409" +>>>>>>> docking_inter defs["igSetWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][1]["ov_cimguiname"] = "igSetWindowCollapsed_Bool" defs["igSetWindowCollapsed"][1]["ret"] = "void" @@ -26217,7 +32683,11 @@ defs["igSetWindowCollapsed"][2]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][2]["defaults"] = {} defs["igSetWindowCollapsed"][2]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][2]["funcname"] = "SetWindowCollapsed" +<<<<<<< HEAD defs["igSetWindowCollapsed"][2]["location"] = "imgui:404" +======= +defs["igSetWindowCollapsed"][2]["location"] = "imgui:414" +>>>>>>> docking_inter defs["igSetWindowCollapsed"][2]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][2]["ov_cimguiname"] = "igSetWindowCollapsed_Str" defs["igSetWindowCollapsed"][2]["ret"] = "void" @@ -26241,7 +32711,11 @@ defs["igSetWindowCollapsed"][3]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][3]["defaults"] = {} defs["igSetWindowCollapsed"][3]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][3]["funcname"] = "SetWindowCollapsed" +<<<<<<< HEAD defs["igSetWindowCollapsed"][3]["location"] = "imgui_internal:3021" +======= +defs["igSetWindowCollapsed"][3]["location"] = "imgui_internal:3286" +>>>>>>> docking_inter defs["igSetWindowCollapsed"][3]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][3]["ov_cimguiname"] = "igSetWindowCollapsed_WindowPtr" defs["igSetWindowCollapsed"][3]["ret"] = "void" @@ -26250,6 +32724,34 @@ defs["igSetWindowCollapsed"][3]["stname"] = "" defs["igSetWindowCollapsed"]["(ImGuiWindow*,bool,ImGuiCond)"] = defs["igSetWindowCollapsed"][3] defs["igSetWindowCollapsed"]["(bool,ImGuiCond)"] = defs["igSetWindowCollapsed"][1] defs["igSetWindowCollapsed"]["(const char*,bool,ImGuiCond)"] = defs["igSetWindowCollapsed"][2] +<<<<<<< HEAD +======= +defs["igSetWindowDock"] = {} +defs["igSetWindowDock"][1] = {} +defs["igSetWindowDock"][1]["args"] = "(ImGuiWindow* window,ImGuiID dock_id,ImGuiCond cond)" +defs["igSetWindowDock"][1]["argsT"] = {} +defs["igSetWindowDock"][1]["argsT"][1] = {} +defs["igSetWindowDock"][1]["argsT"][1]["name"] = "window" +defs["igSetWindowDock"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igSetWindowDock"][1]["argsT"][2] = {} +defs["igSetWindowDock"][1]["argsT"][2]["name"] = "dock_id" +defs["igSetWindowDock"][1]["argsT"][2]["type"] = "ImGuiID" +defs["igSetWindowDock"][1]["argsT"][3] = {} +defs["igSetWindowDock"][1]["argsT"][3]["name"] = "cond" +defs["igSetWindowDock"][1]["argsT"][3]["type"] = "ImGuiCond" +defs["igSetWindowDock"][1]["argsoriginal"] = "(ImGuiWindow* window,ImGuiID dock_id,ImGuiCond cond)" +defs["igSetWindowDock"][1]["call_args"] = "(window,dock_id,cond)" +defs["igSetWindowDock"][1]["cimguiname"] = "igSetWindowDock" +defs["igSetWindowDock"][1]["defaults"] = {} +defs["igSetWindowDock"][1]["funcname"] = "SetWindowDock" +defs["igSetWindowDock"][1]["location"] = "imgui_internal:3586" +defs["igSetWindowDock"][1]["namespace"] = "ImGui" +defs["igSetWindowDock"][1]["ov_cimguiname"] = "igSetWindowDock" +defs["igSetWindowDock"][1]["ret"] = "void" +defs["igSetWindowDock"][1]["signature"] = "(ImGuiWindow*,ImGuiID,ImGuiCond)" +defs["igSetWindowDock"][1]["stname"] = "" +defs["igSetWindowDock"]["(ImGuiWindow*,ImGuiID,ImGuiCond)"] = defs["igSetWindowDock"][1] +>>>>>>> docking_inter defs["igSetWindowFocus"] = {} defs["igSetWindowFocus"][1] = {} defs["igSetWindowFocus"][1]["args"] = "()" @@ -26259,7 +32761,11 @@ defs["igSetWindowFocus"][1]["call_args"] = "()" defs["igSetWindowFocus"][1]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][1]["defaults"] = {} defs["igSetWindowFocus"][1]["funcname"] = "SetWindowFocus" +<<<<<<< HEAD defs["igSetWindowFocus"][1]["location"] = "imgui:400" +======= +defs["igSetWindowFocus"][1]["location"] = "imgui:410" +>>>>>>> docking_inter defs["igSetWindowFocus"][1]["namespace"] = "ImGui" defs["igSetWindowFocus"][1]["ov_cimguiname"] = "igSetWindowFocus_Nil" defs["igSetWindowFocus"][1]["ret"] = "void" @@ -26276,7 +32782,11 @@ defs["igSetWindowFocus"][2]["call_args"] = "(name)" defs["igSetWindowFocus"][2]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][2]["defaults"] = {} defs["igSetWindowFocus"][2]["funcname"] = "SetWindowFocus" +<<<<<<< HEAD defs["igSetWindowFocus"][2]["location"] = "imgui:405" +======= +defs["igSetWindowFocus"][2]["location"] = "imgui:415" +>>>>>>> docking_inter defs["igSetWindowFocus"][2]["namespace"] = "ImGui" defs["igSetWindowFocus"][2]["ov_cimguiname"] = "igSetWindowFocus_Str" defs["igSetWindowFocus"][2]["ret"] = "void" @@ -26296,7 +32806,11 @@ defs["igSetWindowFontScale"][1]["call_args"] = "(scale)" defs["igSetWindowFontScale"][1]["cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["defaults"] = {} defs["igSetWindowFontScale"][1]["funcname"] = "SetWindowFontScale" +<<<<<<< HEAD defs["igSetWindowFontScale"][1]["location"] = "imgui:401" +======= +defs["igSetWindowFontScale"][1]["location"] = "imgui:411" +>>>>>>> docking_inter defs["igSetWindowFontScale"][1]["namespace"] = "ImGui" defs["igSetWindowFontScale"][1]["ov_cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["ret"] = "void" @@ -26315,7 +32829,11 @@ defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["call_args"] = "(window) defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["cimguiname"] = "igSetWindowHiddenAndSkipItemsForCurrentFrame" defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["defaults"] = {} defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["funcname"] = "SetWindowHiddenAndSkipItemsForCurrentFrame" +<<<<<<< HEAD defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["location"] = "imgui_internal:3023" +======= +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["location"] = "imgui_internal:3288" +>>>>>>> docking_inter defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["namespace"] = "ImGui" defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["ov_cimguiname"] = "igSetWindowHiddenAndSkipItemsForCurrentFrame" defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["ret"] = "void" @@ -26340,7 +32858,11 @@ defs["igSetWindowHitTestHole"][1]["call_args"] = "(window,pos,size)" defs["igSetWindowHitTestHole"][1]["cimguiname"] = "igSetWindowHitTestHole" defs["igSetWindowHitTestHole"][1]["defaults"] = {} defs["igSetWindowHitTestHole"][1]["funcname"] = "SetWindowHitTestHole" +<<<<<<< HEAD defs["igSetWindowHitTestHole"][1]["location"] = "imgui_internal:3022" +======= +defs["igSetWindowHitTestHole"][1]["location"] = "imgui_internal:3287" +>>>>>>> docking_inter defs["igSetWindowHitTestHole"][1]["namespace"] = "ImGui" defs["igSetWindowHitTestHole"][1]["ov_cimguiname"] = "igSetWindowHitTestHole" defs["igSetWindowHitTestHole"][1]["ret"] = "void" @@ -26362,7 +32884,11 @@ defs["igSetWindowParentWindowForFocusRoute"][1]["call_args"] = "(window,parent_w defs["igSetWindowParentWindowForFocusRoute"][1]["cimguiname"] = "igSetWindowParentWindowForFocusRoute" defs["igSetWindowParentWindowForFocusRoute"][1]["defaults"] = {} defs["igSetWindowParentWindowForFocusRoute"][1]["funcname"] = "SetWindowParentWindowForFocusRoute" +<<<<<<< HEAD defs["igSetWindowParentWindowForFocusRoute"][1]["location"] = "imgui_internal:3024" +======= +defs["igSetWindowParentWindowForFocusRoute"][1]["location"] = "imgui_internal:3289" +>>>>>>> docking_inter defs["igSetWindowParentWindowForFocusRoute"][1]["namespace"] = "ImGui" defs["igSetWindowParentWindowForFocusRoute"][1]["ov_cimguiname"] = "igSetWindowParentWindowForFocusRoute" defs["igSetWindowParentWindowForFocusRoute"][1]["ret"] = "void" @@ -26385,7 +32911,11 @@ defs["igSetWindowPos"][1]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][1]["defaults"] = {} defs["igSetWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetWindowPos"][1]["funcname"] = "SetWindowPos" +<<<<<<< HEAD defs["igSetWindowPos"][1]["location"] = "imgui:397" +======= +defs["igSetWindowPos"][1]["location"] = "imgui:407" +>>>>>>> docking_inter defs["igSetWindowPos"][1]["namespace"] = "ImGui" defs["igSetWindowPos"][1]["ov_cimguiname"] = "igSetWindowPos_Vec2" defs["igSetWindowPos"][1]["ret"] = "void" @@ -26409,7 +32939,11 @@ defs["igSetWindowPos"][2]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][2]["defaults"] = {} defs["igSetWindowPos"][2]["defaults"]["cond"] = "0" defs["igSetWindowPos"][2]["funcname"] = "SetWindowPos" +<<<<<<< HEAD defs["igSetWindowPos"][2]["location"] = "imgui:402" +======= +defs["igSetWindowPos"][2]["location"] = "imgui:412" +>>>>>>> docking_inter defs["igSetWindowPos"][2]["namespace"] = "ImGui" defs["igSetWindowPos"][2]["ov_cimguiname"] = "igSetWindowPos_Str" defs["igSetWindowPos"][2]["ret"] = "void" @@ -26433,7 +32967,11 @@ defs["igSetWindowPos"][3]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][3]["defaults"] = {} defs["igSetWindowPos"][3]["defaults"]["cond"] = "0" defs["igSetWindowPos"][3]["funcname"] = "SetWindowPos" +<<<<<<< HEAD defs["igSetWindowPos"][3]["location"] = "imgui_internal:3019" +======= +defs["igSetWindowPos"][3]["location"] = "imgui_internal:3284" +>>>>>>> docking_inter defs["igSetWindowPos"][3]["namespace"] = "ImGui" defs["igSetWindowPos"][3]["ov_cimguiname"] = "igSetWindowPos_WindowPtr" defs["igSetWindowPos"][3]["ret"] = "void" @@ -26458,7 +32996,11 @@ defs["igSetWindowSize"][1]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][1]["defaults"] = {} defs["igSetWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetWindowSize"][1]["funcname"] = "SetWindowSize" +<<<<<<< HEAD defs["igSetWindowSize"][1]["location"] = "imgui:398" +======= +defs["igSetWindowSize"][1]["location"] = "imgui:408" +>>>>>>> docking_inter defs["igSetWindowSize"][1]["namespace"] = "ImGui" defs["igSetWindowSize"][1]["ov_cimguiname"] = "igSetWindowSize_Vec2" defs["igSetWindowSize"][1]["ret"] = "void" @@ -26482,7 +33024,11 @@ defs["igSetWindowSize"][2]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][2]["defaults"] = {} defs["igSetWindowSize"][2]["defaults"]["cond"] = "0" defs["igSetWindowSize"][2]["funcname"] = "SetWindowSize" +<<<<<<< HEAD defs["igSetWindowSize"][2]["location"] = "imgui:403" +======= +defs["igSetWindowSize"][2]["location"] = "imgui:413" +>>>>>>> docking_inter defs["igSetWindowSize"][2]["namespace"] = "ImGui" defs["igSetWindowSize"][2]["ov_cimguiname"] = "igSetWindowSize_Str" defs["igSetWindowSize"][2]["ret"] = "void" @@ -26506,7 +33052,11 @@ defs["igSetWindowSize"][3]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][3]["defaults"] = {} defs["igSetWindowSize"][3]["defaults"]["cond"] = "0" defs["igSetWindowSize"][3]["funcname"] = "SetWindowSize" +<<<<<<< HEAD defs["igSetWindowSize"][3]["location"] = "imgui_internal:3020" +======= +defs["igSetWindowSize"][3]["location"] = "imgui_internal:3285" +>>>>>>> docking_inter defs["igSetWindowSize"][3]["namespace"] = "ImGui" defs["igSetWindowSize"][3]["ov_cimguiname"] = "igSetWindowSize_WindowPtr" defs["igSetWindowSize"][3]["ret"] = "void" @@ -26530,7 +33080,11 @@ defs["igSetWindowViewport"][1]["call_args"] = "(window,viewport)" defs["igSetWindowViewport"][1]["cimguiname"] = "igSetWindowViewport" defs["igSetWindowViewport"][1]["defaults"] = {} defs["igSetWindowViewport"][1]["funcname"] = "SetWindowViewport" +<<<<<<< HEAD defs["igSetWindowViewport"][1]["location"] = "imgui_internal:3068" +======= +defs["igSetWindowViewport"][1]["location"] = "imgui_internal:3335" +>>>>>>> docking_inter defs["igSetWindowViewport"][1]["namespace"] = "ImGui" defs["igSetWindowViewport"][1]["ov_cimguiname"] = "igSetWindowViewport" defs["igSetWindowViewport"][1]["ret"] = "void" @@ -26567,7 +33121,11 @@ defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["call_args"] = "(draw_list,v defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["cimguiname"] = "igShadeVertsLinearColorGradientKeepAlpha" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["defaults"] = {} defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["funcname"] = "ShadeVertsLinearColorGradientKeepAlpha" +<<<<<<< HEAD defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["location"] = "imgui_internal:3487" +======= +defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["location"] = "imgui_internal:3819" +>>>>>>> docking_inter defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ov_cimguiname"] = "igShadeVertsLinearColorGradientKeepAlpha" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ret"] = "void" @@ -26607,7 +33165,11 @@ defs["igShadeVertsLinearUV"][1]["call_args"] = "(draw_list,vert_start_idx,vert_e defs["igShadeVertsLinearUV"][1]["cimguiname"] = "igShadeVertsLinearUV" defs["igShadeVertsLinearUV"][1]["defaults"] = {} defs["igShadeVertsLinearUV"][1]["funcname"] = "ShadeVertsLinearUV" +<<<<<<< HEAD defs["igShadeVertsLinearUV"][1]["location"] = "imgui_internal:3488" +======= +defs["igShadeVertsLinearUV"][1]["location"] = "imgui_internal:3820" +>>>>>>> docking_inter defs["igShadeVertsLinearUV"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearUV"][1]["ov_cimguiname"] = "igShadeVertsLinearUV" defs["igShadeVertsLinearUV"][1]["ret"] = "void" @@ -26644,7 +33206,11 @@ defs["igShadeVertsTransformPos"][1]["call_args"] = "(draw_list,vert_start_idx,ve defs["igShadeVertsTransformPos"][1]["cimguiname"] = "igShadeVertsTransformPos" defs["igShadeVertsTransformPos"][1]["defaults"] = {} defs["igShadeVertsTransformPos"][1]["funcname"] = "ShadeVertsTransformPos" +<<<<<<< HEAD defs["igShadeVertsTransformPos"][1]["location"] = "imgui_internal:3489" +======= +defs["igShadeVertsTransformPos"][1]["location"] = "imgui_internal:3821" +>>>>>>> docking_inter defs["igShadeVertsTransformPos"][1]["namespace"] = "ImGui" defs["igShadeVertsTransformPos"][1]["ov_cimguiname"] = "igShadeVertsTransformPos" defs["igShadeVertsTransformPos"][1]["ret"] = "void" @@ -26667,7 +33233,11 @@ defs["igShortcut"][1]["cimguiname"] = "igShortcut" defs["igShortcut"][1]["defaults"] = {} defs["igShortcut"][1]["defaults"]["flags"] = "0" defs["igShortcut"][1]["funcname"] = "Shortcut" +<<<<<<< HEAD defs["igShortcut"][1]["location"] = "imgui:957" +======= +defs["igShortcut"][1]["location"] = "imgui:989" +>>>>>>> docking_inter defs["igShortcut"][1]["namespace"] = "ImGui" defs["igShortcut"][1]["ov_cimguiname"] = "igShortcut_Nil" defs["igShortcut"][1]["ret"] = "bool" @@ -26690,7 +33260,11 @@ defs["igShortcut"][2]["call_args"] = "(key_chord,flags,owner_id)" defs["igShortcut"][2]["cimguiname"] = "igShortcut" defs["igShortcut"][2]["defaults"] = {} defs["igShortcut"][2]["funcname"] = "Shortcut" +<<<<<<< HEAD defs["igShortcut"][2]["location"] = "imgui_internal:3278" +======= +defs["igShortcut"][2]["location"] = "imgui_internal:3552" +>>>>>>> docking_inter defs["igShortcut"][2]["namespace"] = "ImGui" defs["igShortcut"][2]["ov_cimguiname"] = "igShortcut_ID" defs["igShortcut"][2]["ret"] = "bool" @@ -26711,7 +33285,11 @@ defs["igShowAboutWindow"][1]["cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["defaults"] = {} defs["igShowAboutWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowAboutWindow"][1]["funcname"] = "ShowAboutWindow" +<<<<<<< HEAD defs["igShowAboutWindow"][1]["location"] = "imgui:326" +======= +defs["igShowAboutWindow"][1]["location"] = "imgui:333" +>>>>>>> docking_inter defs["igShowAboutWindow"][1]["namespace"] = "ImGui" defs["igShowAboutWindow"][1]["ov_cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["ret"] = "void" @@ -26731,7 +33309,11 @@ defs["igShowDebugLogWindow"][1]["cimguiname"] = "igShowDebugLogWindow" defs["igShowDebugLogWindow"][1]["defaults"] = {} defs["igShowDebugLogWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowDebugLogWindow"][1]["funcname"] = "ShowDebugLogWindow" +<<<<<<< HEAD defs["igShowDebugLogWindow"][1]["location"] = "imgui:324" +======= +defs["igShowDebugLogWindow"][1]["location"] = "imgui:331" +>>>>>>> docking_inter defs["igShowDebugLogWindow"][1]["namespace"] = "ImGui" defs["igShowDebugLogWindow"][1]["ov_cimguiname"] = "igShowDebugLogWindow" defs["igShowDebugLogWindow"][1]["ret"] = "void" @@ -26751,7 +33333,11 @@ defs["igShowDemoWindow"][1]["cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["defaults"] = {} defs["igShowDemoWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowDemoWindow"][1]["funcname"] = "ShowDemoWindow" +<<<<<<< HEAD defs["igShowDemoWindow"][1]["location"] = "imgui:322" +======= +defs["igShowDemoWindow"][1]["location"] = "imgui:329" +>>>>>>> docking_inter defs["igShowDemoWindow"][1]["namespace"] = "ImGui" defs["igShowDemoWindow"][1]["ov_cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["ret"] = "void" @@ -26770,7 +33356,11 @@ defs["igShowFontAtlas"][1]["call_args"] = "(atlas)" defs["igShowFontAtlas"][1]["cimguiname"] = "igShowFontAtlas" defs["igShowFontAtlas"][1]["defaults"] = {} defs["igShowFontAtlas"][1]["funcname"] = "ShowFontAtlas" +<<<<<<< HEAD defs["igShowFontAtlas"][1]["location"] = "imgui_internal:3515" +======= +defs["igShowFontAtlas"][1]["location"] = "imgui_internal:3847" +>>>>>>> docking_inter defs["igShowFontAtlas"][1]["namespace"] = "ImGui" defs["igShowFontAtlas"][1]["ov_cimguiname"] = "igShowFontAtlas" defs["igShowFontAtlas"][1]["ret"] = "void" @@ -26789,7 +33379,11 @@ defs["igShowFontSelector"][1]["call_args"] = "(label)" defs["igShowFontSelector"][1]["cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["defaults"] = {} defs["igShowFontSelector"][1]["funcname"] = "ShowFontSelector" +<<<<<<< HEAD defs["igShowFontSelector"][1]["location"] = "imgui:329" +======= +defs["igShowFontSelector"][1]["location"] = "imgui:336" +>>>>>>> docking_inter defs["igShowFontSelector"][1]["namespace"] = "ImGui" defs["igShowFontSelector"][1]["ov_cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["ret"] = "void" @@ -26809,7 +33403,11 @@ defs["igShowIDStackToolWindow"][1]["cimguiname"] = "igShowIDStackToolWindow" defs["igShowIDStackToolWindow"][1]["defaults"] = {} defs["igShowIDStackToolWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowIDStackToolWindow"][1]["funcname"] = "ShowIDStackToolWindow" +<<<<<<< HEAD defs["igShowIDStackToolWindow"][1]["location"] = "imgui:325" +======= +defs["igShowIDStackToolWindow"][1]["location"] = "imgui:332" +>>>>>>> docking_inter defs["igShowIDStackToolWindow"][1]["namespace"] = "ImGui" defs["igShowIDStackToolWindow"][1]["ov_cimguiname"] = "igShowIDStackToolWindow" defs["igShowIDStackToolWindow"][1]["ret"] = "void" @@ -26829,7 +33427,11 @@ defs["igShowMetricsWindow"][1]["cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["defaults"] = {} defs["igShowMetricsWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowMetricsWindow"][1]["funcname"] = "ShowMetricsWindow" +<<<<<<< HEAD defs["igShowMetricsWindow"][1]["location"] = "imgui:323" +======= +defs["igShowMetricsWindow"][1]["location"] = "imgui:330" +>>>>>>> docking_inter defs["igShowMetricsWindow"][1]["namespace"] = "ImGui" defs["igShowMetricsWindow"][1]["ov_cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["ret"] = "void" @@ -26849,7 +33451,11 @@ defs["igShowStyleEditor"][1]["cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["defaults"] = {} defs["igShowStyleEditor"][1]["defaults"]["ref"] = "NULL" defs["igShowStyleEditor"][1]["funcname"] = "ShowStyleEditor" +<<<<<<< HEAD defs["igShowStyleEditor"][1]["location"] = "imgui:327" +======= +defs["igShowStyleEditor"][1]["location"] = "imgui:334" +>>>>>>> docking_inter defs["igShowStyleEditor"][1]["namespace"] = "ImGui" defs["igShowStyleEditor"][1]["ov_cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["ret"] = "void" @@ -26868,7 +33474,11 @@ defs["igShowStyleSelector"][1]["call_args"] = "(label)" defs["igShowStyleSelector"][1]["cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["defaults"] = {} defs["igShowStyleSelector"][1]["funcname"] = "ShowStyleSelector" +<<<<<<< HEAD defs["igShowStyleSelector"][1]["location"] = "imgui:328" +======= +defs["igShowStyleSelector"][1]["location"] = "imgui:335" +>>>>>>> docking_inter defs["igShowStyleSelector"][1]["namespace"] = "ImGui" defs["igShowStyleSelector"][1]["ov_cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["ret"] = "bool" @@ -26884,7 +33494,11 @@ defs["igShowUserGuide"][1]["call_args"] = "()" defs["igShowUserGuide"][1]["cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["defaults"] = {} defs["igShowUserGuide"][1]["funcname"] = "ShowUserGuide" +<<<<<<< HEAD defs["igShowUserGuide"][1]["location"] = "imgui:330" +======= +defs["igShowUserGuide"][1]["location"] = "imgui:337" +>>>>>>> docking_inter defs["igShowUserGuide"][1]["namespace"] = "ImGui" defs["igShowUserGuide"][1]["ov_cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["ret"] = "void" @@ -26909,7 +33523,11 @@ defs["igShrinkWidths"][1]["call_args"] = "(items,count,width_excess)" defs["igShrinkWidths"][1]["cimguiname"] = "igShrinkWidths" defs["igShrinkWidths"][1]["defaults"] = {} defs["igShrinkWidths"][1]["funcname"] = "ShrinkWidths" +<<<<<<< HEAD defs["igShrinkWidths"][1]["location"] = "imgui_internal:3131" +======= +defs["igShrinkWidths"][1]["location"] = "imgui_internal:3401" +>>>>>>> docking_inter defs["igShrinkWidths"][1]["namespace"] = "ImGui" defs["igShrinkWidths"][1]["ov_cimguiname"] = "igShrinkWidths" defs["igShrinkWidths"][1]["ret"] = "void" @@ -26925,7 +33543,11 @@ defs["igShutdown"][1]["call_args"] = "()" defs["igShutdown"][1]["cimguiname"] = "igShutdown" defs["igShutdown"][1]["defaults"] = {} defs["igShutdown"][1]["funcname"] = "Shutdown" +<<<<<<< HEAD defs["igShutdown"][1]["location"] = "imgui_internal:3052" +======= +defs["igShutdown"][1]["location"] = "imgui_internal:3315" +>>>>>>> docking_inter defs["igShutdown"][1]["namespace"] = "ImGui" defs["igShutdown"][1]["ov_cimguiname"] = "igShutdown" defs["igShutdown"][1]["ret"] = "void" @@ -26963,7 +33585,11 @@ defs["igSliderAngle"][1]["defaults"]["format"] = "\"%.0f deg\"" defs["igSliderAngle"][1]["defaults"]["v_degrees_max"] = "+360.0f" defs["igSliderAngle"][1]["defaults"]["v_degrees_min"] = "-360.0f" defs["igSliderAngle"][1]["funcname"] = "SliderAngle" +<<<<<<< HEAD defs["igSliderAngle"][1]["location"] = "imgui:597" +======= +defs["igSliderAngle"][1]["location"] = "imgui:607" +>>>>>>> docking_inter defs["igSliderAngle"][1]["namespace"] = "ImGui" defs["igSliderAngle"][1]["ov_cimguiname"] = "igSliderAngle" defs["igSliderAngle"][1]["ret"] = "bool" @@ -27006,7 +33632,11 @@ defs["igSliderBehavior"][1]["call_args"] = "(bb,id,data_type,p_v,p_min,p_max,for defs["igSliderBehavior"][1]["cimguiname"] = "igSliderBehavior" defs["igSliderBehavior"][1]["defaults"] = {} defs["igSliderBehavior"][1]["funcname"] = "SliderBehavior" +<<<<<<< HEAD defs["igSliderBehavior"][1]["location"] = "imgui_internal:3443" +======= +defs["igSliderBehavior"][1]["location"] = "imgui_internal:3775" +>>>>>>> docking_inter defs["igSliderBehavior"][1]["namespace"] = "ImGui" defs["igSliderBehavior"][1]["ov_cimguiname"] = "igSliderBehavior" defs["igSliderBehavior"][1]["ret"] = "bool" @@ -27042,7 +33672,11 @@ defs["igSliderFloat"][1]["defaults"] = {} defs["igSliderFloat"][1]["defaults"]["flags"] = "0" defs["igSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat"][1]["funcname"] = "SliderFloat" +<<<<<<< HEAD defs["igSliderFloat"][1]["location"] = "imgui:593" +======= +defs["igSliderFloat"][1]["location"] = "imgui:603" +>>>>>>> docking_inter defs["igSliderFloat"][1]["namespace"] = "ImGui" defs["igSliderFloat"][1]["ov_cimguiname"] = "igSliderFloat" defs["igSliderFloat"][1]["ret"] = "bool" @@ -27078,7 +33712,11 @@ defs["igSliderFloat2"][1]["defaults"] = {} defs["igSliderFloat2"][1]["defaults"]["flags"] = "0" defs["igSliderFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat2"][1]["funcname"] = "SliderFloat2" +<<<<<<< HEAD defs["igSliderFloat2"][1]["location"] = "imgui:594" +======= +defs["igSliderFloat2"][1]["location"] = "imgui:604" +>>>>>>> docking_inter defs["igSliderFloat2"][1]["namespace"] = "ImGui" defs["igSliderFloat2"][1]["ov_cimguiname"] = "igSliderFloat2" defs["igSliderFloat2"][1]["ret"] = "bool" @@ -27114,7 +33752,11 @@ defs["igSliderFloat3"][1]["defaults"] = {} defs["igSliderFloat3"][1]["defaults"]["flags"] = "0" defs["igSliderFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat3"][1]["funcname"] = "SliderFloat3" +<<<<<<< HEAD defs["igSliderFloat3"][1]["location"] = "imgui:595" +======= +defs["igSliderFloat3"][1]["location"] = "imgui:605" +>>>>>>> docking_inter defs["igSliderFloat3"][1]["namespace"] = "ImGui" defs["igSliderFloat3"][1]["ov_cimguiname"] = "igSliderFloat3" defs["igSliderFloat3"][1]["ret"] = "bool" @@ -27150,7 +33792,11 @@ defs["igSliderFloat4"][1]["defaults"] = {} defs["igSliderFloat4"][1]["defaults"]["flags"] = "0" defs["igSliderFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat4"][1]["funcname"] = "SliderFloat4" +<<<<<<< HEAD defs["igSliderFloat4"][1]["location"] = "imgui:596" +======= +defs["igSliderFloat4"][1]["location"] = "imgui:606" +>>>>>>> docking_inter defs["igSliderFloat4"][1]["namespace"] = "ImGui" defs["igSliderFloat4"][1]["ov_cimguiname"] = "igSliderFloat4" defs["igSliderFloat4"][1]["ret"] = "bool" @@ -27186,7 +33832,11 @@ defs["igSliderInt"][1]["defaults"] = {} defs["igSliderInt"][1]["defaults"]["flags"] = "0" defs["igSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt"][1]["funcname"] = "SliderInt" +<<<<<<< HEAD defs["igSliderInt"][1]["location"] = "imgui:598" +======= +defs["igSliderInt"][1]["location"] = "imgui:608" +>>>>>>> docking_inter defs["igSliderInt"][1]["namespace"] = "ImGui" defs["igSliderInt"][1]["ov_cimguiname"] = "igSliderInt" defs["igSliderInt"][1]["ret"] = "bool" @@ -27222,7 +33872,11 @@ defs["igSliderInt2"][1]["defaults"] = {} defs["igSliderInt2"][1]["defaults"]["flags"] = "0" defs["igSliderInt2"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt2"][1]["funcname"] = "SliderInt2" +<<<<<<< HEAD defs["igSliderInt2"][1]["location"] = "imgui:599" +======= +defs["igSliderInt2"][1]["location"] = "imgui:609" +>>>>>>> docking_inter defs["igSliderInt2"][1]["namespace"] = "ImGui" defs["igSliderInt2"][1]["ov_cimguiname"] = "igSliderInt2" defs["igSliderInt2"][1]["ret"] = "bool" @@ -27258,7 +33912,11 @@ defs["igSliderInt3"][1]["defaults"] = {} defs["igSliderInt3"][1]["defaults"]["flags"] = "0" defs["igSliderInt3"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt3"][1]["funcname"] = "SliderInt3" +<<<<<<< HEAD defs["igSliderInt3"][1]["location"] = "imgui:600" +======= +defs["igSliderInt3"][1]["location"] = "imgui:610" +>>>>>>> docking_inter defs["igSliderInt3"][1]["namespace"] = "ImGui" defs["igSliderInt3"][1]["ov_cimguiname"] = "igSliderInt3" defs["igSliderInt3"][1]["ret"] = "bool" @@ -27294,7 +33952,11 @@ defs["igSliderInt4"][1]["defaults"] = {} defs["igSliderInt4"][1]["defaults"]["flags"] = "0" defs["igSliderInt4"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt4"][1]["funcname"] = "SliderInt4" +<<<<<<< HEAD defs["igSliderInt4"][1]["location"] = "imgui:601" +======= +defs["igSliderInt4"][1]["location"] = "imgui:611" +>>>>>>> docking_inter defs["igSliderInt4"][1]["namespace"] = "ImGui" defs["igSliderInt4"][1]["ov_cimguiname"] = "igSliderInt4" defs["igSliderInt4"][1]["ret"] = "bool" @@ -27333,7 +33995,11 @@ defs["igSliderScalar"][1]["defaults"] = {} defs["igSliderScalar"][1]["defaults"]["flags"] = "0" defs["igSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igSliderScalar"][1]["funcname"] = "SliderScalar" +<<<<<<< HEAD defs["igSliderScalar"][1]["location"] = "imgui:602" +======= +defs["igSliderScalar"][1]["location"] = "imgui:612" +>>>>>>> docking_inter defs["igSliderScalar"][1]["namespace"] = "ImGui" defs["igSliderScalar"][1]["ov_cimguiname"] = "igSliderScalar" defs["igSliderScalar"][1]["ret"] = "bool" @@ -27375,7 +34041,11 @@ defs["igSliderScalarN"][1]["defaults"] = {} defs["igSliderScalarN"][1]["defaults"]["flags"] = "0" defs["igSliderScalarN"][1]["defaults"]["format"] = "NULL" defs["igSliderScalarN"][1]["funcname"] = "SliderScalarN" +<<<<<<< HEAD defs["igSliderScalarN"][1]["location"] = "imgui:603" +======= +defs["igSliderScalarN"][1]["location"] = "imgui:613" +>>>>>>> docking_inter defs["igSliderScalarN"][1]["namespace"] = "ImGui" defs["igSliderScalarN"][1]["ov_cimguiname"] = "igSliderScalarN" defs["igSliderScalarN"][1]["ret"] = "bool" @@ -27394,7 +34064,11 @@ defs["igSmallButton"][1]["call_args"] = "(label)" defs["igSmallButton"][1]["cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["defaults"] = {} defs["igSmallButton"][1]["funcname"] = "SmallButton" +<<<<<<< HEAD defs["igSmallButton"][1]["location"] = "imgui:535" +======= +defs["igSmallButton"][1]["location"] = "imgui:545" +>>>>>>> docking_inter defs["igSmallButton"][1]["namespace"] = "ImGui" defs["igSmallButton"][1]["ov_cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["ret"] = "bool" @@ -27410,7 +34084,11 @@ defs["igSpacing"][1]["call_args"] = "()" defs["igSpacing"][1]["cimguiname"] = "igSpacing" defs["igSpacing"][1]["defaults"] = {} defs["igSpacing"][1]["funcname"] = "Spacing" +<<<<<<< HEAD defs["igSpacing"][1]["location"] = "imgui:483" +======= +defs["igSpacing"][1]["location"] = "imgui:493" +>>>>>>> docking_inter defs["igSpacing"][1]["namespace"] = "ImGui" defs["igSpacing"][1]["ov_cimguiname"] = "igSpacing" defs["igSpacing"][1]["ret"] = "void" @@ -27459,7 +34137,11 @@ defs["igSplitterBehavior"][1]["defaults"]["bg_col"] = "0" defs["igSplitterBehavior"][1]["defaults"]["hover_extend"] = "0.0f" defs["igSplitterBehavior"][1]["defaults"]["hover_visibility_delay"] = "0.0f" defs["igSplitterBehavior"][1]["funcname"] = "SplitterBehavior" +<<<<<<< HEAD defs["igSplitterBehavior"][1]["location"] = "imgui_internal:3444" +======= +defs["igSplitterBehavior"][1]["location"] = "imgui_internal:3776" +>>>>>>> docking_inter defs["igSplitterBehavior"][1]["namespace"] = "ImGui" defs["igSplitterBehavior"][1]["ov_cimguiname"] = "igSplitterBehavior" defs["igSplitterBehavior"][1]["ret"] = "bool" @@ -27478,13 +34160,45 @@ defs["igStartMouseMovingWindow"][1]["call_args"] = "(window)" defs["igStartMouseMovingWindow"][1]["cimguiname"] = "igStartMouseMovingWindow" defs["igStartMouseMovingWindow"][1]["defaults"] = {} defs["igStartMouseMovingWindow"][1]["funcname"] = "StartMouseMovingWindow" +<<<<<<< HEAD defs["igStartMouseMovingWindow"][1]["location"] = "imgui_internal:3058" +======= +defs["igStartMouseMovingWindow"][1]["location"] = "imgui_internal:3321" +>>>>>>> docking_inter defs["igStartMouseMovingWindow"][1]["namespace"] = "ImGui" defs["igStartMouseMovingWindow"][1]["ov_cimguiname"] = "igStartMouseMovingWindow" defs["igStartMouseMovingWindow"][1]["ret"] = "void" defs["igStartMouseMovingWindow"][1]["signature"] = "(ImGuiWindow*)" defs["igStartMouseMovingWindow"][1]["stname"] = "" defs["igStartMouseMovingWindow"]["(ImGuiWindow*)"] = defs["igStartMouseMovingWindow"][1] +<<<<<<< HEAD +======= +defs["igStartMouseMovingWindowOrNode"] = {} +defs["igStartMouseMovingWindowOrNode"][1] = {} +defs["igStartMouseMovingWindowOrNode"][1]["args"] = "(ImGuiWindow* window,ImGuiDockNode* node,bool undock)" +defs["igStartMouseMovingWindowOrNode"][1]["argsT"] = {} +defs["igStartMouseMovingWindowOrNode"][1]["argsT"][1] = {} +defs["igStartMouseMovingWindowOrNode"][1]["argsT"][1]["name"] = "window" +defs["igStartMouseMovingWindowOrNode"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igStartMouseMovingWindowOrNode"][1]["argsT"][2] = {} +defs["igStartMouseMovingWindowOrNode"][1]["argsT"][2]["name"] = "node" +defs["igStartMouseMovingWindowOrNode"][1]["argsT"][2]["type"] = "ImGuiDockNode*" +defs["igStartMouseMovingWindowOrNode"][1]["argsT"][3] = {} +defs["igStartMouseMovingWindowOrNode"][1]["argsT"][3]["name"] = "undock" +defs["igStartMouseMovingWindowOrNode"][1]["argsT"][3]["type"] = "bool" +defs["igStartMouseMovingWindowOrNode"][1]["argsoriginal"] = "(ImGuiWindow* window,ImGuiDockNode* node,bool undock)" +defs["igStartMouseMovingWindowOrNode"][1]["call_args"] = "(window,node,undock)" +defs["igStartMouseMovingWindowOrNode"][1]["cimguiname"] = "igStartMouseMovingWindowOrNode" +defs["igStartMouseMovingWindowOrNode"][1]["defaults"] = {} +defs["igStartMouseMovingWindowOrNode"][1]["funcname"] = "StartMouseMovingWindowOrNode" +defs["igStartMouseMovingWindowOrNode"][1]["location"] = "imgui_internal:3322" +defs["igStartMouseMovingWindowOrNode"][1]["namespace"] = "ImGui" +defs["igStartMouseMovingWindowOrNode"][1]["ov_cimguiname"] = "igStartMouseMovingWindowOrNode" +defs["igStartMouseMovingWindowOrNode"][1]["ret"] = "void" +defs["igStartMouseMovingWindowOrNode"][1]["signature"] = "(ImGuiWindow*,ImGuiDockNode*,bool)" +defs["igStartMouseMovingWindowOrNode"][1]["stname"] = "" +defs["igStartMouseMovingWindowOrNode"]["(ImGuiWindow*,ImGuiDockNode*,bool)"] = defs["igStartMouseMovingWindowOrNode"][1] +>>>>>>> docking_inter defs["igStyleColorsClassic"] = {} defs["igStyleColorsClassic"][1] = {} defs["igStyleColorsClassic"][1]["args"] = "(ImGuiStyle* dst)" @@ -27498,7 +34212,11 @@ defs["igStyleColorsClassic"][1]["cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["defaults"] = {} defs["igStyleColorsClassic"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsClassic"][1]["funcname"] = "StyleColorsClassic" +<<<<<<< HEAD defs["igStyleColorsClassic"][1]["location"] = "imgui:336" +======= +defs["igStyleColorsClassic"][1]["location"] = "imgui:343" +>>>>>>> docking_inter defs["igStyleColorsClassic"][1]["namespace"] = "ImGui" defs["igStyleColorsClassic"][1]["ov_cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["ret"] = "void" @@ -27518,7 +34236,11 @@ defs["igStyleColorsDark"][1]["cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["defaults"] = {} defs["igStyleColorsDark"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsDark"][1]["funcname"] = "StyleColorsDark" +<<<<<<< HEAD defs["igStyleColorsDark"][1]["location"] = "imgui:334" +======= +defs["igStyleColorsDark"][1]["location"] = "imgui:341" +>>>>>>> docking_inter defs["igStyleColorsDark"][1]["namespace"] = "ImGui" defs["igStyleColorsDark"][1]["ov_cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["ret"] = "void" @@ -27538,13 +34260,45 @@ defs["igStyleColorsLight"][1]["cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["defaults"] = {} defs["igStyleColorsLight"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsLight"][1]["funcname"] = "StyleColorsLight" +<<<<<<< HEAD defs["igStyleColorsLight"][1]["location"] = "imgui:335" +======= +defs["igStyleColorsLight"][1]["location"] = "imgui:342" +>>>>>>> docking_inter defs["igStyleColorsLight"][1]["namespace"] = "ImGui" defs["igStyleColorsLight"][1]["ov_cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["ret"] = "void" defs["igStyleColorsLight"][1]["signature"] = "(ImGuiStyle*)" defs["igStyleColorsLight"][1]["stname"] = "" defs["igStyleColorsLight"]["(ImGuiStyle*)"] = defs["igStyleColorsLight"][1] +<<<<<<< HEAD +======= +defs["igTabBarAddTab"] = {} +defs["igTabBarAddTab"][1] = {} +defs["igTabBarAddTab"][1]["args"] = "(ImGuiTabBar* tab_bar,ImGuiTabItemFlags tab_flags,ImGuiWindow* window)" +defs["igTabBarAddTab"][1]["argsT"] = {} +defs["igTabBarAddTab"][1]["argsT"][1] = {} +defs["igTabBarAddTab"][1]["argsT"][1]["name"] = "tab_bar" +defs["igTabBarAddTab"][1]["argsT"][1]["type"] = "ImGuiTabBar*" +defs["igTabBarAddTab"][1]["argsT"][2] = {} +defs["igTabBarAddTab"][1]["argsT"][2]["name"] = "tab_flags" +defs["igTabBarAddTab"][1]["argsT"][2]["type"] = "ImGuiTabItemFlags" +defs["igTabBarAddTab"][1]["argsT"][3] = {} +defs["igTabBarAddTab"][1]["argsT"][3]["name"] = "window" +defs["igTabBarAddTab"][1]["argsT"][3]["type"] = "ImGuiWindow*" +defs["igTabBarAddTab"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,ImGuiTabItemFlags tab_flags,ImGuiWindow* window)" +defs["igTabBarAddTab"][1]["call_args"] = "(tab_bar,tab_flags,window)" +defs["igTabBarAddTab"][1]["cimguiname"] = "igTabBarAddTab" +defs["igTabBarAddTab"][1]["defaults"] = {} +defs["igTabBarAddTab"][1]["funcname"] = "TabBarAddTab" +defs["igTabBarAddTab"][1]["location"] = "imgui_internal:3714" +defs["igTabBarAddTab"][1]["namespace"] = "ImGui" +defs["igTabBarAddTab"][1]["ov_cimguiname"] = "igTabBarAddTab" +defs["igTabBarAddTab"][1]["ret"] = "void" +defs["igTabBarAddTab"][1]["signature"] = "(ImGuiTabBar*,ImGuiTabItemFlags,ImGuiWindow*)" +defs["igTabBarAddTab"][1]["stname"] = "" +defs["igTabBarAddTab"]["(ImGuiTabBar*,ImGuiTabItemFlags,ImGuiWindow*)"] = defs["igTabBarAddTab"][1] +>>>>>>> docking_inter defs["igTabBarCloseTab"] = {} defs["igTabBarCloseTab"][1] = {} defs["igTabBarCloseTab"][1]["args"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)" @@ -27560,13 +34314,39 @@ defs["igTabBarCloseTab"][1]["call_args"] = "(tab_bar,tab)" defs["igTabBarCloseTab"][1]["cimguiname"] = "igTabBarCloseTab" defs["igTabBarCloseTab"][1]["defaults"] = {} defs["igTabBarCloseTab"][1]["funcname"] = "TabBarCloseTab" +<<<<<<< HEAD defs["igTabBarCloseTab"][1]["location"] = "imgui_internal:3386" +======= +defs["igTabBarCloseTab"][1]["location"] = "imgui_internal:3716" +>>>>>>> docking_inter defs["igTabBarCloseTab"][1]["namespace"] = "ImGui" defs["igTabBarCloseTab"][1]["ov_cimguiname"] = "igTabBarCloseTab" defs["igTabBarCloseTab"][1]["ret"] = "void" defs["igTabBarCloseTab"][1]["signature"] = "(ImGuiTabBar*,ImGuiTabItem*)" defs["igTabBarCloseTab"][1]["stname"] = "" defs["igTabBarCloseTab"]["(ImGuiTabBar*,ImGuiTabItem*)"] = defs["igTabBarCloseTab"][1] +<<<<<<< HEAD +======= +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"] = {} +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1] = {} +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["args"] = "(ImGuiTabBar* tab_bar)" +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["argsT"] = {} +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["argsT"][1] = {} +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["argsT"][1]["name"] = "tab_bar" +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["argsT"][1]["type"] = "ImGuiTabBar*" +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar)" +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["call_args"] = "(tab_bar)" +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["cimguiname"] = "igTabBarFindMostRecentlySelectedTabForActiveWindow" +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["defaults"] = {} +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["funcname"] = "TabBarFindMostRecentlySelectedTabForActiveWindow" +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["location"] = "imgui_internal:3710" +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["namespace"] = "ImGui" +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["ov_cimguiname"] = "igTabBarFindMostRecentlySelectedTabForActiveWindow" +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["ret"] = "ImGuiTabItem*" +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["signature"] = "(ImGuiTabBar*)" +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["stname"] = "" +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"]["(ImGuiTabBar*)"] = defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1] +>>>>>>> docking_inter defs["igTabBarFindTabByID"] = {} defs["igTabBarFindTabByID"][1] = {} defs["igTabBarFindTabByID"][1]["args"] = "(ImGuiTabBar* tab_bar,ImGuiID tab_id)" @@ -27582,7 +34362,11 @@ defs["igTabBarFindTabByID"][1]["call_args"] = "(tab_bar,tab_id)" defs["igTabBarFindTabByID"][1]["cimguiname"] = "igTabBarFindTabByID" defs["igTabBarFindTabByID"][1]["defaults"] = {} defs["igTabBarFindTabByID"][1]["funcname"] = "TabBarFindTabByID" +<<<<<<< HEAD defs["igTabBarFindTabByID"][1]["location"] = "imgui_internal:3380" +======= +defs["igTabBarFindTabByID"][1]["location"] = "imgui_internal:3708" +>>>>>>> docking_inter defs["igTabBarFindTabByID"][1]["namespace"] = "ImGui" defs["igTabBarFindTabByID"][1]["ov_cimguiname"] = "igTabBarFindTabByID" defs["igTabBarFindTabByID"][1]["ret"] = "ImGuiTabItem*" @@ -27604,7 +34388,11 @@ defs["igTabBarFindTabByOrder"][1]["call_args"] = "(tab_bar,order)" defs["igTabBarFindTabByOrder"][1]["cimguiname"] = "igTabBarFindTabByOrder" defs["igTabBarFindTabByOrder"][1]["defaults"] = {} defs["igTabBarFindTabByOrder"][1]["funcname"] = "TabBarFindTabByOrder" +<<<<<<< HEAD defs["igTabBarFindTabByOrder"][1]["location"] = "imgui_internal:3381" +======= +defs["igTabBarFindTabByOrder"][1]["location"] = "imgui_internal:3709" +>>>>>>> docking_inter defs["igTabBarFindTabByOrder"][1]["namespace"] = "ImGui" defs["igTabBarFindTabByOrder"][1]["ov_cimguiname"] = "igTabBarFindTabByOrder" defs["igTabBarFindTabByOrder"][1]["ret"] = "ImGuiTabItem*" @@ -27623,7 +34411,11 @@ defs["igTabBarGetCurrentTab"][1]["call_args"] = "(tab_bar)" defs["igTabBarGetCurrentTab"][1]["cimguiname"] = "igTabBarGetCurrentTab" defs["igTabBarGetCurrentTab"][1]["defaults"] = {} defs["igTabBarGetCurrentTab"][1]["funcname"] = "TabBarGetCurrentTab" +<<<<<<< HEAD defs["igTabBarGetCurrentTab"][1]["location"] = "imgui_internal:3382" +======= +defs["igTabBarGetCurrentTab"][1]["location"] = "imgui_internal:3711" +>>>>>>> docking_inter defs["igTabBarGetCurrentTab"][1]["namespace"] = "ImGui" defs["igTabBarGetCurrentTab"][1]["ov_cimguiname"] = "igTabBarGetCurrentTab" defs["igTabBarGetCurrentTab"][1]["ret"] = "ImGuiTabItem*" @@ -27645,7 +34437,11 @@ defs["igTabBarGetTabName"][1]["call_args"] = "(tab_bar,tab)" defs["igTabBarGetTabName"][1]["cimguiname"] = "igTabBarGetTabName" defs["igTabBarGetTabName"][1]["defaults"] = {} defs["igTabBarGetTabName"][1]["funcname"] = "TabBarGetTabName" +<<<<<<< HEAD defs["igTabBarGetTabName"][1]["location"] = "imgui_internal:3384" +======= +defs["igTabBarGetTabName"][1]["location"] = "imgui_internal:3713" +>>>>>>> docking_inter defs["igTabBarGetTabName"][1]["namespace"] = "ImGui" defs["igTabBarGetTabName"][1]["ov_cimguiname"] = "igTabBarGetTabName" defs["igTabBarGetTabName"][1]["ret"] = "const char*" @@ -27667,7 +34463,11 @@ defs["igTabBarGetTabOrder"][1]["call_args"] = "(tab_bar,tab)" defs["igTabBarGetTabOrder"][1]["cimguiname"] = "igTabBarGetTabOrder" defs["igTabBarGetTabOrder"][1]["defaults"] = {} defs["igTabBarGetTabOrder"][1]["funcname"] = "TabBarGetTabOrder" +<<<<<<< HEAD defs["igTabBarGetTabOrder"][1]["location"] = "imgui_internal:3383" +======= +defs["igTabBarGetTabOrder"][1]["location"] = "imgui_internal:3712" +>>>>>>> docking_inter defs["igTabBarGetTabOrder"][1]["namespace"] = "ImGui" defs["igTabBarGetTabOrder"][1]["ov_cimguiname"] = "igTabBarGetTabOrder" defs["igTabBarGetTabOrder"][1]["ret"] = "int" @@ -27686,7 +34486,11 @@ defs["igTabBarProcessReorder"][1]["call_args"] = "(tab_bar)" defs["igTabBarProcessReorder"][1]["cimguiname"] = "igTabBarProcessReorder" defs["igTabBarProcessReorder"][1]["defaults"] = {} defs["igTabBarProcessReorder"][1]["funcname"] = "TabBarProcessReorder" +<<<<<<< HEAD defs["igTabBarProcessReorder"][1]["location"] = "imgui_internal:3390" +======= +defs["igTabBarProcessReorder"][1]["location"] = "imgui_internal:3720" +>>>>>>> docking_inter defs["igTabBarProcessReorder"][1]["namespace"] = "ImGui" defs["igTabBarProcessReorder"][1]["ov_cimguiname"] = "igTabBarProcessReorder" defs["igTabBarProcessReorder"][1]["ret"] = "bool" @@ -27708,7 +34512,11 @@ defs["igTabBarQueueFocus"][1]["call_args"] = "(tab_bar,tab)" defs["igTabBarQueueFocus"][1]["cimguiname"] = "igTabBarQueueFocus" defs["igTabBarQueueFocus"][1]["defaults"] = {} defs["igTabBarQueueFocus"][1]["funcname"] = "TabBarQueueFocus" +<<<<<<< HEAD defs["igTabBarQueueFocus"][1]["location"] = "imgui_internal:3387" +======= +defs["igTabBarQueueFocus"][1]["location"] = "imgui_internal:3717" +>>>>>>> docking_inter defs["igTabBarQueueFocus"][1]["namespace"] = "ImGui" defs["igTabBarQueueFocus"][1]["ov_cimguiname"] = "igTabBarQueueFocus" defs["igTabBarQueueFocus"][1]["ret"] = "void" @@ -27733,7 +34541,11 @@ defs["igTabBarQueueReorder"][1]["call_args"] = "(tab_bar,tab,offset)" defs["igTabBarQueueReorder"][1]["cimguiname"] = "igTabBarQueueReorder" defs["igTabBarQueueReorder"][1]["defaults"] = {} defs["igTabBarQueueReorder"][1]["funcname"] = "TabBarQueueReorder" +<<<<<<< HEAD defs["igTabBarQueueReorder"][1]["location"] = "imgui_internal:3388" +======= +defs["igTabBarQueueReorder"][1]["location"] = "imgui_internal:3718" +>>>>>>> docking_inter defs["igTabBarQueueReorder"][1]["namespace"] = "ImGui" defs["igTabBarQueueReorder"][1]["ov_cimguiname"] = "igTabBarQueueReorder" defs["igTabBarQueueReorder"][1]["ret"] = "void" @@ -27758,7 +34570,11 @@ defs["igTabBarQueueReorderFromMousePos"][1]["call_args"] = "(tab_bar,tab,mouse_p defs["igTabBarQueueReorderFromMousePos"][1]["cimguiname"] = "igTabBarQueueReorderFromMousePos" defs["igTabBarQueueReorderFromMousePos"][1]["defaults"] = {} defs["igTabBarQueueReorderFromMousePos"][1]["funcname"] = "TabBarQueueReorderFromMousePos" +<<<<<<< HEAD defs["igTabBarQueueReorderFromMousePos"][1]["location"] = "imgui_internal:3389" +======= +defs["igTabBarQueueReorderFromMousePos"][1]["location"] = "imgui_internal:3719" +>>>>>>> docking_inter defs["igTabBarQueueReorderFromMousePos"][1]["namespace"] = "ImGui" defs["igTabBarQueueReorderFromMousePos"][1]["ov_cimguiname"] = "igTabBarQueueReorderFromMousePos" defs["igTabBarQueueReorderFromMousePos"][1]["ret"] = "void" @@ -27780,7 +34596,11 @@ defs["igTabBarRemoveTab"][1]["call_args"] = "(tab_bar,tab_id)" defs["igTabBarRemoveTab"][1]["cimguiname"] = "igTabBarRemoveTab" defs["igTabBarRemoveTab"][1]["defaults"] = {} defs["igTabBarRemoveTab"][1]["funcname"] = "TabBarRemoveTab" +<<<<<<< HEAD defs["igTabBarRemoveTab"][1]["location"] = "imgui_internal:3385" +======= +defs["igTabBarRemoveTab"][1]["location"] = "imgui_internal:3715" +>>>>>>> docking_inter defs["igTabBarRemoveTab"][1]["namespace"] = "ImGui" defs["igTabBarRemoveTab"][1]["ov_cimguiname"] = "igTabBarRemoveTab" defs["igTabBarRemoveTab"][1]["ret"] = "void" @@ -27808,7 +34628,11 @@ defs["igTabItemBackground"][1]["call_args"] = "(draw_list,bb,flags,col)" defs["igTabItemBackground"][1]["cimguiname"] = "igTabItemBackground" defs["igTabItemBackground"][1]["defaults"] = {} defs["igTabItemBackground"][1]["funcname"] = "TabItemBackground" +<<<<<<< HEAD defs["igTabItemBackground"][1]["location"] = "imgui_internal:3394" +======= +defs["igTabItemBackground"][1]["location"] = "imgui_internal:3724" +>>>>>>> docking_inter defs["igTabItemBackground"][1]["namespace"] = "ImGui" defs["igTabItemBackground"][1]["ov_cimguiname"] = "igTabItemBackground" defs["igTabItemBackground"][1]["ret"] = "void" @@ -27831,7 +34655,11 @@ defs["igTabItemButton"][1]["cimguiname"] = "igTabItemButton" defs["igTabItemButton"][1]["defaults"] = {} defs["igTabItemButton"][1]["defaults"]["flags"] = "0" defs["igTabItemButton"][1]["funcname"] = "TabItemButton" +<<<<<<< HEAD defs["igTabItemButton"][1]["location"] = "imgui:833" +======= +defs["igTabItemButton"][1]["location"] = "imgui:844" +>>>>>>> docking_inter defs["igTabItemButton"][1]["namespace"] = "ImGui" defs["igTabItemButton"][1]["ov_cimguiname"] = "igTabItemButton" defs["igTabItemButton"][1]["ret"] = "bool" @@ -27856,7 +34684,11 @@ defs["igTabItemCalcSize"][1]["call_args"] = "(label,has_close_button_or_unsaved_ defs["igTabItemCalcSize"][1]["cimguiname"] = "igTabItemCalcSize" defs["igTabItemCalcSize"][1]["defaults"] = {} defs["igTabItemCalcSize"][1]["funcname"] = "TabItemCalcSize" +<<<<<<< HEAD defs["igTabItemCalcSize"][1]["location"] = "imgui_internal:3392" +======= +defs["igTabItemCalcSize"][1]["location"] = "imgui_internal:3722" +>>>>>>> docking_inter defs["igTabItemCalcSize"][1]["namespace"] = "ImGui" defs["igTabItemCalcSize"][1]["nonUDT"] = 1 defs["igTabItemCalcSize"][1]["ov_cimguiname"] = "igTabItemCalcSize_Str" @@ -27877,7 +34709,11 @@ defs["igTabItemCalcSize"][2]["call_args"] = "(window)" defs["igTabItemCalcSize"][2]["cimguiname"] = "igTabItemCalcSize" defs["igTabItemCalcSize"][2]["defaults"] = {} defs["igTabItemCalcSize"][2]["funcname"] = "TabItemCalcSize" +<<<<<<< HEAD defs["igTabItemCalcSize"][2]["location"] = "imgui_internal:3393" +======= +defs["igTabItemCalcSize"][2]["location"] = "imgui_internal:3723" +>>>>>>> docking_inter defs["igTabItemCalcSize"][2]["namespace"] = "ImGui" defs["igTabItemCalcSize"][2]["nonUDT"] = 1 defs["igTabItemCalcSize"][2]["ov_cimguiname"] = "igTabItemCalcSize_WindowPtr" @@ -27910,7 +34746,11 @@ defs["igTabItemEx"][1]["call_args"] = "(tab_bar,label,p_open,flags,docked_window defs["igTabItemEx"][1]["cimguiname"] = "igTabItemEx" defs["igTabItemEx"][1]["defaults"] = {} defs["igTabItemEx"][1]["funcname"] = "TabItemEx" +<<<<<<< HEAD defs["igTabItemEx"][1]["location"] = "imgui_internal:3391" +======= +defs["igTabItemEx"][1]["location"] = "imgui_internal:3721" +>>>>>>> docking_inter defs["igTabItemEx"][1]["namespace"] = "ImGui" defs["igTabItemEx"][1]["ov_cimguiname"] = "igTabItemEx" defs["igTabItemEx"][1]["ret"] = "bool" @@ -27956,7 +34796,11 @@ defs["igTabItemLabelAndCloseButton"][1]["call_args"] = "(draw_list,bb,flags,fram defs["igTabItemLabelAndCloseButton"][1]["cimguiname"] = "igTabItemLabelAndCloseButton" defs["igTabItemLabelAndCloseButton"][1]["defaults"] = {} defs["igTabItemLabelAndCloseButton"][1]["funcname"] = "TabItemLabelAndCloseButton" +<<<<<<< HEAD defs["igTabItemLabelAndCloseButton"][1]["location"] = "imgui_internal:3395" +======= +defs["igTabItemLabelAndCloseButton"][1]["location"] = "imgui_internal:3725" +>>>>>>> docking_inter defs["igTabItemLabelAndCloseButton"][1]["namespace"] = "ImGui" defs["igTabItemLabelAndCloseButton"][1]["ov_cimguiname"] = "igTabItemLabelAndCloseButton" defs["igTabItemLabelAndCloseButton"][1]["ret"] = "void" @@ -27972,7 +34816,11 @@ defs["igTableAngledHeadersRow"][1]["call_args"] = "()" defs["igTableAngledHeadersRow"][1]["cimguiname"] = "igTableAngledHeadersRow" defs["igTableAngledHeadersRow"][1]["defaults"] = {} defs["igTableAngledHeadersRow"][1]["funcname"] = "TableAngledHeadersRow" +<<<<<<< HEAD defs["igTableAngledHeadersRow"][1]["location"] = "imgui:799" +======= +defs["igTableAngledHeadersRow"][1]["location"] = "imgui:809" +>>>>>>> docking_inter defs["igTableAngledHeadersRow"][1]["namespace"] = "ImGui" defs["igTableAngledHeadersRow"][1]["ov_cimguiname"] = "igTableAngledHeadersRow" defs["igTableAngledHeadersRow"][1]["ret"] = "void" @@ -28003,7 +34851,11 @@ defs["igTableAngledHeadersRowEx"][1]["call_args"] = "(row_id,angle,max_label_wid defs["igTableAngledHeadersRowEx"][1]["cimguiname"] = "igTableAngledHeadersRowEx" defs["igTableAngledHeadersRowEx"][1]["defaults"] = {} defs["igTableAngledHeadersRowEx"][1]["funcname"] = "TableAngledHeadersRowEx" +<<<<<<< HEAD defs["igTableAngledHeadersRowEx"][1]["location"] = "imgui_internal:3330" +======= +defs["igTableAngledHeadersRowEx"][1]["location"] = "imgui_internal:3658" +>>>>>>> docking_inter defs["igTableAngledHeadersRowEx"][1]["namespace"] = "ImGui" defs["igTableAngledHeadersRowEx"][1]["ov_cimguiname"] = "igTableAngledHeadersRowEx" defs["igTableAngledHeadersRowEx"][1]["ret"] = "void" @@ -28022,7 +34874,11 @@ defs["igTableBeginApplyRequests"][1]["call_args"] = "(table)" defs["igTableBeginApplyRequests"][1]["cimguiname"] = "igTableBeginApplyRequests" defs["igTableBeginApplyRequests"][1]["defaults"] = {} defs["igTableBeginApplyRequests"][1]["funcname"] = "TableBeginApplyRequests" +<<<<<<< HEAD defs["igTableBeginApplyRequests"][1]["location"] = "imgui_internal:3337" +======= +defs["igTableBeginApplyRequests"][1]["location"] = "imgui_internal:3665" +>>>>>>> docking_inter defs["igTableBeginApplyRequests"][1]["namespace"] = "ImGui" defs["igTableBeginApplyRequests"][1]["ov_cimguiname"] = "igTableBeginApplyRequests" defs["igTableBeginApplyRequests"][1]["ret"] = "void" @@ -28044,7 +34900,11 @@ defs["igTableBeginCell"][1]["call_args"] = "(table,column_n)" defs["igTableBeginCell"][1]["cimguiname"] = "igTableBeginCell" defs["igTableBeginCell"][1]["defaults"] = {} defs["igTableBeginCell"][1]["funcname"] = "TableBeginCell" +<<<<<<< HEAD defs["igTableBeginCell"][1]["location"] = "imgui_internal:3355" +======= +defs["igTableBeginCell"][1]["location"] = "imgui_internal:3683" +>>>>>>> docking_inter defs["igTableBeginCell"][1]["namespace"] = "ImGui" defs["igTableBeginCell"][1]["ov_cimguiname"] = "igTableBeginCell" defs["igTableBeginCell"][1]["ret"] = "void" @@ -28063,7 +34923,11 @@ defs["igTableBeginContextMenuPopup"][1]["call_args"] = "(table)" defs["igTableBeginContextMenuPopup"][1]["cimguiname"] = "igTableBeginContextMenuPopup" defs["igTableBeginContextMenuPopup"][1]["defaults"] = {} defs["igTableBeginContextMenuPopup"][1]["funcname"] = "TableBeginContextMenuPopup" +<<<<<<< HEAD defs["igTableBeginContextMenuPopup"][1]["location"] = "imgui_internal:3344" +======= +defs["igTableBeginContextMenuPopup"][1]["location"] = "imgui_internal:3672" +>>>>>>> docking_inter defs["igTableBeginContextMenuPopup"][1]["namespace"] = "ImGui" defs["igTableBeginContextMenuPopup"][1]["ov_cimguiname"] = "igTableBeginContextMenuPopup" defs["igTableBeginContextMenuPopup"][1]["ret"] = "bool" @@ -28085,7 +34949,11 @@ defs["igTableBeginInitMemory"][1]["call_args"] = "(table,columns_count)" defs["igTableBeginInitMemory"][1]["cimguiname"] = "igTableBeginInitMemory" defs["igTableBeginInitMemory"][1]["defaults"] = {} defs["igTableBeginInitMemory"][1]["funcname"] = "TableBeginInitMemory" +<<<<<<< HEAD defs["igTableBeginInitMemory"][1]["location"] = "imgui_internal:3336" +======= +defs["igTableBeginInitMemory"][1]["location"] = "imgui_internal:3664" +>>>>>>> docking_inter defs["igTableBeginInitMemory"][1]["namespace"] = "ImGui" defs["igTableBeginInitMemory"][1]["ov_cimguiname"] = "igTableBeginInitMemory" defs["igTableBeginInitMemory"][1]["ret"] = "void" @@ -28104,7 +34972,11 @@ defs["igTableBeginRow"][1]["call_args"] = "(table)" defs["igTableBeginRow"][1]["cimguiname"] = "igTableBeginRow" defs["igTableBeginRow"][1]["defaults"] = {} defs["igTableBeginRow"][1]["funcname"] = "TableBeginRow" +<<<<<<< HEAD defs["igTableBeginRow"][1]["location"] = "imgui_internal:3353" +======= +defs["igTableBeginRow"][1]["location"] = "imgui_internal:3681" +>>>>>>> docking_inter defs["igTableBeginRow"][1]["namespace"] = "ImGui" defs["igTableBeginRow"][1]["ov_cimguiname"] = "igTableBeginRow" defs["igTableBeginRow"][1]["ret"] = "void" @@ -28123,7 +34995,11 @@ defs["igTableDrawBorders"][1]["call_args"] = "(table)" defs["igTableDrawBorders"][1]["cimguiname"] = "igTableDrawBorders" defs["igTableDrawBorders"][1]["defaults"] = {} defs["igTableDrawBorders"][1]["funcname"] = "TableDrawBorders" +<<<<<<< HEAD defs["igTableDrawBorders"][1]["location"] = "imgui_internal:3342" +======= +defs["igTableDrawBorders"][1]["location"] = "imgui_internal:3670" +>>>>>>> docking_inter defs["igTableDrawBorders"][1]["namespace"] = "ImGui" defs["igTableDrawBorders"][1]["ov_cimguiname"] = "igTableDrawBorders" defs["igTableDrawBorders"][1]["ret"] = "void" @@ -28145,7 +35021,11 @@ defs["igTableDrawDefaultContextMenu"][1]["call_args"] = "(table,flags_for_sectio defs["igTableDrawDefaultContextMenu"][1]["cimguiname"] = "igTableDrawDefaultContextMenu" defs["igTableDrawDefaultContextMenu"][1]["defaults"] = {} defs["igTableDrawDefaultContextMenu"][1]["funcname"] = "TableDrawDefaultContextMenu" +<<<<<<< HEAD defs["igTableDrawDefaultContextMenu"][1]["location"] = "imgui_internal:3343" +======= +defs["igTableDrawDefaultContextMenu"][1]["location"] = "imgui_internal:3671" +>>>>>>> docking_inter defs["igTableDrawDefaultContextMenu"][1]["namespace"] = "ImGui" defs["igTableDrawDefaultContextMenu"][1]["ov_cimguiname"] = "igTableDrawDefaultContextMenu" defs["igTableDrawDefaultContextMenu"][1]["ret"] = "void" @@ -28164,7 +35044,11 @@ defs["igTableEndCell"][1]["call_args"] = "(table)" defs["igTableEndCell"][1]["cimguiname"] = "igTableEndCell" defs["igTableEndCell"][1]["defaults"] = {} defs["igTableEndCell"][1]["funcname"] = "TableEndCell" +<<<<<<< HEAD defs["igTableEndCell"][1]["location"] = "imgui_internal:3356" +======= +defs["igTableEndCell"][1]["location"] = "imgui_internal:3684" +>>>>>>> docking_inter defs["igTableEndCell"][1]["namespace"] = "ImGui" defs["igTableEndCell"][1]["ov_cimguiname"] = "igTableEndCell" defs["igTableEndCell"][1]["ret"] = "void" @@ -28183,7 +35067,11 @@ defs["igTableEndRow"][1]["call_args"] = "(table)" defs["igTableEndRow"][1]["cimguiname"] = "igTableEndRow" defs["igTableEndRow"][1]["defaults"] = {} defs["igTableEndRow"][1]["funcname"] = "TableEndRow" +<<<<<<< HEAD defs["igTableEndRow"][1]["location"] = "imgui_internal:3354" +======= +defs["igTableEndRow"][1]["location"] = "imgui_internal:3682" +>>>>>>> docking_inter defs["igTableEndRow"][1]["namespace"] = "ImGui" defs["igTableEndRow"][1]["ov_cimguiname"] = "igTableEndRow" defs["igTableEndRow"][1]["ret"] = "void" @@ -28202,7 +35090,11 @@ defs["igTableFindByID"][1]["call_args"] = "(id)" defs["igTableFindByID"][1]["cimguiname"] = "igTableFindByID" defs["igTableFindByID"][1]["defaults"] = {} defs["igTableFindByID"][1]["funcname"] = "TableFindByID" +<<<<<<< HEAD defs["igTableFindByID"][1]["location"] = "imgui_internal:3334" +======= +defs["igTableFindByID"][1]["location"] = "imgui_internal:3662" +>>>>>>> docking_inter defs["igTableFindByID"][1]["namespace"] = "ImGui" defs["igTableFindByID"][1]["ov_cimguiname"] = "igTableFindByID" defs["igTableFindByID"][1]["ret"] = "ImGuiTable*" @@ -28224,7 +35116,11 @@ defs["igTableFixColumnSortDirection"][1]["call_args"] = "(table,column)" defs["igTableFixColumnSortDirection"][1]["cimguiname"] = "igTableFixColumnSortDirection" defs["igTableFixColumnSortDirection"][1]["defaults"] = {} defs["igTableFixColumnSortDirection"][1]["funcname"] = "TableFixColumnSortDirection" +<<<<<<< HEAD defs["igTableFixColumnSortDirection"][1]["location"] = "imgui_internal:3351" +======= +defs["igTableFixColumnSortDirection"][1]["location"] = "imgui_internal:3679" +>>>>>>> docking_inter defs["igTableFixColumnSortDirection"][1]["namespace"] = "ImGui" defs["igTableFixColumnSortDirection"][1]["ov_cimguiname"] = "igTableFixColumnSortDirection" defs["igTableFixColumnSortDirection"][1]["ret"] = "void" @@ -28240,7 +35136,11 @@ defs["igTableGcCompactSettings"][1]["call_args"] = "()" defs["igTableGcCompactSettings"][1]["cimguiname"] = "igTableGcCompactSettings" defs["igTableGcCompactSettings"][1]["defaults"] = {} defs["igTableGcCompactSettings"][1]["funcname"] = "TableGcCompactSettings" +<<<<<<< HEAD defs["igTableGcCompactSettings"][1]["location"] = "imgui_internal:3366" +======= +defs["igTableGcCompactSettings"][1]["location"] = "imgui_internal:3694" +>>>>>>> docking_inter defs["igTableGcCompactSettings"][1]["namespace"] = "ImGui" defs["igTableGcCompactSettings"][1]["ov_cimguiname"] = "igTableGcCompactSettings" defs["igTableGcCompactSettings"][1]["ret"] = "void" @@ -28259,7 +35159,11 @@ defs["igTableGcCompactTransientBuffers"][1]["call_args"] = "(table)" defs["igTableGcCompactTransientBuffers"][1]["cimguiname"] = "igTableGcCompactTransientBuffers" defs["igTableGcCompactTransientBuffers"][1]["defaults"] = {} defs["igTableGcCompactTransientBuffers"][1]["funcname"] = "TableGcCompactTransientBuffers" +<<<<<<< HEAD defs["igTableGcCompactTransientBuffers"][1]["location"] = "imgui_internal:3364" +======= +defs["igTableGcCompactTransientBuffers"][1]["location"] = "imgui_internal:3692" +>>>>>>> docking_inter defs["igTableGcCompactTransientBuffers"][1]["namespace"] = "ImGui" defs["igTableGcCompactTransientBuffers"][1]["ov_cimguiname"] = "igTableGcCompactTransientBuffers_TablePtr" defs["igTableGcCompactTransientBuffers"][1]["ret"] = "void" @@ -28276,7 +35180,11 @@ defs["igTableGcCompactTransientBuffers"][2]["call_args"] = "(table)" defs["igTableGcCompactTransientBuffers"][2]["cimguiname"] = "igTableGcCompactTransientBuffers" defs["igTableGcCompactTransientBuffers"][2]["defaults"] = {} defs["igTableGcCompactTransientBuffers"][2]["funcname"] = "TableGcCompactTransientBuffers" +<<<<<<< HEAD defs["igTableGcCompactTransientBuffers"][2]["location"] = "imgui_internal:3365" +======= +defs["igTableGcCompactTransientBuffers"][2]["location"] = "imgui_internal:3693" +>>>>>>> docking_inter defs["igTableGcCompactTransientBuffers"][2]["namespace"] = "ImGui" defs["igTableGcCompactTransientBuffers"][2]["ov_cimguiname"] = "igTableGcCompactTransientBuffers_TableTempDataPtr" defs["igTableGcCompactTransientBuffers"][2]["ret"] = "void" @@ -28296,7 +35204,11 @@ defs["igTableGetBoundSettings"][1]["call_args"] = "(table)" defs["igTableGetBoundSettings"][1]["cimguiname"] = "igTableGetBoundSettings" defs["igTableGetBoundSettings"][1]["defaults"] = {} defs["igTableGetBoundSettings"][1]["funcname"] = "TableGetBoundSettings" +<<<<<<< HEAD defs["igTableGetBoundSettings"][1]["location"] = "imgui_internal:3372" +======= +defs["igTableGetBoundSettings"][1]["location"] = "imgui_internal:3700" +>>>>>>> docking_inter defs["igTableGetBoundSettings"][1]["namespace"] = "ImGui" defs["igTableGetBoundSettings"][1]["ov_cimguiname"] = "igTableGetBoundSettings" defs["igTableGetBoundSettings"][1]["ret"] = "ImGuiTableSettings*" @@ -28321,7 +35233,11 @@ defs["igTableGetCellBgRect"][1]["call_args"] = "(table,column_n)" defs["igTableGetCellBgRect"][1]["cimguiname"] = "igTableGetCellBgRect" defs["igTableGetCellBgRect"][1]["defaults"] = {} defs["igTableGetCellBgRect"][1]["funcname"] = "TableGetCellBgRect" +<<<<<<< HEAD defs["igTableGetCellBgRect"][1]["location"] = "imgui_internal:3357" +======= +defs["igTableGetCellBgRect"][1]["location"] = "imgui_internal:3685" +>>>>>>> docking_inter defs["igTableGetCellBgRect"][1]["namespace"] = "ImGui" defs["igTableGetCellBgRect"][1]["nonUDT"] = 1 defs["igTableGetCellBgRect"][1]["ov_cimguiname"] = "igTableGetCellBgRect" @@ -28338,7 +35254,11 @@ defs["igTableGetColumnCount"][1]["call_args"] = "()" defs["igTableGetColumnCount"][1]["cimguiname"] = "igTableGetColumnCount" defs["igTableGetColumnCount"][1]["defaults"] = {} defs["igTableGetColumnCount"][1]["funcname"] = "TableGetColumnCount" +<<<<<<< HEAD defs["igTableGetColumnCount"][1]["location"] = "imgui:808" +======= +defs["igTableGetColumnCount"][1]["location"] = "imgui:818" +>>>>>>> docking_inter defs["igTableGetColumnCount"][1]["namespace"] = "ImGui" defs["igTableGetColumnCount"][1]["ov_cimguiname"] = "igTableGetColumnCount" defs["igTableGetColumnCount"][1]["ret"] = "int" @@ -28358,7 +35278,11 @@ defs["igTableGetColumnFlags"][1]["cimguiname"] = "igTableGetColumnFlags" defs["igTableGetColumnFlags"][1]["defaults"] = {} defs["igTableGetColumnFlags"][1]["defaults"]["column_n"] = "-1" defs["igTableGetColumnFlags"][1]["funcname"] = "TableGetColumnFlags" +<<<<<<< HEAD defs["igTableGetColumnFlags"][1]["location"] = "imgui:812" +======= +defs["igTableGetColumnFlags"][1]["location"] = "imgui:822" +>>>>>>> docking_inter defs["igTableGetColumnFlags"][1]["namespace"] = "ImGui" defs["igTableGetColumnFlags"][1]["ov_cimguiname"] = "igTableGetColumnFlags" defs["igTableGetColumnFlags"][1]["ret"] = "ImGuiTableColumnFlags" @@ -28374,7 +35298,11 @@ defs["igTableGetColumnIndex"][1]["call_args"] = "()" defs["igTableGetColumnIndex"][1]["cimguiname"] = "igTableGetColumnIndex" defs["igTableGetColumnIndex"][1]["defaults"] = {} defs["igTableGetColumnIndex"][1]["funcname"] = "TableGetColumnIndex" +<<<<<<< HEAD defs["igTableGetColumnIndex"][1]["location"] = "imgui:809" +======= +defs["igTableGetColumnIndex"][1]["location"] = "imgui:819" +>>>>>>> docking_inter defs["igTableGetColumnIndex"][1]["namespace"] = "ImGui" defs["igTableGetColumnIndex"][1]["ov_cimguiname"] = "igTableGetColumnIndex" defs["igTableGetColumnIndex"][1]["ret"] = "int" @@ -28394,7 +35322,11 @@ defs["igTableGetColumnName"][1]["cimguiname"] = "igTableGetColumnName" defs["igTableGetColumnName"][1]["defaults"] = {} defs["igTableGetColumnName"][1]["defaults"]["column_n"] = "-1" defs["igTableGetColumnName"][1]["funcname"] = "TableGetColumnName" +<<<<<<< HEAD defs["igTableGetColumnName"][1]["location"] = "imgui:811" +======= +defs["igTableGetColumnName"][1]["location"] = "imgui:821" +>>>>>>> docking_inter defs["igTableGetColumnName"][1]["namespace"] = "ImGui" defs["igTableGetColumnName"][1]["ov_cimguiname"] = "igTableGetColumnName_Int" defs["igTableGetColumnName"][1]["ret"] = "const char*" @@ -28414,7 +35346,11 @@ defs["igTableGetColumnName"][2]["call_args"] = "(table,column_n)" defs["igTableGetColumnName"][2]["cimguiname"] = "igTableGetColumnName" defs["igTableGetColumnName"][2]["defaults"] = {} defs["igTableGetColumnName"][2]["funcname"] = "TableGetColumnName" +<<<<<<< HEAD defs["igTableGetColumnName"][2]["location"] = "imgui_internal:3358" +======= +defs["igTableGetColumnName"][2]["location"] = "imgui_internal:3686" +>>>>>>> docking_inter defs["igTableGetColumnName"][2]["namespace"] = "ImGui" defs["igTableGetColumnName"][2]["ov_cimguiname"] = "igTableGetColumnName_TablePtr" defs["igTableGetColumnName"][2]["ret"] = "const char*" @@ -28434,7 +35370,11 @@ defs["igTableGetColumnNextSortDirection"][1]["call_args"] = "(column)" defs["igTableGetColumnNextSortDirection"][1]["cimguiname"] = "igTableGetColumnNextSortDirection" defs["igTableGetColumnNextSortDirection"][1]["defaults"] = {} defs["igTableGetColumnNextSortDirection"][1]["funcname"] = "TableGetColumnNextSortDirection" +<<<<<<< HEAD defs["igTableGetColumnNextSortDirection"][1]["location"] = "imgui_internal:3350" +======= +defs["igTableGetColumnNextSortDirection"][1]["location"] = "imgui_internal:3678" +>>>>>>> docking_inter defs["igTableGetColumnNextSortDirection"][1]["namespace"] = "ImGui" defs["igTableGetColumnNextSortDirection"][1]["ov_cimguiname"] = "igTableGetColumnNextSortDirection" defs["igTableGetColumnNextSortDirection"][1]["ret"] = "ImGuiSortDirection" @@ -28460,7 +35400,11 @@ defs["igTableGetColumnResizeID"][1]["cimguiname"] = "igTableGetColumnResizeID" defs["igTableGetColumnResizeID"][1]["defaults"] = {} defs["igTableGetColumnResizeID"][1]["defaults"]["instance_no"] = "0" defs["igTableGetColumnResizeID"][1]["funcname"] = "TableGetColumnResizeID" +<<<<<<< HEAD defs["igTableGetColumnResizeID"][1]["location"] = "imgui_internal:3359" +======= +defs["igTableGetColumnResizeID"][1]["location"] = "imgui_internal:3687" +>>>>>>> docking_inter defs["igTableGetColumnResizeID"][1]["namespace"] = "ImGui" defs["igTableGetColumnResizeID"][1]["ov_cimguiname"] = "igTableGetColumnResizeID" defs["igTableGetColumnResizeID"][1]["ret"] = "ImGuiID" @@ -28482,7 +35426,11 @@ defs["igTableGetColumnWidthAuto"][1]["call_args"] = "(table,column)" defs["igTableGetColumnWidthAuto"][1]["cimguiname"] = "igTableGetColumnWidthAuto" defs["igTableGetColumnWidthAuto"][1]["defaults"] = {} defs["igTableGetColumnWidthAuto"][1]["funcname"] = "TableGetColumnWidthAuto" +<<<<<<< HEAD defs["igTableGetColumnWidthAuto"][1]["location"] = "imgui_internal:3352" +======= +defs["igTableGetColumnWidthAuto"][1]["location"] = "imgui_internal:3680" +>>>>>>> docking_inter defs["igTableGetColumnWidthAuto"][1]["namespace"] = "ImGui" defs["igTableGetColumnWidthAuto"][1]["ov_cimguiname"] = "igTableGetColumnWidthAuto" defs["igTableGetColumnWidthAuto"][1]["ret"] = "float" @@ -28498,7 +35446,11 @@ defs["igTableGetHeaderAngledMaxLabelWidth"][1]["call_args"] = "()" defs["igTableGetHeaderAngledMaxLabelWidth"][1]["cimguiname"] = "igTableGetHeaderAngledMaxLabelWidth" defs["igTableGetHeaderAngledMaxLabelWidth"][1]["defaults"] = {} defs["igTableGetHeaderAngledMaxLabelWidth"][1]["funcname"] = "TableGetHeaderAngledMaxLabelWidth" +<<<<<<< HEAD defs["igTableGetHeaderAngledMaxLabelWidth"][1]["location"] = "imgui_internal:3327" +======= +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["location"] = "imgui_internal:3655" +>>>>>>> docking_inter defs["igTableGetHeaderAngledMaxLabelWidth"][1]["namespace"] = "ImGui" defs["igTableGetHeaderAngledMaxLabelWidth"][1]["ov_cimguiname"] = "igTableGetHeaderAngledMaxLabelWidth" defs["igTableGetHeaderAngledMaxLabelWidth"][1]["ret"] = "float" @@ -28514,7 +35466,11 @@ defs["igTableGetHeaderRowHeight"][1]["call_args"] = "()" defs["igTableGetHeaderRowHeight"][1]["cimguiname"] = "igTableGetHeaderRowHeight" defs["igTableGetHeaderRowHeight"][1]["defaults"] = {} defs["igTableGetHeaderRowHeight"][1]["funcname"] = "TableGetHeaderRowHeight" +<<<<<<< HEAD defs["igTableGetHeaderRowHeight"][1]["location"] = "imgui_internal:3326" +======= +defs["igTableGetHeaderRowHeight"][1]["location"] = "imgui_internal:3654" +>>>>>>> docking_inter defs["igTableGetHeaderRowHeight"][1]["namespace"] = "ImGui" defs["igTableGetHeaderRowHeight"][1]["ov_cimguiname"] = "igTableGetHeaderRowHeight" defs["igTableGetHeaderRowHeight"][1]["ret"] = "float" @@ -28530,7 +35486,11 @@ defs["igTableGetHoveredColumn"][1]["call_args"] = "()" defs["igTableGetHoveredColumn"][1]["cimguiname"] = "igTableGetHoveredColumn" defs["igTableGetHoveredColumn"][1]["defaults"] = {} defs["igTableGetHoveredColumn"][1]["funcname"] = "TableGetHoveredColumn" +<<<<<<< HEAD defs["igTableGetHoveredColumn"][1]["location"] = "imgui_internal:3324" +======= +defs["igTableGetHoveredColumn"][1]["location"] = "imgui:824" +>>>>>>> docking_inter defs["igTableGetHoveredColumn"][1]["namespace"] = "ImGui" defs["igTableGetHoveredColumn"][1]["ov_cimguiname"] = "igTableGetHoveredColumn" defs["igTableGetHoveredColumn"][1]["ret"] = "int" @@ -28546,7 +35506,11 @@ defs["igTableGetHoveredRow"][1]["call_args"] = "()" defs["igTableGetHoveredRow"][1]["cimguiname"] = "igTableGetHoveredRow" defs["igTableGetHoveredRow"][1]["defaults"] = {} defs["igTableGetHoveredRow"][1]["funcname"] = "TableGetHoveredRow" +<<<<<<< HEAD defs["igTableGetHoveredRow"][1]["location"] = "imgui_internal:3325" +======= +defs["igTableGetHoveredRow"][1]["location"] = "imgui_internal:3653" +>>>>>>> docking_inter defs["igTableGetHoveredRow"][1]["namespace"] = "ImGui" defs["igTableGetHoveredRow"][1]["ov_cimguiname"] = "igTableGetHoveredRow" defs["igTableGetHoveredRow"][1]["ret"] = "int" @@ -28568,7 +35532,11 @@ defs["igTableGetInstanceData"][1]["call_args"] = "(table,instance_no)" defs["igTableGetInstanceData"][1]["cimguiname"] = "igTableGetInstanceData" defs["igTableGetInstanceData"][1]["defaults"] = {} defs["igTableGetInstanceData"][1]["funcname"] = "TableGetInstanceData" +<<<<<<< HEAD defs["igTableGetInstanceData"][1]["location"] = "imgui_internal:3346" +======= +defs["igTableGetInstanceData"][1]["location"] = "imgui_internal:3674" +>>>>>>> docking_inter defs["igTableGetInstanceData"][1]["namespace"] = "ImGui" defs["igTableGetInstanceData"][1]["ov_cimguiname"] = "igTableGetInstanceData" defs["igTableGetInstanceData"][1]["ret"] = "ImGuiTableInstanceData*" @@ -28590,7 +35558,11 @@ defs["igTableGetInstanceID"][1]["call_args"] = "(table,instance_no)" defs["igTableGetInstanceID"][1]["cimguiname"] = "igTableGetInstanceID" defs["igTableGetInstanceID"][1]["defaults"] = {} defs["igTableGetInstanceID"][1]["funcname"] = "TableGetInstanceID" +<<<<<<< HEAD defs["igTableGetInstanceID"][1]["location"] = "imgui_internal:3347" +======= +defs["igTableGetInstanceID"][1]["location"] = "imgui_internal:3675" +>>>>>>> docking_inter defs["igTableGetInstanceID"][1]["namespace"] = "ImGui" defs["igTableGetInstanceID"][1]["ov_cimguiname"] = "igTableGetInstanceID" defs["igTableGetInstanceID"][1]["ret"] = "ImGuiID" @@ -28612,7 +35584,11 @@ defs["igTableGetMaxColumnWidth"][1]["call_args"] = "(table,column_n)" defs["igTableGetMaxColumnWidth"][1]["cimguiname"] = "igTableGetMaxColumnWidth" defs["igTableGetMaxColumnWidth"][1]["defaults"] = {} defs["igTableGetMaxColumnWidth"][1]["funcname"] = "TableGetMaxColumnWidth" +<<<<<<< HEAD defs["igTableGetMaxColumnWidth"][1]["location"] = "imgui_internal:3360" +======= +defs["igTableGetMaxColumnWidth"][1]["location"] = "imgui_internal:3688" +>>>>>>> docking_inter defs["igTableGetMaxColumnWidth"][1]["namespace"] = "ImGui" defs["igTableGetMaxColumnWidth"][1]["ov_cimguiname"] = "igTableGetMaxColumnWidth" defs["igTableGetMaxColumnWidth"][1]["ret"] = "float" @@ -28628,7 +35604,11 @@ defs["igTableGetRowIndex"][1]["call_args"] = "()" defs["igTableGetRowIndex"][1]["cimguiname"] = "igTableGetRowIndex" defs["igTableGetRowIndex"][1]["defaults"] = {} defs["igTableGetRowIndex"][1]["funcname"] = "TableGetRowIndex" +<<<<<<< HEAD defs["igTableGetRowIndex"][1]["location"] = "imgui:810" +======= +defs["igTableGetRowIndex"][1]["location"] = "imgui:820" +>>>>>>> docking_inter defs["igTableGetRowIndex"][1]["namespace"] = "ImGui" defs["igTableGetRowIndex"][1]["ov_cimguiname"] = "igTableGetRowIndex" defs["igTableGetRowIndex"][1]["ret"] = "int" @@ -28644,7 +35624,11 @@ defs["igTableGetSortSpecs"][1]["call_args"] = "()" defs["igTableGetSortSpecs"][1]["cimguiname"] = "igTableGetSortSpecs" defs["igTableGetSortSpecs"][1]["defaults"] = {} defs["igTableGetSortSpecs"][1]["funcname"] = "TableGetSortSpecs" +<<<<<<< HEAD defs["igTableGetSortSpecs"][1]["location"] = "imgui:807" +======= +defs["igTableGetSortSpecs"][1]["location"] = "imgui:817" +>>>>>>> docking_inter defs["igTableGetSortSpecs"][1]["namespace"] = "ImGui" defs["igTableGetSortSpecs"][1]["ov_cimguiname"] = "igTableGetSortSpecs" defs["igTableGetSortSpecs"][1]["ret"] = "ImGuiTableSortSpecs*" @@ -28663,7 +35647,11 @@ defs["igTableHeader"][1]["call_args"] = "(label)" defs["igTableHeader"][1]["cimguiname"] = "igTableHeader" defs["igTableHeader"][1]["defaults"] = {} defs["igTableHeader"][1]["funcname"] = "TableHeader" +<<<<<<< HEAD defs["igTableHeader"][1]["location"] = "imgui:797" +======= +defs["igTableHeader"][1]["location"] = "imgui:807" +>>>>>>> docking_inter defs["igTableHeader"][1]["namespace"] = "ImGui" defs["igTableHeader"][1]["ov_cimguiname"] = "igTableHeader" defs["igTableHeader"][1]["ret"] = "void" @@ -28679,7 +35667,11 @@ defs["igTableHeadersRow"][1]["call_args"] = "()" defs["igTableHeadersRow"][1]["cimguiname"] = "igTableHeadersRow" defs["igTableHeadersRow"][1]["defaults"] = {} defs["igTableHeadersRow"][1]["funcname"] = "TableHeadersRow" +<<<<<<< HEAD defs["igTableHeadersRow"][1]["location"] = "imgui:798" +======= +defs["igTableHeadersRow"][1]["location"] = "imgui:808" +>>>>>>> docking_inter defs["igTableHeadersRow"][1]["namespace"] = "ImGui" defs["igTableHeadersRow"][1]["ov_cimguiname"] = "igTableHeadersRow" defs["igTableHeadersRow"][1]["ret"] = "void" @@ -28698,7 +35690,11 @@ defs["igTableLoadSettings"][1]["call_args"] = "(table)" defs["igTableLoadSettings"][1]["cimguiname"] = "igTableLoadSettings" defs["igTableLoadSettings"][1]["defaults"] = {} defs["igTableLoadSettings"][1]["funcname"] = "TableLoadSettings" +<<<<<<< HEAD defs["igTableLoadSettings"][1]["location"] = "imgui_internal:3369" +======= +defs["igTableLoadSettings"][1]["location"] = "imgui_internal:3697" +>>>>>>> docking_inter defs["igTableLoadSettings"][1]["namespace"] = "ImGui" defs["igTableLoadSettings"][1]["ov_cimguiname"] = "igTableLoadSettings" defs["igTableLoadSettings"][1]["ret"] = "void" @@ -28717,7 +35713,11 @@ defs["igTableMergeDrawChannels"][1]["call_args"] = "(table)" defs["igTableMergeDrawChannels"][1]["cimguiname"] = "igTableMergeDrawChannels" defs["igTableMergeDrawChannels"][1]["defaults"] = {} defs["igTableMergeDrawChannels"][1]["funcname"] = "TableMergeDrawChannels" +<<<<<<< HEAD defs["igTableMergeDrawChannels"][1]["location"] = "imgui_internal:3345" +======= +defs["igTableMergeDrawChannels"][1]["location"] = "imgui_internal:3673" +>>>>>>> docking_inter defs["igTableMergeDrawChannels"][1]["namespace"] = "ImGui" defs["igTableMergeDrawChannels"][1]["ov_cimguiname"] = "igTableMergeDrawChannels" defs["igTableMergeDrawChannels"][1]["ret"] = "void" @@ -28733,7 +35733,11 @@ defs["igTableNextColumn"][1]["call_args"] = "()" defs["igTableNextColumn"][1]["cimguiname"] = "igTableNextColumn" defs["igTableNextColumn"][1]["defaults"] = {} defs["igTableNextColumn"][1]["funcname"] = "TableNextColumn" +<<<<<<< HEAD defs["igTableNextColumn"][1]["location"] = "imgui:784" +======= +defs["igTableNextColumn"][1]["location"] = "imgui:794" +>>>>>>> docking_inter defs["igTableNextColumn"][1]["namespace"] = "ImGui" defs["igTableNextColumn"][1]["ov_cimguiname"] = "igTableNextColumn" defs["igTableNextColumn"][1]["ret"] = "bool" @@ -28757,7 +35761,11 @@ defs["igTableNextRow"][1]["defaults"] = {} defs["igTableNextRow"][1]["defaults"]["min_row_height"] = "0.0f" defs["igTableNextRow"][1]["defaults"]["row_flags"] = "0" defs["igTableNextRow"][1]["funcname"] = "TableNextRow" +<<<<<<< HEAD defs["igTableNextRow"][1]["location"] = "imgui:783" +======= +defs["igTableNextRow"][1]["location"] = "imgui:793" +>>>>>>> docking_inter defs["igTableNextRow"][1]["namespace"] = "ImGui" defs["igTableNextRow"][1]["ov_cimguiname"] = "igTableNextRow" defs["igTableNextRow"][1]["ret"] = "void" @@ -28777,7 +35785,11 @@ defs["igTableOpenContextMenu"][1]["cimguiname"] = "igTableOpenContextMenu" defs["igTableOpenContextMenu"][1]["defaults"] = {} defs["igTableOpenContextMenu"][1]["defaults"]["column_n"] = "-1" defs["igTableOpenContextMenu"][1]["funcname"] = "TableOpenContextMenu" +<<<<<<< HEAD defs["igTableOpenContextMenu"][1]["location"] = "imgui_internal:3321" +======= +defs["igTableOpenContextMenu"][1]["location"] = "imgui_internal:3650" +>>>>>>> docking_inter defs["igTableOpenContextMenu"][1]["namespace"] = "ImGui" defs["igTableOpenContextMenu"][1]["ov_cimguiname"] = "igTableOpenContextMenu" defs["igTableOpenContextMenu"][1]["ret"] = "void" @@ -28793,7 +35805,11 @@ defs["igTablePopBackgroundChannel"][1]["call_args"] = "()" defs["igTablePopBackgroundChannel"][1]["cimguiname"] = "igTablePopBackgroundChannel" defs["igTablePopBackgroundChannel"][1]["defaults"] = {} defs["igTablePopBackgroundChannel"][1]["funcname"] = "TablePopBackgroundChannel" +<<<<<<< HEAD defs["igTablePopBackgroundChannel"][1]["location"] = "imgui_internal:3329" +======= +defs["igTablePopBackgroundChannel"][1]["location"] = "imgui_internal:3657" +>>>>>>> docking_inter defs["igTablePopBackgroundChannel"][1]["namespace"] = "ImGui" defs["igTablePopBackgroundChannel"][1]["ov_cimguiname"] = "igTablePopBackgroundChannel" defs["igTablePopBackgroundChannel"][1]["ret"] = "void" @@ -28809,7 +35825,11 @@ defs["igTablePushBackgroundChannel"][1]["call_args"] = "()" defs["igTablePushBackgroundChannel"][1]["cimguiname"] = "igTablePushBackgroundChannel" defs["igTablePushBackgroundChannel"][1]["defaults"] = {} defs["igTablePushBackgroundChannel"][1]["funcname"] = "TablePushBackgroundChannel" +<<<<<<< HEAD defs["igTablePushBackgroundChannel"][1]["location"] = "imgui_internal:3328" +======= +defs["igTablePushBackgroundChannel"][1]["location"] = "imgui_internal:3656" +>>>>>>> docking_inter defs["igTablePushBackgroundChannel"][1]["namespace"] = "ImGui" defs["igTablePushBackgroundChannel"][1]["ov_cimguiname"] = "igTablePushBackgroundChannel" defs["igTablePushBackgroundChannel"][1]["ret"] = "void" @@ -28828,7 +35848,11 @@ defs["igTableRemove"][1]["call_args"] = "(table)" defs["igTableRemove"][1]["cimguiname"] = "igTableRemove" defs["igTableRemove"][1]["defaults"] = {} defs["igTableRemove"][1]["funcname"] = "TableRemove" +<<<<<<< HEAD defs["igTableRemove"][1]["location"] = "imgui_internal:3363" +======= +defs["igTableRemove"][1]["location"] = "imgui_internal:3691" +>>>>>>> docking_inter defs["igTableRemove"][1]["namespace"] = "ImGui" defs["igTableRemove"][1]["ov_cimguiname"] = "igTableRemove" defs["igTableRemove"][1]["ret"] = "void" @@ -28847,7 +35871,11 @@ defs["igTableResetSettings"][1]["call_args"] = "(table)" defs["igTableResetSettings"][1]["cimguiname"] = "igTableResetSettings" defs["igTableResetSettings"][1]["defaults"] = {} defs["igTableResetSettings"][1]["funcname"] = "TableResetSettings" +<<<<<<< HEAD defs["igTableResetSettings"][1]["location"] = "imgui_internal:3371" +======= +defs["igTableResetSettings"][1]["location"] = "imgui_internal:3699" +>>>>>>> docking_inter defs["igTableResetSettings"][1]["namespace"] = "ImGui" defs["igTableResetSettings"][1]["ov_cimguiname"] = "igTableResetSettings" defs["igTableResetSettings"][1]["ret"] = "void" @@ -28866,7 +35894,11 @@ defs["igTableSaveSettings"][1]["call_args"] = "(table)" defs["igTableSaveSettings"][1]["cimguiname"] = "igTableSaveSettings" defs["igTableSaveSettings"][1]["defaults"] = {} defs["igTableSaveSettings"][1]["funcname"] = "TableSaveSettings" +<<<<<<< HEAD defs["igTableSaveSettings"][1]["location"] = "imgui_internal:3370" +======= +defs["igTableSaveSettings"][1]["location"] = "imgui_internal:3698" +>>>>>>> docking_inter defs["igTableSaveSettings"][1]["namespace"] = "ImGui" defs["igTableSaveSettings"][1]["ov_cimguiname"] = "igTableSaveSettings" defs["igTableSaveSettings"][1]["ret"] = "void" @@ -28892,7 +35924,11 @@ defs["igTableSetBgColor"][1]["cimguiname"] = "igTableSetBgColor" defs["igTableSetBgColor"][1]["defaults"] = {} defs["igTableSetBgColor"][1]["defaults"]["column_n"] = "-1" defs["igTableSetBgColor"][1]["funcname"] = "TableSetBgColor" +<<<<<<< HEAD defs["igTableSetBgColor"][1]["location"] = "imgui:814" +======= +defs["igTableSetBgColor"][1]["location"] = "imgui:825" +>>>>>>> docking_inter defs["igTableSetBgColor"][1]["namespace"] = "ImGui" defs["igTableSetBgColor"][1]["ov_cimguiname"] = "igTableSetBgColor" defs["igTableSetBgColor"][1]["ret"] = "void" @@ -28914,7 +35950,11 @@ defs["igTableSetColumnEnabled"][1]["call_args"] = "(column_n,v)" defs["igTableSetColumnEnabled"][1]["cimguiname"] = "igTableSetColumnEnabled" defs["igTableSetColumnEnabled"][1]["defaults"] = {} defs["igTableSetColumnEnabled"][1]["funcname"] = "TableSetColumnEnabled" +<<<<<<< HEAD defs["igTableSetColumnEnabled"][1]["location"] = "imgui:813" +======= +defs["igTableSetColumnEnabled"][1]["location"] = "imgui:823" +>>>>>>> docking_inter defs["igTableSetColumnEnabled"][1]["namespace"] = "ImGui" defs["igTableSetColumnEnabled"][1]["ov_cimguiname"] = "igTableSetColumnEnabled" defs["igTableSetColumnEnabled"][1]["ret"] = "void" @@ -28933,7 +35973,11 @@ defs["igTableSetColumnIndex"][1]["call_args"] = "(column_n)" defs["igTableSetColumnIndex"][1]["cimguiname"] = "igTableSetColumnIndex" defs["igTableSetColumnIndex"][1]["defaults"] = {} defs["igTableSetColumnIndex"][1]["funcname"] = "TableSetColumnIndex" +<<<<<<< HEAD defs["igTableSetColumnIndex"][1]["location"] = "imgui:785" +======= +defs["igTableSetColumnIndex"][1]["location"] = "imgui:795" +>>>>>>> docking_inter defs["igTableSetColumnIndex"][1]["namespace"] = "ImGui" defs["igTableSetColumnIndex"][1]["ov_cimguiname"] = "igTableSetColumnIndex" defs["igTableSetColumnIndex"][1]["ret"] = "bool" @@ -28958,7 +36002,11 @@ defs["igTableSetColumnSortDirection"][1]["call_args"] = "(column_n,sort_directio defs["igTableSetColumnSortDirection"][1]["cimguiname"] = "igTableSetColumnSortDirection" defs["igTableSetColumnSortDirection"][1]["defaults"] = {} defs["igTableSetColumnSortDirection"][1]["funcname"] = "TableSetColumnSortDirection" +<<<<<<< HEAD defs["igTableSetColumnSortDirection"][1]["location"] = "imgui_internal:3323" +======= +defs["igTableSetColumnSortDirection"][1]["location"] = "imgui_internal:3652" +>>>>>>> docking_inter defs["igTableSetColumnSortDirection"][1]["namespace"] = "ImGui" defs["igTableSetColumnSortDirection"][1]["ov_cimguiname"] = "igTableSetColumnSortDirection" defs["igTableSetColumnSortDirection"][1]["ret"] = "void" @@ -28980,7 +36028,11 @@ defs["igTableSetColumnWidth"][1]["call_args"] = "(column_n,width)" defs["igTableSetColumnWidth"][1]["cimguiname"] = "igTableSetColumnWidth" defs["igTableSetColumnWidth"][1]["defaults"] = {} defs["igTableSetColumnWidth"][1]["funcname"] = "TableSetColumnWidth" +<<<<<<< HEAD defs["igTableSetColumnWidth"][1]["location"] = "imgui_internal:3322" +======= +defs["igTableSetColumnWidth"][1]["location"] = "imgui_internal:3651" +>>>>>>> docking_inter defs["igTableSetColumnWidth"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidth"][1]["ov_cimguiname"] = "igTableSetColumnWidth" defs["igTableSetColumnWidth"][1]["ret"] = "void" @@ -28999,7 +36051,11 @@ defs["igTableSetColumnWidthAutoAll"][1]["call_args"] = "(table)" defs["igTableSetColumnWidthAutoAll"][1]["cimguiname"] = "igTableSetColumnWidthAutoAll" defs["igTableSetColumnWidthAutoAll"][1]["defaults"] = {} defs["igTableSetColumnWidthAutoAll"][1]["funcname"] = "TableSetColumnWidthAutoAll" +<<<<<<< HEAD defs["igTableSetColumnWidthAutoAll"][1]["location"] = "imgui_internal:3362" +======= +defs["igTableSetColumnWidthAutoAll"][1]["location"] = "imgui_internal:3690" +>>>>>>> docking_inter defs["igTableSetColumnWidthAutoAll"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidthAutoAll"][1]["ov_cimguiname"] = "igTableSetColumnWidthAutoAll" defs["igTableSetColumnWidthAutoAll"][1]["ret"] = "void" @@ -29021,7 +36077,11 @@ defs["igTableSetColumnWidthAutoSingle"][1]["call_args"] = "(table,column_n)" defs["igTableSetColumnWidthAutoSingle"][1]["cimguiname"] = "igTableSetColumnWidthAutoSingle" defs["igTableSetColumnWidthAutoSingle"][1]["defaults"] = {} defs["igTableSetColumnWidthAutoSingle"][1]["funcname"] = "TableSetColumnWidthAutoSingle" +<<<<<<< HEAD defs["igTableSetColumnWidthAutoSingle"][1]["location"] = "imgui_internal:3361" +======= +defs["igTableSetColumnWidthAutoSingle"][1]["location"] = "imgui_internal:3689" +>>>>>>> docking_inter defs["igTableSetColumnWidthAutoSingle"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidthAutoSingle"][1]["ov_cimguiname"] = "igTableSetColumnWidthAutoSingle" defs["igTableSetColumnWidthAutoSingle"][1]["ret"] = "void" @@ -29037,7 +36097,11 @@ defs["igTableSettingsAddSettingsHandler"][1]["call_args"] = "()" defs["igTableSettingsAddSettingsHandler"][1]["cimguiname"] = "igTableSettingsAddSettingsHandler" defs["igTableSettingsAddSettingsHandler"][1]["defaults"] = {} defs["igTableSettingsAddSettingsHandler"][1]["funcname"] = "TableSettingsAddSettingsHandler" +<<<<<<< HEAD defs["igTableSettingsAddSettingsHandler"][1]["location"] = "imgui_internal:3373" +======= +defs["igTableSettingsAddSettingsHandler"][1]["location"] = "imgui_internal:3701" +>>>>>>> docking_inter defs["igTableSettingsAddSettingsHandler"][1]["namespace"] = "ImGui" defs["igTableSettingsAddSettingsHandler"][1]["ov_cimguiname"] = "igTableSettingsAddSettingsHandler" defs["igTableSettingsAddSettingsHandler"][1]["ret"] = "void" @@ -29059,7 +36123,11 @@ defs["igTableSettingsCreate"][1]["call_args"] = "(id,columns_count)" defs["igTableSettingsCreate"][1]["cimguiname"] = "igTableSettingsCreate" defs["igTableSettingsCreate"][1]["defaults"] = {} defs["igTableSettingsCreate"][1]["funcname"] = "TableSettingsCreate" +<<<<<<< HEAD defs["igTableSettingsCreate"][1]["location"] = "imgui_internal:3374" +======= +defs["igTableSettingsCreate"][1]["location"] = "imgui_internal:3702" +>>>>>>> docking_inter defs["igTableSettingsCreate"][1]["namespace"] = "ImGui" defs["igTableSettingsCreate"][1]["ov_cimguiname"] = "igTableSettingsCreate" defs["igTableSettingsCreate"][1]["ret"] = "ImGuiTableSettings*" @@ -29078,7 +36146,11 @@ defs["igTableSettingsFindByID"][1]["call_args"] = "(id)" defs["igTableSettingsFindByID"][1]["cimguiname"] = "igTableSettingsFindByID" defs["igTableSettingsFindByID"][1]["defaults"] = {} defs["igTableSettingsFindByID"][1]["funcname"] = "TableSettingsFindByID" +<<<<<<< HEAD defs["igTableSettingsFindByID"][1]["location"] = "imgui_internal:3375" +======= +defs["igTableSettingsFindByID"][1]["location"] = "imgui_internal:3703" +>>>>>>> docking_inter defs["igTableSettingsFindByID"][1]["namespace"] = "ImGui" defs["igTableSettingsFindByID"][1]["ov_cimguiname"] = "igTableSettingsFindByID" defs["igTableSettingsFindByID"][1]["ret"] = "ImGuiTableSettings*" @@ -29109,7 +36181,11 @@ defs["igTableSetupColumn"][1]["defaults"]["flags"] = "0" defs["igTableSetupColumn"][1]["defaults"]["init_width_or_weight"] = "0.0f" defs["igTableSetupColumn"][1]["defaults"]["user_id"] = "0" defs["igTableSetupColumn"][1]["funcname"] = "TableSetupColumn" +<<<<<<< HEAD defs["igTableSetupColumn"][1]["location"] = "imgui:795" +======= +defs["igTableSetupColumn"][1]["location"] = "imgui:805" +>>>>>>> docking_inter defs["igTableSetupColumn"][1]["namespace"] = "ImGui" defs["igTableSetupColumn"][1]["ov_cimguiname"] = "igTableSetupColumn" defs["igTableSetupColumn"][1]["ret"] = "void" @@ -29128,7 +36204,11 @@ defs["igTableSetupDrawChannels"][1]["call_args"] = "(table)" defs["igTableSetupDrawChannels"][1]["cimguiname"] = "igTableSetupDrawChannels" defs["igTableSetupDrawChannels"][1]["defaults"] = {} defs["igTableSetupDrawChannels"][1]["funcname"] = "TableSetupDrawChannels" +<<<<<<< HEAD defs["igTableSetupDrawChannels"][1]["location"] = "imgui_internal:3338" +======= +defs["igTableSetupDrawChannels"][1]["location"] = "imgui_internal:3666" +>>>>>>> docking_inter defs["igTableSetupDrawChannels"][1]["namespace"] = "ImGui" defs["igTableSetupDrawChannels"][1]["ov_cimguiname"] = "igTableSetupDrawChannels" defs["igTableSetupDrawChannels"][1]["ret"] = "void" @@ -29150,7 +36230,11 @@ defs["igTableSetupScrollFreeze"][1]["call_args"] = "(cols,rows)" defs["igTableSetupScrollFreeze"][1]["cimguiname"] = "igTableSetupScrollFreeze" defs["igTableSetupScrollFreeze"][1]["defaults"] = {} defs["igTableSetupScrollFreeze"][1]["funcname"] = "TableSetupScrollFreeze" +<<<<<<< HEAD defs["igTableSetupScrollFreeze"][1]["location"] = "imgui:796" +======= +defs["igTableSetupScrollFreeze"][1]["location"] = "imgui:806" +>>>>>>> docking_inter defs["igTableSetupScrollFreeze"][1]["namespace"] = "ImGui" defs["igTableSetupScrollFreeze"][1]["ov_cimguiname"] = "igTableSetupScrollFreeze" defs["igTableSetupScrollFreeze"][1]["ret"] = "void" @@ -29169,7 +36253,11 @@ defs["igTableSortSpecsBuild"][1]["call_args"] = "(table)" defs["igTableSortSpecsBuild"][1]["cimguiname"] = "igTableSortSpecsBuild" defs["igTableSortSpecsBuild"][1]["defaults"] = {} defs["igTableSortSpecsBuild"][1]["funcname"] = "TableSortSpecsBuild" +<<<<<<< HEAD defs["igTableSortSpecsBuild"][1]["location"] = "imgui_internal:3349" +======= +defs["igTableSortSpecsBuild"][1]["location"] = "imgui_internal:3677" +>>>>>>> docking_inter defs["igTableSortSpecsBuild"][1]["namespace"] = "ImGui" defs["igTableSortSpecsBuild"][1]["ov_cimguiname"] = "igTableSortSpecsBuild" defs["igTableSortSpecsBuild"][1]["ret"] = "void" @@ -29188,7 +36276,11 @@ defs["igTableSortSpecsSanitize"][1]["call_args"] = "(table)" defs["igTableSortSpecsSanitize"][1]["cimguiname"] = "igTableSortSpecsSanitize" defs["igTableSortSpecsSanitize"][1]["defaults"] = {} defs["igTableSortSpecsSanitize"][1]["funcname"] = "TableSortSpecsSanitize" +<<<<<<< HEAD defs["igTableSortSpecsSanitize"][1]["location"] = "imgui_internal:3348" +======= +defs["igTableSortSpecsSanitize"][1]["location"] = "imgui_internal:3676" +>>>>>>> docking_inter defs["igTableSortSpecsSanitize"][1]["namespace"] = "ImGui" defs["igTableSortSpecsSanitize"][1]["ov_cimguiname"] = "igTableSortSpecsSanitize" defs["igTableSortSpecsSanitize"][1]["ret"] = "void" @@ -29207,7 +36299,11 @@ defs["igTableUpdateBorders"][1]["call_args"] = "(table)" defs["igTableUpdateBorders"][1]["cimguiname"] = "igTableUpdateBorders" defs["igTableUpdateBorders"][1]["defaults"] = {} defs["igTableUpdateBorders"][1]["funcname"] = "TableUpdateBorders" +<<<<<<< HEAD defs["igTableUpdateBorders"][1]["location"] = "imgui_internal:3340" +======= +defs["igTableUpdateBorders"][1]["location"] = "imgui_internal:3668" +>>>>>>> docking_inter defs["igTableUpdateBorders"][1]["namespace"] = "ImGui" defs["igTableUpdateBorders"][1]["ov_cimguiname"] = "igTableUpdateBorders" defs["igTableUpdateBorders"][1]["ret"] = "void" @@ -29226,7 +36322,11 @@ defs["igTableUpdateColumnsWeightFromWidth"][1]["call_args"] = "(table)" defs["igTableUpdateColumnsWeightFromWidth"][1]["cimguiname"] = "igTableUpdateColumnsWeightFromWidth" defs["igTableUpdateColumnsWeightFromWidth"][1]["defaults"] = {} defs["igTableUpdateColumnsWeightFromWidth"][1]["funcname"] = "TableUpdateColumnsWeightFromWidth" +<<<<<<< HEAD defs["igTableUpdateColumnsWeightFromWidth"][1]["location"] = "imgui_internal:3341" +======= +defs["igTableUpdateColumnsWeightFromWidth"][1]["location"] = "imgui_internal:3669" +>>>>>>> docking_inter defs["igTableUpdateColumnsWeightFromWidth"][1]["namespace"] = "ImGui" defs["igTableUpdateColumnsWeightFromWidth"][1]["ov_cimguiname"] = "igTableUpdateColumnsWeightFromWidth" defs["igTableUpdateColumnsWeightFromWidth"][1]["ret"] = "void" @@ -29245,7 +36345,11 @@ defs["igTableUpdateLayout"][1]["call_args"] = "(table)" defs["igTableUpdateLayout"][1]["cimguiname"] = "igTableUpdateLayout" defs["igTableUpdateLayout"][1]["defaults"] = {} defs["igTableUpdateLayout"][1]["funcname"] = "TableUpdateLayout" +<<<<<<< HEAD defs["igTableUpdateLayout"][1]["location"] = "imgui_internal:3339" +======= +defs["igTableUpdateLayout"][1]["location"] = "imgui_internal:3667" +>>>>>>> docking_inter defs["igTableUpdateLayout"][1]["namespace"] = "ImGui" defs["igTableUpdateLayout"][1]["ov_cimguiname"] = "igTableUpdateLayout" defs["igTableUpdateLayout"][1]["ret"] = "void" @@ -29264,7 +36368,11 @@ defs["igTeleportMousePos"][1]["call_args"] = "(pos)" defs["igTeleportMousePos"][1]["cimguiname"] = "igTeleportMousePos" defs["igTeleportMousePos"][1]["defaults"] = {} defs["igTeleportMousePos"][1]["funcname"] = "TeleportMousePos" +<<<<<<< HEAD defs["igTeleportMousePos"][1]["location"] = "imgui_internal:3227" +======= +defs["igTeleportMousePos"][1]["location"] = "imgui_internal:3501" +>>>>>>> docking_inter defs["igTeleportMousePos"][1]["namespace"] = "ImGui" defs["igTeleportMousePos"][1]["ov_cimguiname"] = "igTeleportMousePos" defs["igTeleportMousePos"][1]["ret"] = "void" @@ -29283,7 +36391,11 @@ defs["igTempInputIsActive"][1]["call_args"] = "(id)" defs["igTempInputIsActive"][1]["cimguiname"] = "igTempInputIsActive" defs["igTempInputIsActive"][1]["defaults"] = {} defs["igTempInputIsActive"][1]["funcname"] = "TempInputIsActive" +<<<<<<< HEAD defs["igTempInputIsActive"][1]["location"] = "imgui_internal:3474" +======= +defs["igTempInputIsActive"][1]["location"] = "imgui_internal:3806" +>>>>>>> docking_inter defs["igTempInputIsActive"][1]["namespace"] = "ImGui" defs["igTempInputIsActive"][1]["ov_cimguiname"] = "igTempInputIsActive" defs["igTempInputIsActive"][1]["ret"] = "bool" @@ -29325,7 +36437,11 @@ defs["igTempInputScalar"][1]["defaults"] = {} defs["igTempInputScalar"][1]["defaults"]["p_clamp_max"] = "NULL" defs["igTempInputScalar"][1]["defaults"]["p_clamp_min"] = "NULL" defs["igTempInputScalar"][1]["funcname"] = "TempInputScalar" +<<<<<<< HEAD defs["igTempInputScalar"][1]["location"] = "imgui_internal:3473" +======= +defs["igTempInputScalar"][1]["location"] = "imgui_internal:3805" +>>>>>>> docking_inter defs["igTempInputScalar"][1]["namespace"] = "ImGui" defs["igTempInputScalar"][1]["ov_cimguiname"] = "igTempInputScalar" defs["igTempInputScalar"][1]["ret"] = "bool" @@ -29359,7 +36475,11 @@ defs["igTempInputText"][1]["call_args"] = "(bb,id,label,buf,buf_size,flags)" defs["igTempInputText"][1]["cimguiname"] = "igTempInputText" defs["igTempInputText"][1]["defaults"] = {} defs["igTempInputText"][1]["funcname"] = "TempInputText" +<<<<<<< HEAD defs["igTempInputText"][1]["location"] = "imgui_internal:3472" +======= +defs["igTempInputText"][1]["location"] = "imgui_internal:3804" +>>>>>>> docking_inter defs["igTempInputText"][1]["namespace"] = "ImGui" defs["igTempInputText"][1]["ov_cimguiname"] = "igTempInputText" defs["igTempInputText"][1]["ret"] = "bool" @@ -29381,7 +36501,11 @@ defs["igTestKeyOwner"][1]["call_args"] = "(key,owner_id)" defs["igTestKeyOwner"][1]["cimguiname"] = "igTestKeyOwner" defs["igTestKeyOwner"][1]["defaults"] = {} defs["igTestKeyOwner"][1]["funcname"] = "TestKeyOwner" +<<<<<<< HEAD defs["igTestKeyOwner"][1]["location"] = "imgui_internal:3246" +======= +defs["igTestKeyOwner"][1]["location"] = "imgui_internal:3520" +>>>>>>> docking_inter defs["igTestKeyOwner"][1]["namespace"] = "ImGui" defs["igTestKeyOwner"][1]["ov_cimguiname"] = "igTestKeyOwner" defs["igTestKeyOwner"][1]["ret"] = "bool" @@ -29403,7 +36527,11 @@ defs["igTestShortcutRouting"][1]["call_args"] = "(key_chord,owner_id)" defs["igTestShortcutRouting"][1]["cimguiname"] = "igTestShortcutRouting" defs["igTestShortcutRouting"][1]["defaults"] = {} defs["igTestShortcutRouting"][1]["funcname"] = "TestShortcutRouting" +<<<<<<< HEAD defs["igTestShortcutRouting"][1]["location"] = "imgui_internal:3280" +======= +defs["igTestShortcutRouting"][1]["location"] = "imgui_internal:3554" +>>>>>>> docking_inter defs["igTestShortcutRouting"][1]["namespace"] = "ImGui" defs["igTestShortcutRouting"][1]["ov_cimguiname"] = "igTestShortcutRouting" defs["igTestShortcutRouting"][1]["ret"] = "bool" @@ -29426,7 +36554,11 @@ defs["igText"][1]["cimguiname"] = "igText" defs["igText"][1]["defaults"] = {} defs["igText"][1]["funcname"] = "Text" defs["igText"][1]["isvararg"] = "...)" +<<<<<<< HEAD defs["igText"][1]["location"] = "imgui:517" +======= +defs["igText"][1]["location"] = "imgui:527" +>>>>>>> docking_inter defs["igText"][1]["namespace"] = "ImGui" defs["igText"][1]["ov_cimguiname"] = "igText" defs["igText"][1]["ret"] = "void" @@ -29452,7 +36584,11 @@ defs["igTextColored"][1]["cimguiname"] = "igTextColored" defs["igTextColored"][1]["defaults"] = {} defs["igTextColored"][1]["funcname"] = "TextColored" defs["igTextColored"][1]["isvararg"] = "...)" +<<<<<<< HEAD defs["igTextColored"][1]["location"] = "imgui:519" +======= +defs["igTextColored"][1]["location"] = "imgui:529" +>>>>>>> docking_inter defs["igTextColored"][1]["namespace"] = "ImGui" defs["igTextColored"][1]["ov_cimguiname"] = "igTextColored" defs["igTextColored"][1]["ret"] = "void" @@ -29477,7 +36613,11 @@ defs["igTextColoredV"][1]["call_args"] = "(col,fmt,args)" defs["igTextColoredV"][1]["cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["defaults"] = {} defs["igTextColoredV"][1]["funcname"] = "TextColoredV" +<<<<<<< HEAD defs["igTextColoredV"][1]["location"] = "imgui:520" +======= +defs["igTextColoredV"][1]["location"] = "imgui:530" +>>>>>>> docking_inter defs["igTextColoredV"][1]["namespace"] = "ImGui" defs["igTextColoredV"][1]["ov_cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["ret"] = "void" @@ -29500,7 +36640,11 @@ defs["igTextDisabled"][1]["cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["defaults"] = {} defs["igTextDisabled"][1]["funcname"] = "TextDisabled" defs["igTextDisabled"][1]["isvararg"] = "...)" +<<<<<<< HEAD defs["igTextDisabled"][1]["location"] = "imgui:521" +======= +defs["igTextDisabled"][1]["location"] = "imgui:531" +>>>>>>> docking_inter defs["igTextDisabled"][1]["namespace"] = "ImGui" defs["igTextDisabled"][1]["ov_cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["ret"] = "void" @@ -29522,7 +36666,11 @@ defs["igTextDisabledV"][1]["call_args"] = "(fmt,args)" defs["igTextDisabledV"][1]["cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["defaults"] = {} defs["igTextDisabledV"][1]["funcname"] = "TextDisabledV" +<<<<<<< HEAD defs["igTextDisabledV"][1]["location"] = "imgui:522" +======= +defs["igTextDisabledV"][1]["location"] = "imgui:532" +>>>>>>> docking_inter defs["igTextDisabledV"][1]["namespace"] = "ImGui" defs["igTextDisabledV"][1]["ov_cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["ret"] = "void" @@ -29549,7 +36697,11 @@ defs["igTextEx"][1]["defaults"] = {} defs["igTextEx"][1]["defaults"]["flags"] = "0" defs["igTextEx"][1]["defaults"]["text_end"] = "NULL" defs["igTextEx"][1]["funcname"] = "TextEx" +<<<<<<< HEAD defs["igTextEx"][1]["location"] = "imgui_internal:3421" +======= +defs["igTextEx"][1]["location"] = "imgui_internal:3753" +>>>>>>> docking_inter defs["igTextEx"][1]["namespace"] = "ImGui" defs["igTextEx"][1]["ov_cimguiname"] = "igTextEx" defs["igTextEx"][1]["ret"] = "void" @@ -29572,7 +36724,11 @@ defs["igTextUnformatted"][1]["cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["defaults"] = {} defs["igTextUnformatted"][1]["defaults"]["text_end"] = "NULL" defs["igTextUnformatted"][1]["funcname"] = "TextUnformatted" +<<<<<<< HEAD defs["igTextUnformatted"][1]["location"] = "imgui:516" +======= +defs["igTextUnformatted"][1]["location"] = "imgui:526" +>>>>>>> docking_inter defs["igTextUnformatted"][1]["namespace"] = "ImGui" defs["igTextUnformatted"][1]["ov_cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["ret"] = "void" @@ -29594,7 +36750,11 @@ defs["igTextV"][1]["call_args"] = "(fmt,args)" defs["igTextV"][1]["cimguiname"] = "igTextV" defs["igTextV"][1]["defaults"] = {} defs["igTextV"][1]["funcname"] = "TextV" +<<<<<<< HEAD defs["igTextV"][1]["location"] = "imgui:518" +======= +defs["igTextV"][1]["location"] = "imgui:528" +>>>>>>> docking_inter defs["igTextV"][1]["namespace"] = "ImGui" defs["igTextV"][1]["ov_cimguiname"] = "igTextV" defs["igTextV"][1]["ret"] = "void" @@ -29617,7 +36777,11 @@ defs["igTextWrapped"][1]["cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["defaults"] = {} defs["igTextWrapped"][1]["funcname"] = "TextWrapped" defs["igTextWrapped"][1]["isvararg"] = "...)" +<<<<<<< HEAD defs["igTextWrapped"][1]["location"] = "imgui:523" +======= +defs["igTextWrapped"][1]["location"] = "imgui:533" +>>>>>>> docking_inter defs["igTextWrapped"][1]["namespace"] = "ImGui" defs["igTextWrapped"][1]["ov_cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["ret"] = "void" @@ -29639,13 +36803,45 @@ defs["igTextWrappedV"][1]["call_args"] = "(fmt,args)" defs["igTextWrappedV"][1]["cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["defaults"] = {} defs["igTextWrappedV"][1]["funcname"] = "TextWrappedV" +<<<<<<< HEAD defs["igTextWrappedV"][1]["location"] = "imgui:524" +======= +defs["igTextWrappedV"][1]["location"] = "imgui:534" +>>>>>>> docking_inter defs["igTextWrappedV"][1]["namespace"] = "ImGui" defs["igTextWrappedV"][1]["ov_cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["ret"] = "void" defs["igTextWrappedV"][1]["signature"] = "(const char*,va_list)" defs["igTextWrappedV"][1]["stname"] = "" defs["igTextWrappedV"]["(const char*,va_list)"] = defs["igTextWrappedV"][1] +<<<<<<< HEAD +======= +defs["igTranslateWindowsInViewport"] = {} +defs["igTranslateWindowsInViewport"][1] = {} +defs["igTranslateWindowsInViewport"][1]["args"] = "(ImGuiViewportP* viewport,const ImVec2 old_pos,const ImVec2 new_pos)" +defs["igTranslateWindowsInViewport"][1]["argsT"] = {} +defs["igTranslateWindowsInViewport"][1]["argsT"][1] = {} +defs["igTranslateWindowsInViewport"][1]["argsT"][1]["name"] = "viewport" +defs["igTranslateWindowsInViewport"][1]["argsT"][1]["type"] = "ImGuiViewportP*" +defs["igTranslateWindowsInViewport"][1]["argsT"][2] = {} +defs["igTranslateWindowsInViewport"][1]["argsT"][2]["name"] = "old_pos" +defs["igTranslateWindowsInViewport"][1]["argsT"][2]["type"] = "const ImVec2" +defs["igTranslateWindowsInViewport"][1]["argsT"][3] = {} +defs["igTranslateWindowsInViewport"][1]["argsT"][3]["name"] = "new_pos" +defs["igTranslateWindowsInViewport"][1]["argsT"][3]["type"] = "const ImVec2" +defs["igTranslateWindowsInViewport"][1]["argsoriginal"] = "(ImGuiViewportP* viewport,const ImVec2& old_pos,const ImVec2& new_pos)" +defs["igTranslateWindowsInViewport"][1]["call_args"] = "(viewport,old_pos,new_pos)" +defs["igTranslateWindowsInViewport"][1]["cimguiname"] = "igTranslateWindowsInViewport" +defs["igTranslateWindowsInViewport"][1]["defaults"] = {} +defs["igTranslateWindowsInViewport"][1]["funcname"] = "TranslateWindowsInViewport" +defs["igTranslateWindowsInViewport"][1]["location"] = "imgui_internal:3332" +defs["igTranslateWindowsInViewport"][1]["namespace"] = "ImGui" +defs["igTranslateWindowsInViewport"][1]["ov_cimguiname"] = "igTranslateWindowsInViewport" +defs["igTranslateWindowsInViewport"][1]["ret"] = "void" +defs["igTranslateWindowsInViewport"][1]["signature"] = "(ImGuiViewportP*,const ImVec2,const ImVec2)" +defs["igTranslateWindowsInViewport"][1]["stname"] = "" +defs["igTranslateWindowsInViewport"]["(ImGuiViewportP*,const ImVec2,const ImVec2)"] = defs["igTranslateWindowsInViewport"][1] +>>>>>>> docking_inter defs["igTreeNode"] = {} defs["igTreeNode"][1] = {} defs["igTreeNode"][1]["args"] = "(const char* label)" @@ -29658,7 +36854,11 @@ defs["igTreeNode"][1]["call_args"] = "(label)" defs["igTreeNode"][1]["cimguiname"] = "igTreeNode" defs["igTreeNode"][1]["defaults"] = {} defs["igTreeNode"][1]["funcname"] = "TreeNode" +<<<<<<< HEAD defs["igTreeNode"][1]["location"] = "imgui:638" +======= +defs["igTreeNode"][1]["location"] = "imgui:648" +>>>>>>> docking_inter defs["igTreeNode"][1]["namespace"] = "ImGui" defs["igTreeNode"][1]["ov_cimguiname"] = "igTreeNode_Str" defs["igTreeNode"][1]["ret"] = "bool" @@ -29682,7 +36882,11 @@ defs["igTreeNode"][2]["cimguiname"] = "igTreeNode" defs["igTreeNode"][2]["defaults"] = {} defs["igTreeNode"][2]["funcname"] = "TreeNode" defs["igTreeNode"][2]["isvararg"] = "...)" +<<<<<<< HEAD defs["igTreeNode"][2]["location"] = "imgui:639" +======= +defs["igTreeNode"][2]["location"] = "imgui:649" +>>>>>>> docking_inter defs["igTreeNode"][2]["namespace"] = "ImGui" defs["igTreeNode"][2]["ov_cimguiname"] = "igTreeNode_StrStr" defs["igTreeNode"][2]["ret"] = "bool" @@ -29706,7 +36910,11 @@ defs["igTreeNode"][3]["cimguiname"] = "igTreeNode" defs["igTreeNode"][3]["defaults"] = {} defs["igTreeNode"][3]["funcname"] = "TreeNode" defs["igTreeNode"][3]["isvararg"] = "...)" +<<<<<<< HEAD defs["igTreeNode"][3]["location"] = "imgui:640" +======= +defs["igTreeNode"][3]["location"] = "imgui:650" +>>>>>>> docking_inter defs["igTreeNode"][3]["namespace"] = "ImGui" defs["igTreeNode"][3]["ov_cimguiname"] = "igTreeNode_Ptr" defs["igTreeNode"][3]["ret"] = "bool" @@ -29737,7 +36945,11 @@ defs["igTreeNodeBehavior"][1]["cimguiname"] = "igTreeNodeBehavior" defs["igTreeNodeBehavior"][1]["defaults"] = {} defs["igTreeNodeBehavior"][1]["defaults"]["label_end"] = "NULL" defs["igTreeNodeBehavior"][1]["funcname"] = "TreeNodeBehavior" +<<<<<<< HEAD defs["igTreeNodeBehavior"][1]["location"] = "imgui_internal:3445" +======= +defs["igTreeNodeBehavior"][1]["location"] = "imgui_internal:3777" +>>>>>>> docking_inter defs["igTreeNodeBehavior"][1]["namespace"] = "ImGui" defs["igTreeNodeBehavior"][1]["ov_cimguiname"] = "igTreeNodeBehavior" defs["igTreeNodeBehavior"][1]["ret"] = "bool" @@ -29760,7 +36972,11 @@ defs["igTreeNodeEx"][1]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][1]["defaults"] = {} defs["igTreeNodeEx"][1]["defaults"]["flags"] = "0" defs["igTreeNodeEx"][1]["funcname"] = "TreeNodeEx" +<<<<<<< HEAD defs["igTreeNodeEx"][1]["location"] = "imgui:643" +======= +defs["igTreeNodeEx"][1]["location"] = "imgui:653" +>>>>>>> docking_inter defs["igTreeNodeEx"][1]["namespace"] = "ImGui" defs["igTreeNodeEx"][1]["ov_cimguiname"] = "igTreeNodeEx_Str" defs["igTreeNodeEx"][1]["ret"] = "bool" @@ -29787,7 +37003,11 @@ defs["igTreeNodeEx"][2]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][2]["defaults"] = {} defs["igTreeNodeEx"][2]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][2]["isvararg"] = "...)" +<<<<<<< HEAD defs["igTreeNodeEx"][2]["location"] = "imgui:644" +======= +defs["igTreeNodeEx"][2]["location"] = "imgui:654" +>>>>>>> docking_inter defs["igTreeNodeEx"][2]["namespace"] = "ImGui" defs["igTreeNodeEx"][2]["ov_cimguiname"] = "igTreeNodeEx_StrStr" defs["igTreeNodeEx"][2]["ret"] = "bool" @@ -29814,7 +37034,11 @@ defs["igTreeNodeEx"][3]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][3]["defaults"] = {} defs["igTreeNodeEx"][3]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][3]["isvararg"] = "...)" +<<<<<<< HEAD defs["igTreeNodeEx"][3]["location"] = "imgui:645" +======= +defs["igTreeNodeEx"][3]["location"] = "imgui:655" +>>>>>>> docking_inter defs["igTreeNodeEx"][3]["namespace"] = "ImGui" defs["igTreeNodeEx"][3]["ov_cimguiname"] = "igTreeNodeEx_Ptr" defs["igTreeNodeEx"][3]["ret"] = "bool" @@ -29844,7 +37068,11 @@ defs["igTreeNodeExV"][1]["call_args"] = "(str_id,flags,fmt,args)" defs["igTreeNodeExV"][1]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][1]["defaults"] = {} defs["igTreeNodeExV"][1]["funcname"] = "TreeNodeExV" +<<<<<<< HEAD defs["igTreeNodeExV"][1]["location"] = "imgui:646" +======= +defs["igTreeNodeExV"][1]["location"] = "imgui:656" +>>>>>>> docking_inter defs["igTreeNodeExV"][1]["namespace"] = "ImGui" defs["igTreeNodeExV"][1]["ov_cimguiname"] = "igTreeNodeExV_Str" defs["igTreeNodeExV"][1]["ret"] = "bool" @@ -29870,7 +37098,11 @@ defs["igTreeNodeExV"][2]["call_args"] = "(ptr_id,flags,fmt,args)" defs["igTreeNodeExV"][2]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][2]["defaults"] = {} defs["igTreeNodeExV"][2]["funcname"] = "TreeNodeExV" +<<<<<<< HEAD defs["igTreeNodeExV"][2]["location"] = "imgui:647" +======= +defs["igTreeNodeExV"][2]["location"] = "imgui:657" +>>>>>>> docking_inter defs["igTreeNodeExV"][2]["namespace"] = "ImGui" defs["igTreeNodeExV"][2]["ov_cimguiname"] = "igTreeNodeExV_Ptr" defs["igTreeNodeExV"][2]["ret"] = "bool" @@ -29893,7 +37125,11 @@ defs["igTreeNodeSetOpen"][1]["call_args"] = "(id,open)" defs["igTreeNodeSetOpen"][1]["cimguiname"] = "igTreeNodeSetOpen" defs["igTreeNodeSetOpen"][1]["defaults"] = {} defs["igTreeNodeSetOpen"][1]["funcname"] = "TreeNodeSetOpen" +<<<<<<< HEAD defs["igTreeNodeSetOpen"][1]["location"] = "imgui_internal:3447" +======= +defs["igTreeNodeSetOpen"][1]["location"] = "imgui_internal:3779" +>>>>>>> docking_inter defs["igTreeNodeSetOpen"][1]["namespace"] = "ImGui" defs["igTreeNodeSetOpen"][1]["ov_cimguiname"] = "igTreeNodeSetOpen" defs["igTreeNodeSetOpen"][1]["ret"] = "void" @@ -29915,7 +37151,11 @@ defs["igTreeNodeUpdateNextOpen"][1]["call_args"] = "(id,flags)" defs["igTreeNodeUpdateNextOpen"][1]["cimguiname"] = "igTreeNodeUpdateNextOpen" defs["igTreeNodeUpdateNextOpen"][1]["defaults"] = {} defs["igTreeNodeUpdateNextOpen"][1]["funcname"] = "TreeNodeUpdateNextOpen" +<<<<<<< HEAD defs["igTreeNodeUpdateNextOpen"][1]["location"] = "imgui_internal:3448" +======= +defs["igTreeNodeUpdateNextOpen"][1]["location"] = "imgui_internal:3780" +>>>>>>> docking_inter defs["igTreeNodeUpdateNextOpen"][1]["namespace"] = "ImGui" defs["igTreeNodeUpdateNextOpen"][1]["ov_cimguiname"] = "igTreeNodeUpdateNextOpen" defs["igTreeNodeUpdateNextOpen"][1]["ret"] = "bool" @@ -29940,7 +37180,11 @@ defs["igTreeNodeV"][1]["call_args"] = "(str_id,fmt,args)" defs["igTreeNodeV"][1]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][1]["defaults"] = {} defs["igTreeNodeV"][1]["funcname"] = "TreeNodeV" +<<<<<<< HEAD defs["igTreeNodeV"][1]["location"] = "imgui:641" +======= +defs["igTreeNodeV"][1]["location"] = "imgui:651" +>>>>>>> docking_inter defs["igTreeNodeV"][1]["namespace"] = "ImGui" defs["igTreeNodeV"][1]["ov_cimguiname"] = "igTreeNodeV_Str" defs["igTreeNodeV"][1]["ret"] = "bool" @@ -29963,7 +37207,11 @@ defs["igTreeNodeV"][2]["call_args"] = "(ptr_id,fmt,args)" defs["igTreeNodeV"][2]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][2]["defaults"] = {} defs["igTreeNodeV"][2]["funcname"] = "TreeNodeV" +<<<<<<< HEAD defs["igTreeNodeV"][2]["location"] = "imgui:642" +======= +defs["igTreeNodeV"][2]["location"] = "imgui:652" +>>>>>>> docking_inter defs["igTreeNodeV"][2]["namespace"] = "ImGui" defs["igTreeNodeV"][2]["ov_cimguiname"] = "igTreeNodeV_Ptr" defs["igTreeNodeV"][2]["ret"] = "bool" @@ -29980,7 +37228,11 @@ defs["igTreePop"][1]["call_args"] = "()" defs["igTreePop"][1]["cimguiname"] = "igTreePop" defs["igTreePop"][1]["defaults"] = {} defs["igTreePop"][1]["funcname"] = "TreePop" +<<<<<<< HEAD defs["igTreePop"][1]["location"] = "imgui:650" +======= +defs["igTreePop"][1]["location"] = "imgui:660" +>>>>>>> docking_inter defs["igTreePop"][1]["namespace"] = "ImGui" defs["igTreePop"][1]["ov_cimguiname"] = "igTreePop" defs["igTreePop"][1]["ret"] = "void" @@ -29999,7 +37251,11 @@ defs["igTreePush"][1]["call_args"] = "(str_id)" defs["igTreePush"][1]["cimguiname"] = "igTreePush" defs["igTreePush"][1]["defaults"] = {} defs["igTreePush"][1]["funcname"] = "TreePush" +<<<<<<< HEAD defs["igTreePush"][1]["location"] = "imgui:648" +======= +defs["igTreePush"][1]["location"] = "imgui:658" +>>>>>>> docking_inter defs["igTreePush"][1]["namespace"] = "ImGui" defs["igTreePush"][1]["ov_cimguiname"] = "igTreePush_Str" defs["igTreePush"][1]["ret"] = "void" @@ -30016,7 +37272,11 @@ defs["igTreePush"][2]["call_args"] = "(ptr_id)" defs["igTreePush"][2]["cimguiname"] = "igTreePush" defs["igTreePush"][2]["defaults"] = {} defs["igTreePush"][2]["funcname"] = "TreePush" +<<<<<<< HEAD defs["igTreePush"][2]["location"] = "imgui:649" +======= +defs["igTreePush"][2]["location"] = "imgui:659" +>>>>>>> docking_inter defs["igTreePush"][2]["namespace"] = "ImGui" defs["igTreePush"][2]["ov_cimguiname"] = "igTreePush_Ptr" defs["igTreePush"][2]["ret"] = "void" @@ -30036,7 +37296,11 @@ defs["igTreePushOverrideID"][1]["call_args"] = "(id)" defs["igTreePushOverrideID"][1]["cimguiname"] = "igTreePushOverrideID" defs["igTreePushOverrideID"][1]["defaults"] = {} defs["igTreePushOverrideID"][1]["funcname"] = "TreePushOverrideID" +<<<<<<< HEAD defs["igTreePushOverrideID"][1]["location"] = "imgui_internal:3446" +======= +defs["igTreePushOverrideID"][1]["location"] = "imgui_internal:3778" +>>>>>>> docking_inter defs["igTreePushOverrideID"][1]["namespace"] = "ImGui" defs["igTreePushOverrideID"][1]["ov_cimguiname"] = "igTreePushOverrideID" defs["igTreePushOverrideID"][1]["ret"] = "void" @@ -30066,7 +37330,11 @@ defs["igTypingSelectFindBestLeadingMatch"][1]["call_args"] = "(req,items_count,g defs["igTypingSelectFindBestLeadingMatch"][1]["cimguiname"] = "igTypingSelectFindBestLeadingMatch" defs["igTypingSelectFindBestLeadingMatch"][1]["defaults"] = {} defs["igTypingSelectFindBestLeadingMatch"][1]["funcname"] = "TypingSelectFindBestLeadingMatch" +<<<<<<< HEAD defs["igTypingSelectFindBestLeadingMatch"][1]["location"] = "imgui_internal:3306" +======= +defs["igTypingSelectFindBestLeadingMatch"][1]["location"] = "imgui_internal:3635" +>>>>>>> docking_inter defs["igTypingSelectFindBestLeadingMatch"][1]["namespace"] = "ImGui" defs["igTypingSelectFindBestLeadingMatch"][1]["ov_cimguiname"] = "igTypingSelectFindBestLeadingMatch" defs["igTypingSelectFindBestLeadingMatch"][1]["ret"] = "int" @@ -30099,7 +37367,11 @@ defs["igTypingSelectFindMatch"][1]["call_args"] = "(req,items_count,get_item_nam defs["igTypingSelectFindMatch"][1]["cimguiname"] = "igTypingSelectFindMatch" defs["igTypingSelectFindMatch"][1]["defaults"] = {} defs["igTypingSelectFindMatch"][1]["funcname"] = "TypingSelectFindMatch" +<<<<<<< HEAD defs["igTypingSelectFindMatch"][1]["location"] = "imgui_internal:3304" +======= +defs["igTypingSelectFindMatch"][1]["location"] = "imgui_internal:3633" +>>>>>>> docking_inter defs["igTypingSelectFindMatch"][1]["namespace"] = "ImGui" defs["igTypingSelectFindMatch"][1]["ov_cimguiname"] = "igTypingSelectFindMatch" defs["igTypingSelectFindMatch"][1]["ret"] = "int" @@ -30132,7 +37404,11 @@ defs["igTypingSelectFindNextSingleCharMatch"][1]["call_args"] = "(req,items_coun defs["igTypingSelectFindNextSingleCharMatch"][1]["cimguiname"] = "igTypingSelectFindNextSingleCharMatch" defs["igTypingSelectFindNextSingleCharMatch"][1]["defaults"] = {} defs["igTypingSelectFindNextSingleCharMatch"][1]["funcname"] = "TypingSelectFindNextSingleCharMatch" +<<<<<<< HEAD defs["igTypingSelectFindNextSingleCharMatch"][1]["location"] = "imgui_internal:3305" +======= +defs["igTypingSelectFindNextSingleCharMatch"][1]["location"] = "imgui_internal:3634" +>>>>>>> docking_inter defs["igTypingSelectFindNextSingleCharMatch"][1]["namespace"] = "ImGui" defs["igTypingSelectFindNextSingleCharMatch"][1]["ov_cimguiname"] = "igTypingSelectFindNextSingleCharMatch" defs["igTypingSelectFindNextSingleCharMatch"][1]["ret"] = "int" @@ -30152,7 +37428,11 @@ defs["igUnindent"][1]["cimguiname"] = "igUnindent" defs["igUnindent"][1]["defaults"] = {} defs["igUnindent"][1]["defaults"]["indent_w"] = "0.0f" defs["igUnindent"][1]["funcname"] = "Unindent" +<<<<<<< HEAD defs["igUnindent"][1]["location"] = "imgui:486" +======= +defs["igUnindent"][1]["location"] = "imgui:496" +>>>>>>> docking_inter defs["igUnindent"][1]["namespace"] = "ImGui" defs["igUnindent"][1]["ov_cimguiname"] = "igUnindent" defs["igUnindent"][1]["ret"] = "void" @@ -30168,7 +37448,11 @@ defs["igUpdateHoveredWindowAndCaptureFlags"][1]["call_args"] = "()" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["cimguiname"] = "igUpdateHoveredWindowAndCaptureFlags" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["defaults"] = {} defs["igUpdateHoveredWindowAndCaptureFlags"][1]["funcname"] = "UpdateHoveredWindowAndCaptureFlags" +<<<<<<< HEAD defs["igUpdateHoveredWindowAndCaptureFlags"][1]["location"] = "imgui_internal:3056" +======= +defs["igUpdateHoveredWindowAndCaptureFlags"][1]["location"] = "imgui_internal:3319" +>>>>>>> docking_inter defs["igUpdateHoveredWindowAndCaptureFlags"][1]["namespace"] = "ImGui" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ov_cimguiname"] = "igUpdateHoveredWindowAndCaptureFlags" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ret"] = "void" @@ -30187,7 +37471,11 @@ defs["igUpdateInputEvents"][1]["call_args"] = "(trickle_fast_inputs)" defs["igUpdateInputEvents"][1]["cimguiname"] = "igUpdateInputEvents" defs["igUpdateInputEvents"][1]["defaults"] = {} defs["igUpdateInputEvents"][1]["funcname"] = "UpdateInputEvents" +<<<<<<< HEAD defs["igUpdateInputEvents"][1]["location"] = "imgui_internal:3055" +======= +defs["igUpdateInputEvents"][1]["location"] = "imgui_internal:3318" +>>>>>>> docking_inter defs["igUpdateInputEvents"][1]["namespace"] = "ImGui" defs["igUpdateInputEvents"][1]["ov_cimguiname"] = "igUpdateInputEvents" defs["igUpdateInputEvents"][1]["ret"] = "void" @@ -30203,7 +37491,11 @@ defs["igUpdateMouseMovingWindowEndFrame"][1]["call_args"] = "()" defs["igUpdateMouseMovingWindowEndFrame"][1]["cimguiname"] = "igUpdateMouseMovingWindowEndFrame" defs["igUpdateMouseMovingWindowEndFrame"][1]["defaults"] = {} defs["igUpdateMouseMovingWindowEndFrame"][1]["funcname"] = "UpdateMouseMovingWindowEndFrame" +<<<<<<< HEAD defs["igUpdateMouseMovingWindowEndFrame"][1]["location"] = "imgui_internal:3060" +======= +defs["igUpdateMouseMovingWindowEndFrame"][1]["location"] = "imgui_internal:3324" +>>>>>>> docking_inter defs["igUpdateMouseMovingWindowEndFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowEndFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowEndFrame" defs["igUpdateMouseMovingWindowEndFrame"][1]["ret"] = "void" @@ -30219,13 +37511,36 @@ defs["igUpdateMouseMovingWindowNewFrame"][1]["call_args"] = "()" defs["igUpdateMouseMovingWindowNewFrame"][1]["cimguiname"] = "igUpdateMouseMovingWindowNewFrame" defs["igUpdateMouseMovingWindowNewFrame"][1]["defaults"] = {} defs["igUpdateMouseMovingWindowNewFrame"][1]["funcname"] = "UpdateMouseMovingWindowNewFrame" +<<<<<<< HEAD defs["igUpdateMouseMovingWindowNewFrame"][1]["location"] = "imgui_internal:3059" +======= +defs["igUpdateMouseMovingWindowNewFrame"][1]["location"] = "imgui_internal:3323" +>>>>>>> docking_inter defs["igUpdateMouseMovingWindowNewFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowNewFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowNewFrame" defs["igUpdateMouseMovingWindowNewFrame"][1]["ret"] = "void" defs["igUpdateMouseMovingWindowNewFrame"][1]["signature"] = "()" defs["igUpdateMouseMovingWindowNewFrame"][1]["stname"] = "" defs["igUpdateMouseMovingWindowNewFrame"]["()"] = defs["igUpdateMouseMovingWindowNewFrame"][1] +<<<<<<< HEAD +======= +defs["igUpdatePlatformWindows"] = {} +defs["igUpdatePlatformWindows"][1] = {} +defs["igUpdatePlatformWindows"][1]["args"] = "()" +defs["igUpdatePlatformWindows"][1]["argsT"] = {} +defs["igUpdatePlatformWindows"][1]["argsoriginal"] = "()" +defs["igUpdatePlatformWindows"][1]["call_args"] = "()" +defs["igUpdatePlatformWindows"][1]["cimguiname"] = "igUpdatePlatformWindows" +defs["igUpdatePlatformWindows"][1]["defaults"] = {} +defs["igUpdatePlatformWindows"][1]["funcname"] = "UpdatePlatformWindows" +defs["igUpdatePlatformWindows"][1]["location"] = "imgui:1047" +defs["igUpdatePlatformWindows"][1]["namespace"] = "ImGui" +defs["igUpdatePlatformWindows"][1]["ov_cimguiname"] = "igUpdatePlatformWindows" +defs["igUpdatePlatformWindows"][1]["ret"] = "void" +defs["igUpdatePlatformWindows"][1]["signature"] = "()" +defs["igUpdatePlatformWindows"][1]["stname"] = "" +defs["igUpdatePlatformWindows"]["()"] = defs["igUpdatePlatformWindows"][1] +>>>>>>> docking_inter defs["igUpdateWindowParentAndRootLinks"] = {} defs["igUpdateWindowParentAndRootLinks"][1] = {} defs["igUpdateWindowParentAndRootLinks"][1]["args"] = "(ImGuiWindow* window,ImGuiWindowFlags flags,ImGuiWindow* parent_window)" @@ -30244,7 +37559,11 @@ defs["igUpdateWindowParentAndRootLinks"][1]["call_args"] = "(window,flags,parent defs["igUpdateWindowParentAndRootLinks"][1]["cimguiname"] = "igUpdateWindowParentAndRootLinks" defs["igUpdateWindowParentAndRootLinks"][1]["defaults"] = {} defs["igUpdateWindowParentAndRootLinks"][1]["funcname"] = "UpdateWindowParentAndRootLinks" +<<<<<<< HEAD defs["igUpdateWindowParentAndRootLinks"][1]["location"] = "imgui_internal:3012" +======= +defs["igUpdateWindowParentAndRootLinks"][1]["location"] = "imgui_internal:3277" +>>>>>>> docking_inter defs["igUpdateWindowParentAndRootLinks"][1]["namespace"] = "ImGui" defs["igUpdateWindowParentAndRootLinks"][1]["ov_cimguiname"] = "igUpdateWindowParentAndRootLinks" defs["igUpdateWindowParentAndRootLinks"][1]["ret"] = "void" @@ -30263,7 +37582,11 @@ defs["igUpdateWindowSkipRefresh"][1]["call_args"] = "(window)" defs["igUpdateWindowSkipRefresh"][1]["cimguiname"] = "igUpdateWindowSkipRefresh" defs["igUpdateWindowSkipRefresh"][1]["defaults"] = {} defs["igUpdateWindowSkipRefresh"][1]["funcname"] = "UpdateWindowSkipRefresh" +<<<<<<< HEAD defs["igUpdateWindowSkipRefresh"][1]["location"] = "imgui_internal:3013" +======= +defs["igUpdateWindowSkipRefresh"][1]["location"] = "imgui_internal:3278" +>>>>>>> docking_inter defs["igUpdateWindowSkipRefresh"][1]["namespace"] = "ImGui" defs["igUpdateWindowSkipRefresh"][1]["ov_cimguiname"] = "igUpdateWindowSkipRefresh" defs["igUpdateWindowSkipRefresh"][1]["ret"] = "void" @@ -30302,7 +37625,11 @@ defs["igVSliderFloat"][1]["defaults"] = {} defs["igVSliderFloat"][1]["defaults"]["flags"] = "0" defs["igVSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igVSliderFloat"][1]["funcname"] = "VSliderFloat" +<<<<<<< HEAD defs["igVSliderFloat"][1]["location"] = "imgui:604" +======= +defs["igVSliderFloat"][1]["location"] = "imgui:614" +>>>>>>> docking_inter defs["igVSliderFloat"][1]["namespace"] = "ImGui" defs["igVSliderFloat"][1]["ov_cimguiname"] = "igVSliderFloat" defs["igVSliderFloat"][1]["ret"] = "bool" @@ -30341,7 +37668,11 @@ defs["igVSliderInt"][1]["defaults"] = {} defs["igVSliderInt"][1]["defaults"]["flags"] = "0" defs["igVSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igVSliderInt"][1]["funcname"] = "VSliderInt" +<<<<<<< HEAD defs["igVSliderInt"][1]["location"] = "imgui:605" +======= +defs["igVSliderInt"][1]["location"] = "imgui:615" +>>>>>>> docking_inter defs["igVSliderInt"][1]["namespace"] = "ImGui" defs["igVSliderInt"][1]["ov_cimguiname"] = "igVSliderInt" defs["igVSliderInt"][1]["ret"] = "bool" @@ -30383,7 +37714,11 @@ defs["igVSliderScalar"][1]["defaults"] = {} defs["igVSliderScalar"][1]["defaults"]["flags"] = "0" defs["igVSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igVSliderScalar"][1]["funcname"] = "VSliderScalar" +<<<<<<< HEAD defs["igVSliderScalar"][1]["location"] = "imgui:606" +======= +defs["igVSliderScalar"][1]["location"] = "imgui:616" +>>>>>>> docking_inter defs["igVSliderScalar"][1]["namespace"] = "ImGui" defs["igVSliderScalar"][1]["ov_cimguiname"] = "igVSliderScalar" defs["igVSliderScalar"][1]["ret"] = "bool" @@ -30405,7 +37740,11 @@ defs["igValue"][1]["call_args"] = "(prefix,b)" defs["igValue"][1]["cimguiname"] = "igValue" defs["igValue"][1]["defaults"] = {} defs["igValue"][1]["funcname"] = "Value" +<<<<<<< HEAD defs["igValue"][1]["location"] = "imgui:682" +======= +defs["igValue"][1]["location"] = "imgui:692" +>>>>>>> docking_inter defs["igValue"][1]["namespace"] = "ImGui" defs["igValue"][1]["ov_cimguiname"] = "igValue_Bool" defs["igValue"][1]["ret"] = "void" @@ -30425,7 +37764,11 @@ defs["igValue"][2]["call_args"] = "(prefix,v)" defs["igValue"][2]["cimguiname"] = "igValue" defs["igValue"][2]["defaults"] = {} defs["igValue"][2]["funcname"] = "Value" +<<<<<<< HEAD defs["igValue"][2]["location"] = "imgui:683" +======= +defs["igValue"][2]["location"] = "imgui:693" +>>>>>>> docking_inter defs["igValue"][2]["namespace"] = "ImGui" defs["igValue"][2]["ov_cimguiname"] = "igValue_Int" defs["igValue"][2]["ret"] = "void" @@ -30445,7 +37788,11 @@ defs["igValue"][3]["call_args"] = "(prefix,v)" defs["igValue"][3]["cimguiname"] = "igValue" defs["igValue"][3]["defaults"] = {} defs["igValue"][3]["funcname"] = "Value" +<<<<<<< HEAD defs["igValue"][3]["location"] = "imgui:684" +======= +defs["igValue"][3]["location"] = "imgui:694" +>>>>>>> docking_inter defs["igValue"][3]["namespace"] = "ImGui" defs["igValue"][3]["ov_cimguiname"] = "igValue_Uint" defs["igValue"][3]["ret"] = "void" @@ -30469,7 +37816,11 @@ defs["igValue"][4]["cimguiname"] = "igValue" defs["igValue"][4]["defaults"] = {} defs["igValue"][4]["defaults"]["float_format"] = "NULL" defs["igValue"][4]["funcname"] = "Value" +<<<<<<< HEAD defs["igValue"][4]["location"] = "imgui:685" +======= +defs["igValue"][4]["location"] = "imgui:695" +>>>>>>> docking_inter defs["igValue"][4]["namespace"] = "ImGui" defs["igValue"][4]["ov_cimguiname"] = "igValue_Float" defs["igValue"][4]["ret"] = "void" @@ -30497,7 +37848,11 @@ defs["igWindowPosRelToAbs"][1]["call_args"] = "(window,p)" defs["igWindowPosRelToAbs"][1]["cimguiname"] = "igWindowPosRelToAbs" defs["igWindowPosRelToAbs"][1]["defaults"] = {} defs["igWindowPosRelToAbs"][1]["funcname"] = "WindowPosRelToAbs" +<<<<<<< HEAD defs["igWindowPosRelToAbs"][1]["location"] = "imgui_internal:3027" +======= +defs["igWindowPosRelToAbs"][1]["location"] = "imgui_internal:3292" +>>>>>>> docking_inter defs["igWindowPosRelToAbs"][1]["namespace"] = "ImGui" defs["igWindowPosRelToAbs"][1]["nonUDT"] = 1 defs["igWindowPosRelToAbs"][1]["ov_cimguiname"] = "igWindowPosRelToAbs" @@ -30523,7 +37878,11 @@ defs["igWindowRectAbsToRel"][1]["call_args"] = "(window,r)" defs["igWindowRectAbsToRel"][1]["cimguiname"] = "igWindowRectAbsToRel" defs["igWindowRectAbsToRel"][1]["defaults"] = {} defs["igWindowRectAbsToRel"][1]["funcname"] = "WindowRectAbsToRel" +<<<<<<< HEAD defs["igWindowRectAbsToRel"][1]["location"] = "imgui_internal:3025" +======= +defs["igWindowRectAbsToRel"][1]["location"] = "imgui_internal:3290" +>>>>>>> docking_inter defs["igWindowRectAbsToRel"][1]["namespace"] = "ImGui" defs["igWindowRectAbsToRel"][1]["nonUDT"] = 1 defs["igWindowRectAbsToRel"][1]["ov_cimguiname"] = "igWindowRectAbsToRel" @@ -30549,7 +37908,11 @@ defs["igWindowRectRelToAbs"][1]["call_args"] = "(window,r)" defs["igWindowRectRelToAbs"][1]["cimguiname"] = "igWindowRectRelToAbs" defs["igWindowRectRelToAbs"][1]["defaults"] = {} defs["igWindowRectRelToAbs"][1]["funcname"] = "WindowRectRelToAbs" +<<<<<<< HEAD defs["igWindowRectRelToAbs"][1]["location"] = "imgui_internal:3026" +======= +defs["igWindowRectRelToAbs"][1]["location"] = "imgui_internal:3291" +>>>>>>> docking_inter defs["igWindowRectRelToAbs"][1]["namespace"] = "ImGui" defs["igWindowRectRelToAbs"][1]["nonUDT"] = 1 defs["igWindowRectRelToAbs"][1]["ov_cimguiname"] = "igWindowRectRelToAbs" diff --git a/generator/output/overloads.txt b/generator/output/overloads.txt index 3d2bc87..91fc859 100644 --- a/generator/output/overloads.txt +++ b/generator/output/overloads.txt @@ -108,17 +108,20 @@ igCombo 3 1 bool igCombo_Str_arr (const char*,int*,const char* const[],int,int) 2 bool igCombo_Str (const char*,int*,const char*,int) 3 bool igCombo_FnStrPtr (const char*,int*,const char*(*)(void*,int),void*,int,int) -igGetBackgroundDrawList 2 -1 ImDrawList* igGetBackgroundDrawList_Nil () -2 ImDrawList* igGetBackgroundDrawList_ViewportPtr (ImGuiViewport*) igGetColorU32 3 1 ImU32 igGetColorU32_Col (ImGuiCol,float) 2 ImU32 igGetColorU32_Vec4 (const ImVec4) 3 ImU32 igGetColorU32_U32 (ImU32,float) +<<<<<<< HEAD igGetForegroundDrawList 3 1 ImDrawList* igGetForegroundDrawList_Nil () 2 ImDrawList* igGetForegroundDrawList_WindowPtr (ImGuiWindow*) 3 ImDrawList* igGetForegroundDrawList_ViewportPtr (ImGuiViewport*) +======= +igGetForegroundDrawList 2 +1 ImDrawList* igGetForegroundDrawList_ViewportPtr (ImGuiViewport*) +2 ImDrawList* igGetForegroundDrawList_WindowPtr (ImGuiWindow*) +>>>>>>> docking_inter igGetID 3 1 ImGuiID igGetID_Str (const char*) 2 ImGuiID igGetID_StrStr (const char*,const char*) @@ -290,4 +293,4 @@ igValue 4 2 void igValue_Int (const char*,int) 3 void igValue_Uint (const char*,unsigned int) 4 void igValue_Float (const char*,float,const char*) -203 overloaded \ No newline at end of file +200 overloaded \ No newline at end of file diff --git a/generator/output/structs_and_enums.json b/generator/output/structs_and_enums.json index 3ea85de..6db9967 100644 --- a/generator/output/structs_and_enums.json +++ b/generator/output/structs_and_enums.json @@ -366,6 +366,11 @@ "calc_value": 128, "name": "ImGuiChildFlags_FrameStyle", "value": "1 << 7" + }, + { + "calc_value": 256, + "name": "ImGuiChildFlags_NavFlattened", + "value": "1 << 8" } ], "ImGuiCol_": [ @@ -536,108 +541,193 @@ }, { "calc_value": 33, - "name": "ImGuiCol_Tab", + "name": "ImGuiCol_TabHovered", "value": "33" }, { "calc_value": 34, - "name": "ImGuiCol_TabHovered", + "name": "ImGuiCol_Tab", "value": "34" }, { "calc_value": 35, - "name": "ImGuiCol_TabActive", + "name": "ImGuiCol_TabSelected", "value": "35" }, { "calc_value": 36, - "name": "ImGuiCol_TabUnfocused", + "name": "ImGuiCol_TabSelectedOverline", "value": "36" }, { "calc_value": 37, - "name": "ImGuiCol_TabUnfocusedActive", + "name": "ImGuiCol_TabDimmed", "value": "37" }, { "calc_value": 38, +<<<<<<< HEAD "name": "ImGuiCol_PlotLines", +======= + "name": "ImGuiCol_TabDimmedSelected", +>>>>>>> docking_inter "value": "38" }, { "calc_value": 39, +<<<<<<< HEAD "name": "ImGuiCol_PlotLinesHovered", +======= + "name": "ImGuiCol_TabDimmedSelectedOverline", +>>>>>>> docking_inter "value": "39" }, { "calc_value": 40, +<<<<<<< HEAD "name": "ImGuiCol_PlotHistogram", +======= + "name": "ImGuiCol_DockingPreview", +>>>>>>> docking_inter "value": "40" }, { "calc_value": 41, +<<<<<<< HEAD "name": "ImGuiCol_PlotHistogramHovered", +======= + "name": "ImGuiCol_DockingEmptyBg", +>>>>>>> docking_inter "value": "41" }, { "calc_value": 42, +<<<<<<< HEAD "name": "ImGuiCol_TableHeaderBg", +======= + "name": "ImGuiCol_PlotLines", +>>>>>>> docking_inter "value": "42" }, { "calc_value": 43, +<<<<<<< HEAD "name": "ImGuiCol_TableBorderStrong", +======= + "name": "ImGuiCol_PlotLinesHovered", +>>>>>>> docking_inter "value": "43" }, { "calc_value": 44, +<<<<<<< HEAD "name": "ImGuiCol_TableBorderLight", +======= + "name": "ImGuiCol_PlotHistogram", +>>>>>>> docking_inter "value": "44" }, { "calc_value": 45, +<<<<<<< HEAD "name": "ImGuiCol_TableRowBg", +======= + "name": "ImGuiCol_PlotHistogramHovered", +>>>>>>> docking_inter "value": "45" }, { "calc_value": 46, +<<<<<<< HEAD "name": "ImGuiCol_TableRowBgAlt", +======= + "name": "ImGuiCol_TableHeaderBg", +>>>>>>> docking_inter "value": "46" }, { "calc_value": 47, +<<<<<<< HEAD "name": "ImGuiCol_TextSelectedBg", +======= + "name": "ImGuiCol_TableBorderStrong", +>>>>>>> docking_inter "value": "47" }, { "calc_value": 48, +<<<<<<< HEAD "name": "ImGuiCol_DragDropTarget", +======= + "name": "ImGuiCol_TableBorderLight", +>>>>>>> docking_inter "value": "48" }, { "calc_value": 49, +<<<<<<< HEAD "name": "ImGuiCol_NavHighlight", +======= + "name": "ImGuiCol_TableRowBg", +>>>>>>> docking_inter "value": "49" }, { "calc_value": 50, +<<<<<<< HEAD "name": "ImGuiCol_NavWindowingHighlight", +======= + "name": "ImGuiCol_TableRowBgAlt", +>>>>>>> docking_inter "value": "50" }, { "calc_value": 51, +<<<<<<< HEAD "name": "ImGuiCol_NavWindowingDimBg", +======= + "name": "ImGuiCol_TextSelectedBg", +>>>>>>> docking_inter "value": "51" }, { "calc_value": 52, +<<<<<<< HEAD "name": "ImGuiCol_ModalWindowDimBg", +======= + "name": "ImGuiCol_DragDropTarget", +>>>>>>> docking_inter "value": "52" }, { "calc_value": 53, +<<<<<<< HEAD "name": "ImGuiCol_COUNT", "value": "53" +======= + "name": "ImGuiCol_NavHighlight", + "value": "53" + }, + { + "calc_value": 54, + "name": "ImGuiCol_NavWindowingHighlight", + "value": "54" + }, + { + "calc_value": 55, + "name": "ImGuiCol_NavWindowingDimBg", + "value": "55" + }, + { + "calc_value": 56, + "name": "ImGuiCol_ModalWindowDimBg", + "value": "56" + }, + { + "calc_value": 57, + "name": "ImGuiCol_COUNT", + "value": "57" +>>>>>>> docking_inter } ], "ImGuiColorEditFlags_": [ @@ -910,6 +1000,34 @@ "value": "1 << 5" }, { +<<<<<<< HEAD +======= + "calc_value": 64, + "name": "ImGuiConfigFlags_NoKeyboard", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiConfigFlags_DockingEnable", + "value": "1 << 7" + }, + { + "calc_value": 1024, + "name": "ImGuiConfigFlags_ViewportsEnable", + "value": "1 << 10" + }, + { + "calc_value": 16384, + "name": "ImGuiConfigFlags_DpiEnableScaleViewports", + "value": "1 << 14" + }, + { + "calc_value": 32768, + "name": "ImGuiConfigFlags_DpiEnableScaleFonts", + "value": "1 << 15" + }, + { +>>>>>>> docking_inter "calc_value": 1048576, "name": "ImGuiConfigFlags_IsSRGB", "value": "1 << 20" @@ -1163,9 +1281,19 @@ }, { "calc_value": 32, - "name": "ImGuiDragDropFlags_SourceAutoExpirePayload", + "name": "ImGuiDragDropFlags_PayloadAutoExpire", "value": "1 << 5" }, + { + "calc_value": 64, + "name": "ImGuiDragDropFlags_PayloadNoCrossContext", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiDragDropFlags_PayloadNoCrossProcess", + "value": "1 << 7" + }, { "calc_value": 1024, "name": "ImGuiDragDropFlags_AcceptBeforeDelivery", @@ -3424,6 +3552,11 @@ "name": "ImGuiSliderFlags_NoInput", "value": "1 << 7" }, + { + "calc_value": 256, + "name": "ImGuiSliderFlags_WrapAround", + "value": "1 << 8" + }, { "calc_value": 1879048207, "name": "ImGuiSliderFlags_InvalidMask_", @@ -3669,21 +3802,26 @@ }, { "calc_value": 64, - "name": "ImGuiTabBarFlags_FittingPolicyResizeDown", + "name": "ImGuiTabBarFlags_DrawSelectedOverline", "value": "1 << 6" }, { "calc_value": 128, - "name": "ImGuiTabBarFlags_FittingPolicyScroll", + "name": "ImGuiTabBarFlags_FittingPolicyResizeDown", "value": "1 << 7" }, { - "calc_value": 192, + "calc_value": 256, + "name": "ImGuiTabBarFlags_FittingPolicyScroll", + "value": "1 << 8" + }, + { + "calc_value": 384, "name": "ImGuiTabBarFlags_FittingPolicyMask_", "value": "ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll" }, { - "calc_value": 64, + "calc_value": 128, "name": "ImGuiTabBarFlags_FittingPolicyDefault_", "value": "ImGuiTabBarFlags_FittingPolicyResizeDown" } @@ -4285,6 +4423,111 @@ "calc_value": 4, "name": "ImGuiViewportFlags_OwnedByApp", "value": "1 << 2" +<<<<<<< HEAD +======= + }, + { + "calc_value": 8, + "name": "ImGuiViewportFlags_NoDecoration", + "value": "1 << 3" + }, + { + "calc_value": 16, + "name": "ImGuiViewportFlags_NoTaskBarIcon", + "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiViewportFlags_NoFocusOnAppearing", + "value": "1 << 5" + }, + { + "calc_value": 64, + "name": "ImGuiViewportFlags_NoFocusOnClick", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiViewportFlags_NoInputs", + "value": "1 << 7" + }, + { + "calc_value": 256, + "name": "ImGuiViewportFlags_NoRendererClear", + "value": "1 << 8" + }, + { + "calc_value": 512, + "name": "ImGuiViewportFlags_NoAutoMerge", + "value": "1 << 9" + }, + { + "calc_value": 1024, + "name": "ImGuiViewportFlags_TopMost", + "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiViewportFlags_CanHostOtherWindows", + "value": "1 << 11" + }, + { + "calc_value": 4096, + "name": "ImGuiViewportFlags_IsMinimized", + "value": "1 << 12" + }, + { + "calc_value": 8192, + "name": "ImGuiViewportFlags_IsFocused", + "value": "1 << 13" + } + ], + "ImGuiWindowDockStyleCol": [ + { + "calc_value": 0, + "name": "ImGuiWindowDockStyleCol_Text", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiWindowDockStyleCol_TabHovered", + "value": "1" + }, + { + "calc_value": 2, + "name": "ImGuiWindowDockStyleCol_TabFocused", + "value": "2" + }, + { + "calc_value": 3, + "name": "ImGuiWindowDockStyleCol_TabSelected", + "value": "3" + }, + { + "calc_value": 4, + "name": "ImGuiWindowDockStyleCol_TabSelectedOverline", + "value": "4" + }, + { + "calc_value": 5, + "name": "ImGuiWindowDockStyleCol_TabDimmed", + "value": "5" + }, + { + "calc_value": 6, + "name": "ImGuiWindowDockStyleCol_TabDimmedSelected", + "value": "6" + }, + { + "calc_value": 7, + "name": "ImGuiWindowDockStyleCol_TabDimmedSelectedOverline", + "value": "7" + }, + { + "calc_value": 8, + "name": "ImGuiWindowDockStyleCol_COUNT", + "value": "8" +>>>>>>> docking_inter } ], "ImGuiWindowFlags_": [ @@ -4403,11 +4646,6 @@ "name": "ImGuiWindowFlags_NoInputs", "value": "ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" }, - { - "calc_value": 8388608, - "name": "ImGuiWindowFlags_NavFlattened", - "value": "1 << 23" - }, { "calc_value": 16777216, "name": "ImGuiWindowFlags_ChildWindow", @@ -4465,6 +4703,7 @@ "ImGuiSortDirection": "ImU8" }, "locations": { +<<<<<<< HEAD "ImBitVector": "imgui_internal:607", "ImColor": "imgui:2619", "ImDrawChannel": "imgui:2709", @@ -4639,6 +4878,194 @@ "ImVec2": "imgui:273", "ImVec2ih": "imgui_internal:519", "ImVec4": "imgui:286", +======= + "ImBitVector": "imgui_internal:620", + "ImColor": "imgui:2763", + "ImDrawChannel": "imgui:2853", + "ImDrawCmd": "imgui:2812", + "ImDrawCmdHeader": "imgui:2845", + "ImDrawData": "imgui:3057", + "ImDrawDataBuilder": "imgui_internal:808", + "ImDrawFlags_": "imgui:2879", + "ImDrawList": "imgui:2917", + "ImDrawListFlags_": "imgui:2899", + "ImDrawListSharedData": "imgui_internal:785", + "ImDrawListSplitter": "imgui:2862", + "ImDrawVert": "imgui:2830", + "ImFont": "imgui:3280", + "ImFontAtlas": "imgui:3176", + "ImFontAtlasCustomRect": "imgui:3138", + "ImFontAtlasFlags_": "imgui:3151", + "ImFontBuilderIO": "imgui_internal:3892", + "ImFontConfig": "imgui:3081", + "ImFontGlyph": "imgui:3111", + "ImFontGlyphRangesBuilder": "imgui:3123", + "ImGuiActivateFlags_": "imgui_internal:1552", + "ImGuiAxis": "imgui_internal:1031", + "ImGuiBackendFlags_": "imgui:1622", + "ImGuiButtonFlagsPrivate_": "imgui_internal:925", + "ImGuiButtonFlags_": "imgui:1753", + "ImGuiChildFlags_": "imgui:1112", + "ImGuiCol_": "imgui:1637", + "ImGuiColorEditFlags_": "imgui:1764", + "ImGuiColorMod": "imgui_internal:1045", + "ImGuiComboFlagsPrivate_": "imgui_internal:950", + "ImGuiComboFlags_": "imgui:1235", + "ImGuiComboPreviewData": "imgui_internal:1062", + "ImGuiCond_": "imgui:1866", + "ImGuiConfigFlags_": "imgui:1596", + "ImGuiContext": "imgui_internal:2113", + "ImGuiContextHook": "imgui_internal:2098", + "ImGuiContextHookType": "imgui_internal:2096", + "ImGuiDataAuthority_": "imgui_internal:1781", + "ImGuiDataTypeInfo": "imgui_internal:834", + "ImGuiDataTypePrivate_": "imgui_internal:843", + "ImGuiDataTypeStorage": "imgui_internal:828", + "ImGuiDataType_": "imgui:1383", + "ImGuiDataVarInfo": "imgui_internal:820", + "ImGuiDebugAllocEntry": "imgui_internal:2032", + "ImGuiDebugAllocInfo": "imgui_internal:2039", + "ImGuiDebugLogFlags_": "imgui_internal:2012", + "ImGuiDir": "imgui:1399", + "ImGuiDockContext": "imgui_internal:1883", + "ImGuiDockNode": "imgui_internal:1797", + "ImGuiDockNodeFlagsPrivate_": "imgui_internal:1752", + "ImGuiDockNodeFlags_": "imgui:1336", + "ImGuiDockNodeState": "imgui_internal:1788", + "ImGuiDragDropFlags_": "imgui:1355", + "ImGuiFocusRequestFlags_": "imgui_internal:994", + "ImGuiFocusScopeData": "imgui_internal:1632", + "ImGuiFocusedFlags_": "imgui:1282", + "ImGuiGroupData": "imgui_internal:1075", + "ImGuiHoveredFlagsPrivate_": "imgui_internal:907", + "ImGuiHoveredFlags_": "imgui:1296", + "ImGuiIDStackTool": "imgui_internal:2079", + "ImGuiIO": "imgui:2226", + "ImGuiInputEvent": "imgui_internal:1412", + "ImGuiInputEventAppFocused": "imgui_internal:1410", + "ImGuiInputEventKey": "imgui_internal:1408", + "ImGuiInputEventMouseButton": "imgui_internal:1406", + "ImGuiInputEventMousePos": "imgui_internal:1404", + "ImGuiInputEventMouseViewport": "imgui_internal:1407", + "ImGuiInputEventMouseWheel": "imgui_internal:1405", + "ImGuiInputEventText": "imgui_internal:1409", + "ImGuiInputEventType": "imgui_internal:1380", + "ImGuiInputFlagsPrivate_": "imgui_internal:1479", + "ImGuiInputFlags_": "imgui:1561", + "ImGuiInputSource": "imgui_internal:1393", + "ImGuiInputTextCallbackData": "imgui:2448", + "ImGuiInputTextDeactivatedState": "imgui_internal:1111", + "ImGuiInputTextFlagsPrivate_": "imgui_internal:915", + "ImGuiInputTextFlags_": "imgui:1128", + "ImGuiInputTextState": "imgui_internal:1121", + "ImGuiItemFlags_": "imgui_internal:859", + "ImGuiItemStatusFlags_": "imgui_internal:881", + "ImGuiKey": "imgui:1428", + "ImGuiKeyData": "imgui:2218", + "ImGuiKeyOwnerData": "imgui_internal:1466", + "ImGuiKeyRoutingData": "imgui_internal:1440", + "ImGuiKeyRoutingTable": "imgui_internal:1454", + "ImGuiLastItemData": "imgui_internal:1258", + "ImGuiLayoutType_": "imgui_internal:1015", + "ImGuiListClipper": "imgui:2677", + "ImGuiListClipperData": "imgui_internal:1536", + "ImGuiListClipperRange": "imgui_internal:1523", + "ImGuiLocEntry": "imgui_internal:2001", + "ImGuiLocKey": "imgui_internal:1985", + "ImGuiLogType": "imgui_internal:1021", + "ImGuiMenuColumns": "imgui_internal:1093", + "ImGuiMetricsConfig": "imgui_internal:2049", + "ImGuiMouseButton_": "imgui:1826", + "ImGuiMouseCursor_": "imgui:1836", + "ImGuiMouseSource": "imgui:1855", + "ImGuiNavHighlightFlags_": "imgui_internal:1577", + "ImGuiNavItemData": "imgui_internal:1615", + "ImGuiNavLayer": "imgui_internal:1607", + "ImGuiNavMoveFlags_": "imgui_internal:1585", + "ImGuiNavTreeNodeData": "imgui_internal:1276", + "ImGuiNextItemData": "imgui_internal:1240", + "ImGuiNextItemDataFlags_": "imgui_internal:1231", + "ImGuiNextWindowData": "imgui_internal:1198", + "ImGuiNextWindowDataFlags_": "imgui_internal:1179", + "ImGuiOldColumnData": "imgui_internal:1700", + "ImGuiOldColumnFlags_": "imgui_internal:1680", + "ImGuiOldColumns": "imgui_internal:1710", + "ImGuiOnceUponAFrame": "imgui:2548", + "ImGuiPayload": "imgui:2513", + "ImGuiPlatformIO": "imgui:3450", + "ImGuiPlatformImeData": "imgui:3523", + "ImGuiPlatformMonitor": "imgui:3513", + "ImGuiPlotType": "imgui_internal:1038", + "ImGuiPopupData": "imgui_internal:1337", + "ImGuiPopupFlags_": "imgui:1202", + "ImGuiPopupPositionPolicy": "imgui_internal:1329", + "ImGuiPtrOrIndex": "imgui_internal:1316", + "ImGuiScrollFlags_": "imgui_internal:1563", + "ImGuiSelectableFlagsPrivate_": "imgui_internal:963", + "ImGuiSelectableFlags_": "imgui:1220", + "ImGuiSeparatorFlags_": "imgui_internal:983", + "ImGuiSettingsHandler": "imgui_internal:1965", + "ImGuiShrinkWidthItem": "imgui_internal:1309", + "ImGuiSizeCallbackData": "imgui:2482", + "ImGuiSliderFlagsPrivate_": "imgui_internal:956", + "ImGuiSliderFlags_": "imgui:1810", + "ImGuiSortDirection": "imgui:1410", + "ImGuiStackLevelInfo": "imgui_internal:2067", + "ImGuiStackSizes": "imgui_internal:1283", + "ImGuiStorage": "imgui:2620", + "ImGuiStoragePair": "imgui:2603", + "ImGuiStyle": "imgui:2143", + "ImGuiStyleMod": "imgui_internal:1052", + "ImGuiStyleVar_": "imgui:1713", + "ImGuiTabBar": "imgui_internal:2932", + "ImGuiTabBarFlagsPrivate_": "imgui_internal:2895", + "ImGuiTabBarFlags_": "imgui:1250", + "ImGuiTabItem": "imgui_internal:2912", + "ImGuiTabItemFlagsPrivate_": "imgui_internal:2903", + "ImGuiTabItemFlags_": "imgui:1267", + "ImGuiTable": "imgui_internal:3077", + "ImGuiTableBgTarget_": "imgui:2007", + "ImGuiTableCellData": "imgui_internal:3045", + "ImGuiTableColumn": "imgui_internal:2986", + "ImGuiTableColumnFlags_": "imgui:1954", + "ImGuiTableColumnSettings": "imgui_internal:3224", + "ImGuiTableColumnSortSpecs": "imgui:2029", + "ImGuiTableFlags_": "imgui:1901", + "ImGuiTableHeaderData": "imgui_internal:3054", + "ImGuiTableInstanceData": "imgui_internal:3064", + "ImGuiTableRowFlags_": "imgui:1992", + "ImGuiTableSettings": "imgui_internal:3248", + "ImGuiTableSortSpecs": "imgui:2019", + "ImGuiTableTempData": "imgui_internal:3201", + "ImGuiTextBuffer": "imgui:2583", + "ImGuiTextFilter": "imgui:2556", + "ImGuiTextFlags_": "imgui_internal:1001", + "ImGuiTextIndex": "imgui_internal:740", + "ImGuiTextRange": "imgui:2566", + "ImGuiTooltipFlags_": "imgui_internal:1007", + "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:977", + "ImGuiTreeNodeFlags_": "imgui:1167", + "ImGuiTypingSelectFlags_": "imgui_internal:1643", + "ImGuiTypingSelectRequest": "imgui_internal:1651", + "ImGuiTypingSelectState": "imgui_internal:1662", + "ImGuiViewport": "imgui:3366", + "ImGuiViewportFlags_": "imgui:3338", + "ImGuiViewportP": "imgui_internal:1900", + "ImGuiWindow": "imgui_internal:2744", + "ImGuiWindowClass": "imgui:2497", + "ImGuiWindowDockStyle": "imgui_internal:1878", + "ImGuiWindowDockStyleCol": "imgui_internal:1864", + "ImGuiWindowFlags_": "imgui:1061", + "ImGuiWindowRefreshFlags_": "imgui_internal:1170", + "ImGuiWindowSettings": "imgui_internal:1946", + "ImGuiWindowStackData": "imgui_internal:1301", + "ImGuiWindowTempData": "imgui_internal:2694", + "ImRect": "imgui_internal:542", + "ImVec1": "imgui_internal:524", + "ImVec2": "imgui:280", + "ImVec2ih": "imgui_internal:532", + "ImVec4": "imgui:293", +>>>>>>> docking_inter "STB_TexteditState": "imstb_textedit:321", "StbTexteditRow": "imstb_textedit:368", "StbUndoRecord": "imstb_textedit:303", @@ -5392,6 +5819,11 @@ "name": "TestEngine", "type": "void*" }, + { + "name": "ContextName[16]", + "size": 16, + "type": "char" + }, { "name": "InputEventsQueue", "template_type": "ImGuiInputEvent", @@ -5458,6 +5890,10 @@ "name": "HoveredWindowUnderMovingWindow", "type": "ImGuiWindow*" }, + { + "name": "HoveredWindowBeforeClear", + "type": "ImGuiWindow*" + }, { "name": "MovingWindow", "type": "ImGuiWindow*" @@ -5515,7 +5951,7 @@ "type": "bool" }, { - "name": "HoveredIdDisabled", + "name": "HoveredIdIsDisabled", "type": "bool" }, { @@ -5734,6 +6170,10 @@ "name": "NavFocusScopeId", "type": "ImGuiID" }, + { + "name": "NavLayer", + "type": "ImGuiNavLayer" + }, { "name": "NavActivateId", "type": "ImGuiID" @@ -5763,18 +6203,6 @@ "name": "NavHighlightActivatedTimer", "type": "float" }, - { - "name": "NavJustMovedToId", - "type": "ImGuiID" - }, - { - "name": "NavJustMovedToFocusScopeId", - "type": "ImGuiID" - }, - { - "name": "NavJustMovedToKeyMods", - "type": "ImGuiKeyChord" - }, { "name": "NavNextActivateId", "type": "ImGuiID" @@ -5787,10 +6215,6 @@ "name": "NavInputSource", "type": "ImGuiInputSource" }, - { - "name": "NavLayer", - "type": "ImGuiNavLayer" - }, { "name": "NavLastValidSelectionUserData", "type": "ImGuiSelectionUserData" @@ -5899,6 +6323,30 @@ "name": "NavTabbingResultFirst", "type": "ImGuiNavItemData" }, + { + "name": "NavJustMovedFromFocusScopeId", + "type": "ImGuiID" + }, + { + "name": "NavJustMovedToId", + "type": "ImGuiID" + }, + { + "name": "NavJustMovedToFocusScopeId", + "type": "ImGuiID" + }, + { + "name": "NavJustMovedToKeyMods", + "type": "ImGuiKeyChord" + }, + { + "name": "NavJustMovedToIsTabbing", + "type": "bool" + }, + { + "name": "NavJustMovedToHasSelectionData", + "type": "bool" + }, { "name": "ConfigNavWindowingKeyNext", "type": "ImGuiKeyChord" @@ -8217,7 +8665,11 @@ }, { "name": "Colors[ImGuiCol_COUNT]", +<<<<<<< HEAD "size": 53, +======= + "size": 57, +>>>>>>> docking_inter "type": "ImVec4" }, { @@ -9854,6 +10306,102 @@ { "name": "MemoryCompacted", "type": "bool" +<<<<<<< HEAD +======= + }, + { + "bitfield": "1", + "name": "DockIsActive", + "type": "bool" + }, + { + "bitfield": "1", + "name": "DockNodeIsVisible", + "type": "bool" + }, + { + "bitfield": "1", + "name": "DockTabIsVisible", + "type": "bool" + }, + { + "bitfield": "1", + "name": "DockTabWantClose", + "type": "bool" + }, + { + "name": "DockOrder", + "type": "short" + }, + { + "name": "DockStyle", + "type": "ImGuiWindowDockStyle" + }, + { + "name": "DockNode", + "type": "ImGuiDockNode*" + }, + { + "name": "DockNodeAsHost", + "type": "ImGuiDockNode*" + }, + { + "name": "DockId", + "type": "ImGuiID" + }, + { + "name": "DockTabItemStatusFlags", + "type": "ImGuiItemStatusFlags" + }, + { + "name": "DockTabItemRect", + "type": "ImRect" + } + ], + "ImGuiWindowClass": [ + { + "name": "ClassId", + "type": "ImGuiID" + }, + { + "name": "ParentViewportId", + "type": "ImGuiID" + }, + { + "name": "FocusRouteParentWindowId", + "type": "ImGuiID" + }, + { + "name": "ViewportFlagsOverrideSet", + "type": "ImGuiViewportFlags" + }, + { + "name": "ViewportFlagsOverrideClear", + "type": "ImGuiViewportFlags" + }, + { + "name": "TabItemFlagsOverrideSet", + "type": "ImGuiTabItemFlags" + }, + { + "name": "DockNodeFlagsOverrideSet", + "type": "ImGuiDockNodeFlags" + }, + { + "name": "DockingAlwaysTabBar", + "type": "bool" + }, + { + "name": "DockingAllowUnclassed", + "type": "bool" + } + ], + "ImGuiWindowDockStyle": [ + { + "name": "Colors[ImGuiWindowDockStyleCol_COUNT]", + "size": 8, + "type": "ImU32" +>>>>>>> docking_inter } ], "ImGuiWindowSettings": [ diff --git a/generator/output/structs_and_enums.lua b/generator/output/structs_and_enums.lua index 29bbcc7..75fd744 100644 --- a/generator/output/structs_and_enums.lua +++ b/generator/output/structs_and_enums.lua @@ -289,6 +289,10 @@ defs["enums"]["ImGuiChildFlags_"][9] = {} defs["enums"]["ImGuiChildFlags_"][9]["calc_value"] = 128 defs["enums"]["ImGuiChildFlags_"][9]["name"] = "ImGuiChildFlags_FrameStyle" defs["enums"]["ImGuiChildFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiChildFlags_"][10] = {} +defs["enums"]["ImGuiChildFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiChildFlags_"][10]["name"] = "ImGuiChildFlags_NavFlattened" +defs["enums"]["ImGuiChildFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiCol_"] = {} defs["enums"]["ImGuiCol_"][1] = {} defs["enums"]["ImGuiCol_"][1]["calc_value"] = 0 @@ -424,26 +428,27 @@ defs["enums"]["ImGuiCol_"][33]["name"] = "ImGuiCol_ResizeGripActive" defs["enums"]["ImGuiCol_"][33]["value"] = "32" defs["enums"]["ImGuiCol_"][34] = {} defs["enums"]["ImGuiCol_"][34]["calc_value"] = 33 -defs["enums"]["ImGuiCol_"][34]["name"] = "ImGuiCol_Tab" +defs["enums"]["ImGuiCol_"][34]["name"] = "ImGuiCol_TabHovered" defs["enums"]["ImGuiCol_"][34]["value"] = "33" defs["enums"]["ImGuiCol_"][35] = {} defs["enums"]["ImGuiCol_"][35]["calc_value"] = 34 -defs["enums"]["ImGuiCol_"][35]["name"] = "ImGuiCol_TabHovered" +defs["enums"]["ImGuiCol_"][35]["name"] = "ImGuiCol_Tab" defs["enums"]["ImGuiCol_"][35]["value"] = "34" defs["enums"]["ImGuiCol_"][36] = {} defs["enums"]["ImGuiCol_"][36]["calc_value"] = 35 -defs["enums"]["ImGuiCol_"][36]["name"] = "ImGuiCol_TabActive" +defs["enums"]["ImGuiCol_"][36]["name"] = "ImGuiCol_TabSelected" defs["enums"]["ImGuiCol_"][36]["value"] = "35" defs["enums"]["ImGuiCol_"][37] = {} defs["enums"]["ImGuiCol_"][37]["calc_value"] = 36 -defs["enums"]["ImGuiCol_"][37]["name"] = "ImGuiCol_TabUnfocused" +defs["enums"]["ImGuiCol_"][37]["name"] = "ImGuiCol_TabSelectedOverline" defs["enums"]["ImGuiCol_"][37]["value"] = "36" defs["enums"]["ImGuiCol_"][38] = {} defs["enums"]["ImGuiCol_"][38]["calc_value"] = 37 -defs["enums"]["ImGuiCol_"][38]["name"] = "ImGuiCol_TabUnfocusedActive" +defs["enums"]["ImGuiCol_"][38]["name"] = "ImGuiCol_TabDimmed" defs["enums"]["ImGuiCol_"][38]["value"] = "37" defs["enums"]["ImGuiCol_"][39] = {} defs["enums"]["ImGuiCol_"][39]["calc_value"] = 38 +<<<<<<< HEAD defs["enums"]["ImGuiCol_"][39]["name"] = "ImGuiCol_PlotLines" defs["enums"]["ImGuiCol_"][39]["value"] = "38" defs["enums"]["ImGuiCol_"][40] = {} @@ -506,6 +511,86 @@ defs["enums"]["ImGuiCol_"][54] = {} defs["enums"]["ImGuiCol_"][54]["calc_value"] = 53 defs["enums"]["ImGuiCol_"][54]["name"] = "ImGuiCol_COUNT" defs["enums"]["ImGuiCol_"][54]["value"] = "53" +======= +defs["enums"]["ImGuiCol_"][39]["name"] = "ImGuiCol_TabDimmedSelected" +defs["enums"]["ImGuiCol_"][39]["value"] = "38" +defs["enums"]["ImGuiCol_"][40] = {} +defs["enums"]["ImGuiCol_"][40]["calc_value"] = 39 +defs["enums"]["ImGuiCol_"][40]["name"] = "ImGuiCol_TabDimmedSelectedOverline" +defs["enums"]["ImGuiCol_"][40]["value"] = "39" +defs["enums"]["ImGuiCol_"][41] = {} +defs["enums"]["ImGuiCol_"][41]["calc_value"] = 40 +defs["enums"]["ImGuiCol_"][41]["name"] = "ImGuiCol_DockingPreview" +defs["enums"]["ImGuiCol_"][41]["value"] = "40" +defs["enums"]["ImGuiCol_"][42] = {} +defs["enums"]["ImGuiCol_"][42]["calc_value"] = 41 +defs["enums"]["ImGuiCol_"][42]["name"] = "ImGuiCol_DockingEmptyBg" +defs["enums"]["ImGuiCol_"][42]["value"] = "41" +defs["enums"]["ImGuiCol_"][43] = {} +defs["enums"]["ImGuiCol_"][43]["calc_value"] = 42 +defs["enums"]["ImGuiCol_"][43]["name"] = "ImGuiCol_PlotLines" +defs["enums"]["ImGuiCol_"][43]["value"] = "42" +defs["enums"]["ImGuiCol_"][44] = {} +defs["enums"]["ImGuiCol_"][44]["calc_value"] = 43 +defs["enums"]["ImGuiCol_"][44]["name"] = "ImGuiCol_PlotLinesHovered" +defs["enums"]["ImGuiCol_"][44]["value"] = "43" +defs["enums"]["ImGuiCol_"][45] = {} +defs["enums"]["ImGuiCol_"][45]["calc_value"] = 44 +defs["enums"]["ImGuiCol_"][45]["name"] = "ImGuiCol_PlotHistogram" +defs["enums"]["ImGuiCol_"][45]["value"] = "44" +defs["enums"]["ImGuiCol_"][46] = {} +defs["enums"]["ImGuiCol_"][46]["calc_value"] = 45 +defs["enums"]["ImGuiCol_"][46]["name"] = "ImGuiCol_PlotHistogramHovered" +defs["enums"]["ImGuiCol_"][46]["value"] = "45" +defs["enums"]["ImGuiCol_"][47] = {} +defs["enums"]["ImGuiCol_"][47]["calc_value"] = 46 +defs["enums"]["ImGuiCol_"][47]["name"] = "ImGuiCol_TableHeaderBg" +defs["enums"]["ImGuiCol_"][47]["value"] = "46" +defs["enums"]["ImGuiCol_"][48] = {} +defs["enums"]["ImGuiCol_"][48]["calc_value"] = 47 +defs["enums"]["ImGuiCol_"][48]["name"] = "ImGuiCol_TableBorderStrong" +defs["enums"]["ImGuiCol_"][48]["value"] = "47" +defs["enums"]["ImGuiCol_"][49] = {} +defs["enums"]["ImGuiCol_"][49]["calc_value"] = 48 +defs["enums"]["ImGuiCol_"][49]["name"] = "ImGuiCol_TableBorderLight" +defs["enums"]["ImGuiCol_"][49]["value"] = "48" +defs["enums"]["ImGuiCol_"][50] = {} +defs["enums"]["ImGuiCol_"][50]["calc_value"] = 49 +defs["enums"]["ImGuiCol_"][50]["name"] = "ImGuiCol_TableRowBg" +defs["enums"]["ImGuiCol_"][50]["value"] = "49" +defs["enums"]["ImGuiCol_"][51] = {} +defs["enums"]["ImGuiCol_"][51]["calc_value"] = 50 +defs["enums"]["ImGuiCol_"][51]["name"] = "ImGuiCol_TableRowBgAlt" +defs["enums"]["ImGuiCol_"][51]["value"] = "50" +defs["enums"]["ImGuiCol_"][52] = {} +defs["enums"]["ImGuiCol_"][52]["calc_value"] = 51 +defs["enums"]["ImGuiCol_"][52]["name"] = "ImGuiCol_TextSelectedBg" +defs["enums"]["ImGuiCol_"][52]["value"] = "51" +defs["enums"]["ImGuiCol_"][53] = {} +defs["enums"]["ImGuiCol_"][53]["calc_value"] = 52 +defs["enums"]["ImGuiCol_"][53]["name"] = "ImGuiCol_DragDropTarget" +defs["enums"]["ImGuiCol_"][53]["value"] = "52" +defs["enums"]["ImGuiCol_"][54] = {} +defs["enums"]["ImGuiCol_"][54]["calc_value"] = 53 +defs["enums"]["ImGuiCol_"][54]["name"] = "ImGuiCol_NavHighlight" +defs["enums"]["ImGuiCol_"][54]["value"] = "53" +defs["enums"]["ImGuiCol_"][55] = {} +defs["enums"]["ImGuiCol_"][55]["calc_value"] = 54 +defs["enums"]["ImGuiCol_"][55]["name"] = "ImGuiCol_NavWindowingHighlight" +defs["enums"]["ImGuiCol_"][55]["value"] = "54" +defs["enums"]["ImGuiCol_"][56] = {} +defs["enums"]["ImGuiCol_"][56]["calc_value"] = 55 +defs["enums"]["ImGuiCol_"][56]["name"] = "ImGuiCol_NavWindowingDimBg" +defs["enums"]["ImGuiCol_"][56]["value"] = "55" +defs["enums"]["ImGuiCol_"][57] = {} +defs["enums"]["ImGuiCol_"][57]["calc_value"] = 56 +defs["enums"]["ImGuiCol_"][57]["name"] = "ImGuiCol_ModalWindowDimBg" +defs["enums"]["ImGuiCol_"][57]["value"] = "56" +defs["enums"]["ImGuiCol_"][58] = {} +defs["enums"]["ImGuiCol_"][58]["calc_value"] = 57 +defs["enums"]["ImGuiCol_"][58]["name"] = "ImGuiCol_COUNT" +defs["enums"]["ImGuiCol_"][58]["value"] = "57" +>>>>>>> docking_inter defs["enums"]["ImGuiColorEditFlags_"] = {} defs["enums"]["ImGuiColorEditFlags_"][1] = {} defs["enums"]["ImGuiColorEditFlags_"][1]["calc_value"] = 0 @@ -720,6 +805,7 @@ defs["enums"]["ImGuiConfigFlags_"][7]["calc_value"] = 32 defs["enums"]["ImGuiConfigFlags_"][7]["name"] = "ImGuiConfigFlags_NoMouseCursorChange" defs["enums"]["ImGuiConfigFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiConfigFlags_"][8] = {} +<<<<<<< HEAD defs["enums"]["ImGuiConfigFlags_"][8]["calc_value"] = 1048576 defs["enums"]["ImGuiConfigFlags_"][8]["name"] = "ImGuiConfigFlags_IsSRGB" defs["enums"]["ImGuiConfigFlags_"][8]["value"] = "1 << 20" @@ -727,6 +813,35 @@ defs["enums"]["ImGuiConfigFlags_"][9] = {} defs["enums"]["ImGuiConfigFlags_"][9]["calc_value"] = 2097152 defs["enums"]["ImGuiConfigFlags_"][9]["name"] = "ImGuiConfigFlags_IsTouchScreen" defs["enums"]["ImGuiConfigFlags_"][9]["value"] = "1 << 21" +======= +defs["enums"]["ImGuiConfigFlags_"][8]["calc_value"] = 64 +defs["enums"]["ImGuiConfigFlags_"][8]["name"] = "ImGuiConfigFlags_NoKeyboard" +defs["enums"]["ImGuiConfigFlags_"][8]["value"] = "1 << 6" +defs["enums"]["ImGuiConfigFlags_"][9] = {} +defs["enums"]["ImGuiConfigFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiConfigFlags_"][9]["name"] = "ImGuiConfigFlags_DockingEnable" +defs["enums"]["ImGuiConfigFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiConfigFlags_"][10] = {} +defs["enums"]["ImGuiConfigFlags_"][10]["calc_value"] = 1024 +defs["enums"]["ImGuiConfigFlags_"][10]["name"] = "ImGuiConfigFlags_ViewportsEnable" +defs["enums"]["ImGuiConfigFlags_"][10]["value"] = "1 << 10" +defs["enums"]["ImGuiConfigFlags_"][11] = {} +defs["enums"]["ImGuiConfigFlags_"][11]["calc_value"] = 16384 +defs["enums"]["ImGuiConfigFlags_"][11]["name"] = "ImGuiConfigFlags_DpiEnableScaleViewports" +defs["enums"]["ImGuiConfigFlags_"][11]["value"] = "1 << 14" +defs["enums"]["ImGuiConfigFlags_"][12] = {} +defs["enums"]["ImGuiConfigFlags_"][12]["calc_value"] = 32768 +defs["enums"]["ImGuiConfigFlags_"][12]["name"] = "ImGuiConfigFlags_DpiEnableScaleFonts" +defs["enums"]["ImGuiConfigFlags_"][12]["value"] = "1 << 15" +defs["enums"]["ImGuiConfigFlags_"][13] = {} +defs["enums"]["ImGuiConfigFlags_"][13]["calc_value"] = 1048576 +defs["enums"]["ImGuiConfigFlags_"][13]["name"] = "ImGuiConfigFlags_IsSRGB" +defs["enums"]["ImGuiConfigFlags_"][13]["value"] = "1 << 20" +defs["enums"]["ImGuiConfigFlags_"][14] = {} +defs["enums"]["ImGuiConfigFlags_"][14]["calc_value"] = 2097152 +defs["enums"]["ImGuiConfigFlags_"][14]["name"] = "ImGuiConfigFlags_IsTouchScreen" +defs["enums"]["ImGuiConfigFlags_"][14]["value"] = "1 << 21" +>>>>>>> docking_inter defs["enums"]["ImGuiContextHookType"] = {} defs["enums"]["ImGuiContextHookType"][1] = {} defs["enums"]["ImGuiContextHookType"][1]["calc_value"] = 0 @@ -919,24 +1034,32 @@ defs["enums"]["ImGuiDragDropFlags_"][6]["name"] = "ImGuiDragDropFlags_SourceExte defs["enums"]["ImGuiDragDropFlags_"][6]["value"] = "1 << 4" defs["enums"]["ImGuiDragDropFlags_"][7] = {} defs["enums"]["ImGuiDragDropFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiDragDropFlags_"][7]["name"] = "ImGuiDragDropFlags_SourceAutoExpirePayload" +defs["enums"]["ImGuiDragDropFlags_"][7]["name"] = "ImGuiDragDropFlags_PayloadAutoExpire" defs["enums"]["ImGuiDragDropFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiDragDropFlags_"][8] = {} -defs["enums"]["ImGuiDragDropFlags_"][8]["calc_value"] = 1024 -defs["enums"]["ImGuiDragDropFlags_"][8]["name"] = "ImGuiDragDropFlags_AcceptBeforeDelivery" -defs["enums"]["ImGuiDragDropFlags_"][8]["value"] = "1 << 10" +defs["enums"]["ImGuiDragDropFlags_"][8]["calc_value"] = 64 +defs["enums"]["ImGuiDragDropFlags_"][8]["name"] = "ImGuiDragDropFlags_PayloadNoCrossContext" +defs["enums"]["ImGuiDragDropFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiDragDropFlags_"][9] = {} -defs["enums"]["ImGuiDragDropFlags_"][9]["calc_value"] = 2048 -defs["enums"]["ImGuiDragDropFlags_"][9]["name"] = "ImGuiDragDropFlags_AcceptNoDrawDefaultRect" -defs["enums"]["ImGuiDragDropFlags_"][9]["value"] = "1 << 11" +defs["enums"]["ImGuiDragDropFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiDragDropFlags_"][9]["name"] = "ImGuiDragDropFlags_PayloadNoCrossProcess" +defs["enums"]["ImGuiDragDropFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiDragDropFlags_"][10] = {} -defs["enums"]["ImGuiDragDropFlags_"][10]["calc_value"] = 4096 -defs["enums"]["ImGuiDragDropFlags_"][10]["name"] = "ImGuiDragDropFlags_AcceptNoPreviewTooltip" -defs["enums"]["ImGuiDragDropFlags_"][10]["value"] = "1 << 12" +defs["enums"]["ImGuiDragDropFlags_"][10]["calc_value"] = 1024 +defs["enums"]["ImGuiDragDropFlags_"][10]["name"] = "ImGuiDragDropFlags_AcceptBeforeDelivery" +defs["enums"]["ImGuiDragDropFlags_"][10]["value"] = "1 << 10" defs["enums"]["ImGuiDragDropFlags_"][11] = {} -defs["enums"]["ImGuiDragDropFlags_"][11]["calc_value"] = 3072 -defs["enums"]["ImGuiDragDropFlags_"][11]["name"] = "ImGuiDragDropFlags_AcceptPeekOnly" -defs["enums"]["ImGuiDragDropFlags_"][11]["value"] = "ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect" +defs["enums"]["ImGuiDragDropFlags_"][11]["calc_value"] = 2048 +defs["enums"]["ImGuiDragDropFlags_"][11]["name"] = "ImGuiDragDropFlags_AcceptNoDrawDefaultRect" +defs["enums"]["ImGuiDragDropFlags_"][11]["value"] = "1 << 11" +defs["enums"]["ImGuiDragDropFlags_"][12] = {} +defs["enums"]["ImGuiDragDropFlags_"][12]["calc_value"] = 4096 +defs["enums"]["ImGuiDragDropFlags_"][12]["name"] = "ImGuiDragDropFlags_AcceptNoPreviewTooltip" +defs["enums"]["ImGuiDragDropFlags_"][12]["value"] = "1 << 12" +defs["enums"]["ImGuiDragDropFlags_"][13] = {} +defs["enums"]["ImGuiDragDropFlags_"][13]["calc_value"] = 3072 +defs["enums"]["ImGuiDragDropFlags_"][13]["name"] = "ImGuiDragDropFlags_AcceptPeekOnly" +defs["enums"]["ImGuiDragDropFlags_"][13]["value"] = "ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect" defs["enums"]["ImGuiFocusRequestFlags_"] = {} defs["enums"]["ImGuiFocusRequestFlags_"][1] = {} defs["enums"]["ImGuiFocusRequestFlags_"][1]["calc_value"] = 0 @@ -2708,9 +2831,13 @@ defs["enums"]["ImGuiSliderFlags_"][5]["calc_value"] = 128 defs["enums"]["ImGuiSliderFlags_"][5]["name"] = "ImGuiSliderFlags_NoInput" defs["enums"]["ImGuiSliderFlags_"][5]["value"] = "1 << 7" defs["enums"]["ImGuiSliderFlags_"][6] = {} -defs["enums"]["ImGuiSliderFlags_"][6]["calc_value"] = 1879048207 -defs["enums"]["ImGuiSliderFlags_"][6]["name"] = "ImGuiSliderFlags_InvalidMask_" -defs["enums"]["ImGuiSliderFlags_"][6]["value"] = "0x7000000F" +defs["enums"]["ImGuiSliderFlags_"][6]["calc_value"] = 256 +defs["enums"]["ImGuiSliderFlags_"][6]["name"] = "ImGuiSliderFlags_WrapAround" +defs["enums"]["ImGuiSliderFlags_"][6]["value"] = "1 << 8" +defs["enums"]["ImGuiSliderFlags_"][7] = {} +defs["enums"]["ImGuiSliderFlags_"][7]["calc_value"] = 1879048207 +defs["enums"]["ImGuiSliderFlags_"][7]["name"] = "ImGuiSliderFlags_InvalidMask_" +defs["enums"]["ImGuiSliderFlags_"][7]["value"] = "0x7000000F" defs["enums"]["ImGuiSortDirection"] = {} defs["enums"]["ImGuiSortDirection"][1] = {} defs["enums"]["ImGuiSortDirection"][1]["calc_value"] = 0 @@ -2901,20 +3028,24 @@ defs["enums"]["ImGuiTabBarFlags_"][7]["name"] = "ImGuiTabBarFlags_NoTooltip" defs["enums"]["ImGuiTabBarFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiTabBarFlags_"][8] = {} defs["enums"]["ImGuiTabBarFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiTabBarFlags_"][8]["name"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" +defs["enums"]["ImGuiTabBarFlags_"][8]["name"] = "ImGuiTabBarFlags_DrawSelectedOverline" defs["enums"]["ImGuiTabBarFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiTabBarFlags_"][9] = {} defs["enums"]["ImGuiTabBarFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiTabBarFlags_"][9]["name"] = "ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][9]["name"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" defs["enums"]["ImGuiTabBarFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiTabBarFlags_"][10] = {} -defs["enums"]["ImGuiTabBarFlags_"][10]["calc_value"] = 192 -defs["enums"]["ImGuiTabBarFlags_"][10]["name"] = "ImGuiTabBarFlags_FittingPolicyMask_" -defs["enums"]["ImGuiTabBarFlags_"][10]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiTabBarFlags_"][10]["name"] = "ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiTabBarFlags_"][11] = {} -defs["enums"]["ImGuiTabBarFlags_"][11]["calc_value"] = 64 -defs["enums"]["ImGuiTabBarFlags_"][11]["name"] = "ImGuiTabBarFlags_FittingPolicyDefault_" -defs["enums"]["ImGuiTabBarFlags_"][11]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" +defs["enums"]["ImGuiTabBarFlags_"][11]["calc_value"] = 384 +defs["enums"]["ImGuiTabBarFlags_"][11]["name"] = "ImGuiTabBarFlags_FittingPolicyMask_" +defs["enums"]["ImGuiTabBarFlags_"][11]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][12] = {} +defs["enums"]["ImGuiTabBarFlags_"][12]["calc_value"] = 128 +defs["enums"]["ImGuiTabBarFlags_"][12]["name"] = "ImGuiTabBarFlags_FittingPolicyDefault_" +defs["enums"]["ImGuiTabBarFlags_"][12]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" defs["enums"]["ImGuiTabItemFlagsPrivate_"] = {} defs["enums"]["ImGuiTabItemFlagsPrivate_"][1] = {} defs["enums"]["ImGuiTabItemFlagsPrivate_"][1]["calc_value"] = 192 @@ -3387,6 +3518,90 @@ defs["enums"]["ImGuiViewportFlags_"][4] = {} defs["enums"]["ImGuiViewportFlags_"][4]["calc_value"] = 4 defs["enums"]["ImGuiViewportFlags_"][4]["name"] = "ImGuiViewportFlags_OwnedByApp" defs["enums"]["ImGuiViewportFlags_"][4]["value"] = "1 << 2" +<<<<<<< HEAD +======= +defs["enums"]["ImGuiViewportFlags_"][5] = {} +defs["enums"]["ImGuiViewportFlags_"][5]["calc_value"] = 8 +defs["enums"]["ImGuiViewportFlags_"][5]["name"] = "ImGuiViewportFlags_NoDecoration" +defs["enums"]["ImGuiViewportFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiViewportFlags_"][6] = {} +defs["enums"]["ImGuiViewportFlags_"][6]["calc_value"] = 16 +defs["enums"]["ImGuiViewportFlags_"][6]["name"] = "ImGuiViewportFlags_NoTaskBarIcon" +defs["enums"]["ImGuiViewportFlags_"][6]["value"] = "1 << 4" +defs["enums"]["ImGuiViewportFlags_"][7] = {} +defs["enums"]["ImGuiViewportFlags_"][7]["calc_value"] = 32 +defs["enums"]["ImGuiViewportFlags_"][7]["name"] = "ImGuiViewportFlags_NoFocusOnAppearing" +defs["enums"]["ImGuiViewportFlags_"][7]["value"] = "1 << 5" +defs["enums"]["ImGuiViewportFlags_"][8] = {} +defs["enums"]["ImGuiViewportFlags_"][8]["calc_value"] = 64 +defs["enums"]["ImGuiViewportFlags_"][8]["name"] = "ImGuiViewportFlags_NoFocusOnClick" +defs["enums"]["ImGuiViewportFlags_"][8]["value"] = "1 << 6" +defs["enums"]["ImGuiViewportFlags_"][9] = {} +defs["enums"]["ImGuiViewportFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiViewportFlags_"][9]["name"] = "ImGuiViewportFlags_NoInputs" +defs["enums"]["ImGuiViewportFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiViewportFlags_"][10] = {} +defs["enums"]["ImGuiViewportFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiViewportFlags_"][10]["name"] = "ImGuiViewportFlags_NoRendererClear" +defs["enums"]["ImGuiViewportFlags_"][10]["value"] = "1 << 8" +defs["enums"]["ImGuiViewportFlags_"][11] = {} +defs["enums"]["ImGuiViewportFlags_"][11]["calc_value"] = 512 +defs["enums"]["ImGuiViewportFlags_"][11]["name"] = "ImGuiViewportFlags_NoAutoMerge" +defs["enums"]["ImGuiViewportFlags_"][11]["value"] = "1 << 9" +defs["enums"]["ImGuiViewportFlags_"][12] = {} +defs["enums"]["ImGuiViewportFlags_"][12]["calc_value"] = 1024 +defs["enums"]["ImGuiViewportFlags_"][12]["name"] = "ImGuiViewportFlags_TopMost" +defs["enums"]["ImGuiViewportFlags_"][12]["value"] = "1 << 10" +defs["enums"]["ImGuiViewportFlags_"][13] = {} +defs["enums"]["ImGuiViewportFlags_"][13]["calc_value"] = 2048 +defs["enums"]["ImGuiViewportFlags_"][13]["name"] = "ImGuiViewportFlags_CanHostOtherWindows" +defs["enums"]["ImGuiViewportFlags_"][13]["value"] = "1 << 11" +defs["enums"]["ImGuiViewportFlags_"][14] = {} +defs["enums"]["ImGuiViewportFlags_"][14]["calc_value"] = 4096 +defs["enums"]["ImGuiViewportFlags_"][14]["name"] = "ImGuiViewportFlags_IsMinimized" +defs["enums"]["ImGuiViewportFlags_"][14]["value"] = "1 << 12" +defs["enums"]["ImGuiViewportFlags_"][15] = {} +defs["enums"]["ImGuiViewportFlags_"][15]["calc_value"] = 8192 +defs["enums"]["ImGuiViewportFlags_"][15]["name"] = "ImGuiViewportFlags_IsFocused" +defs["enums"]["ImGuiViewportFlags_"][15]["value"] = "1 << 13" +defs["enums"]["ImGuiWindowDockStyleCol"] = {} +defs["enums"]["ImGuiWindowDockStyleCol"][1] = {} +defs["enums"]["ImGuiWindowDockStyleCol"][1]["calc_value"] = 0 +defs["enums"]["ImGuiWindowDockStyleCol"][1]["name"] = "ImGuiWindowDockStyleCol_Text" +defs["enums"]["ImGuiWindowDockStyleCol"][1]["value"] = "0" +defs["enums"]["ImGuiWindowDockStyleCol"][2] = {} +defs["enums"]["ImGuiWindowDockStyleCol"][2]["calc_value"] = 1 +defs["enums"]["ImGuiWindowDockStyleCol"][2]["name"] = "ImGuiWindowDockStyleCol_TabHovered" +defs["enums"]["ImGuiWindowDockStyleCol"][2]["value"] = "1" +defs["enums"]["ImGuiWindowDockStyleCol"][3] = {} +defs["enums"]["ImGuiWindowDockStyleCol"][3]["calc_value"] = 2 +defs["enums"]["ImGuiWindowDockStyleCol"][3]["name"] = "ImGuiWindowDockStyleCol_TabFocused" +defs["enums"]["ImGuiWindowDockStyleCol"][3]["value"] = "2" +defs["enums"]["ImGuiWindowDockStyleCol"][4] = {} +defs["enums"]["ImGuiWindowDockStyleCol"][4]["calc_value"] = 3 +defs["enums"]["ImGuiWindowDockStyleCol"][4]["name"] = "ImGuiWindowDockStyleCol_TabSelected" +defs["enums"]["ImGuiWindowDockStyleCol"][4]["value"] = "3" +defs["enums"]["ImGuiWindowDockStyleCol"][5] = {} +defs["enums"]["ImGuiWindowDockStyleCol"][5]["calc_value"] = 4 +defs["enums"]["ImGuiWindowDockStyleCol"][5]["name"] = "ImGuiWindowDockStyleCol_TabSelectedOverline" +defs["enums"]["ImGuiWindowDockStyleCol"][5]["value"] = "4" +defs["enums"]["ImGuiWindowDockStyleCol"][6] = {} +defs["enums"]["ImGuiWindowDockStyleCol"][6]["calc_value"] = 5 +defs["enums"]["ImGuiWindowDockStyleCol"][6]["name"] = "ImGuiWindowDockStyleCol_TabDimmed" +defs["enums"]["ImGuiWindowDockStyleCol"][6]["value"] = "5" +defs["enums"]["ImGuiWindowDockStyleCol"][7] = {} +defs["enums"]["ImGuiWindowDockStyleCol"][7]["calc_value"] = 6 +defs["enums"]["ImGuiWindowDockStyleCol"][7]["name"] = "ImGuiWindowDockStyleCol_TabDimmedSelected" +defs["enums"]["ImGuiWindowDockStyleCol"][7]["value"] = "6" +defs["enums"]["ImGuiWindowDockStyleCol"][8] = {} +defs["enums"]["ImGuiWindowDockStyleCol"][8]["calc_value"] = 7 +defs["enums"]["ImGuiWindowDockStyleCol"][8]["name"] = "ImGuiWindowDockStyleCol_TabDimmedSelectedOverline" +defs["enums"]["ImGuiWindowDockStyleCol"][8]["value"] = "7" +defs["enums"]["ImGuiWindowDockStyleCol"][9] = {} +defs["enums"]["ImGuiWindowDockStyleCol"][9]["calc_value"] = 8 +defs["enums"]["ImGuiWindowDockStyleCol"][9]["name"] = "ImGuiWindowDockStyleCol_COUNT" +defs["enums"]["ImGuiWindowDockStyleCol"][9]["value"] = "8" +>>>>>>> docking_inter defs["enums"]["ImGuiWindowFlags_"] = {} defs["enums"]["ImGuiWindowFlags_"][1] = {} defs["enums"]["ImGuiWindowFlags_"][1]["calc_value"] = 0 @@ -3504,6 +3719,13 @@ defs["enums"]["ImGuiWindowFlags_"][29] = {} defs["enums"]["ImGuiWindowFlags_"][29]["calc_value"] = 268435456 defs["enums"]["ImGuiWindowFlags_"][29]["name"] = "ImGuiWindowFlags_ChildMenu" defs["enums"]["ImGuiWindowFlags_"][29]["value"] = "1 << 28" +<<<<<<< HEAD +======= +defs["enums"]["ImGuiWindowFlags_"][30] = {} +defs["enums"]["ImGuiWindowFlags_"][30]["calc_value"] = 536870912 +defs["enums"]["ImGuiWindowFlags_"][30]["name"] = "ImGuiWindowFlags_DockNodeHost" +defs["enums"]["ImGuiWindowFlags_"][30]["value"] = "1 << 29" +>>>>>>> docking_inter defs["enums"]["ImGuiWindowRefreshFlags_"] = {} defs["enums"]["ImGuiWindowRefreshFlags_"][1] = {} defs["enums"]["ImGuiWindowRefreshFlags_"][1]["calc_value"] = 0 @@ -3528,6 +3750,7 @@ defs["enumtypes"]["ImGuiLocKey"] = "int" defs["enumtypes"]["ImGuiMouseSource"] = "int" defs["enumtypes"]["ImGuiSortDirection"] = "ImU8" defs["locations"] = {} +<<<<<<< HEAD defs["locations"]["ImBitVector"] = "imgui_internal:607" defs["locations"]["ImColor"] = "imgui:2619" defs["locations"]["ImDrawChannel"] = "imgui:2709" @@ -3702,6 +3925,194 @@ defs["locations"]["ImVec1"] = "imgui_internal:511" defs["locations"]["ImVec2"] = "imgui:273" defs["locations"]["ImVec2ih"] = "imgui_internal:519" defs["locations"]["ImVec4"] = "imgui:286" +======= +defs["locations"]["ImBitVector"] = "imgui_internal:620" +defs["locations"]["ImColor"] = "imgui:2763" +defs["locations"]["ImDrawChannel"] = "imgui:2853" +defs["locations"]["ImDrawCmd"] = "imgui:2812" +defs["locations"]["ImDrawCmdHeader"] = "imgui:2845" +defs["locations"]["ImDrawData"] = "imgui:3057" +defs["locations"]["ImDrawDataBuilder"] = "imgui_internal:808" +defs["locations"]["ImDrawFlags_"] = "imgui:2879" +defs["locations"]["ImDrawList"] = "imgui:2917" +defs["locations"]["ImDrawListFlags_"] = "imgui:2899" +defs["locations"]["ImDrawListSharedData"] = "imgui_internal:785" +defs["locations"]["ImDrawListSplitter"] = "imgui:2862" +defs["locations"]["ImDrawVert"] = "imgui:2830" +defs["locations"]["ImFont"] = "imgui:3280" +defs["locations"]["ImFontAtlas"] = "imgui:3176" +defs["locations"]["ImFontAtlasCustomRect"] = "imgui:3138" +defs["locations"]["ImFontAtlasFlags_"] = "imgui:3151" +defs["locations"]["ImFontBuilderIO"] = "imgui_internal:3892" +defs["locations"]["ImFontConfig"] = "imgui:3081" +defs["locations"]["ImFontGlyph"] = "imgui:3111" +defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:3123" +defs["locations"]["ImGuiActivateFlags_"] = "imgui_internal:1552" +defs["locations"]["ImGuiAxis"] = "imgui_internal:1031" +defs["locations"]["ImGuiBackendFlags_"] = "imgui:1622" +defs["locations"]["ImGuiButtonFlagsPrivate_"] = "imgui_internal:925" +defs["locations"]["ImGuiButtonFlags_"] = "imgui:1753" +defs["locations"]["ImGuiChildFlags_"] = "imgui:1112" +defs["locations"]["ImGuiCol_"] = "imgui:1637" +defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1764" +defs["locations"]["ImGuiColorMod"] = "imgui_internal:1045" +defs["locations"]["ImGuiComboFlagsPrivate_"] = "imgui_internal:950" +defs["locations"]["ImGuiComboFlags_"] = "imgui:1235" +defs["locations"]["ImGuiComboPreviewData"] = "imgui_internal:1062" +defs["locations"]["ImGuiCond_"] = "imgui:1866" +defs["locations"]["ImGuiConfigFlags_"] = "imgui:1596" +defs["locations"]["ImGuiContext"] = "imgui_internal:2113" +defs["locations"]["ImGuiContextHook"] = "imgui_internal:2098" +defs["locations"]["ImGuiContextHookType"] = "imgui_internal:2096" +defs["locations"]["ImGuiDataAuthority_"] = "imgui_internal:1781" +defs["locations"]["ImGuiDataTypeInfo"] = "imgui_internal:834" +defs["locations"]["ImGuiDataTypePrivate_"] = "imgui_internal:843" +defs["locations"]["ImGuiDataTypeStorage"] = "imgui_internal:828" +defs["locations"]["ImGuiDataType_"] = "imgui:1383" +defs["locations"]["ImGuiDataVarInfo"] = "imgui_internal:820" +defs["locations"]["ImGuiDebugAllocEntry"] = "imgui_internal:2032" +defs["locations"]["ImGuiDebugAllocInfo"] = "imgui_internal:2039" +defs["locations"]["ImGuiDebugLogFlags_"] = "imgui_internal:2012" +defs["locations"]["ImGuiDir"] = "imgui:1399" +defs["locations"]["ImGuiDockContext"] = "imgui_internal:1883" +defs["locations"]["ImGuiDockNode"] = "imgui_internal:1797" +defs["locations"]["ImGuiDockNodeFlagsPrivate_"] = "imgui_internal:1752" +defs["locations"]["ImGuiDockNodeFlags_"] = "imgui:1336" +defs["locations"]["ImGuiDockNodeState"] = "imgui_internal:1788" +defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1355" +defs["locations"]["ImGuiFocusRequestFlags_"] = "imgui_internal:994" +defs["locations"]["ImGuiFocusScopeData"] = "imgui_internal:1632" +defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1282" +defs["locations"]["ImGuiGroupData"] = "imgui_internal:1075" +defs["locations"]["ImGuiHoveredFlagsPrivate_"] = "imgui_internal:907" +defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1296" +defs["locations"]["ImGuiIDStackTool"] = "imgui_internal:2079" +defs["locations"]["ImGuiIO"] = "imgui:2226" +defs["locations"]["ImGuiInputEvent"] = "imgui_internal:1412" +defs["locations"]["ImGuiInputEventAppFocused"] = "imgui_internal:1410" +defs["locations"]["ImGuiInputEventKey"] = "imgui_internal:1408" +defs["locations"]["ImGuiInputEventMouseButton"] = "imgui_internal:1406" +defs["locations"]["ImGuiInputEventMousePos"] = "imgui_internal:1404" +defs["locations"]["ImGuiInputEventMouseViewport"] = "imgui_internal:1407" +defs["locations"]["ImGuiInputEventMouseWheel"] = "imgui_internal:1405" +defs["locations"]["ImGuiInputEventText"] = "imgui_internal:1409" +defs["locations"]["ImGuiInputEventType"] = "imgui_internal:1380" +defs["locations"]["ImGuiInputFlagsPrivate_"] = "imgui_internal:1479" +defs["locations"]["ImGuiInputFlags_"] = "imgui:1561" +defs["locations"]["ImGuiInputSource"] = "imgui_internal:1393" +defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2448" +defs["locations"]["ImGuiInputTextDeactivatedState"] = "imgui_internal:1111" +defs["locations"]["ImGuiInputTextFlagsPrivate_"] = "imgui_internal:915" +defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1128" +defs["locations"]["ImGuiInputTextState"] = "imgui_internal:1121" +defs["locations"]["ImGuiItemFlags_"] = "imgui_internal:859" +defs["locations"]["ImGuiItemStatusFlags_"] = "imgui_internal:881" +defs["locations"]["ImGuiKey"] = "imgui:1428" +defs["locations"]["ImGuiKeyData"] = "imgui:2218" +defs["locations"]["ImGuiKeyOwnerData"] = "imgui_internal:1466" +defs["locations"]["ImGuiKeyRoutingData"] = "imgui_internal:1440" +defs["locations"]["ImGuiKeyRoutingTable"] = "imgui_internal:1454" +defs["locations"]["ImGuiLastItemData"] = "imgui_internal:1258" +defs["locations"]["ImGuiLayoutType_"] = "imgui_internal:1015" +defs["locations"]["ImGuiListClipper"] = "imgui:2677" +defs["locations"]["ImGuiListClipperData"] = "imgui_internal:1536" +defs["locations"]["ImGuiListClipperRange"] = "imgui_internal:1523" +defs["locations"]["ImGuiLocEntry"] = "imgui_internal:2001" +defs["locations"]["ImGuiLocKey"] = "imgui_internal:1985" +defs["locations"]["ImGuiLogType"] = "imgui_internal:1021" +defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:1093" +defs["locations"]["ImGuiMetricsConfig"] = "imgui_internal:2049" +defs["locations"]["ImGuiMouseButton_"] = "imgui:1826" +defs["locations"]["ImGuiMouseCursor_"] = "imgui:1836" +defs["locations"]["ImGuiMouseSource"] = "imgui:1855" +defs["locations"]["ImGuiNavHighlightFlags_"] = "imgui_internal:1577" +defs["locations"]["ImGuiNavItemData"] = "imgui_internal:1615" +defs["locations"]["ImGuiNavLayer"] = "imgui_internal:1607" +defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:1585" +defs["locations"]["ImGuiNavTreeNodeData"] = "imgui_internal:1276" +defs["locations"]["ImGuiNextItemData"] = "imgui_internal:1240" +defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:1231" +defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:1198" +defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:1179" +defs["locations"]["ImGuiOldColumnData"] = "imgui_internal:1700" +defs["locations"]["ImGuiOldColumnFlags_"] = "imgui_internal:1680" +defs["locations"]["ImGuiOldColumns"] = "imgui_internal:1710" +defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2548" +defs["locations"]["ImGuiPayload"] = "imgui:2513" +defs["locations"]["ImGuiPlatformIO"] = "imgui:3450" +defs["locations"]["ImGuiPlatformImeData"] = "imgui:3523" +defs["locations"]["ImGuiPlatformMonitor"] = "imgui:3513" +defs["locations"]["ImGuiPlotType"] = "imgui_internal:1038" +defs["locations"]["ImGuiPopupData"] = "imgui_internal:1337" +defs["locations"]["ImGuiPopupFlags_"] = "imgui:1202" +defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:1329" +defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:1316" +defs["locations"]["ImGuiScrollFlags_"] = "imgui_internal:1563" +defs["locations"]["ImGuiSelectableFlagsPrivate_"] = "imgui_internal:963" +defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1220" +defs["locations"]["ImGuiSeparatorFlags_"] = "imgui_internal:983" +defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:1965" +defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:1309" +defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2482" +defs["locations"]["ImGuiSliderFlagsPrivate_"] = "imgui_internal:956" +defs["locations"]["ImGuiSliderFlags_"] = "imgui:1810" +defs["locations"]["ImGuiSortDirection"] = "imgui:1410" +defs["locations"]["ImGuiStackLevelInfo"] = "imgui_internal:2067" +defs["locations"]["ImGuiStackSizes"] = "imgui_internal:1283" +defs["locations"]["ImGuiStorage"] = "imgui:2620" +defs["locations"]["ImGuiStoragePair"] = "imgui:2603" +defs["locations"]["ImGuiStyle"] = "imgui:2143" +defs["locations"]["ImGuiStyleMod"] = "imgui_internal:1052" +defs["locations"]["ImGuiStyleVar_"] = "imgui:1713" +defs["locations"]["ImGuiTabBar"] = "imgui_internal:2932" +defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:2895" +defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1250" +defs["locations"]["ImGuiTabItem"] = "imgui_internal:2912" +defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:2903" +defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1267" +defs["locations"]["ImGuiTable"] = "imgui_internal:3077" +defs["locations"]["ImGuiTableBgTarget_"] = "imgui:2007" +defs["locations"]["ImGuiTableCellData"] = "imgui_internal:3045" +defs["locations"]["ImGuiTableColumn"] = "imgui_internal:2986" +defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:1954" +defs["locations"]["ImGuiTableColumnSettings"] = "imgui_internal:3224" +defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:2029" +defs["locations"]["ImGuiTableFlags_"] = "imgui:1901" +defs["locations"]["ImGuiTableHeaderData"] = "imgui_internal:3054" +defs["locations"]["ImGuiTableInstanceData"] = "imgui_internal:3064" +defs["locations"]["ImGuiTableRowFlags_"] = "imgui:1992" +defs["locations"]["ImGuiTableSettings"] = "imgui_internal:3248" +defs["locations"]["ImGuiTableSortSpecs"] = "imgui:2019" +defs["locations"]["ImGuiTableTempData"] = "imgui_internal:3201" +defs["locations"]["ImGuiTextBuffer"] = "imgui:2583" +defs["locations"]["ImGuiTextFilter"] = "imgui:2556" +defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:1001" +defs["locations"]["ImGuiTextIndex"] = "imgui_internal:740" +defs["locations"]["ImGuiTextRange"] = "imgui:2566" +defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:1007" +defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "imgui_internal:977" +defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1167" +defs["locations"]["ImGuiTypingSelectFlags_"] = "imgui_internal:1643" +defs["locations"]["ImGuiTypingSelectRequest"] = "imgui_internal:1651" +defs["locations"]["ImGuiTypingSelectState"] = "imgui_internal:1662" +defs["locations"]["ImGuiViewport"] = "imgui:3366" +defs["locations"]["ImGuiViewportFlags_"] = "imgui:3338" +defs["locations"]["ImGuiViewportP"] = "imgui_internal:1900" +defs["locations"]["ImGuiWindow"] = "imgui_internal:2744" +defs["locations"]["ImGuiWindowClass"] = "imgui:2497" +defs["locations"]["ImGuiWindowDockStyle"] = "imgui_internal:1878" +defs["locations"]["ImGuiWindowDockStyleCol"] = "imgui_internal:1864" +defs["locations"]["ImGuiWindowFlags_"] = "imgui:1061" +defs["locations"]["ImGuiWindowRefreshFlags_"] = "imgui_internal:1170" +defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:1946" +defs["locations"]["ImGuiWindowStackData"] = "imgui_internal:1301" +defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:2694" +defs["locations"]["ImRect"] = "imgui_internal:542" +defs["locations"]["ImVec1"] = "imgui_internal:524" +defs["locations"]["ImVec2"] = "imgui:280" +defs["locations"]["ImVec2ih"] = "imgui_internal:532" +defs["locations"]["ImVec4"] = "imgui:293" +>>>>>>> docking_inter defs["locations"]["STB_TexteditState"] = "imstb_textedit:321" defs["locations"]["StbTexteditRow"] = "imstb_textedit:368" defs["locations"]["StbUndoRecord"] = "imstb_textedit:303" @@ -4280,6 +4691,7 @@ defs["structs"]["ImGuiContext"][23] = {} defs["structs"]["ImGuiContext"][23]["name"] = "InputEventsNextEventId" defs["structs"]["ImGuiContext"][23]["type"] = "ImU32" defs["structs"]["ImGuiContext"][24] = {} +<<<<<<< HEAD defs["structs"]["ImGuiContext"][24]["name"] = "Windows" defs["structs"]["ImGuiContext"][24]["template_type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][24]["type"] = "ImVector_ImGuiWindowPtr" @@ -4596,6 +5008,327 @@ defs["structs"]["ImGuiContext"][122]["type"] = "bool" defs["structs"]["ImGuiContext"][123] = {} defs["structs"]["ImGuiContext"][123]["name"] = "NavInitResult" defs["structs"]["ImGuiContext"][123]["type"] = "ImGuiNavItemData" +======= +defs["structs"]["ImGuiContext"][24]["name"] = "ContextName[16]" +defs["structs"]["ImGuiContext"][24]["size"] = 16 +defs["structs"]["ImGuiContext"][24]["type"] = "char" +defs["structs"]["ImGuiContext"][25] = {} +defs["structs"]["ImGuiContext"][25]["name"] = "InputEventsQueue" +defs["structs"]["ImGuiContext"][25]["template_type"] = "ImGuiInputEvent" +defs["structs"]["ImGuiContext"][25]["type"] = "ImVector_ImGuiInputEvent" +defs["structs"]["ImGuiContext"][26] = {} +defs["structs"]["ImGuiContext"][26]["name"] = "InputEventsTrail" +defs["structs"]["ImGuiContext"][26]["template_type"] = "ImGuiInputEvent" +defs["structs"]["ImGuiContext"][26]["type"] = "ImVector_ImGuiInputEvent" +defs["structs"]["ImGuiContext"][27] = {} +defs["structs"]["ImGuiContext"][27]["name"] = "InputEventsNextMouseSource" +defs["structs"]["ImGuiContext"][27]["type"] = "ImGuiMouseSource" +defs["structs"]["ImGuiContext"][28] = {} +defs["structs"]["ImGuiContext"][28]["name"] = "InputEventsNextEventId" +defs["structs"]["ImGuiContext"][28]["type"] = "ImU32" +defs["structs"]["ImGuiContext"][29] = {} +defs["structs"]["ImGuiContext"][29]["name"] = "Windows" +defs["structs"]["ImGuiContext"][29]["template_type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][29]["type"] = "ImVector_ImGuiWindowPtr" +defs["structs"]["ImGuiContext"][30] = {} +defs["structs"]["ImGuiContext"][30]["name"] = "WindowsFocusOrder" +defs["structs"]["ImGuiContext"][30]["template_type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][30]["type"] = "ImVector_ImGuiWindowPtr" +defs["structs"]["ImGuiContext"][31] = {} +defs["structs"]["ImGuiContext"][31]["name"] = "WindowsTempSortBuffer" +defs["structs"]["ImGuiContext"][31]["template_type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][31]["type"] = "ImVector_ImGuiWindowPtr" +defs["structs"]["ImGuiContext"][32] = {} +defs["structs"]["ImGuiContext"][32]["name"] = "CurrentWindowStack" +defs["structs"]["ImGuiContext"][32]["template_type"] = "ImGuiWindowStackData" +defs["structs"]["ImGuiContext"][32]["type"] = "ImVector_ImGuiWindowStackData" +defs["structs"]["ImGuiContext"][33] = {} +defs["structs"]["ImGuiContext"][33]["name"] = "WindowsById" +defs["structs"]["ImGuiContext"][33]["type"] = "ImGuiStorage" +defs["structs"]["ImGuiContext"][34] = {} +defs["structs"]["ImGuiContext"][34]["name"] = "WindowsActiveCount" +defs["structs"]["ImGuiContext"][34]["type"] = "int" +defs["structs"]["ImGuiContext"][35] = {} +defs["structs"]["ImGuiContext"][35]["name"] = "WindowsHoverPadding" +defs["structs"]["ImGuiContext"][35]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][36] = {} +defs["structs"]["ImGuiContext"][36]["name"] = "DebugBreakInWindow" +defs["structs"]["ImGuiContext"][36]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][37] = {} +defs["structs"]["ImGuiContext"][37]["name"] = "CurrentWindow" +defs["structs"]["ImGuiContext"][37]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][38] = {} +defs["structs"]["ImGuiContext"][38]["name"] = "HoveredWindow" +defs["structs"]["ImGuiContext"][38]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][39] = {} +defs["structs"]["ImGuiContext"][39]["name"] = "HoveredWindowUnderMovingWindow" +defs["structs"]["ImGuiContext"][39]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][40] = {} +defs["structs"]["ImGuiContext"][40]["name"] = "HoveredWindowBeforeClear" +defs["structs"]["ImGuiContext"][40]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][41] = {} +defs["structs"]["ImGuiContext"][41]["name"] = "MovingWindow" +defs["structs"]["ImGuiContext"][41]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][42] = {} +defs["structs"]["ImGuiContext"][42]["name"] = "WheelingWindow" +defs["structs"]["ImGuiContext"][42]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][43] = {} +defs["structs"]["ImGuiContext"][43]["name"] = "WheelingWindowRefMousePos" +defs["structs"]["ImGuiContext"][43]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][44] = {} +defs["structs"]["ImGuiContext"][44]["name"] = "WheelingWindowStartFrame" +defs["structs"]["ImGuiContext"][44]["type"] = "int" +defs["structs"]["ImGuiContext"][45] = {} +defs["structs"]["ImGuiContext"][45]["name"] = "WheelingWindowScrolledFrame" +defs["structs"]["ImGuiContext"][45]["type"] = "int" +defs["structs"]["ImGuiContext"][46] = {} +defs["structs"]["ImGuiContext"][46]["name"] = "WheelingWindowReleaseTimer" +defs["structs"]["ImGuiContext"][46]["type"] = "float" +defs["structs"]["ImGuiContext"][47] = {} +defs["structs"]["ImGuiContext"][47]["name"] = "WheelingWindowWheelRemainder" +defs["structs"]["ImGuiContext"][47]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][48] = {} +defs["structs"]["ImGuiContext"][48]["name"] = "WheelingAxisAvg" +defs["structs"]["ImGuiContext"][48]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][49] = {} +defs["structs"]["ImGuiContext"][49]["name"] = "DebugHookIdInfo" +defs["structs"]["ImGuiContext"][49]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][50] = {} +defs["structs"]["ImGuiContext"][50]["name"] = "HoveredId" +defs["structs"]["ImGuiContext"][50]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][51] = {} +defs["structs"]["ImGuiContext"][51]["name"] = "HoveredIdPreviousFrame" +defs["structs"]["ImGuiContext"][51]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][52] = {} +defs["structs"]["ImGuiContext"][52]["name"] = "HoveredIdTimer" +defs["structs"]["ImGuiContext"][52]["type"] = "float" +defs["structs"]["ImGuiContext"][53] = {} +defs["structs"]["ImGuiContext"][53]["name"] = "HoveredIdNotActiveTimer" +defs["structs"]["ImGuiContext"][53]["type"] = "float" +defs["structs"]["ImGuiContext"][54] = {} +defs["structs"]["ImGuiContext"][54]["name"] = "HoveredIdAllowOverlap" +defs["structs"]["ImGuiContext"][54]["type"] = "bool" +defs["structs"]["ImGuiContext"][55] = {} +defs["structs"]["ImGuiContext"][55]["name"] = "HoveredIdIsDisabled" +defs["structs"]["ImGuiContext"][55]["type"] = "bool" +defs["structs"]["ImGuiContext"][56] = {} +defs["structs"]["ImGuiContext"][56]["name"] = "ItemUnclipByLog" +defs["structs"]["ImGuiContext"][56]["type"] = "bool" +defs["structs"]["ImGuiContext"][57] = {} +defs["structs"]["ImGuiContext"][57]["name"] = "ActiveId" +defs["structs"]["ImGuiContext"][57]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][58] = {} +defs["structs"]["ImGuiContext"][58]["name"] = "ActiveIdIsAlive" +defs["structs"]["ImGuiContext"][58]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][59] = {} +defs["structs"]["ImGuiContext"][59]["name"] = "ActiveIdTimer" +defs["structs"]["ImGuiContext"][59]["type"] = "float" +defs["structs"]["ImGuiContext"][60] = {} +defs["structs"]["ImGuiContext"][60]["name"] = "ActiveIdIsJustActivated" +defs["structs"]["ImGuiContext"][60]["type"] = "bool" +defs["structs"]["ImGuiContext"][61] = {} +defs["structs"]["ImGuiContext"][61]["name"] = "ActiveIdAllowOverlap" +defs["structs"]["ImGuiContext"][61]["type"] = "bool" +defs["structs"]["ImGuiContext"][62] = {} +defs["structs"]["ImGuiContext"][62]["name"] = "ActiveIdNoClearOnFocusLoss" +defs["structs"]["ImGuiContext"][62]["type"] = "bool" +defs["structs"]["ImGuiContext"][63] = {} +defs["structs"]["ImGuiContext"][63]["name"] = "ActiveIdHasBeenPressedBefore" +defs["structs"]["ImGuiContext"][63]["type"] = "bool" +defs["structs"]["ImGuiContext"][64] = {} +defs["structs"]["ImGuiContext"][64]["name"] = "ActiveIdHasBeenEditedBefore" +defs["structs"]["ImGuiContext"][64]["type"] = "bool" +defs["structs"]["ImGuiContext"][65] = {} +defs["structs"]["ImGuiContext"][65]["name"] = "ActiveIdHasBeenEditedThisFrame" +defs["structs"]["ImGuiContext"][65]["type"] = "bool" +defs["structs"]["ImGuiContext"][66] = {} +defs["structs"]["ImGuiContext"][66]["name"] = "ActiveIdFromShortcut" +defs["structs"]["ImGuiContext"][66]["type"] = "bool" +defs["structs"]["ImGuiContext"][67] = {} +defs["structs"]["ImGuiContext"][67]["bitfield"] = "8" +defs["structs"]["ImGuiContext"][67]["name"] = "ActiveIdMouseButton" +defs["structs"]["ImGuiContext"][67]["type"] = "int" +defs["structs"]["ImGuiContext"][68] = {} +defs["structs"]["ImGuiContext"][68]["name"] = "ActiveIdClickOffset" +defs["structs"]["ImGuiContext"][68]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][69] = {} +defs["structs"]["ImGuiContext"][69]["name"] = "ActiveIdWindow" +defs["structs"]["ImGuiContext"][69]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][70] = {} +defs["structs"]["ImGuiContext"][70]["name"] = "ActiveIdSource" +defs["structs"]["ImGuiContext"][70]["type"] = "ImGuiInputSource" +defs["structs"]["ImGuiContext"][71] = {} +defs["structs"]["ImGuiContext"][71]["name"] = "ActiveIdPreviousFrame" +defs["structs"]["ImGuiContext"][71]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][72] = {} +defs["structs"]["ImGuiContext"][72]["name"] = "ActiveIdPreviousFrameIsAlive" +defs["structs"]["ImGuiContext"][72]["type"] = "bool" +defs["structs"]["ImGuiContext"][73] = {} +defs["structs"]["ImGuiContext"][73]["name"] = "ActiveIdPreviousFrameHasBeenEditedBefore" +defs["structs"]["ImGuiContext"][73]["type"] = "bool" +defs["structs"]["ImGuiContext"][74] = {} +defs["structs"]["ImGuiContext"][74]["name"] = "ActiveIdPreviousFrameWindow" +defs["structs"]["ImGuiContext"][74]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][75] = {} +defs["structs"]["ImGuiContext"][75]["name"] = "LastActiveId" +defs["structs"]["ImGuiContext"][75]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][76] = {} +defs["structs"]["ImGuiContext"][76]["name"] = "LastActiveIdTimer" +defs["structs"]["ImGuiContext"][76]["type"] = "float" +defs["structs"]["ImGuiContext"][77] = {} +defs["structs"]["ImGuiContext"][77]["name"] = "LastKeyModsChangeTime" +defs["structs"]["ImGuiContext"][77]["type"] = "double" +defs["structs"]["ImGuiContext"][78] = {} +defs["structs"]["ImGuiContext"][78]["name"] = "LastKeyModsChangeFromNoneTime" +defs["structs"]["ImGuiContext"][78]["type"] = "double" +defs["structs"]["ImGuiContext"][79] = {} +defs["structs"]["ImGuiContext"][79]["name"] = "LastKeyboardKeyPressTime" +defs["structs"]["ImGuiContext"][79]["type"] = "double" +defs["structs"]["ImGuiContext"][80] = {} +defs["structs"]["ImGuiContext"][80]["name"] = "KeysMayBeCharInput" +defs["structs"]["ImGuiContext"][80]["type"] = "ImBitArrayForNamedKeys" +defs["structs"]["ImGuiContext"][81] = {} +defs["structs"]["ImGuiContext"][81]["name"] = "KeysOwnerData[ImGuiKey_NamedKey_COUNT]" +defs["structs"]["ImGuiContext"][81]["size"] = 154 +defs["structs"]["ImGuiContext"][81]["type"] = "ImGuiKeyOwnerData" +defs["structs"]["ImGuiContext"][82] = {} +defs["structs"]["ImGuiContext"][82]["name"] = "KeysRoutingTable" +defs["structs"]["ImGuiContext"][82]["type"] = "ImGuiKeyRoutingTable" +defs["structs"]["ImGuiContext"][83] = {} +defs["structs"]["ImGuiContext"][83]["name"] = "ActiveIdUsingNavDirMask" +defs["structs"]["ImGuiContext"][83]["type"] = "ImU32" +defs["structs"]["ImGuiContext"][84] = {} +defs["structs"]["ImGuiContext"][84]["name"] = "ActiveIdUsingAllKeyboardKeys" +defs["structs"]["ImGuiContext"][84]["type"] = "bool" +defs["structs"]["ImGuiContext"][85] = {} +defs["structs"]["ImGuiContext"][85]["name"] = "DebugBreakInShortcutRouting" +defs["structs"]["ImGuiContext"][85]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][86] = {} +defs["structs"]["ImGuiContext"][86]["name"] = "CurrentFocusScopeId" +defs["structs"]["ImGuiContext"][86]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][87] = {} +defs["structs"]["ImGuiContext"][87]["name"] = "CurrentItemFlags" +defs["structs"]["ImGuiContext"][87]["type"] = "ImGuiItemFlags" +defs["structs"]["ImGuiContext"][88] = {} +defs["structs"]["ImGuiContext"][88]["name"] = "DebugLocateId" +defs["structs"]["ImGuiContext"][88]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][89] = {} +defs["structs"]["ImGuiContext"][89]["name"] = "NextItemData" +defs["structs"]["ImGuiContext"][89]["type"] = "ImGuiNextItemData" +defs["structs"]["ImGuiContext"][90] = {} +defs["structs"]["ImGuiContext"][90]["name"] = "LastItemData" +defs["structs"]["ImGuiContext"][90]["type"] = "ImGuiLastItemData" +defs["structs"]["ImGuiContext"][91] = {} +defs["structs"]["ImGuiContext"][91]["name"] = "NextWindowData" +defs["structs"]["ImGuiContext"][91]["type"] = "ImGuiNextWindowData" +defs["structs"]["ImGuiContext"][92] = {} +defs["structs"]["ImGuiContext"][92]["name"] = "DebugShowGroupRects" +defs["structs"]["ImGuiContext"][92]["type"] = "bool" +defs["structs"]["ImGuiContext"][93] = {} +defs["structs"]["ImGuiContext"][93]["name"] = "DebugFlashStyleColorIdx" +defs["structs"]["ImGuiContext"][93]["type"] = "ImGuiCol" +defs["structs"]["ImGuiContext"][94] = {} +defs["structs"]["ImGuiContext"][94]["name"] = "ColorStack" +defs["structs"]["ImGuiContext"][94]["template_type"] = "ImGuiColorMod" +defs["structs"]["ImGuiContext"][94]["type"] = "ImVector_ImGuiColorMod" +defs["structs"]["ImGuiContext"][95] = {} +defs["structs"]["ImGuiContext"][95]["name"] = "StyleVarStack" +defs["structs"]["ImGuiContext"][95]["template_type"] = "ImGuiStyleMod" +defs["structs"]["ImGuiContext"][95]["type"] = "ImVector_ImGuiStyleMod" +defs["structs"]["ImGuiContext"][96] = {} +defs["structs"]["ImGuiContext"][96]["name"] = "FontStack" +defs["structs"]["ImGuiContext"][96]["template_type"] = "ImFont*" +defs["structs"]["ImGuiContext"][96]["type"] = "ImVector_ImFontPtr" +defs["structs"]["ImGuiContext"][97] = {} +defs["structs"]["ImGuiContext"][97]["name"] = "FocusScopeStack" +defs["structs"]["ImGuiContext"][97]["template_type"] = "ImGuiFocusScopeData" +defs["structs"]["ImGuiContext"][97]["type"] = "ImVector_ImGuiFocusScopeData" +defs["structs"]["ImGuiContext"][98] = {} +defs["structs"]["ImGuiContext"][98]["name"] = "ItemFlagsStack" +defs["structs"]["ImGuiContext"][98]["template_type"] = "ImGuiItemFlags" +defs["structs"]["ImGuiContext"][98]["type"] = "ImVector_ImGuiItemFlags" +defs["structs"]["ImGuiContext"][99] = {} +defs["structs"]["ImGuiContext"][99]["name"] = "GroupStack" +defs["structs"]["ImGuiContext"][99]["template_type"] = "ImGuiGroupData" +defs["structs"]["ImGuiContext"][99]["type"] = "ImVector_ImGuiGroupData" +defs["structs"]["ImGuiContext"][100] = {} +defs["structs"]["ImGuiContext"][100]["name"] = "OpenPopupStack" +defs["structs"]["ImGuiContext"][100]["template_type"] = "ImGuiPopupData" +defs["structs"]["ImGuiContext"][100]["type"] = "ImVector_ImGuiPopupData" +defs["structs"]["ImGuiContext"][101] = {} +defs["structs"]["ImGuiContext"][101]["name"] = "BeginPopupStack" +defs["structs"]["ImGuiContext"][101]["template_type"] = "ImGuiPopupData" +defs["structs"]["ImGuiContext"][101]["type"] = "ImVector_ImGuiPopupData" +defs["structs"]["ImGuiContext"][102] = {} +defs["structs"]["ImGuiContext"][102]["name"] = "NavTreeNodeStack" +defs["structs"]["ImGuiContext"][102]["template_type"] = "ImGuiNavTreeNodeData" +defs["structs"]["ImGuiContext"][102]["type"] = "ImVector_ImGuiNavTreeNodeData" +defs["structs"]["ImGuiContext"][103] = {} +defs["structs"]["ImGuiContext"][103]["name"] = "Viewports" +defs["structs"]["ImGuiContext"][103]["template_type"] = "ImGuiViewportP*" +defs["structs"]["ImGuiContext"][103]["type"] = "ImVector_ImGuiViewportPPtr" +defs["structs"]["ImGuiContext"][104] = {} +defs["structs"]["ImGuiContext"][104]["name"] = "CurrentViewport" +defs["structs"]["ImGuiContext"][104]["type"] = "ImGuiViewportP*" +defs["structs"]["ImGuiContext"][105] = {} +defs["structs"]["ImGuiContext"][105]["name"] = "MouseViewport" +defs["structs"]["ImGuiContext"][105]["type"] = "ImGuiViewportP*" +defs["structs"]["ImGuiContext"][106] = {} +defs["structs"]["ImGuiContext"][106]["name"] = "MouseLastHoveredViewport" +defs["structs"]["ImGuiContext"][106]["type"] = "ImGuiViewportP*" +defs["structs"]["ImGuiContext"][107] = {} +defs["structs"]["ImGuiContext"][107]["name"] = "PlatformLastFocusedViewportId" +defs["structs"]["ImGuiContext"][107]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][108] = {} +defs["structs"]["ImGuiContext"][108]["name"] = "FallbackMonitor" +defs["structs"]["ImGuiContext"][108]["type"] = "ImGuiPlatformMonitor" +defs["structs"]["ImGuiContext"][109] = {} +defs["structs"]["ImGuiContext"][109]["name"] = "PlatformMonitorsFullWorkRect" +defs["structs"]["ImGuiContext"][109]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][110] = {} +defs["structs"]["ImGuiContext"][110]["name"] = "ViewportCreatedCount" +defs["structs"]["ImGuiContext"][110]["type"] = "int" +defs["structs"]["ImGuiContext"][111] = {} +defs["structs"]["ImGuiContext"][111]["name"] = "PlatformWindowsCreatedCount" +defs["structs"]["ImGuiContext"][111]["type"] = "int" +defs["structs"]["ImGuiContext"][112] = {} +defs["structs"]["ImGuiContext"][112]["name"] = "ViewportFocusedStampCount" +defs["structs"]["ImGuiContext"][112]["type"] = "int" +defs["structs"]["ImGuiContext"][113] = {} +defs["structs"]["ImGuiContext"][113]["name"] = "NavWindow" +defs["structs"]["ImGuiContext"][113]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][114] = {} +defs["structs"]["ImGuiContext"][114]["name"] = "NavId" +defs["structs"]["ImGuiContext"][114]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][115] = {} +defs["structs"]["ImGuiContext"][115]["name"] = "NavFocusScopeId" +defs["structs"]["ImGuiContext"][115]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][116] = {} +defs["structs"]["ImGuiContext"][116]["name"] = "NavLayer" +defs["structs"]["ImGuiContext"][116]["type"] = "ImGuiNavLayer" +defs["structs"]["ImGuiContext"][117] = {} +defs["structs"]["ImGuiContext"][117]["name"] = "NavActivateId" +defs["structs"]["ImGuiContext"][117]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][118] = {} +defs["structs"]["ImGuiContext"][118]["name"] = "NavActivateDownId" +defs["structs"]["ImGuiContext"][118]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][119] = {} +defs["structs"]["ImGuiContext"][119]["name"] = "NavActivatePressedId" +defs["structs"]["ImGuiContext"][119]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][120] = {} +defs["structs"]["ImGuiContext"][120]["name"] = "NavActivateFlags" +defs["structs"]["ImGuiContext"][120]["type"] = "ImGuiActivateFlags" +defs["structs"]["ImGuiContext"][121] = {} +defs["structs"]["ImGuiContext"][121]["name"] = "NavFocusRoute" +defs["structs"]["ImGuiContext"][121]["template_type"] = "ImGuiFocusScopeData" +defs["structs"]["ImGuiContext"][121]["type"] = "ImVector_ImGuiFocusScopeData" +defs["structs"]["ImGuiContext"][122] = {} +defs["structs"]["ImGuiContext"][122]["name"] = "NavHighlightActivatedId" +defs["structs"]["ImGuiContext"][122]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][123] = {} +defs["structs"]["ImGuiContext"][123]["name"] = "NavHighlightActivatedTimer" +defs["structs"]["ImGuiContext"][123]["type"] = "float" +>>>>>>> docking_inter defs["structs"]["ImGuiContext"][124] = {} defs["structs"]["ImGuiContext"][124]["name"] = "NavMoveSubmitted" defs["structs"]["ImGuiContext"][124]["type"] = "bool" @@ -4606,6 +5339,7 @@ defs["structs"]["ImGuiContext"][126] = {} defs["structs"]["ImGuiContext"][126]["name"] = "NavMoveForwardToNextFrame" defs["structs"]["ImGuiContext"][126]["type"] = "bool" defs["structs"]["ImGuiContext"][127] = {} +<<<<<<< HEAD defs["structs"]["ImGuiContext"][127]["name"] = "NavMoveFlags" defs["structs"]["ImGuiContext"][127]["type"] = "ImGuiNavMoveFlags" defs["structs"]["ImGuiContext"][128] = {} @@ -5066,6 +5800,534 @@ defs["structs"]["ImGuiContext"][273] = {} defs["structs"]["ImGuiContext"][273]["name"] = "TempKeychordName[64]" defs["structs"]["ImGuiContext"][273]["size"] = 64 defs["structs"]["ImGuiContext"][273]["type"] = "char" +======= +defs["structs"]["ImGuiContext"][127]["name"] = "NavLastValidSelectionUserData" +defs["structs"]["ImGuiContext"][127]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiContext"][128] = {} +defs["structs"]["ImGuiContext"][128]["name"] = "NavIdIsAlive" +defs["structs"]["ImGuiContext"][128]["type"] = "bool" +defs["structs"]["ImGuiContext"][129] = {} +defs["structs"]["ImGuiContext"][129]["name"] = "NavMousePosDirty" +defs["structs"]["ImGuiContext"][129]["type"] = "bool" +defs["structs"]["ImGuiContext"][130] = {} +defs["structs"]["ImGuiContext"][130]["name"] = "NavDisableHighlight" +defs["structs"]["ImGuiContext"][130]["type"] = "bool" +defs["structs"]["ImGuiContext"][131] = {} +defs["structs"]["ImGuiContext"][131]["name"] = "NavDisableMouseHover" +defs["structs"]["ImGuiContext"][131]["type"] = "bool" +defs["structs"]["ImGuiContext"][132] = {} +defs["structs"]["ImGuiContext"][132]["name"] = "NavAnyRequest" +defs["structs"]["ImGuiContext"][132]["type"] = "bool" +defs["structs"]["ImGuiContext"][133] = {} +defs["structs"]["ImGuiContext"][133]["name"] = "NavInitRequest" +defs["structs"]["ImGuiContext"][133]["type"] = "bool" +defs["structs"]["ImGuiContext"][134] = {} +defs["structs"]["ImGuiContext"][134]["name"] = "NavInitRequestFromMove" +defs["structs"]["ImGuiContext"][134]["type"] = "bool" +defs["structs"]["ImGuiContext"][135] = {} +defs["structs"]["ImGuiContext"][135]["name"] = "NavInitResult" +defs["structs"]["ImGuiContext"][135]["type"] = "ImGuiNavItemData" +defs["structs"]["ImGuiContext"][136] = {} +defs["structs"]["ImGuiContext"][136]["name"] = "NavMoveSubmitted" +defs["structs"]["ImGuiContext"][136]["type"] = "bool" +defs["structs"]["ImGuiContext"][137] = {} +defs["structs"]["ImGuiContext"][137]["name"] = "NavMoveScoringItems" +defs["structs"]["ImGuiContext"][137]["type"] = "bool" +defs["structs"]["ImGuiContext"][138] = {} +defs["structs"]["ImGuiContext"][138]["name"] = "NavMoveForwardToNextFrame" +defs["structs"]["ImGuiContext"][138]["type"] = "bool" +defs["structs"]["ImGuiContext"][139] = {} +defs["structs"]["ImGuiContext"][139]["name"] = "NavMoveFlags" +defs["structs"]["ImGuiContext"][139]["type"] = "ImGuiNavMoveFlags" +defs["structs"]["ImGuiContext"][140] = {} +defs["structs"]["ImGuiContext"][140]["name"] = "NavMoveScrollFlags" +defs["structs"]["ImGuiContext"][140]["type"] = "ImGuiScrollFlags" +defs["structs"]["ImGuiContext"][141] = {} +defs["structs"]["ImGuiContext"][141]["name"] = "NavMoveKeyMods" +defs["structs"]["ImGuiContext"][141]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][142] = {} +defs["structs"]["ImGuiContext"][142]["name"] = "NavMoveDir" +defs["structs"]["ImGuiContext"][142]["type"] = "ImGuiDir" +defs["structs"]["ImGuiContext"][143] = {} +defs["structs"]["ImGuiContext"][143]["name"] = "NavMoveDirForDebug" +defs["structs"]["ImGuiContext"][143]["type"] = "ImGuiDir" +defs["structs"]["ImGuiContext"][144] = {} +defs["structs"]["ImGuiContext"][144]["name"] = "NavMoveClipDir" +defs["structs"]["ImGuiContext"][144]["type"] = "ImGuiDir" +defs["structs"]["ImGuiContext"][145] = {} +defs["structs"]["ImGuiContext"][145]["name"] = "NavScoringRect" +defs["structs"]["ImGuiContext"][145]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][146] = {} +defs["structs"]["ImGuiContext"][146]["name"] = "NavScoringNoClipRect" +defs["structs"]["ImGuiContext"][146]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][147] = {} +defs["structs"]["ImGuiContext"][147]["name"] = "NavScoringDebugCount" +defs["structs"]["ImGuiContext"][147]["type"] = "int" +defs["structs"]["ImGuiContext"][148] = {} +defs["structs"]["ImGuiContext"][148]["name"] = "NavTabbingDir" +defs["structs"]["ImGuiContext"][148]["type"] = "int" +defs["structs"]["ImGuiContext"][149] = {} +defs["structs"]["ImGuiContext"][149]["name"] = "NavTabbingCounter" +defs["structs"]["ImGuiContext"][149]["type"] = "int" +defs["structs"]["ImGuiContext"][150] = {} +defs["structs"]["ImGuiContext"][150]["name"] = "NavMoveResultLocal" +defs["structs"]["ImGuiContext"][150]["type"] = "ImGuiNavItemData" +defs["structs"]["ImGuiContext"][151] = {} +defs["structs"]["ImGuiContext"][151]["name"] = "NavMoveResultLocalVisible" +defs["structs"]["ImGuiContext"][151]["type"] = "ImGuiNavItemData" +defs["structs"]["ImGuiContext"][152] = {} +defs["structs"]["ImGuiContext"][152]["name"] = "NavMoveResultOther" +defs["structs"]["ImGuiContext"][152]["type"] = "ImGuiNavItemData" +defs["structs"]["ImGuiContext"][153] = {} +defs["structs"]["ImGuiContext"][153]["name"] = "NavTabbingResultFirst" +defs["structs"]["ImGuiContext"][153]["type"] = "ImGuiNavItemData" +defs["structs"]["ImGuiContext"][154] = {} +defs["structs"]["ImGuiContext"][154]["name"] = "NavJustMovedFromFocusScopeId" +defs["structs"]["ImGuiContext"][154]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][155] = {} +defs["structs"]["ImGuiContext"][155]["name"] = "NavJustMovedToId" +defs["structs"]["ImGuiContext"][155]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][156] = {} +defs["structs"]["ImGuiContext"][156]["name"] = "NavJustMovedToFocusScopeId" +defs["structs"]["ImGuiContext"][156]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][157] = {} +defs["structs"]["ImGuiContext"][157]["name"] = "NavJustMovedToKeyMods" +defs["structs"]["ImGuiContext"][157]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][158] = {} +defs["structs"]["ImGuiContext"][158]["name"] = "NavJustMovedToIsTabbing" +defs["structs"]["ImGuiContext"][158]["type"] = "bool" +defs["structs"]["ImGuiContext"][159] = {} +defs["structs"]["ImGuiContext"][159]["name"] = "NavJustMovedToHasSelectionData" +defs["structs"]["ImGuiContext"][159]["type"] = "bool" +defs["structs"]["ImGuiContext"][160] = {} +defs["structs"]["ImGuiContext"][160]["name"] = "ConfigNavWindowingKeyNext" +defs["structs"]["ImGuiContext"][160]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][161] = {} +defs["structs"]["ImGuiContext"][161]["name"] = "ConfigNavWindowingKeyPrev" +defs["structs"]["ImGuiContext"][161]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][162] = {} +defs["structs"]["ImGuiContext"][162]["name"] = "NavWindowingTarget" +defs["structs"]["ImGuiContext"][162]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][163] = {} +defs["structs"]["ImGuiContext"][163]["name"] = "NavWindowingTargetAnim" +defs["structs"]["ImGuiContext"][163]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][164] = {} +defs["structs"]["ImGuiContext"][164]["name"] = "NavWindowingListWindow" +defs["structs"]["ImGuiContext"][164]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][165] = {} +defs["structs"]["ImGuiContext"][165]["name"] = "NavWindowingTimer" +defs["structs"]["ImGuiContext"][165]["type"] = "float" +defs["structs"]["ImGuiContext"][166] = {} +defs["structs"]["ImGuiContext"][166]["name"] = "NavWindowingHighlightAlpha" +defs["structs"]["ImGuiContext"][166]["type"] = "float" +defs["structs"]["ImGuiContext"][167] = {} +defs["structs"]["ImGuiContext"][167]["name"] = "NavWindowingToggleLayer" +defs["structs"]["ImGuiContext"][167]["type"] = "bool" +defs["structs"]["ImGuiContext"][168] = {} +defs["structs"]["ImGuiContext"][168]["name"] = "NavWindowingToggleKey" +defs["structs"]["ImGuiContext"][168]["type"] = "ImGuiKey" +defs["structs"]["ImGuiContext"][169] = {} +defs["structs"]["ImGuiContext"][169]["name"] = "NavWindowingAccumDeltaPos" +defs["structs"]["ImGuiContext"][169]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][170] = {} +defs["structs"]["ImGuiContext"][170]["name"] = "NavWindowingAccumDeltaSize" +defs["structs"]["ImGuiContext"][170]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][171] = {} +defs["structs"]["ImGuiContext"][171]["name"] = "DimBgRatio" +defs["structs"]["ImGuiContext"][171]["type"] = "float" +defs["structs"]["ImGuiContext"][172] = {} +defs["structs"]["ImGuiContext"][172]["name"] = "DragDropActive" +defs["structs"]["ImGuiContext"][172]["type"] = "bool" +defs["structs"]["ImGuiContext"][173] = {} +defs["structs"]["ImGuiContext"][173]["name"] = "DragDropWithinSource" +defs["structs"]["ImGuiContext"][173]["type"] = "bool" +defs["structs"]["ImGuiContext"][174] = {} +defs["structs"]["ImGuiContext"][174]["name"] = "DragDropWithinTarget" +defs["structs"]["ImGuiContext"][174]["type"] = "bool" +defs["structs"]["ImGuiContext"][175] = {} +defs["structs"]["ImGuiContext"][175]["name"] = "DragDropSourceFlags" +defs["structs"]["ImGuiContext"][175]["type"] = "ImGuiDragDropFlags" +defs["structs"]["ImGuiContext"][176] = {} +defs["structs"]["ImGuiContext"][176]["name"] = "DragDropSourceFrameCount" +defs["structs"]["ImGuiContext"][176]["type"] = "int" +defs["structs"]["ImGuiContext"][177] = {} +defs["structs"]["ImGuiContext"][177]["name"] = "DragDropMouseButton" +defs["structs"]["ImGuiContext"][177]["type"] = "int" +defs["structs"]["ImGuiContext"][178] = {} +defs["structs"]["ImGuiContext"][178]["name"] = "DragDropPayload" +defs["structs"]["ImGuiContext"][178]["type"] = "ImGuiPayload" +defs["structs"]["ImGuiContext"][179] = {} +defs["structs"]["ImGuiContext"][179]["name"] = "DragDropTargetRect" +defs["structs"]["ImGuiContext"][179]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][180] = {} +defs["structs"]["ImGuiContext"][180]["name"] = "DragDropTargetClipRect" +defs["structs"]["ImGuiContext"][180]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][181] = {} +defs["structs"]["ImGuiContext"][181]["name"] = "DragDropTargetId" +defs["structs"]["ImGuiContext"][181]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][182] = {} +defs["structs"]["ImGuiContext"][182]["name"] = "DragDropAcceptFlags" +defs["structs"]["ImGuiContext"][182]["type"] = "ImGuiDragDropFlags" +defs["structs"]["ImGuiContext"][183] = {} +defs["structs"]["ImGuiContext"][183]["name"] = "DragDropAcceptIdCurrRectSurface" +defs["structs"]["ImGuiContext"][183]["type"] = "float" +defs["structs"]["ImGuiContext"][184] = {} +defs["structs"]["ImGuiContext"][184]["name"] = "DragDropAcceptIdCurr" +defs["structs"]["ImGuiContext"][184]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][185] = {} +defs["structs"]["ImGuiContext"][185]["name"] = "DragDropAcceptIdPrev" +defs["structs"]["ImGuiContext"][185]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][186] = {} +defs["structs"]["ImGuiContext"][186]["name"] = "DragDropAcceptFrameCount" +defs["structs"]["ImGuiContext"][186]["type"] = "int" +defs["structs"]["ImGuiContext"][187] = {} +defs["structs"]["ImGuiContext"][187]["name"] = "DragDropHoldJustPressedId" +defs["structs"]["ImGuiContext"][187]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][188] = {} +defs["structs"]["ImGuiContext"][188]["name"] = "DragDropPayloadBufHeap" +defs["structs"]["ImGuiContext"][188]["template_type"] = "unsigned char" +defs["structs"]["ImGuiContext"][188]["type"] = "ImVector_unsigned_char" +defs["structs"]["ImGuiContext"][189] = {} +defs["structs"]["ImGuiContext"][189]["name"] = "DragDropPayloadBufLocal[16]" +defs["structs"]["ImGuiContext"][189]["size"] = 16 +defs["structs"]["ImGuiContext"][189]["type"] = "unsigned char" +defs["structs"]["ImGuiContext"][190] = {} +defs["structs"]["ImGuiContext"][190]["name"] = "ClipperTempDataStacked" +defs["structs"]["ImGuiContext"][190]["type"] = "int" +defs["structs"]["ImGuiContext"][191] = {} +defs["structs"]["ImGuiContext"][191]["name"] = "ClipperTempData" +defs["structs"]["ImGuiContext"][191]["template_type"] = "ImGuiListClipperData" +defs["structs"]["ImGuiContext"][191]["type"] = "ImVector_ImGuiListClipperData" +defs["structs"]["ImGuiContext"][192] = {} +defs["structs"]["ImGuiContext"][192]["name"] = "CurrentTable" +defs["structs"]["ImGuiContext"][192]["type"] = "ImGuiTable*" +defs["structs"]["ImGuiContext"][193] = {} +defs["structs"]["ImGuiContext"][193]["name"] = "DebugBreakInTable" +defs["structs"]["ImGuiContext"][193]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][194] = {} +defs["structs"]["ImGuiContext"][194]["name"] = "TablesTempDataStacked" +defs["structs"]["ImGuiContext"][194]["type"] = "int" +defs["structs"]["ImGuiContext"][195] = {} +defs["structs"]["ImGuiContext"][195]["name"] = "TablesTempData" +defs["structs"]["ImGuiContext"][195]["template_type"] = "ImGuiTableTempData" +defs["structs"]["ImGuiContext"][195]["type"] = "ImVector_ImGuiTableTempData" +defs["structs"]["ImGuiContext"][196] = {} +defs["structs"]["ImGuiContext"][196]["name"] = "Tables" +defs["structs"]["ImGuiContext"][196]["template_type"] = "ImGuiTable" +defs["structs"]["ImGuiContext"][196]["type"] = "ImPool_ImGuiTable" +defs["structs"]["ImGuiContext"][197] = {} +defs["structs"]["ImGuiContext"][197]["name"] = "TablesLastTimeActive" +defs["structs"]["ImGuiContext"][197]["template_type"] = "float" +defs["structs"]["ImGuiContext"][197]["type"] = "ImVector_float" +defs["structs"]["ImGuiContext"][198] = {} +defs["structs"]["ImGuiContext"][198]["name"] = "DrawChannelsTempMergeBuffer" +defs["structs"]["ImGuiContext"][198]["template_type"] = "ImDrawChannel" +defs["structs"]["ImGuiContext"][198]["type"] = "ImVector_ImDrawChannel" +defs["structs"]["ImGuiContext"][199] = {} +defs["structs"]["ImGuiContext"][199]["name"] = "CurrentTabBar" +defs["structs"]["ImGuiContext"][199]["type"] = "ImGuiTabBar*" +defs["structs"]["ImGuiContext"][200] = {} +defs["structs"]["ImGuiContext"][200]["name"] = "TabBars" +defs["structs"]["ImGuiContext"][200]["template_type"] = "ImGuiTabBar" +defs["structs"]["ImGuiContext"][200]["type"] = "ImPool_ImGuiTabBar" +defs["structs"]["ImGuiContext"][201] = {} +defs["structs"]["ImGuiContext"][201]["name"] = "CurrentTabBarStack" +defs["structs"]["ImGuiContext"][201]["template_type"] = "ImGuiPtrOrIndex" +defs["structs"]["ImGuiContext"][201]["type"] = "ImVector_ImGuiPtrOrIndex" +defs["structs"]["ImGuiContext"][202] = {} +defs["structs"]["ImGuiContext"][202]["name"] = "ShrinkWidthBuffer" +defs["structs"]["ImGuiContext"][202]["template_type"] = "ImGuiShrinkWidthItem" +defs["structs"]["ImGuiContext"][202]["type"] = "ImVector_ImGuiShrinkWidthItem" +defs["structs"]["ImGuiContext"][203] = {} +defs["structs"]["ImGuiContext"][203]["name"] = "HoverItemDelayId" +defs["structs"]["ImGuiContext"][203]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][204] = {} +defs["structs"]["ImGuiContext"][204]["name"] = "HoverItemDelayIdPreviousFrame" +defs["structs"]["ImGuiContext"][204]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][205] = {} +defs["structs"]["ImGuiContext"][205]["name"] = "HoverItemDelayTimer" +defs["structs"]["ImGuiContext"][205]["type"] = "float" +defs["structs"]["ImGuiContext"][206] = {} +defs["structs"]["ImGuiContext"][206]["name"] = "HoverItemDelayClearTimer" +defs["structs"]["ImGuiContext"][206]["type"] = "float" +defs["structs"]["ImGuiContext"][207] = {} +defs["structs"]["ImGuiContext"][207]["name"] = "HoverItemUnlockedStationaryId" +defs["structs"]["ImGuiContext"][207]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][208] = {} +defs["structs"]["ImGuiContext"][208]["name"] = "HoverWindowUnlockedStationaryId" +defs["structs"]["ImGuiContext"][208]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][209] = {} +defs["structs"]["ImGuiContext"][209]["name"] = "MouseCursor" +defs["structs"]["ImGuiContext"][209]["type"] = "ImGuiMouseCursor" +defs["structs"]["ImGuiContext"][210] = {} +defs["structs"]["ImGuiContext"][210]["name"] = "MouseStationaryTimer" +defs["structs"]["ImGuiContext"][210]["type"] = "float" +defs["structs"]["ImGuiContext"][211] = {} +defs["structs"]["ImGuiContext"][211]["name"] = "MouseLastValidPos" +defs["structs"]["ImGuiContext"][211]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][212] = {} +defs["structs"]["ImGuiContext"][212]["name"] = "InputTextState" +defs["structs"]["ImGuiContext"][212]["type"] = "ImGuiInputTextState" +defs["structs"]["ImGuiContext"][213] = {} +defs["structs"]["ImGuiContext"][213]["name"] = "InputTextDeactivatedState" +defs["structs"]["ImGuiContext"][213]["type"] = "ImGuiInputTextDeactivatedState" +defs["structs"]["ImGuiContext"][214] = {} +defs["structs"]["ImGuiContext"][214]["name"] = "InputTextPasswordFont" +defs["structs"]["ImGuiContext"][214]["type"] = "ImFont" +defs["structs"]["ImGuiContext"][215] = {} +defs["structs"]["ImGuiContext"][215]["name"] = "TempInputId" +defs["structs"]["ImGuiContext"][215]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][216] = {} +defs["structs"]["ImGuiContext"][216]["name"] = "DataTypeZeroValue" +defs["structs"]["ImGuiContext"][216]["type"] = "ImGuiDataTypeStorage" +defs["structs"]["ImGuiContext"][217] = {} +defs["structs"]["ImGuiContext"][217]["name"] = "BeginMenuDepth" +defs["structs"]["ImGuiContext"][217]["type"] = "int" +defs["structs"]["ImGuiContext"][218] = {} +defs["structs"]["ImGuiContext"][218]["name"] = "BeginComboDepth" +defs["structs"]["ImGuiContext"][218]["type"] = "int" +defs["structs"]["ImGuiContext"][219] = {} +defs["structs"]["ImGuiContext"][219]["name"] = "ColorEditOptions" +defs["structs"]["ImGuiContext"][219]["type"] = "ImGuiColorEditFlags" +defs["structs"]["ImGuiContext"][220] = {} +defs["structs"]["ImGuiContext"][220]["name"] = "ColorEditCurrentID" +defs["structs"]["ImGuiContext"][220]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][221] = {} +defs["structs"]["ImGuiContext"][221]["name"] = "ColorEditSavedID" +defs["structs"]["ImGuiContext"][221]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][222] = {} +defs["structs"]["ImGuiContext"][222]["name"] = "ColorEditSavedHue" +defs["structs"]["ImGuiContext"][222]["type"] = "float" +defs["structs"]["ImGuiContext"][223] = {} +defs["structs"]["ImGuiContext"][223]["name"] = "ColorEditSavedSat" +defs["structs"]["ImGuiContext"][223]["type"] = "float" +defs["structs"]["ImGuiContext"][224] = {} +defs["structs"]["ImGuiContext"][224]["name"] = "ColorEditSavedColor" +defs["structs"]["ImGuiContext"][224]["type"] = "ImU32" +defs["structs"]["ImGuiContext"][225] = {} +defs["structs"]["ImGuiContext"][225]["name"] = "ColorPickerRef" +defs["structs"]["ImGuiContext"][225]["type"] = "ImVec4" +defs["structs"]["ImGuiContext"][226] = {} +defs["structs"]["ImGuiContext"][226]["name"] = "ComboPreviewData" +defs["structs"]["ImGuiContext"][226]["type"] = "ImGuiComboPreviewData" +defs["structs"]["ImGuiContext"][227] = {} +defs["structs"]["ImGuiContext"][227]["name"] = "WindowResizeBorderExpectedRect" +defs["structs"]["ImGuiContext"][227]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][228] = {} +defs["structs"]["ImGuiContext"][228]["name"] = "WindowResizeRelativeMode" +defs["structs"]["ImGuiContext"][228]["type"] = "bool" +defs["structs"]["ImGuiContext"][229] = {} +defs["structs"]["ImGuiContext"][229]["name"] = "ScrollbarSeekMode" +defs["structs"]["ImGuiContext"][229]["type"] = "short" +defs["structs"]["ImGuiContext"][230] = {} +defs["structs"]["ImGuiContext"][230]["name"] = "ScrollbarClickDeltaToGrabCenter" +defs["structs"]["ImGuiContext"][230]["type"] = "float" +defs["structs"]["ImGuiContext"][231] = {} +defs["structs"]["ImGuiContext"][231]["name"] = "SliderGrabClickOffset" +defs["structs"]["ImGuiContext"][231]["type"] = "float" +defs["structs"]["ImGuiContext"][232] = {} +defs["structs"]["ImGuiContext"][232]["name"] = "SliderCurrentAccum" +defs["structs"]["ImGuiContext"][232]["type"] = "float" +defs["structs"]["ImGuiContext"][233] = {} +defs["structs"]["ImGuiContext"][233]["name"] = "SliderCurrentAccumDirty" +defs["structs"]["ImGuiContext"][233]["type"] = "bool" +defs["structs"]["ImGuiContext"][234] = {} +defs["structs"]["ImGuiContext"][234]["name"] = "DragCurrentAccumDirty" +defs["structs"]["ImGuiContext"][234]["type"] = "bool" +defs["structs"]["ImGuiContext"][235] = {} +defs["structs"]["ImGuiContext"][235]["name"] = "DragCurrentAccum" +defs["structs"]["ImGuiContext"][235]["type"] = "float" +defs["structs"]["ImGuiContext"][236] = {} +defs["structs"]["ImGuiContext"][236]["name"] = "DragSpeedDefaultRatio" +defs["structs"]["ImGuiContext"][236]["type"] = "float" +defs["structs"]["ImGuiContext"][237] = {} +defs["structs"]["ImGuiContext"][237]["name"] = "DisabledAlphaBackup" +defs["structs"]["ImGuiContext"][237]["type"] = "float" +defs["structs"]["ImGuiContext"][238] = {} +defs["structs"]["ImGuiContext"][238]["name"] = "DisabledStackSize" +defs["structs"]["ImGuiContext"][238]["type"] = "short" +defs["structs"]["ImGuiContext"][239] = {} +defs["structs"]["ImGuiContext"][239]["name"] = "LockMarkEdited" +defs["structs"]["ImGuiContext"][239]["type"] = "short" +defs["structs"]["ImGuiContext"][240] = {} +defs["structs"]["ImGuiContext"][240]["name"] = "TooltipOverrideCount" +defs["structs"]["ImGuiContext"][240]["type"] = "short" +defs["structs"]["ImGuiContext"][241] = {} +defs["structs"]["ImGuiContext"][241]["name"] = "ClipboardHandlerData" +defs["structs"]["ImGuiContext"][241]["template_type"] = "char" +defs["structs"]["ImGuiContext"][241]["type"] = "ImVector_char" +defs["structs"]["ImGuiContext"][242] = {} +defs["structs"]["ImGuiContext"][242]["name"] = "MenusIdSubmittedThisFrame" +defs["structs"]["ImGuiContext"][242]["template_type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][242]["type"] = "ImVector_ImGuiID" +defs["structs"]["ImGuiContext"][243] = {} +defs["structs"]["ImGuiContext"][243]["name"] = "TypingSelectState" +defs["structs"]["ImGuiContext"][243]["type"] = "ImGuiTypingSelectState" +defs["structs"]["ImGuiContext"][244] = {} +defs["structs"]["ImGuiContext"][244]["name"] = "PlatformImeData" +defs["structs"]["ImGuiContext"][244]["type"] = "ImGuiPlatformImeData" +defs["structs"]["ImGuiContext"][245] = {} +defs["structs"]["ImGuiContext"][245]["name"] = "PlatformImeDataPrev" +defs["structs"]["ImGuiContext"][245]["type"] = "ImGuiPlatformImeData" +defs["structs"]["ImGuiContext"][246] = {} +defs["structs"]["ImGuiContext"][246]["name"] = "PlatformImeViewport" +defs["structs"]["ImGuiContext"][246]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][247] = {} +defs["structs"]["ImGuiContext"][247]["name"] = "DockContext" +defs["structs"]["ImGuiContext"][247]["type"] = "ImGuiDockContext" +defs["structs"]["ImGuiContext"][248] = {} +defs["structs"]["ImGuiContext"][248]["name"] = "DockNodeWindowMenuHandler" +defs["structs"]["ImGuiContext"][248]["type"] = "void(*)(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar)" +defs["structs"]["ImGuiContext"][249] = {} +defs["structs"]["ImGuiContext"][249]["name"] = "SettingsLoaded" +defs["structs"]["ImGuiContext"][249]["type"] = "bool" +defs["structs"]["ImGuiContext"][250] = {} +defs["structs"]["ImGuiContext"][250]["name"] = "SettingsDirtyTimer" +defs["structs"]["ImGuiContext"][250]["type"] = "float" +defs["structs"]["ImGuiContext"][251] = {} +defs["structs"]["ImGuiContext"][251]["name"] = "SettingsIniData" +defs["structs"]["ImGuiContext"][251]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][252] = {} +defs["structs"]["ImGuiContext"][252]["name"] = "SettingsHandlers" +defs["structs"]["ImGuiContext"][252]["template_type"] = "ImGuiSettingsHandler" +defs["structs"]["ImGuiContext"][252]["type"] = "ImVector_ImGuiSettingsHandler" +defs["structs"]["ImGuiContext"][253] = {} +defs["structs"]["ImGuiContext"][253]["name"] = "SettingsWindows" +defs["structs"]["ImGuiContext"][253]["template_type"] = "ImGuiWindowSettings" +defs["structs"]["ImGuiContext"][253]["type"] = "ImChunkStream_ImGuiWindowSettings" +defs["structs"]["ImGuiContext"][254] = {} +defs["structs"]["ImGuiContext"][254]["name"] = "SettingsTables" +defs["structs"]["ImGuiContext"][254]["template_type"] = "ImGuiTableSettings" +defs["structs"]["ImGuiContext"][254]["type"] = "ImChunkStream_ImGuiTableSettings" +defs["structs"]["ImGuiContext"][255] = {} +defs["structs"]["ImGuiContext"][255]["name"] = "Hooks" +defs["structs"]["ImGuiContext"][255]["template_type"] = "ImGuiContextHook" +defs["structs"]["ImGuiContext"][255]["type"] = "ImVector_ImGuiContextHook" +defs["structs"]["ImGuiContext"][256] = {} +defs["structs"]["ImGuiContext"][256]["name"] = "HookIdNext" +defs["structs"]["ImGuiContext"][256]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][257] = {} +defs["structs"]["ImGuiContext"][257]["name"] = "LocalizationTable[ImGuiLocKey_COUNT]" +defs["structs"]["ImGuiContext"][257]["size"] = 11 +defs["structs"]["ImGuiContext"][257]["type"] = "const char*" +defs["structs"]["ImGuiContext"][258] = {} +defs["structs"]["ImGuiContext"][258]["name"] = "LogEnabled" +defs["structs"]["ImGuiContext"][258]["type"] = "bool" +defs["structs"]["ImGuiContext"][259] = {} +defs["structs"]["ImGuiContext"][259]["name"] = "LogType" +defs["structs"]["ImGuiContext"][259]["type"] = "ImGuiLogType" +defs["structs"]["ImGuiContext"][260] = {} +defs["structs"]["ImGuiContext"][260]["name"] = "LogFile" +defs["structs"]["ImGuiContext"][260]["type"] = "ImFileHandle" +defs["structs"]["ImGuiContext"][261] = {} +defs["structs"]["ImGuiContext"][261]["name"] = "LogBuffer" +defs["structs"]["ImGuiContext"][261]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][262] = {} +defs["structs"]["ImGuiContext"][262]["name"] = "LogNextPrefix" +defs["structs"]["ImGuiContext"][262]["type"] = "const char*" +defs["structs"]["ImGuiContext"][263] = {} +defs["structs"]["ImGuiContext"][263]["name"] = "LogNextSuffix" +defs["structs"]["ImGuiContext"][263]["type"] = "const char*" +defs["structs"]["ImGuiContext"][264] = {} +defs["structs"]["ImGuiContext"][264]["name"] = "LogLinePosY" +defs["structs"]["ImGuiContext"][264]["type"] = "float" +defs["structs"]["ImGuiContext"][265] = {} +defs["structs"]["ImGuiContext"][265]["name"] = "LogLineFirstItem" +defs["structs"]["ImGuiContext"][265]["type"] = "bool" +defs["structs"]["ImGuiContext"][266] = {} +defs["structs"]["ImGuiContext"][266]["name"] = "LogDepthRef" +defs["structs"]["ImGuiContext"][266]["type"] = "int" +defs["structs"]["ImGuiContext"][267] = {} +defs["structs"]["ImGuiContext"][267]["name"] = "LogDepthToExpand" +defs["structs"]["ImGuiContext"][267]["type"] = "int" +defs["structs"]["ImGuiContext"][268] = {} +defs["structs"]["ImGuiContext"][268]["name"] = "LogDepthToExpandDefault" +defs["structs"]["ImGuiContext"][268]["type"] = "int" +defs["structs"]["ImGuiContext"][269] = {} +defs["structs"]["ImGuiContext"][269]["name"] = "DebugLogFlags" +defs["structs"]["ImGuiContext"][269]["type"] = "ImGuiDebugLogFlags" +defs["structs"]["ImGuiContext"][270] = {} +defs["structs"]["ImGuiContext"][270]["name"] = "DebugLogBuf" +defs["structs"]["ImGuiContext"][270]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][271] = {} +defs["structs"]["ImGuiContext"][271]["name"] = "DebugLogIndex" +defs["structs"]["ImGuiContext"][271]["type"] = "ImGuiTextIndex" +defs["structs"]["ImGuiContext"][272] = {} +defs["structs"]["ImGuiContext"][272]["name"] = "DebugLogAutoDisableFlags" +defs["structs"]["ImGuiContext"][272]["type"] = "ImGuiDebugLogFlags" +defs["structs"]["ImGuiContext"][273] = {} +defs["structs"]["ImGuiContext"][273]["name"] = "DebugLogAutoDisableFrames" +defs["structs"]["ImGuiContext"][273]["type"] = "ImU8" +defs["structs"]["ImGuiContext"][274] = {} +defs["structs"]["ImGuiContext"][274]["name"] = "DebugLocateFrames" +defs["structs"]["ImGuiContext"][274]["type"] = "ImU8" +defs["structs"]["ImGuiContext"][275] = {} +defs["structs"]["ImGuiContext"][275]["name"] = "DebugBreakInLocateId" +defs["structs"]["ImGuiContext"][275]["type"] = "bool" +defs["structs"]["ImGuiContext"][276] = {} +defs["structs"]["ImGuiContext"][276]["name"] = "DebugBreakKeyChord" +defs["structs"]["ImGuiContext"][276]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][277] = {} +defs["structs"]["ImGuiContext"][277]["name"] = "DebugBeginReturnValueCullDepth" +defs["structs"]["ImGuiContext"][277]["type"] = "ImS8" +defs["structs"]["ImGuiContext"][278] = {} +defs["structs"]["ImGuiContext"][278]["name"] = "DebugItemPickerActive" +defs["structs"]["ImGuiContext"][278]["type"] = "bool" +defs["structs"]["ImGuiContext"][279] = {} +defs["structs"]["ImGuiContext"][279]["name"] = "DebugItemPickerMouseButton" +defs["structs"]["ImGuiContext"][279]["type"] = "ImU8" +defs["structs"]["ImGuiContext"][280] = {} +defs["structs"]["ImGuiContext"][280]["name"] = "DebugItemPickerBreakId" +defs["structs"]["ImGuiContext"][280]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][281] = {} +defs["structs"]["ImGuiContext"][281]["name"] = "DebugFlashStyleColorTime" +defs["structs"]["ImGuiContext"][281]["type"] = "float" +defs["structs"]["ImGuiContext"][282] = {} +defs["structs"]["ImGuiContext"][282]["name"] = "DebugFlashStyleColorBackup" +defs["structs"]["ImGuiContext"][282]["type"] = "ImVec4" +defs["structs"]["ImGuiContext"][283] = {} +defs["structs"]["ImGuiContext"][283]["name"] = "DebugMetricsConfig" +defs["structs"]["ImGuiContext"][283]["type"] = "ImGuiMetricsConfig" +defs["structs"]["ImGuiContext"][284] = {} +defs["structs"]["ImGuiContext"][284]["name"] = "DebugIDStackTool" +defs["structs"]["ImGuiContext"][284]["type"] = "ImGuiIDStackTool" +defs["structs"]["ImGuiContext"][285] = {} +defs["structs"]["ImGuiContext"][285]["name"] = "DebugAllocInfo" +defs["structs"]["ImGuiContext"][285]["type"] = "ImGuiDebugAllocInfo" +defs["structs"]["ImGuiContext"][286] = {} +defs["structs"]["ImGuiContext"][286]["name"] = "DebugHoveredDockNode" +defs["structs"]["ImGuiContext"][286]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiContext"][287] = {} +defs["structs"]["ImGuiContext"][287]["name"] = "FramerateSecPerFrame[60]" +defs["structs"]["ImGuiContext"][287]["size"] = 60 +defs["structs"]["ImGuiContext"][287]["type"] = "float" +defs["structs"]["ImGuiContext"][288] = {} +defs["structs"]["ImGuiContext"][288]["name"] = "FramerateSecPerFrameIdx" +defs["structs"]["ImGuiContext"][288]["type"] = "int" +defs["structs"]["ImGuiContext"][289] = {} +defs["structs"]["ImGuiContext"][289]["name"] = "FramerateSecPerFrameCount" +defs["structs"]["ImGuiContext"][289]["type"] = "int" +defs["structs"]["ImGuiContext"][290] = {} +defs["structs"]["ImGuiContext"][290]["name"] = "FramerateSecPerFrameAccum" +defs["structs"]["ImGuiContext"][290]["type"] = "float" +defs["structs"]["ImGuiContext"][291] = {} +defs["structs"]["ImGuiContext"][291]["name"] = "WantCaptureMouseNextFrame" +defs["structs"]["ImGuiContext"][291]["type"] = "int" +defs["structs"]["ImGuiContext"][292] = {} +defs["structs"]["ImGuiContext"][292]["name"] = "WantCaptureKeyboardNextFrame" +defs["structs"]["ImGuiContext"][292]["type"] = "int" +defs["structs"]["ImGuiContext"][293] = {} +defs["structs"]["ImGuiContext"][293]["name"] = "WantTextInputNextFrame" +defs["structs"]["ImGuiContext"][293]["type"] = "int" +defs["structs"]["ImGuiContext"][294] = {} +defs["structs"]["ImGuiContext"][294]["name"] = "TempBuffer" +defs["structs"]["ImGuiContext"][294]["template_type"] = "char" +defs["structs"]["ImGuiContext"][294]["type"] = "ImVector_char" +defs["structs"]["ImGuiContext"][295] = {} +defs["structs"]["ImGuiContext"][295]["name"] = "TempKeychordName[64]" +defs["structs"]["ImGuiContext"][295]["size"] = 64 +defs["structs"]["ImGuiContext"][295]["type"] = "char" +>>>>>>> docking_inter defs["structs"]["ImGuiContextHook"] = {} defs["structs"]["ImGuiContextHook"][1] = {} defs["structs"]["ImGuiContextHook"][1]["name"] = "HookId" @@ -6380,8 +7642,14 @@ defs["structs"]["ImGuiStyle"][47]["name"] = "Colors[ImGuiCol_COUNT]" defs["structs"]["ImGuiStyle"][47]["size"] = 53 defs["structs"]["ImGuiStyle"][47]["type"] = "ImVec4" defs["structs"]["ImGuiStyle"][48] = {} +<<<<<<< HEAD defs["structs"]["ImGuiStyle"][48]["name"] = "HoverStationaryDelay" defs["structs"]["ImGuiStyle"][48]["type"] = "float" +======= +defs["structs"]["ImGuiStyle"][48]["name"] = "Colors[ImGuiCol_COUNT]" +defs["structs"]["ImGuiStyle"][48]["size"] = 57 +defs["structs"]["ImGuiStyle"][48]["type"] = "ImVec4" +>>>>>>> docking_inter defs["structs"]["ImGuiStyle"][49] = {} defs["structs"]["ImGuiStyle"][49]["name"] = "HoverDelayShort" defs["structs"]["ImGuiStyle"][49]["type"] = "float" @@ -7600,8 +8868,119 @@ defs["structs"]["ImGuiWindow"][101] = {} defs["structs"]["ImGuiWindow"][101]["name"] = "MemoryDrawListVtxCapacity" defs["structs"]["ImGuiWindow"][101]["type"] = "int" defs["structs"]["ImGuiWindow"][102] = {} +<<<<<<< HEAD defs["structs"]["ImGuiWindow"][102]["name"] = "MemoryCompacted" defs["structs"]["ImGuiWindow"][102]["type"] = "bool" +======= +defs["structs"]["ImGuiWindow"][102]["name"] = "RootWindowDockTree" +defs["structs"]["ImGuiWindow"][102]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindow"][103] = {} +defs["structs"]["ImGuiWindow"][103]["name"] = "RootWindowForTitleBarHighlight" +defs["structs"]["ImGuiWindow"][103]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindow"][104] = {} +defs["structs"]["ImGuiWindow"][104]["name"] = "RootWindowForNav" +defs["structs"]["ImGuiWindow"][104]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindow"][105] = {} +defs["structs"]["ImGuiWindow"][105]["name"] = "ParentWindowForFocusRoute" +defs["structs"]["ImGuiWindow"][105]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindow"][106] = {} +defs["structs"]["ImGuiWindow"][106]["name"] = "NavLastChildNavWindow" +defs["structs"]["ImGuiWindow"][106]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindow"][107] = {} +defs["structs"]["ImGuiWindow"][107]["name"] = "NavLastIds[ImGuiNavLayer_COUNT]" +defs["structs"]["ImGuiWindow"][107]["size"] = 2 +defs["structs"]["ImGuiWindow"][107]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][108] = {} +defs["structs"]["ImGuiWindow"][108]["name"] = "NavRectRel[ImGuiNavLayer_COUNT]" +defs["structs"]["ImGuiWindow"][108]["size"] = 2 +defs["structs"]["ImGuiWindow"][108]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][109] = {} +defs["structs"]["ImGuiWindow"][109]["name"] = "NavPreferredScoringPosRel[ImGuiNavLayer_COUNT]" +defs["structs"]["ImGuiWindow"][109]["size"] = 2 +defs["structs"]["ImGuiWindow"][109]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][110] = {} +defs["structs"]["ImGuiWindow"][110]["name"] = "NavRootFocusScopeId" +defs["structs"]["ImGuiWindow"][110]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][111] = {} +defs["structs"]["ImGuiWindow"][111]["name"] = "MemoryDrawListIdxCapacity" +defs["structs"]["ImGuiWindow"][111]["type"] = "int" +defs["structs"]["ImGuiWindow"][112] = {} +defs["structs"]["ImGuiWindow"][112]["name"] = "MemoryDrawListVtxCapacity" +defs["structs"]["ImGuiWindow"][112]["type"] = "int" +defs["structs"]["ImGuiWindow"][113] = {} +defs["structs"]["ImGuiWindow"][113]["name"] = "MemoryCompacted" +defs["structs"]["ImGuiWindow"][113]["type"] = "bool" +defs["structs"]["ImGuiWindow"][114] = {} +defs["structs"]["ImGuiWindow"][114]["bitfield"] = "1" +defs["structs"]["ImGuiWindow"][114]["name"] = "DockIsActive" +defs["structs"]["ImGuiWindow"][114]["type"] = "bool" +defs["structs"]["ImGuiWindow"][115] = {} +defs["structs"]["ImGuiWindow"][115]["bitfield"] = "1" +defs["structs"]["ImGuiWindow"][115]["name"] = "DockNodeIsVisible" +defs["structs"]["ImGuiWindow"][115]["type"] = "bool" +defs["structs"]["ImGuiWindow"][116] = {} +defs["structs"]["ImGuiWindow"][116]["bitfield"] = "1" +defs["structs"]["ImGuiWindow"][116]["name"] = "DockTabIsVisible" +defs["structs"]["ImGuiWindow"][116]["type"] = "bool" +defs["structs"]["ImGuiWindow"][117] = {} +defs["structs"]["ImGuiWindow"][117]["bitfield"] = "1" +defs["structs"]["ImGuiWindow"][117]["name"] = "DockTabWantClose" +defs["structs"]["ImGuiWindow"][117]["type"] = "bool" +defs["structs"]["ImGuiWindow"][118] = {} +defs["structs"]["ImGuiWindow"][118]["name"] = "DockOrder" +defs["structs"]["ImGuiWindow"][118]["type"] = "short" +defs["structs"]["ImGuiWindow"][119] = {} +defs["structs"]["ImGuiWindow"][119]["name"] = "DockStyle" +defs["structs"]["ImGuiWindow"][119]["type"] = "ImGuiWindowDockStyle" +defs["structs"]["ImGuiWindow"][120] = {} +defs["structs"]["ImGuiWindow"][120]["name"] = "DockNode" +defs["structs"]["ImGuiWindow"][120]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiWindow"][121] = {} +defs["structs"]["ImGuiWindow"][121]["name"] = "DockNodeAsHost" +defs["structs"]["ImGuiWindow"][121]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiWindow"][122] = {} +defs["structs"]["ImGuiWindow"][122]["name"] = "DockId" +defs["structs"]["ImGuiWindow"][122]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][123] = {} +defs["structs"]["ImGuiWindow"][123]["name"] = "DockTabItemStatusFlags" +defs["structs"]["ImGuiWindow"][123]["type"] = "ImGuiItemStatusFlags" +defs["structs"]["ImGuiWindow"][124] = {} +defs["structs"]["ImGuiWindow"][124]["name"] = "DockTabItemRect" +defs["structs"]["ImGuiWindow"][124]["type"] = "ImRect" +defs["structs"]["ImGuiWindowClass"] = {} +defs["structs"]["ImGuiWindowClass"][1] = {} +defs["structs"]["ImGuiWindowClass"][1]["name"] = "ClassId" +defs["structs"]["ImGuiWindowClass"][1]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindowClass"][2] = {} +defs["structs"]["ImGuiWindowClass"][2]["name"] = "ParentViewportId" +defs["structs"]["ImGuiWindowClass"][2]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindowClass"][3] = {} +defs["structs"]["ImGuiWindowClass"][3]["name"] = "FocusRouteParentWindowId" +defs["structs"]["ImGuiWindowClass"][3]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindowClass"][4] = {} +defs["structs"]["ImGuiWindowClass"][4]["name"] = "ViewportFlagsOverrideSet" +defs["structs"]["ImGuiWindowClass"][4]["type"] = "ImGuiViewportFlags" +defs["structs"]["ImGuiWindowClass"][5] = {} +defs["structs"]["ImGuiWindowClass"][5]["name"] = "ViewportFlagsOverrideClear" +defs["structs"]["ImGuiWindowClass"][5]["type"] = "ImGuiViewportFlags" +defs["structs"]["ImGuiWindowClass"][6] = {} +defs["structs"]["ImGuiWindowClass"][6]["name"] = "TabItemFlagsOverrideSet" +defs["structs"]["ImGuiWindowClass"][6]["type"] = "ImGuiTabItemFlags" +defs["structs"]["ImGuiWindowClass"][7] = {} +defs["structs"]["ImGuiWindowClass"][7]["name"] = "DockNodeFlagsOverrideSet" +defs["structs"]["ImGuiWindowClass"][7]["type"] = "ImGuiDockNodeFlags" +defs["structs"]["ImGuiWindowClass"][8] = {} +defs["structs"]["ImGuiWindowClass"][8]["name"] = "DockingAlwaysTabBar" +defs["structs"]["ImGuiWindowClass"][8]["type"] = "bool" +defs["structs"]["ImGuiWindowClass"][9] = {} +defs["structs"]["ImGuiWindowClass"][9]["name"] = "DockingAllowUnclassed" +defs["structs"]["ImGuiWindowClass"][9]["type"] = "bool" +defs["structs"]["ImGuiWindowDockStyle"] = {} +defs["structs"]["ImGuiWindowDockStyle"][1] = {} +defs["structs"]["ImGuiWindowDockStyle"][1]["name"] = "Colors[ImGuiWindowDockStyleCol_COUNT]" +defs["structs"]["ImGuiWindowDockStyle"][1]["size"] = 8 +defs["structs"]["ImGuiWindowDockStyle"][1]["type"] = "ImU32" +>>>>>>> docking_inter defs["structs"]["ImGuiWindowSettings"] = {} defs["structs"]["ImGuiWindowSettings"][1] = {} defs["structs"]["ImGuiWindowSettings"][1]["name"] = "ID" diff --git a/imgui b/imgui index 6f7b5d0..cb16be3 160000 --- a/imgui +++ b/imgui @@ -1 +1 @@ -Subproject commit 6f7b5d0ee2fe9948ab871a530888a6dc5c960700 +Subproject commit cb16be3a3fc1f9cd146ae24d52b615f8a05fa93d