From 77f726c6ca35e2c84bdfcd2937615f4b1f604274 Mon Sep 17 00:00:00 2001 From: jammy3855 Date: Tue, 17 Feb 2026 22:13:46 -0600 Subject: [PATCH 1/8] Started SDL3 Renderer example --- .../example_sdl3_renderer/CMakeLists.txt | 98 ++++++++++++ backend_test/example_sdl3_renderer/README.md | 2 + backend_test/example_sdl3_renderer/main.c | 151 ++++++++++++++++++ 3 files changed, 251 insertions(+) create mode 100644 backend_test/example_sdl3_renderer/CMakeLists.txt create mode 100644 backend_test/example_sdl3_renderer/README.md create mode 100644 backend_test/example_sdl3_renderer/main.c diff --git a/backend_test/example_sdl3_renderer/CMakeLists.txt b/backend_test/example_sdl3_renderer/CMakeLists.txt new file mode 100644 index 0000000..7922a57 --- /dev/null +++ b/backend_test/example_sdl3_renderer/CMakeLists.txt @@ -0,0 +1,98 @@ +cmake_minimum_required(VERSION 3.5) +Project(cimgui_sdl3_renderer) +if(WIN32) # to make mingw work as all the others +set(CMAKE_SHARED_LIBRARY_PREFIX "") +endif(WIN32) +# general settings + + +if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/../../imgui/backends) + set(BACKENDS_FOLDER "../../imgui/backends/") +else() + set(BACKENDS_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 ../../imgui/backends) + + +include_directories(../../) +set(IMGUI_SOURCES ../../cimgui.cpp +../../cimgui_impl.cpp +../../imgui/imgui.cpp +../../imgui/imgui_draw.cpp +../../imgui/imgui_demo.cpp +../../imgui/imgui_widgets.cpp +${TABLES_SOURCE} +) + +set(IMGUI_SOURCES_sdl) +set(IMGUI_LIBRARIES ) + + +#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) + +#sdl3 +list(APPEND IMGUI_SOURCES ${BACKENDS_FOLDER}imgui_impl_sdl3.cpp) +include(FetchContent) +Set(FETCHCONTENT_QUIET FALSE) + +FetchContent_Declare( + SDL3 + GIT_REPOSITORY https://github.com/libsdl-org/SDL.git + GIT_TAG release-3.2.8 + #GIT_SHALLOW TRUE + GIT_PROGRESS TRUE +) +FetchContent_GetProperties(SDL3) +if (NOT sdl3_POPULATED) + set(FETCHCONTENT_QUIET NO) + FetchContent_Populate(SDL3) + set(SDL_TEST OFF CACHE BOOL "" FORCE) + set(BUILD_SHARED_LIBS OFF CACHE BOOL "" FORCE) + add_subdirectory(${sdl3_SOURCE_DIR} ${sdl3_BINARY_DIR}) +endif() +include_directories(${SDL3_SOURCE_DIR}/include) + + +#if dynamic SDL3 then install +# install(TARGETS SDL3 RUNTIME DESTINATION ${CMAKE_CURRENT_BINARY_DIR} + # LIBRARY DESTINATION ${CMAKE_CURRENT_BINARY_DIR} +# ) + +add_library(cimgui_sdl STATIC ${IMGUI_SOURCES}) +target_compile_definitions(cimgui_sdl PUBLIC "-DIMGUI_USER_CONFIG=\"../cimconfig.h\"") +target_compile_definitions(cimgui_sdl PUBLIC "-DIMGUI_DISABLE_OBSOLETE_FUNCTIONS=1") +target_compile_definitions(cimgui_sdl PUBLIC -DCIMGUI_USE_SDL3) +if (WIN32) + target_compile_definitions(cimgui_sdl PUBLIC "-DIMGUI_IMPL_API=extern \"C\" __declspec\(dllexport\)") +else(WIN32) + target_compile_definitions(cimgui_sdl PUBLIC "-DIMGUI_IMPL_API=extern \"C\" ") +endif(WIN32) +#target_link_libraries(cimgui_sdl ${IMGUI_LIBRARIES} SDL3-static) + +#using library +add_executable(test_sdl main.c) +target_compile_definitions(test_sdl + PUBLIC + CIMGUI_DEFINE_ENUMS_AND_STRUCTS=1 + CIMGUI_USE_SDL3=1 +) +if (MINGW) +target_link_options(test_sdl PRIVATE "-mconsole") +endif() +target_link_libraries(test_sdl SDL3-static cimgui_sdl ${IMGUI_LIBRARIES}) + diff --git a/backend_test/example_sdl3_renderer/README.md b/backend_test/example_sdl3_renderer/README.md new file mode 100644 index 0000000..7ac04b8 --- /dev/null +++ b/backend_test/example_sdl3_renderer/README.md @@ -0,0 +1,2 @@ + +To build use `cmake path_to_example_sdl3_vulkan` and then `make install` diff --git a/backend_test/example_sdl3_renderer/main.c b/backend_test/example_sdl3_renderer/main.c new file mode 100644 index 0000000..6fcf882 --- /dev/null +++ b/backend_test/example_sdl3_renderer/main.c @@ -0,0 +1,151 @@ +#include +#include +#include +#include + +#include + +#include +#include + + +#define igGetIO igGetIO_Nil + +int main() { + if (!SDL_Init(SDL_INIT_VIDEO | SDL_INIT_GAMEPAD)) { + fprintf(stderr, "Failed to init video! %s", SDL_GetError()); + return 1; + }; + + float main_scale = SDL_GetDisplayContentScale(SDL_GetPrimaryDisplay()); + SDL_WindowFlags window_flags = SDL_WINDOW_RESIZABLE | SDL_WINDOW_HIDDEN | SDL_WINDOW_HIGH_PIXEL_DENSITY; + SDL_Window* window = NULL; + SDL_Renderer* renderer = NULL; + if (!SDL_CreateWindowAndRenderer("Dear ImGui SDL3 Renderer example", (int)(1280 * main_scale), (int)(720 * main_scale), window_flags, &window, &renderer)) + { + printf("Error: SDL_CreateWindow(): %s\n", SDL_GetError()); + return -1; + } + SDL_SetWindowPosition(window, SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED); + SDL_ShowWindow(window); + + // Setup Dear ImGui context + //IMGUI_CHECKVERSION(); + igCreateContext(NULL); + ImGuiIO* io = igGetIO(); (void)io; + io->ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; // Enable Keyboard Controls + io->ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // Enable Gamepad Controls + + // Setup Dear ImGui style + igStyleColorsDark(NULL); + //igStyleColorsLight(NULL); + // Setup scaling + ImGuiStyle* style = igGetStyle(); + ImGuiStyle_ScaleAllSizes(style, main_scale); // Bake a fixed style scale. (until we have a solution for dynamic style scaling, changing this requires resetting Style + calling this again) + style->FontScaleDpi = main_scale; // Set initial font scale. (using io.ConfigDpiScaleFonts=true makes this unnecessary. We leave both here for documentation purpose) + io->ConfigDpiScaleFonts = true; // [Experimental] Automatically overwrite style.FontScaleDpi in Begin() when Monitor DPI changes. This will scale fonts but _NOT_ scale sizes/padding for now. + io->ConfigDpiScaleViewports = true; // [Experimental] Scale Dear ImGui and Platform Windows when Monitor DPI changes. + + // Setup Platform/Renderer backends + ImGui_ImplSDL3_InitForSDLRenderer(window, renderer); + // finish loading data + + // Our state + bool show_demo_window = true; + bool show_another_window = false; + ImVec4 clear_color; + clear_color.x = 0.45f; + clear_color.y = 0.55f; + clear_color.z = 0.60f; + clear_color.w = 1.00f; + + // Main loop + bool done = false; + while (!done) + { + // Poll and handle events (inputs, window resize, etc.) + // You can read the io.WantCaptureMouse, io.WantCaptureKeyboard flags to tell if dear imgui wants to use your inputs. + // - When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application, or clear/overwrite your copy of the mouse data. + // - When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application, or clear/overwrite your copy of the keyboard data. + // Generally you may always pass all inputs to dear imgui, and hide them from your application based on those two flags. + // [If using SDL_MAIN_USE_CALLBACKS: call ImGui_ImplSDL3_ProcessEvent() from your SDL_AppEvent() function] + SDL_Event event; + while (SDL_PollEvent(&event)) + { + ImGui_ImplSDL3_ProcessEvent(&event); + if (event.type == SDL_EVENT_QUIT) + done = true; + if (event.type == SDL_EVENT_WINDOW_CLOSE_REQUESTED && event.window.windowID == SDL_GetWindowID(window)) + done = true; + } + + // [If using SDL_MAIN_USE_CALLBACKS: all code below would likely be your SDL_AppIterate() function] + if (SDL_GetWindowFlags(window) & SDL_WINDOW_MINIMIZED) + { + SDL_Delay(10); + continue; + } + + // Start the Dear ImGui frame + ImGui_ImplSDL3_NewFrame(); + igNewFrame(); + + // 1. Show the big demo window (Most of the sample code is in igShowDemoWindow()! You can browse its code to learn more about Dear ImGui!). + if (show_demo_window) + igShowDemoWindow(&show_demo_window); + + // 2. Show a simple window that we create ourselves. We use a Begin/End pair to create a named window. + { + static float f = 0.0f; + static int counter = 0; + + igBegin("Hello, world!", NULL, 0); // Create a window called "Hello, world!" and append into it. + + igText("This is some useful text."); // Display some text (you can use a format strings too) + igCheckbox("Demo Window", &show_demo_window); // Edit bools storing our window open/close state + igCheckbox("Another Window", &show_another_window); + + igSliderFloat("float", &f, 0.0f, 1.0f, "%.3f", 0); // Edit 1 float using a slider from 0.0f to 1.0f + igColorEdit4("clear color", (float*)&clear_color, 0); // Edit 3 floats representing a color + + ImVec2 buttonSize; + buttonSize.x = 0; + buttonSize.y = 0; + if (igButton("Button", buttonSize)) // Buttons return true when clicked (most widgets return true when edited/activated) + counter++; + igSameLine(0.0f, -1.0f); + igText("counter = %d", counter); + + igText("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / io->Framerate, io->Framerate); + igEnd(); + } + + // 3. Show another simple window. + if (show_another_window) + { + igBegin("Another Window", &show_another_window, 0); // Pass a pointer to our bool variable (the window will have a closing button that will clear the bool when clicked) + igText("Hello from another window!"); + ImVec2 buttonSize; + buttonSize.x = 0; buttonSize.y = 0; + if (igButton("Close Me", buttonSize)) + show_another_window = false; + igEnd(); + } + + // Rendering + igRender(); + ImDrawData* draw_data = igGetDrawData(); + const bool is_minimized = (draw_data->DisplaySize.x <= 0.0f || draw_data->DisplaySize.y <= 0.0f); + } + + // Cleanup + // [If using SDL_MAIN_USE_CALLBACKS: all code below would likely be your SDL_AppQuit() function] + ImGui_ImplSDL3_Shutdown(); + igDestroyContext(NULL); + + SDL_DestroyRenderer(renderer); + SDL_DestroyWindow(window); + SDL_Quit(); + + return 0; +} From 1a15dc7bcddacce2eae4575d27eebca17bf7d583 Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Wed, 18 Feb 2026 15:18:38 +0100 Subject: [PATCH 2/8] drop extern vardef declaration (implot3d) --- generator/cpp2ffi.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/generator/cpp2ffi.lua b/generator/cpp2ffi.lua index 03b4f58..3e7a656 100644 --- a/generator/cpp2ffi.lua +++ b/generator/cpp2ffi.lua @@ -2072,6 +2072,10 @@ function M.Parser() print("--skip = vardef declaration:",it2) it2 = "" end + if it2:match("%s*extern") then + print("--skip extern vardef declaration:",it2) + it2 = "" + end end --table.insert(outtabpre,it2) --table.insert(outtab,it2) From ee8fbaaff4aad8f0b5bc9d1cc2b12548e075edb5 Mon Sep 17 00:00:00 2001 From: jammy3855 Date: Thu, 19 Feb 2026 21:44:03 -0600 Subject: [PATCH 3/8] SDLRenderer3 example working --- .../example_sdl3_renderer/CMakeLists.txt | 107 ++++-------------- backend_test/example_sdl3_renderer/README.md | 16 ++- backend_test/example_sdl3_renderer/main.c | 7 ++ 3 files changed, 43 insertions(+), 87 deletions(-) diff --git a/backend_test/example_sdl3_renderer/CMakeLists.txt b/backend_test/example_sdl3_renderer/CMakeLists.txt index 7922a57..8d36cc5 100644 --- a/backend_test/example_sdl3_renderer/CMakeLists.txt +++ b/backend_test/example_sdl3_renderer/CMakeLists.txt @@ -1,98 +1,33 @@ -cmake_minimum_required(VERSION 3.5) -Project(cimgui_sdl3_renderer) -if(WIN32) # to make mingw work as all the others -set(CMAKE_SHARED_LIBRARY_PREFIX "") -endif(WIN32) -# general settings +cmake_minimum_required(VERSION 3.30) +project(cimgui_sdlrenderer3 LANGUAGES C CXX) +set(CMAKE_C_STANDARD 11) -if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/../../imgui/backends) - set(BACKENDS_FOLDER "../../imgui/backends/") -else() - set(BACKENDS_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 ../../imgui/backends) - - -include_directories(../../) -set(IMGUI_SOURCES ../../cimgui.cpp -../../cimgui_impl.cpp -../../imgui/imgui.cpp -../../imgui/imgui_draw.cpp -../../imgui/imgui_demo.cpp -../../imgui/imgui_widgets.cpp -${TABLES_SOURCE} -) - -set(IMGUI_SOURCES_sdl) -set(IMGUI_LIBRARIES ) - - -#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) - -#sdl3 -list(APPEND IMGUI_SOURCES ${BACKENDS_FOLDER}imgui_impl_sdl3.cpp) include(FetchContent) -Set(FETCHCONTENT_QUIET FALSE) FetchContent_Declare( - SDL3 - GIT_REPOSITORY https://github.com/libsdl-org/SDL.git - GIT_TAG release-3.2.8 - #GIT_SHALLOW TRUE - GIT_PROGRESS TRUE + sdl3 + URL https://github.com/libsdl-org/SDL/releases/download/release-3.2.8/SDL3-3.2.8.tar.gz ) -FetchContent_GetProperties(SDL3) -if (NOT sdl3_POPULATED) - set(FETCHCONTENT_QUIET NO) - FetchContent_Populate(SDL3) - set(SDL_TEST OFF CACHE BOOL "" FORCE) - set(BUILD_SHARED_LIBS OFF CACHE BOOL "" FORCE) - add_subdirectory(${sdl3_SOURCE_DIR} ${sdl3_BINARY_DIR}) -endif() -include_directories(${SDL3_SOURCE_DIR}/include) +set(SDL_TEST_LIBRARY OFF CACHE BOOL "" FORCE) +FetchContent_MakeAvailable(sdl3) -#if dynamic SDL3 then install -# install(TARGETS SDL3 RUNTIME DESTINATION ${CMAKE_CURRENT_BINARY_DIR} - # LIBRARY DESTINATION ${CMAKE_CURRENT_BINARY_DIR} -# ) +include(../cmake/GenerateCimguiBindings.cmake) -add_library(cimgui_sdl STATIC ${IMGUI_SOURCES}) -target_compile_definitions(cimgui_sdl PUBLIC "-DIMGUI_USER_CONFIG=\"../cimconfig.h\"") -target_compile_definitions(cimgui_sdl PUBLIC "-DIMGUI_DISABLE_OBSOLETE_FUNCTIONS=1") -target_compile_definitions(cimgui_sdl PUBLIC -DCIMGUI_USE_SDL3) -if (WIN32) - target_compile_definitions(cimgui_sdl PUBLIC "-DIMGUI_IMPL_API=extern \"C\" __declspec\(dllexport\)") -else(WIN32) - target_compile_definitions(cimgui_sdl PUBLIC "-DIMGUI_IMPL_API=extern \"C\" ") -endif(WIN32) -#target_link_libraries(cimgui_sdl ${IMGUI_LIBRARIES} SDL3-static) +set(inclulist ${sdl3_SOURCE_DIR}/include) +GenerateCimguiBindings(cimgui_with_backend sdl3 sdlrenderer3 inclulist) +target_link_libraries(cimgui_with_backend PRIVATE SDL3::SDL3) -#using library -add_executable(test_sdl main.c) -target_compile_definitions(test_sdl - PUBLIC +add_executable(${PROJECT_NAME} + main.c +) + +target_link_libraries(${PROJECT_NAME} PRIVATE SDL3::SDL3 cimgui_with_backend) +target_compile_definitions( + ${PROJECT_NAME} + PRIVATE CIMGUI_DEFINE_ENUMS_AND_STRUCTS=1 - CIMGUI_USE_SDL3=1 + CIMGUI_USE_SDL3=1 + CIMGUI_USE_SDLRENDERER3=1 ) -if (MINGW) -target_link_options(test_sdl PRIVATE "-mconsole") -endif() -target_link_libraries(test_sdl SDL3-static cimgui_sdl ${IMGUI_LIBRARIES}) - diff --git a/backend_test/example_sdl3_renderer/README.md b/backend_test/example_sdl3_renderer/README.md index 7ac04b8..1d91a4b 100644 --- a/backend_test/example_sdl3_renderer/README.md +++ b/backend_test/example_sdl3_renderer/README.md @@ -1,2 +1,16 @@ +# SDLGPU3 + +This example is a little different from the others, because `cimgui` doesn't come with bindings for the SDLGPU3 backend out of the box. Instead, this example shows how to generate the necessary bindings during cmake's configure time, then add the compiled library as a target for your application to link to. + +For the generation phase from cmake you need LuaJIT to be present. + +## Building + +From the build directory of your choice: + +`cmake path_to_example_sdlgpu3` + +and after + +`make` -To build use `cmake path_to_example_sdl3_vulkan` and then `make install` diff --git a/backend_test/example_sdl3_renderer/main.c b/backend_test/example_sdl3_renderer/main.c index 6fcf882..2549478 100644 --- a/backend_test/example_sdl3_renderer/main.c +++ b/backend_test/example_sdl3_renderer/main.c @@ -48,6 +48,7 @@ int main() { // Setup Platform/Renderer backends ImGui_ImplSDL3_InitForSDLRenderer(window, renderer); + ImGui_ImplSDLRenderer3_Init(renderer); // finish loading data // Our state @@ -87,6 +88,9 @@ int main() { } // Start the Dear ImGui frame + SDL_SetRenderDrawColorFloat(renderer, clear_color.x, clear_color.y, clear_color.z, clear_color.w); + SDL_RenderClear(renderer); + ImGui_ImplSDLRenderer3_NewFrame(); ImGui_ImplSDL3_NewFrame(); igNewFrame(); @@ -136,11 +140,14 @@ int main() { igRender(); ImDrawData* draw_data = igGetDrawData(); const bool is_minimized = (draw_data->DisplaySize.x <= 0.0f || draw_data->DisplaySize.y <= 0.0f); + ImGui_ImplSDLRenderer3_RenderDrawData(draw_data, renderer); + SDL_RenderPresent(renderer); } // Cleanup // [If using SDL_MAIN_USE_CALLBACKS: all code below would likely be your SDL_AppQuit() function] ImGui_ImplSDL3_Shutdown(); + ImGui_ImplSDLRenderer3_Shutdown(); igDestroyContext(NULL); SDL_DestroyRenderer(renderer); From 2cb5b7d19ba12aa22f33ba93872c74c1b4611e78 Mon Sep 17 00:00:00 2001 From: jammy3855 Date: Thu, 19 Feb 2026 23:24:48 -0600 Subject: [PATCH 4/8] Minor adjustments --- backend_test/example_sdl3_renderer/README.md | 16 ----------- .../CMakeLists.txt | 7 +++-- backend_test/example_sdl_renderer3/README.md | 16 +++++++++++ .../main.c | 28 +++++++++---------- 4 files changed, 35 insertions(+), 32 deletions(-) delete mode 100644 backend_test/example_sdl3_renderer/README.md rename backend_test/{example_sdl3_renderer => example_sdl_renderer3}/CMakeLists.txt (82%) create mode 100644 backend_test/example_sdl_renderer3/README.md rename backend_test/{example_sdl3_renderer => example_sdl_renderer3}/main.c (86%) diff --git a/backend_test/example_sdl3_renderer/README.md b/backend_test/example_sdl3_renderer/README.md deleted file mode 100644 index 1d91a4b..0000000 --- a/backend_test/example_sdl3_renderer/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# SDLGPU3 - -This example is a little different from the others, because `cimgui` doesn't come with bindings for the SDLGPU3 backend out of the box. Instead, this example shows how to generate the necessary bindings during cmake's configure time, then add the compiled library as a target for your application to link to. - -For the generation phase from cmake you need LuaJIT to be present. - -## Building - -From the build directory of your choice: - -`cmake path_to_example_sdlgpu3` - -and after - -`make` - diff --git a/backend_test/example_sdl3_renderer/CMakeLists.txt b/backend_test/example_sdl_renderer3/CMakeLists.txt similarity index 82% rename from backend_test/example_sdl3_renderer/CMakeLists.txt rename to backend_test/example_sdl_renderer3/CMakeLists.txt index 8d36cc5..f1e83e1 100644 --- a/backend_test/example_sdl3_renderer/CMakeLists.txt +++ b/backend_test/example_sdl_renderer3/CMakeLists.txt @@ -6,8 +6,11 @@ set(CMAKE_C_STANDARD 11) include(FetchContent) FetchContent_Declare( - sdl3 - URL https://github.com/libsdl-org/SDL/releases/download/release-3.2.8/SDL3-3.2.8.tar.gz + sdl3 + GIT_REPOSITORY https://github.com/libsdl-org/SDL.git + GIT_TAG release-3.4.0 + #GIT_SHALLOW TRUE + GIT_PROGRESS TRUE ) set(SDL_TEST_LIBRARY OFF CACHE BOOL "" FORCE) diff --git a/backend_test/example_sdl_renderer3/README.md b/backend_test/example_sdl_renderer3/README.md new file mode 100644 index 0000000..17e1567 --- /dev/null +++ b/backend_test/example_sdl_renderer3/README.md @@ -0,0 +1,16 @@ +# SDLRenderer3 + +This example takes from `example_sdlgpu3`. We need to generate bindings for SDLRenderer3 backend because they are not native to `cimgui`. Then you can add the compiled library for linking in your application. + +For the generation phase from cmake you need LuaJIT to be present. + +## Building + +From the build directory of your choice: + +`cmake path_to_example_sdlgpu3` + +Then simply run: + +`make` + diff --git a/backend_test/example_sdl3_renderer/main.c b/backend_test/example_sdl_renderer3/main.c similarity index 86% rename from backend_test/example_sdl3_renderer/main.c rename to backend_test/example_sdl_renderer3/main.c index 2549478..4d7fcf1 100644 --- a/backend_test/example_sdl3_renderer/main.c +++ b/backend_test/example_sdl_renderer3/main.c @@ -8,15 +8,16 @@ #include #include - #define igGetIO igGetIO_Nil int main() { + // Setup SDL library if (!SDL_Init(SDL_INIT_VIDEO | SDL_INIT_GAMEPAD)) { fprintf(stderr, "Failed to init video! %s", SDL_GetError()); return 1; }; - + + // Setup window and renderer float main_scale = SDL_GetDisplayContentScale(SDL_GetPrimaryDisplay()); SDL_WindowFlags window_flags = SDL_WINDOW_RESIZABLE | SDL_WINDOW_HIDDEN | SDL_WINDOW_HIGH_PIXEL_DENSITY; SDL_Window* window = NULL; @@ -29,19 +30,19 @@ int main() { SDL_SetWindowPosition(window, SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED); SDL_ShowWindow(window); - // Setup Dear ImGui context - //IMGUI_CHECKVERSION(); + // Setup Dear ImGui context igCreateContext(NULL); ImGuiIO* io = igGetIO(); (void)io; - io->ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; // Enable Keyboard Controls - io->ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // Enable Gamepad Controls + io->ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; + io->ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // Setup Dear ImGui style igStyleColorsDark(NULL); //igStyleColorsLight(NULL); + // Setup scaling ImGuiStyle* style = igGetStyle(); - ImGuiStyle_ScaleAllSizes(style, main_scale); // Bake a fixed style scale. (until we have a solution for dynamic style scaling, changing this requires resetting Style + calling this again) + ImGuiStyle_ScaleAllSizes(style, main_scale); style->FontScaleDpi = main_scale; // Set initial font scale. (using io.ConfigDpiScaleFonts=true makes this unnecessary. We leave both here for documentation purpose) io->ConfigDpiScaleFonts = true; // [Experimental] Automatically overwrite style.FontScaleDpi in Begin() when Monitor DPI changes. This will scale fonts but _NOT_ scale sizes/padding for now. io->ConfigDpiScaleViewports = true; // [Experimental] Scale Dear ImGui and Platform Windows when Monitor DPI changes. @@ -49,7 +50,6 @@ int main() { // Setup Platform/Renderer backends ImGui_ImplSDL3_InitForSDLRenderer(window, renderer); ImGui_ImplSDLRenderer3_Init(renderer); - // finish loading data // Our state bool show_demo_window = true; @@ -87,7 +87,7 @@ int main() { continue; } - // Start the Dear ImGui frame + // Setup Dear ImGui frame SDL_SetRenderDrawColorFloat(renderer, clear_color.x, clear_color.y, clear_color.z, clear_color.w); SDL_RenderClear(renderer); ImGui_ImplSDLRenderer3_NewFrame(); @@ -103,19 +103,19 @@ int main() { static float f = 0.0f; static int counter = 0; - igBegin("Hello, world!", NULL, 0); // Create a window called "Hello, world!" and append into it. + igBegin("Hello, world!", NULL, 0); // Create a window called "Hello, world!" and append into it. - igText("This is some useful text."); // Display some text (you can use a format strings too) - igCheckbox("Demo Window", &show_demo_window); // Edit bools storing our window open/close state + igText("This is some useful text."); // Display some text (you can use a format strings too) + igCheckbox("Demo Window", &show_demo_window); // Edit bools storing our window open/close state igCheckbox("Another Window", &show_another_window); - igSliderFloat("float", &f, 0.0f, 1.0f, "%.3f", 0); // Edit 1 float using a slider from 0.0f to 1.0f + igSliderFloat("float", &f, 0.0f, 1.0f, "%.3f", 0); // Edit 1 float using a slider from 0.0f to 1.0f igColorEdit4("clear color", (float*)&clear_color, 0); // Edit 3 floats representing a color ImVec2 buttonSize; buttonSize.x = 0; buttonSize.y = 0; - if (igButton("Button", buttonSize)) // Buttons return true when clicked (most widgets return true when edited/activated) + if (igButton("Button", buttonSize)) // Buttons return true when clicked (most widgets return true when edited/activated) counter++; igSameLine(0.0f, -1.0f); igText("counter = %d", counter); From e41d6fb1e819ba536905062b702735bc5199ec0f Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Tue, 24 Feb 2026 10:23:36 +0100 Subject: [PATCH 5/8] constants work 1 --- cimgui.h | 1 - generator/cpp2ffi.lua | 4 +- generator/generator.lua | 9 +-- generator/output/constants.json | 124 ++++++++++++++++++++++++++++++++ generator/output/constants.lua | 124 ++++++++++++++++++++++++++++++++ 5 files changed, 256 insertions(+), 6 deletions(-) create mode 100644 generator/output/constants.json create mode 100644 generator/output/constants.lua diff --git a/cimgui.h b/cimgui.h index cc10a69..ca875a2 100644 --- a/cimgui.h +++ b/cimgui.h @@ -1856,7 +1856,6 @@ typedef int ImGuiWindowBgClickFlags; typedef int ImGuiWindowRefreshFlags; typedef ImS16 ImGuiTableColumnIdx; typedef ImU16 ImGuiTableDrawChannelIdx; -extern ImGuiContext* GImGui; typedef enum { ImDrawTextFlags_None = 0, ImDrawTextFlags_CpuFineClip = 1 << 0, diff --git a/generator/cpp2ffi.lua b/generator/cpp2ffi.lua index 3e7a656..d18f9ca 100644 --- a/generator/cpp2ffi.lua +++ b/generator/cpp2ffi.lua @@ -1624,6 +1624,7 @@ function M.Parser() --try to guess a compiler error assert(not errstr:match" error") os.remove(errfile) + self.constants = defines return defines end function par:do_parse() @@ -2917,7 +2918,8 @@ local function location(file,locpathT,defines,COMPILER,keepemptylines) if name and val then --while defines[val] do val = defines[val] end --if val:match(number_re) or val:match(hex_re) then - table.insert(defines,{name , val}) + --table.insert(defines,{name , val}) + defines[name] = val --end end end diff --git a/generator/generator.lua b/generator/generator.lua index ea43028..0927e19 100644 --- a/generator/generator.lua +++ b/generator/generator.lua @@ -39,10 +39,10 @@ if FREETYPE_GENERATION then end if COMPILER == "gcc" or COMPILER == "clang" or COMPILER == "zig cc" then - CPRE = COMPILER..[[ -E -DIMGUI_DISABLE_OBSOLETE_FUNCTIONS -DIMGUI_API="" -DIMGUI_IMPL_API="" ]] .. CFLAGS + CPRE = COMPILER..[[ -E -dD -DIMGUI_DISABLE_OBSOLETE_FUNCTIONS -DIMGUI_API="" -DIMGUI_IMPL_API="" ]] .. CFLAGS CTEST = COMPILER.." --version" elseif COMPILER == "cl" then - CPRE = COMPILER..[[ /E /DIMGUI_DISABLE_OBSOLETE_FUNCTIONS /DIMGUI_DEBUG_PARANOID /DIMGUI_API="" /DIMGUI_IMPL_API="" ]] .. CFLAGS + CPRE = COMPILER..[[ /E /d1PP /DIMGUI_DISABLE_OBSOLETE_FUNCTIONS /DIMGUI_DEBUG_PARANOID /DIMGUI_API="" /DIMGUI_IMPL_API="" ]] .. CFLAGS CTEST = COMPILER else print("Working without compiler ") @@ -398,7 +398,7 @@ local function parseImGuiHeader(header,names) parser.custom_function_post = custom_function_post parser.header_text_insert = header_text_insert local defines = parser:take_lines(CPRE..header,names,COMPILER) - + --cpp2ffi.prtable("defines",defines) return parser end --generation @@ -441,7 +441,7 @@ structs_and_enums_table.templates_done = parser1.templates_done save_data("./output/structs_and_enums.lua",serializeTableF(structs_and_enums_table)) save_data("./output/typedefs_dict.lua",serializeTableF(parser1.typedefs_dict)) - +save_data("./output/constants.lua",serializeTableF(parser1.constants)) ----------save fundefs in definitions.lua for using in bindings --DefsByStruct(pFP) set_defines(parser1.defsT) @@ -556,6 +556,7 @@ save_data("./output/definitions.json",json.encode(json_prepare(parser1.defsT),{d --structs_and_enums_table.templates_done = nil save_data("./output/structs_and_enums.json",json.encode(structs_and_enums_table)) save_data("./output/typedefs_dict.json",json.encode(parser1.typedefs_dict)) +save_data("./output/constants.json",json.encode(parser1.constants)) if parser2 then save_data("./output/impl_definitions.json",json.encode(json_prepare(parser2.defsT),{dict_on_empty={defaults=true}})) end diff --git a/generator/output/constants.json b/generator/output/constants.json new file mode 100644 index 0000000..2d9da3f --- /dev/null +++ b/generator/output/constants.json @@ -0,0 +1,124 @@ +{ + "DOCKING_HOST_DRAW_CHANNEL_BG": "0", + "DOCKING_HOST_DRAW_CHANNEL_FG": "1", + "IMGUI_CHECKVERSION()": "ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert), sizeof(ImDrawIdx))", + "IMGUI_DEBUG_LOG(...)": "ImGui::DebugLog(__VA_ARGS__)", + "IMGUI_DEBUG_LOG_ACTIVEID(...)": "do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventActiveId) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + "IMGUI_DEBUG_LOG_CLIPPER(...)": "do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventClipper) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + "IMGUI_DEBUG_LOG_DOCKING(...)": "do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventDocking) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + "IMGUI_DEBUG_LOG_ERROR(...)": "do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventError) IMGUI_DEBUG_LOG(__VA_ARGS__); else g.DebugLogSkippedErrors++; } while (0)", + "IMGUI_DEBUG_LOG_FOCUS(...)": "do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventFocus) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + "IMGUI_DEBUG_LOG_FONT(...)": "do { ImGuiContext* g2 = GImGui; if (g2 && g2->DebugLogFlags & ImGuiDebugLogFlags_EventFont) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + "IMGUI_DEBUG_LOG_INPUTROUTING(...)": "do{if (g.DebugLogFlags & ImGuiDebugLogFlags_EventInputRouting)IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + "IMGUI_DEBUG_LOG_IO(...)": "do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventIO) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + "IMGUI_DEBUG_LOG_NAV(...)": "do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventNav) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + "IMGUI_DEBUG_LOG_POPUP(...)": "do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventPopup) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + "IMGUI_DEBUG_LOG_SELECTION(...)": "do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventSelection) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + "IMGUI_DEBUG_LOG_VIEWPORT(...)": "do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventViewport) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + "IMGUI_DEBUG_PRINTF(_FMT,...)": "printf(_FMT, __VA_ARGS__)", + "IMGUI_FONT_SIZE_MAX": "(512.0f)", + "IMGUI_FONT_SIZE_THRESHOLD_FOR_LOADADVANCEXONLYMODE": "(128.0f)", + "IMGUI_PAYLOAD_TYPE_COLOR_3F": "\"_COL3F\"", + "IMGUI_PAYLOAD_TYPE_COLOR_4F": "\"_COL4F\"", + "IMGUI_PAYLOAD_TYPE_WINDOW": "\"_IMWINDOW\"", + "IMGUI_TABLE_MAX_COLUMNS": "512", + "IMGUI_TEST_ENGINE_ITEM_ADD(_ID,_BB,_ITEM_DATA)": "((void)0)", + "IMGUI_TEST_ENGINE_ITEM_INFO(_ID,_LABEL,_FLAGS)": "((void)g)", + "IMGUI_VERSION": "\"1.92.6\"", + "IMGUI_VERSION_NUM": "19261", + "IMGUI_WINDOW_HARD_MIN_SIZE": "4.0f", + "IMSTB_TEXTEDIT_CHARTYPE": "char", + "IMSTB_TEXTEDIT_GETWIDTH_NEWLINE": "(-1.0f)", + "IMSTB_TEXTEDIT_STRING": "ImGuiInputTextState", + "IMSTB_TEXTEDIT_UNDOCHARCOUNT": "999", + "IMSTB_TEXTEDIT_UNDOSTATECOUNT": "99", + "IM_ALLOC(_SIZE)": "ImGui::MemAlloc(_SIZE)", + "IM_ARRAYSIZE": "IM_COUNTOF", + "IM_ASSERT(_EXPR)": "assert(_EXPR)", + "IM_ASSERT_USER_ERROR(_EXPR,_MSG)": "do { if (!(_EXPR)) { if (ImGui::ErrorLog(_MSG)) { IM_ASSERT((_EXPR) && _MSG); } } } while (0)", + "IM_ASSERT_USER_ERROR_RET(_EXPR,_MSG)": "do { if (!(_EXPR)) { if (ImGui::ErrorLog(_MSG)) { IM_ASSERT((_EXPR) && _MSG); } return; } } while (0)", + "IM_ASSERT_USER_ERROR_RETV(_EXPR,_RETV,_MSG)": "do { if (!(_EXPR)) { if (ImGui::ErrorLog(_MSG)) { IM_ASSERT((_EXPR) && _MSG); } return _RETV; } } while (0)", + "IM_BITARRAY_CLEARBIT(_ARRAY,_N)": "((_ARRAY[(_N) >> 5] &= ~((ImU32)1 << ((_N) & 31))))", + "IM_BITARRAY_TESTBIT(_ARRAY,_N)": "((_ARRAY[(_N) >> 5] & ((ImU32)1 << ((_N) & 31))) != 0)", + "IM_COL32(R,G,B,A)": "(((ImU32)(A)<=0 ? 0.5f : -0.5f)))", + "IM_FMTARGS(FMT)": "__attribute__((format(gnu_printf, FMT, FMT+1)))", + "IM_FMTLIST(FMT)": "__attribute__((format(gnu_printf, FMT, 0)))", + "IM_FREE(_PTR)": "ImGui::MemFree(_PTR)", + "IM_MEMALIGN(_OFF,_ALIGN)": "(((_OFF) + ((_ALIGN) - 1)) & ~((_ALIGN) - 1))", + "IM_NEW(_TYPE)": "new(ImNewWrapper(), ImGui::MemAlloc(sizeof(_TYPE))) _TYPE", + "IM_NEWLINE": "\"\\r\\n\"", + "IM_PI": "3.14159265358979323846f", + "IM_PLACEMENT_NEW(_PTR)": "new(ImNewWrapper(), _PTR)", + "IM_PRIX64": "\"llX\"", + "IM_PRId64": "\"lld\"", + "IM_PRIu64": "\"llu\"", + "IM_ROUND(_VAL)": "((float)(int)((_VAL) + 0.5f))", + "IM_ROUNDUP_TO_EVEN(_V)": "((((_V) + 1) / 2) * 2)", + "IM_STATIC_ASSERT(_COND)": "static_assert(_COND, \"\")", + "IM_STRINGIFY(_EXPR)": "IM_STRINGIFY_HELPER(_EXPR)", + "IM_STRINGIFY_HELPER(_EXPR)": "#_EXPR", + "IM_TABSIZE": "(4)", + "IM_TRUNC(_VAL)": "((float)(int)(_VAL))", + "IM_UNICODE_CODEPOINT_INVALID": "0xFFFD", + "IM_UNICODE_CODEPOINT_MAX": "0xFFFF", + "IM_UNUSED(_VAR)": "((void)(_VAR))", + "ImAcos(X)": "acosf(X)", + "ImAtan2(Y,X)": "atan2f((Y), (X))", + "ImAtof(STR)": "atof(STR)", + "ImCeil(X)": "ceilf(X)", + "ImCos(X)": "cosf(X)", + "ImDrawCallback_ResetRenderState": "(ImDrawCallback)(-8)", + "ImFabs(X)": "fabsf(X)", + "ImFmod(X,Y)": "fmodf((X), (Y))", + "ImFontAtlasRectId_GenerationMask_": "(0x3FF00000)", + "ImFontAtlasRectId_GenerationShift_": "(20)", + "ImFontAtlasRectId_IndexMask_": "(0x0007FFFF)", + "ImFontAtlasRectId_Invalid": "-1", + "ImGuiKeyOwner_Any": "((ImGuiID)0)", + "ImGuiKeyOwner_NoOwner": "((ImGuiID)-1)", + "ImGuiKey_Aliases_BEGIN": "(ImGuiKey_Mouse_BEGIN)", + "ImGuiKey_Aliases_END": "(ImGuiKey_Mouse_END)", + "ImGuiKey_Gamepad_BEGIN": "(ImGuiKey_GamepadStart)", + "ImGuiKey_Gamepad_END": "(ImGuiKey_GamepadRStickDown + 1)", + "ImGuiKey_Keyboard_BEGIN": "(ImGuiKey_NamedKey_BEGIN)", + "ImGuiKey_Keyboard_END": "(ImGuiKey_GamepadStart)", + "ImGuiKey_LegacyNativeKey_BEGIN": "0", + "ImGuiKey_LegacyNativeKey_END": "512", + "ImGuiKey_Mouse_BEGIN": "(ImGuiKey_MouseLeft)", + "ImGuiKey_Mouse_END": "(ImGuiKey_MouseWheelY + 1)", + "ImGuiKey_NavGamepadActivate": "(g.IO.ConfigNavSwapGamepadButtons ? ImGuiKey_GamepadFaceRight : ImGuiKey_GamepadFaceDown)", + "ImGuiKey_NavGamepadCancel": "(g.IO.ConfigNavSwapGamepadButtons ? ImGuiKey_GamepadFaceDown : ImGuiKey_GamepadFaceRight)", + "ImGuiKey_NavGamepadInput": "ImGuiKey_GamepadFaceUp", + "ImGuiKey_NavGamepadMenu": "ImGuiKey_GamepadFaceLeft", + "ImGuiKey_NavGamepadTweakFast": "ImGuiKey_GamepadR1", + "ImGuiKey_NavGamepadTweakSlow": "ImGuiKey_GamepadL1", + "ImGuiKey_NavKeyboardTweakFast": "ImGuiMod_Shift", + "ImGuiKey_NavKeyboardTweakSlow": "ImGuiMod_Ctrl", + "ImGuiSelectionUserData_Invalid": "((ImGuiSelectionUserData)-1)", + "ImMemchr": "memchr", + "ImSin(X)": "sinf(X)", + "ImSqrt(X)": "sqrtf(X)", + "ImStrlen": "strlen", + "ImTextureID_Invalid": "((ImTextureID)0)" +} \ No newline at end of file diff --git a/generator/output/constants.lua b/generator/output/constants.lua new file mode 100644 index 0000000..eb6c4e0 --- /dev/null +++ b/generator/output/constants.lua @@ -0,0 +1,124 @@ +local t={ + DOCKING_HOST_DRAW_CHANNEL_BG="0", + DOCKING_HOST_DRAW_CHANNEL_FG="1", + ["IMGUI_CHECKVERSION()"]="ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert), sizeof(ImDrawIdx))", + ["IMGUI_DEBUG_LOG(...)"]="ImGui::DebugLog(__VA_ARGS__)", + ["IMGUI_DEBUG_LOG_ACTIVEID(...)"]="do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventActiveId) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + ["IMGUI_DEBUG_LOG_CLIPPER(...)"]="do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventClipper) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + ["IMGUI_DEBUG_LOG_DOCKING(...)"]="do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventDocking) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + ["IMGUI_DEBUG_LOG_ERROR(...)"]="do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventError) IMGUI_DEBUG_LOG(__VA_ARGS__); else g.DebugLogSkippedErrors++; } while (0)", + ["IMGUI_DEBUG_LOG_FOCUS(...)"]="do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventFocus) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + ["IMGUI_DEBUG_LOG_FONT(...)"]="do { ImGuiContext* g2 = GImGui; if (g2 && g2->DebugLogFlags & ImGuiDebugLogFlags_EventFont) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + ["IMGUI_DEBUG_LOG_INPUTROUTING(...)"]="do{if (g.DebugLogFlags & ImGuiDebugLogFlags_EventInputRouting)IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + ["IMGUI_DEBUG_LOG_IO(...)"]="do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventIO) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + ["IMGUI_DEBUG_LOG_NAV(...)"]="do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventNav) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + ["IMGUI_DEBUG_LOG_POPUP(...)"]="do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventPopup) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + ["IMGUI_DEBUG_LOG_SELECTION(...)"]="do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventSelection) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + ["IMGUI_DEBUG_LOG_VIEWPORT(...)"]="do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventViewport) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0)", + ["IMGUI_DEBUG_PRINTF(_FMT,...)"]="printf(_FMT, __VA_ARGS__)", + IMGUI_FONT_SIZE_MAX="(512.0f)", + IMGUI_FONT_SIZE_THRESHOLD_FOR_LOADADVANCEXONLYMODE="(128.0f)", + IMGUI_PAYLOAD_TYPE_COLOR_3F="\"_COL3F\"", + IMGUI_PAYLOAD_TYPE_COLOR_4F="\"_COL4F\"", + IMGUI_PAYLOAD_TYPE_WINDOW="\"_IMWINDOW\"", + IMGUI_TABLE_MAX_COLUMNS="512", + ["IMGUI_TEST_ENGINE_ITEM_ADD(_ID,_BB,_ITEM_DATA)"]="((void)0)", + ["IMGUI_TEST_ENGINE_ITEM_INFO(_ID,_LABEL,_FLAGS)"]="((void)g)", + IMGUI_VERSION="\"1.92.6\"", + IMGUI_VERSION_NUM="19261", + IMGUI_WINDOW_HARD_MIN_SIZE="4.0f", + IMSTB_TEXTEDIT_CHARTYPE="char", + IMSTB_TEXTEDIT_GETWIDTH_NEWLINE="(-1.0f)", + IMSTB_TEXTEDIT_STRING="ImGuiInputTextState", + IMSTB_TEXTEDIT_UNDOCHARCOUNT="999", + IMSTB_TEXTEDIT_UNDOSTATECOUNT="99", + ["IM_ALLOC(_SIZE)"]="ImGui::MemAlloc(_SIZE)", + IM_ARRAYSIZE="IM_COUNTOF", + ["IM_ASSERT(_EXPR)"]="assert(_EXPR)", + ["IM_ASSERT_USER_ERROR(_EXPR,_MSG)"]="do { if (!(_EXPR)) { if (ImGui::ErrorLog(_MSG)) { IM_ASSERT((_EXPR) && _MSG); } } } while (0)", + ["IM_ASSERT_USER_ERROR_RET(_EXPR,_MSG)"]="do { if (!(_EXPR)) { if (ImGui::ErrorLog(_MSG)) { IM_ASSERT((_EXPR) && _MSG); } return; } } while (0)", + ["IM_ASSERT_USER_ERROR_RETV(_EXPR,_RETV,_MSG)"]="do { if (!(_EXPR)) { if (ImGui::ErrorLog(_MSG)) { IM_ASSERT((_EXPR) && _MSG); } return _RETV; } } while (0)", + ["IM_BITARRAY_CLEARBIT(_ARRAY,_N)"]="((_ARRAY[(_N) >> 5] &= ~((ImU32)1 << ((_N) & 31))))", + ["IM_BITARRAY_TESTBIT(_ARRAY,_N)"]="((_ARRAY[(_N) >> 5] & ((ImU32)1 << ((_N) & 31))) != 0)", + ["IM_COL32(R,G,B,A)"]="(((ImU32)(A)< Date: Tue, 24 Feb 2026 11:03:42 +0100 Subject: [PATCH 6/8] constants work 2 --- generator/cpp2ffi.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/generator/cpp2ffi.lua b/generator/cpp2ffi.lua index d18f9ca..01d23d3 100644 --- a/generator/cpp2ffi.lua +++ b/generator/cpp2ffi.lua @@ -2363,6 +2363,15 @@ function M.Parser() print(it.item) end end + elseif it.re_name == "vardef_re" then + local it2 = it.item:gsub("constexpr","static const") + if it2:match"static const" then + local name, assig = it2:match("static const %s*.+%s+([%w_]+)%s*=%s*([^;]*);") + --print(it2,name,assig) + if name and assig then + self.constants[name] = assig + end + end end elseif it.re_name == "enum_re" then enums_for_table(it, outtab, enumsordered) From 715802490eabca2fc86cf25b41b83aa7c5d6060d Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Wed, 25 Feb 2026 12:13:47 +0100 Subject: [PATCH 7/8] save_output --- generator/cpp2ffi.lua | 31 +++++++++++++++++++++++++++++++ generator/generator.lua | 16 +--------------- 2 files changed, 32 insertions(+), 15 deletions(-) diff --git a/generator/cpp2ffi.lua b/generator/cpp2ffi.lua index 01d23d3..b8f83f0 100644 --- a/generator/cpp2ffi.lua +++ b/generator/cpp2ffi.lua @@ -1553,6 +1553,36 @@ local function printItems(items) printItemsKind(items,v) end end + +-------------------------------json saving +--avoid mixed tables (with string and integer keys) +local function json_prepare(defs) + --delete signatures in function + for k,def in pairs(defs) do + for k2,v in pairs(def) do + if type(k2)=="string" then + def[k2] = nil + end + end + end + return defs +end + + +local function save_output(self) + save_data("./output/overloads.txt",self.overloadstxt) + save_data("./output/definitions.lua",M.serializeTableF(self.defsT)) + save_data("./output/structs_and_enums.lua",M.serializeTableF(self.structs_and_enums_table)) + save_data("./output/typedefs_dict.lua",M.serializeTableF(self.typedefs_dict)) + save_data("./output/constants.lua",M.serializeTableF(self.constants)) + + local json = require"json" + local json_opts = {dict_on_empty={defaults=true}} + save_data("./output/definitions.json",json.encode(json_prepare(self.defsT),json_opts)) + save_data("./output/structs_and_enums.json",json.encode(self.structs_and_enums_table)) + save_data("./output/typedefs_dict.json",json.encode(self.typedefs_dict)) + save_data("./output/constants.json",json.encode(self.constants)) +end ------------- local numerr = 0 --for popen error file function M.Parser() @@ -1573,6 +1603,7 @@ function M.Parser() par.skipped = {} par.UDTs = {} + par.save_output = save_output par.genConversors = genConversions par.gen_structs_c = gen_structs_c function par:insert(line,loca) diff --git a/generator/generator.lua b/generator/generator.lua index 0927e19..b786dfa 100644 --- a/generator/generator.lua +++ b/generator/generator.lua @@ -438,14 +438,8 @@ structs_and_enums_table.templated_structs = parser1.templated_structs structs_and_enums_table.typenames = parser1.typenames structs_and_enums_table.templates_done = parser1.templates_done --structs_and_enums_table.nonPOD_used = parser1.nP_used - -save_data("./output/structs_and_enums.lua",serializeTableF(structs_and_enums_table)) -save_data("./output/typedefs_dict.lua",serializeTableF(parser1.typedefs_dict)) -save_data("./output/constants.lua",serializeTableF(parser1.constants)) -----------save fundefs in definitions.lua for using in bindings ---DefsByStruct(pFP) set_defines(parser1.defsT) -save_data("./output/definitions.lua",serializeTableF(parser1.defsT)) +parser1:save_output() --check every function has ov_cimguiname -- for k,v in pairs(parser1.defsT) do @@ -549,14 +543,6 @@ local function json_prepare(defs) end ---[[ local json = require"json" -save_data("./output/definitions.json",json.encode(json_prepare(parser1.defsT),{dict_on_empty={defaults=true}})) ---delete extra info for json ---structs_and_enums_table.templated_structs = nil ---structs_and_enums_table.typenames = nil ---structs_and_enums_table.templates_done = nil -save_data("./output/structs_and_enums.json",json.encode(structs_and_enums_table)) -save_data("./output/typedefs_dict.json",json.encode(parser1.typedefs_dict)) -save_data("./output/constants.json",json.encode(parser1.constants)) if parser2 then save_data("./output/impl_definitions.json",json.encode(json_prepare(parser2.defsT),{dict_on_empty={defaults=true}})) end From 0e533fd0b70f6add19825bea83b66743d5b8d95b Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Mon, 6 Apr 2026 11:08:00 +0200 Subject: [PATCH 8/8] pull 1.92.7 docking and generate --- README.md | 2 +- cimgui.cpp | 46 +- cimgui.h | 46 +- cimgui_impl.h | 4 + generator/output/constants.json | 6 +- generator/output/constants.lua | 6 +- generator/output/definitions.json | 3053 ++++++++++++----------- generator/output/definitions.lua | 3036 +++++++++++----------- generator/output/impl_definitions.json | 40 +- generator/output/impl_definitions.lua | 40 +- generator/output/structs_and_enums.json | 483 ++-- generator/output/structs_and_enums.lua | 1007 ++++---- generator/output/typedefs_dict.json | 1 + generator/output/typedefs_dict.lua | 1 + imgui | 2 +- 15 files changed, 4149 insertions(+), 3624 deletions(-) diff --git a/README.md b/README.md index 48b1999..5e69fd6 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ History: Initially cimgui was developed by Stephan Dilly as hand-written code but lately turned into an auto-generated version by sonoro1234 in order to keep up with imgui more easily (letting the user select the desired branch and commit) Notes: -* currently this wrapper is based on version [1.92.4 of Dear ImGui with internal api] +* currently this wrapper is based on version [1.92.7 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/cimgui.cpp b/cimgui.cpp index f736f9e..6bfae71 100644 --- a/cimgui.cpp +++ b/cimgui.cpp @@ -1,5 +1,5 @@ //This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui -//based on imgui.h file version "1.92.6" 19261 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.92.7" 19270 from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api //with imgui_freetype.h api //docking branch @@ -1139,6 +1139,10 @@ CIMGUI_API void igSetNextItemStorageID(ImGuiID storage_id) { return ImGui::SetNextItemStorageID(storage_id); } +CIMGUI_API bool igTreeNodeGetOpen(ImGuiID storage_id) +{ + return ImGui::TreeNodeGetOpen(storage_id); +} CIMGUI_API bool igSelectable_Bool(const char* label,bool selected,ImGuiSelectableFlags flags,const ImVec2_c size) { return ImGui::Selectable(label,selected,flags,ConvertToCPP_ImVec2(size)); @@ -3015,6 +3019,10 @@ CIMGUI_API ImVec2_c ImGuiViewport_GetWorkCenter(ImGuiViewport* self) { return ConvertFromCPP_ImVec2(self->GetWorkCenter()); } +CIMGUI_API const char* ImGuiViewport_GetDebugName(ImGuiViewport* self) +{ + return self->GetDebugName(); +} CIMGUI_API ImGuiPlatformIO* ImGuiPlatformIO_ImGuiPlatformIO(void) { return IM_NEW(ImGuiPlatformIO)(); @@ -3818,6 +3826,10 @@ CIMGUI_API float ImGuiInputTextState_GetPreferredOffsetX(ImGuiInputTextState* se { return self->GetPreferredOffsetX(); } +CIMGUI_API const char* ImGuiInputTextState_GetText(ImGuiInputTextState* self) +{ + return self->GetText(); +} CIMGUI_API void ImGuiInputTextState_CursorAnimReset(ImGuiInputTextState* self) { return self->CursorAnimReset(); @@ -4874,6 +4886,14 @@ CIMGUI_API ImGuiMouseButton igGetMouseButtonFromPopupFlags(ImGuiPopupFlags flags { return ImGui::GetMouseButtonFromPopupFlags(flags); } +CIMGUI_API bool igIsPopupOpenRequestForItem(ImGuiPopupFlags flags,ImGuiID id) +{ + return ImGui::IsPopupOpenRequestForItem(flags,id); +} +CIMGUI_API bool igIsPopupOpenRequestForWindow(ImGuiPopupFlags flags) +{ + return ImGui::IsPopupOpenRequestForWindow(flags); +} CIMGUI_API bool igBeginTooltipEx(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags) { return ImGui::BeginTooltipEx(tooltip_flags,extra_window_flags); @@ -5610,6 +5630,10 @@ CIMGUI_API void igTableSetColumnDisplayOrder(ImGuiTable* table,int column_n,int { return ImGui::TableSetColumnDisplayOrder(table,column_n,dst_order); } +CIMGUI_API void igTableQueueSetColumnDisplayOrder(ImGuiTable* table,int column_n,int dst_order) +{ + return ImGui::TableQueueSetColumnDisplayOrder(table,column_n,dst_order); +} CIMGUI_API void igTableRemove(ImGuiTable* table) { return ImGui::TableRemove(table); @@ -5911,6 +5935,10 @@ CIMGUI_API ImGuiID igGetWindowResizeBorderID(ImGuiWindow* window,ImGuiDir dir) { return ImGui::GetWindowResizeBorderID(window,dir); } +CIMGUI_API void igExtendHitBoxWhenNearViewportEdge(ImGuiWindow* window,ImRect* bb,float threshold,ImGuiAxis axis) +{ + return ImGui::ExtendHitBoxWhenNearViewportEdge(window,bb,threshold,axis); +} CIMGUI_API bool igButtonBehavior(const ImRect_c bb,ImGuiID id,bool* out_hovered,bool* out_held,ImGuiButtonFlags flags) { return ImGui::ButtonBehavior(ConvertToCPP_ImRect(bb),id,out_hovered,out_held,flags); @@ -5943,10 +5971,6 @@ CIMGUI_API void igTreePushOverrideID(ImGuiID id) { return ImGui::TreePushOverrideID(id); } -CIMGUI_API bool igTreeNodeGetOpen(ImGuiID storage_id) -{ - return ImGui::TreeNodeGetOpen(storage_id); -} CIMGUI_API void igTreeNodeSetOpen(ImGuiID storage_id,bool open) { return ImGui::TreeNodeSetOpen(storage_id,open); @@ -5991,9 +6015,9 @@ CIMGUI_API void igInputTextDeactivateHook(ImGuiID id) { return ImGui::InputTextDeactivateHook(id); } -CIMGUI_API bool igTempInputText(const ImRect_c bb,ImGuiID id,const char* label,char* buf,int buf_size,ImGuiInputTextFlags flags) +CIMGUI_API bool igTempInputText(const ImRect_c bb,ImGuiID id,const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags,ImGuiInputTextCallback callback,void* user_data) { - return ImGui::TempInputText(ConvertToCPP_ImRect(bb),id,label,buf,buf_size,flags); + return ImGui::TempInputText(ConvertToCPP_ImRect(bb),id,label,buf,buf_size,flags,callback,user_data); } CIMGUI_API bool igTempInputScalar(const ImRect_c bb,ImGuiID id,const char* label,ImGuiDataType data_type,void* p_data,const char* format,const void* p_clamp_min,const void* p_clamp_max) { @@ -6091,6 +6115,10 @@ CIMGUI_API void igEndErrorTooltip() { return ImGui::EndErrorTooltip(); } +CIMGUI_API void igDemoMarker(const char* file,int line,const char* section) +{ + return ImGui::DemoMarker(file,line,section); +} CIMGUI_API void igDebugAllocHook(ImGuiDebugAllocInfo* info,int frame_count,void* ptr,size_t size) { return ImGui::DebugAllocHook(info,frame_count,ptr,size); @@ -6167,9 +6195,9 @@ CIMGUI_API void igDebugNodeFont(ImFont* font) { return ImGui::DebugNodeFont(font); } -CIMGUI_API void igDebugNodeFontGlyphesForSrcMask(ImFont* font,ImFontBaked* baked,int src_mask) +CIMGUI_API void igDebugNodeFontGlyphsForSrcMask(ImFont* font,ImFontBaked* baked,int src_mask) { - return ImGui::DebugNodeFontGlyphesForSrcMask(font,baked,src_mask); + return ImGui::DebugNodeFontGlyphsForSrcMask(font,baked,src_mask); } CIMGUI_API void igDebugNodeFontGlyph(ImFont* font,const ImFontGlyph* glyph) { diff --git a/cimgui.h b/cimgui.h index ca875a2..8ec1b7b 100644 --- a/cimgui.h +++ b/cimgui.h @@ -1,5 +1,5 @@ //This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui -//based on imgui.h file version "1.92.6" 19261 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.92.7" 19270 from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api //with imgui_freetype.h api //docking branch @@ -835,6 +835,7 @@ typedef enum { ImGuiStyleVar_TreeLinesRounding, ImGuiStyleVar_ButtonTextAlign, ImGuiStyleVar_SelectableTextAlign, + ImGuiStyleVar_SeparatorSize, ImGuiStyleVar_SeparatorTextBorderSize, ImGuiStyleVar_SeparatorTextAlign, ImGuiStyleVar_SeparatorTextPadding, @@ -848,6 +849,7 @@ typedef enum { ImGuiButtonFlags_MouseButtonMiddle = 1 << 2, ImGuiButtonFlags_MouseButtonMask_ = ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight | ImGuiButtonFlags_MouseButtonMiddle, ImGuiButtonFlags_EnableNav = 1 << 3, + ImGuiButtonFlags_AllowOverlap = 1 << 12, }ImGuiButtonFlags_; typedef enum { ImGuiColorEditFlags_None = 0, @@ -1077,6 +1079,7 @@ struct ImGuiStyle ImGuiDir ColorButtonPosition; ImVec2_c ButtonTextAlign; ImVec2_c SelectableTextAlign; + float SeparatorSize; float SeparatorTextBorderSize; ImVec2_c SeparatorTextAlign; ImVec2_c SeparatorTextPadding; @@ -1314,15 +1317,16 @@ typedef enum { }ImGuiListClipperFlags_; struct ImGuiListClipper { - ImGuiContext* Ctx; int DisplayStart; int DisplayEnd; + int UserIndex; int ItemsCount; float ItemsHeight; + ImGuiListClipperFlags Flags; double StartPosY; double StartSeekOffsetY; + ImGuiContext* Ctx; void* TempData; - ImGuiListClipperFlags Flags; }; struct ImColor_c { @@ -1343,10 +1347,12 @@ typedef enum { ImGuiMultiSelectFlags_ClearOnClickVoid = 1 << 10, ImGuiMultiSelectFlags_ScopeWindow = 1 << 11, ImGuiMultiSelectFlags_ScopeRect = 1 << 12, - ImGuiMultiSelectFlags_SelectOnClick = 1 << 13, - ImGuiMultiSelectFlags_SelectOnClickRelease = 1 << 14, + ImGuiMultiSelectFlags_SelectOnAuto = 1 << 13, + ImGuiMultiSelectFlags_SelectOnClickAlways = 1 << 14, + ImGuiMultiSelectFlags_SelectOnClickRelease = 1 << 15, ImGuiMultiSelectFlags_NavWrapX = 1 << 16, ImGuiMultiSelectFlags_NoSelectOnRightClick = 1 << 17, + ImGuiMultiSelectFlags_SelectOnMask_ = ImGuiMultiSelectFlags_SelectOnAuto | ImGuiMultiSelectFlags_SelectOnClickAlways | ImGuiMultiSelectFlags_SelectOnClickRelease, }ImGuiMultiSelectFlags_; typedef struct ImVector_ImGuiSelectionRequest {int Size;int Capacity;ImGuiSelectionRequest* Data;} ImVector_ImGuiSelectionRequest; @@ -1997,7 +2003,7 @@ typedef enum { }ImGuiHoveredFlagsPrivate_; typedef enum { ImGuiInputTextFlags_Multiline = 1 << 26, - ImGuiInputTextFlags_MergedItem = 1 << 27, + ImGuiInputTextFlags_TempInput = 1 << 27, ImGuiInputTextFlags_LocalizeDecimalPoint= 1 << 28, }ImGuiInputTextFlagsPrivate_; typedef enum { @@ -2008,7 +2014,6 @@ typedef enum { ImGuiButtonFlags_PressedOnDoubleClick = 1 << 8, ImGuiButtonFlags_PressedOnDragDropHold = 1 << 9, ImGuiButtonFlags_FlattenChildren = 1 << 11, - ImGuiButtonFlags_AllowOverlap = 1 << 12, ImGuiButtonFlags_AlignTextBaseLine = 1 << 15, ImGuiButtonFlags_NoKeyModsAllowed = 1 << 16, ImGuiButtonFlags_NoHoldingActiveId = 1 << 17, @@ -2147,7 +2152,8 @@ struct ImGuiInputTextState bool CursorFollow; bool CursorCenterY; bool SelectedAllMouseLock; - bool Edited; + bool EditedBefore; + bool EditedThisFrame; bool WantReloadUserBuf; ImS8 LastMoveDirectionLR; int ReloadSelectionStart; @@ -2747,7 +2753,7 @@ struct ImGuiViewportP float LastAlpha; bool LastFocusedHadNavWindow; short PlatformMonitor; - int BgFgDrawListsLastFrame[2]; + float BgFgDrawListsLastTimeActive[2]; ImDrawList* BgFgDrawLists[2]; ImDrawData DrawDataP; ImDrawDataBuilder DrawDataBuilder; @@ -2900,6 +2906,7 @@ struct ImGuiContextHook ImGuiContextHookCallback Callback; void* UserData; }; +typedef void (*ImGuiDemoMarkerCallback)(const char* file, int line, const char* section); typedef struct ImVector_ImFontAtlasPtr {int Size;int Capacity;ImFontAtlas** Data;} ImVector_ImFontAtlasPtr; typedef struct ImVector_ImGuiInputEvent {int Size;int Capacity;ImGuiInputEvent* Data;} ImVector_ImGuiInputEvent; @@ -3085,6 +3092,7 @@ struct ImGuiContext ImGuiWindow* NavWindow; ImGuiID NavFocusScopeId; ImGuiNavLayer NavLayer; + ImGuiItemFlags NavIdItemFlags; ImGuiID NavActivateId; ImGuiID NavActivateDownId; ImGuiID NavActivatePressedId; @@ -3092,6 +3100,8 @@ struct ImGuiContext ImVector_ImGuiFocusScopeData NavFocusRoute; ImGuiID NavHighlightActivatedId; float NavHighlightActivatedTimer; + ImGuiID NavOpenContextMenuItemId; + ImGuiID NavOpenContextMenuWindowId; ImGuiID NavNextActivateId; ImGuiActivateFlags NavNextActivateFlags; ImGuiInputSource NavInputSource; @@ -3192,6 +3202,7 @@ struct ImGuiContext ImGuiInputTextDeactivatedState InputTextDeactivatedState; ImFontBaked InputTextPasswordFontBackupBaked; ImFontFlags InputTextPasswordFontBackupFlags; + ImGuiID InputTextReactivateId; ImGuiID TempInputId; ImGuiDataTypeStorage DataTypeZeroValue; int BeginMenuDepth; @@ -3234,6 +3245,7 @@ struct ImGuiContext ImChunkStream_ImGuiTableSettings SettingsTables; ImVector_ImGuiContextHook Hooks; ImGuiID HookIdNext; + ImGuiDemoMarkerCallback DemoMarkerCallback; const char* LocalizationTable[ImGuiLocKey_COUNT]; bool LogEnabled; bool LogLineFirstItem; @@ -3680,8 +3692,9 @@ struct ImGuiTable ImGuiTableColumnIdx ResizedColumn; ImGuiTableColumnIdx LastResizedColumn; ImGuiTableColumnIdx HeldHeaderColumn; + ImGuiTableColumnIdx LastHeldHeaderColumn; ImGuiTableColumnIdx ReorderColumn; - ImGuiTableColumnIdx ReorderColumnDir; + ImGuiTableColumnIdx ReorderColumnDstOrder; ImGuiTableColumnIdx LeftMostEnabledColumn; ImGuiTableColumnIdx RightMostEnabledColumn; ImGuiTableColumnIdx LeftMostStretchedColumn; @@ -4240,6 +4253,7 @@ CIMGUI_API bool igCollapsingHeader_TreeNodeFlags(const char* label,ImGuiTreeNode CIMGUI_API bool igCollapsingHeader_BoolPtr(const char* label,bool* p_visible,ImGuiTreeNodeFlags flags); CIMGUI_API void igSetNextItemOpen(bool is_open,ImGuiCond cond); CIMGUI_API void igSetNextItemStorageID(ImGuiID storage_id); +CIMGUI_API bool igTreeNodeGetOpen(ImGuiID storage_id); CIMGUI_API bool igSelectable_Bool(const char* label,bool selected,ImGuiSelectableFlags flags,const ImVec2_c size); CIMGUI_API bool igSelectable_BoolPtr(const char* label,bool* p_selected,ImGuiSelectableFlags flags,const ImVec2_c size); CIMGUI_API ImGuiMultiSelectIO* igBeginMultiSelect(ImGuiMultiSelectFlags flags,int selection_size,int items_count); @@ -4712,6 +4726,7 @@ CIMGUI_API ImGuiViewport* ImGuiViewport_ImGuiViewport(void); CIMGUI_API void ImGuiViewport_destroy(ImGuiViewport* self); CIMGUI_API ImVec2_c ImGuiViewport_GetCenter(ImGuiViewport* self); CIMGUI_API ImVec2_c ImGuiViewport_GetWorkCenter(ImGuiViewport* self); +CIMGUI_API const char* ImGuiViewport_GetDebugName(ImGuiViewport* self); CIMGUI_API ImGuiPlatformIO* ImGuiPlatformIO_ImGuiPlatformIO(void); CIMGUI_API void ImGuiPlatformIO_destroy(ImGuiPlatformIO* self); CIMGUI_API void ImGuiPlatformIO_ClearPlatformHandlers(ImGuiPlatformIO* self); @@ -4914,6 +4929,7 @@ CIMGUI_API void ImGuiInputTextState_ClearFreeMemory(ImGuiInputTextState* self); CIMGUI_API void ImGuiInputTextState_OnKeyPressed(ImGuiInputTextState* self,int key); CIMGUI_API void ImGuiInputTextState_OnCharPressed(ImGuiInputTextState* self,unsigned int c); CIMGUI_API float ImGuiInputTextState_GetPreferredOffsetX(ImGuiInputTextState* self); +CIMGUI_API const char* ImGuiInputTextState_GetText(ImGuiInputTextState* self); CIMGUI_API void ImGuiInputTextState_CursorAnimReset(ImGuiInputTextState* self); CIMGUI_API void ImGuiInputTextState_CursorClamp(ImGuiInputTextState* self); CIMGUI_API bool ImGuiInputTextState_HasSelection(ImGuiInputTextState* self); @@ -5178,6 +5194,8 @@ CIMGUI_API ImGuiWindow* igFindBlockingModal(ImGuiWindow* window); CIMGUI_API ImVec2_c igFindBestWindowPosForPopup(ImGuiWindow* window); CIMGUI_API ImVec2_c igFindBestWindowPosForPopupEx(const ImVec2_c ref_pos,const ImVec2_c size,ImGuiDir* last_dir,const ImRect_c r_outer,const ImRect_c r_avoid,ImGuiPopupPositionPolicy policy); CIMGUI_API ImGuiMouseButton igGetMouseButtonFromPopupFlags(ImGuiPopupFlags flags); +CIMGUI_API bool igIsPopupOpenRequestForItem(ImGuiPopupFlags flags,ImGuiID id); +CIMGUI_API bool igIsPopupOpenRequestForWindow(ImGuiPopupFlags flags); 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); @@ -5362,6 +5380,7 @@ CIMGUI_API float igTableCalcMaxColumnWidth(const ImGuiTable* table,int column_n) CIMGUI_API void igTableSetColumnWidthAutoSingle(ImGuiTable* table,int column_n); CIMGUI_API void igTableSetColumnWidthAutoAll(ImGuiTable* table); CIMGUI_API void igTableSetColumnDisplayOrder(ImGuiTable* table,int column_n,int dst_order); +CIMGUI_API void igTableQueueSetColumnDisplayOrder(ImGuiTable* table,int column_n,int dst_order); CIMGUI_API void igTableRemove(ImGuiTable* table); CIMGUI_API void igTableGcCompactTransientBuffers_TablePtr(ImGuiTable* table); CIMGUI_API void igTableGcCompactTransientBuffers_TableTempDataPtr(ImGuiTableTempData* table); @@ -5438,6 +5457,7 @@ CIMGUI_API ImRect_c igGetWindowScrollbarRect(ImGuiWindow* window,ImGuiAxis axis) CIMGUI_API ImGuiID igGetWindowScrollbarID(ImGuiWindow* window,ImGuiAxis axis); CIMGUI_API ImGuiID igGetWindowResizeCornerID(ImGuiWindow* window,int n); CIMGUI_API ImGuiID igGetWindowResizeBorderID(ImGuiWindow* window,ImGuiDir dir); +CIMGUI_API void igExtendHitBoxWhenNearViewportEdge(ImGuiWindow* window,ImRect* bb,float threshold,ImGuiAxis axis); CIMGUI_API bool igButtonBehavior(const ImRect_c bb,ImGuiID id,bool* out_hovered,bool* out_held,ImGuiButtonFlags flags); CIMGUI_API bool igDragBehavior(ImGuiID id,ImGuiDataType data_type,void* p_v,float v_speed,const void* p_min,const void* p_max,const char* format,ImGuiSliderFlags flags); CIMGUI_API bool igSliderBehavior(const ImRect_c bb,ImGuiID id,ImGuiDataType data_type,void* p_v,const void* p_min,const void* p_max,const char* format,ImGuiSliderFlags flags,ImRect* out_grab_bb); @@ -5446,7 +5466,6 @@ CIMGUI_API bool igTreeNodeBehavior(ImGuiID id,ImGuiTreeNodeFlags flags,const cha CIMGUI_API void igTreeNodeDrawLineToChildNode(const ImVec2_c target_pos); CIMGUI_API void igTreeNodeDrawLineToTreePop(const ImGuiTreeNodeStackData* data); CIMGUI_API void igTreePushOverrideID(ImGuiID id); -CIMGUI_API bool igTreeNodeGetOpen(ImGuiID storage_id); CIMGUI_API void igTreeNodeSetOpen(ImGuiID storage_id,bool open); CIMGUI_API bool igTreeNodeUpdateNextOpen(ImGuiID storage_id,ImGuiTreeNodeFlags flags); CIMGUI_API const ImGuiDataTypeInfo* igDataTypeGetInfo(ImGuiDataType data_type); @@ -5458,7 +5477,7 @@ CIMGUI_API bool igDataTypeClamp(ImGuiDataType data_type,void* p_data,const void* CIMGUI_API bool igDataTypeIsZero(ImGuiDataType data_type,const void* p_data); CIMGUI_API bool igInputTextEx(const char* label,const char* hint,char* buf,int buf_size,const ImVec2_c size_arg,ImGuiInputTextFlags flags,ImGuiInputTextCallback callback,void* user_data); CIMGUI_API void igInputTextDeactivateHook(ImGuiID id); -CIMGUI_API bool igTempInputText(const ImRect_c bb,ImGuiID id,const char* label,char* buf,int buf_size,ImGuiInputTextFlags flags); +CIMGUI_API bool igTempInputText(const ImRect_c bb,ImGuiID id,const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags,ImGuiInputTextCallback callback,void* user_data); CIMGUI_API bool igTempInputScalar(const ImRect_c bb,ImGuiID id,const char* label,ImGuiDataType data_type,void* p_data,const char* format,const void* p_clamp_min,const void* p_clamp_max); CIMGUI_API bool igTempInputIsActive(ImGuiID id); CIMGUI_API ImGuiInputTextState* igGetInputTextState(ImGuiID id); @@ -5483,6 +5502,7 @@ CIMGUI_API void igErrorCheckUsingSetCursorPosToExtendParentBoundaries(void); CIMGUI_API void igErrorCheckEndFrameFinalizeErrorTooltip(void); CIMGUI_API bool igBeginErrorTooltip(void); CIMGUI_API void igEndErrorTooltip(void); +CIMGUI_API void igDemoMarker(const char* file,int line,const char* section); CIMGUI_API void igDebugAllocHook(ImGuiDebugAllocInfo* info,int frame_count,void* ptr,size_t size); CIMGUI_API void igDebugDrawCursorPos(ImU32 col); CIMGUI_API void igDebugDrawLineExtents(ImU32 col); @@ -5502,7 +5522,7 @@ CIMGUI_API void igDebugNodeDockNode(ImGuiDockNode* node,const char* label); CIMGUI_API void igDebugNodeDrawList(ImGuiWindow* window,ImGuiViewportP* viewport,const ImDrawList* draw_list,const char* label); CIMGUI_API void igDebugNodeDrawCmdShowMeshAndBoundingBox(ImDrawList* out_draw_list,const ImDrawList* draw_list,const ImDrawCmd* draw_cmd,bool show_mesh,bool show_aabb); CIMGUI_API void igDebugNodeFont(ImFont* font); -CIMGUI_API void igDebugNodeFontGlyphesForSrcMask(ImFont* font,ImFontBaked* baked,int src_mask); +CIMGUI_API void igDebugNodeFontGlyphsForSrcMask(ImFont* font,ImFontBaked* baked,int src_mask); CIMGUI_API void igDebugNodeFontGlyph(ImFont* font,const ImFontGlyph* glyph); CIMGUI_API void igDebugNodeTexture(ImTextureData* tex,int int_id,const ImFontAtlasRect* highlight_rect); CIMGUI_API void igDebugNodeStorage(ImGuiStorage* storage,const char* label); diff --git a/cimgui_impl.h b/cimgui_impl.h index 1ee0551..b243cd3 100644 --- a/cimgui_impl.h +++ b/cimgui_impl.h @@ -110,11 +110,14 @@ CIMGUI_API void ImGui_ImplSDL3_Shutdown(void); typedef struct ImGui_ImplVulkanH_Frame ImGui_ImplVulkanH_Frame; typedef struct ImGui_ImplVulkanH_Window ImGui_ImplVulkanH_Window; typedef struct ImGui_ImplVulkan_PipelineInfo ImGui_ImplVulkan_PipelineInfo; +typedef struct ImVector_VkDynamicState {int Size;int Capacity;VkDynamicState* Data;} ImVector_VkDynamicState; + struct ImGui_ImplVulkan_PipelineInfo { VkRenderPass RenderPass; uint32_t Subpass; VkSampleCountFlagBits MSAASamples; + ImVector_VkDynamicState ExtraDynamicStates; VkPipelineRenderingCreateInfoKHR PipelineRenderingCreateInfo; VkImageUsageFlags SwapChainImageUsage; }; @@ -192,6 +195,7 @@ struct ImGui_ImplVulkanH_Window #ifndef CIMGUI_DEFINE_ENUMS_AND_STRUCTS typedef ImVector ImVector_ImGui_ImplVulkanH_Frame; typedef ImVector ImVector_ImGui_ImplVulkanH_FrameSemaphores; +typedef ImVector ImVector_VkDynamicState; #endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS CIMGUI_API void ImGui_ImplVulkanH_CreateOrResizeWindow(VkInstance instance,VkPhysicalDevice physical_device,VkDevice device,ImGui_ImplVulkanH_Window* wd,uint32_t queue_family,const VkAllocationCallbacks* allocator,int w,int h,uint32_t min_image_count,VkImageUsageFlags image_usage); CIMGUI_API void ImGui_ImplVulkanH_DestroyWindow(VkInstance instance,VkDevice device,ImGui_ImplVulkanH_Window* wd,const VkAllocationCallbacks* allocator); diff --git a/generator/output/constants.json b/generator/output/constants.json index 2d9da3f..e7ba504 100644 --- a/generator/output/constants.json +++ b/generator/output/constants.json @@ -24,8 +24,8 @@ "IMGUI_TABLE_MAX_COLUMNS": "512", "IMGUI_TEST_ENGINE_ITEM_ADD(_ID,_BB,_ITEM_DATA)": "((void)0)", "IMGUI_TEST_ENGINE_ITEM_INFO(_ID,_LABEL,_FLAGS)": "((void)g)", - "IMGUI_VERSION": "\"1.92.6\"", - "IMGUI_VERSION_NUM": "19261", + "IMGUI_VERSION": "\"1.92.7\"", + "IMGUI_VERSION_NUM": "19270", "IMGUI_WINDOW_HARD_MIN_SIZE": "4.0f", "IMSTB_TEXTEDIT_CHARTYPE": "char", "IMSTB_TEXTEDIT_GETWIDTH_NEWLINE": "(-1.0f)", @@ -109,7 +109,7 @@ "ImGuiKey_Mouse_END": "(ImGuiKey_MouseWheelY + 1)", "ImGuiKey_NavGamepadActivate": "(g.IO.ConfigNavSwapGamepadButtons ? ImGuiKey_GamepadFaceRight : ImGuiKey_GamepadFaceDown)", "ImGuiKey_NavGamepadCancel": "(g.IO.ConfigNavSwapGamepadButtons ? ImGuiKey_GamepadFaceDown : ImGuiKey_GamepadFaceRight)", - "ImGuiKey_NavGamepadInput": "ImGuiKey_GamepadFaceUp", + "ImGuiKey_NavGamepadContextMenu": "ImGuiKey_GamepadFaceUp", "ImGuiKey_NavGamepadMenu": "ImGuiKey_GamepadFaceLeft", "ImGuiKey_NavGamepadTweakFast": "ImGuiKey_GamepadR1", "ImGuiKey_NavGamepadTweakSlow": "ImGuiKey_GamepadL1", diff --git a/generator/output/constants.lua b/generator/output/constants.lua index eb6c4e0..d8385b3 100644 --- a/generator/output/constants.lua +++ b/generator/output/constants.lua @@ -24,8 +24,8 @@ local t={ IMGUI_TABLE_MAX_COLUMNS="512", ["IMGUI_TEST_ENGINE_ITEM_ADD(_ID,_BB,_ITEM_DATA)"]="((void)0)", ["IMGUI_TEST_ENGINE_ITEM_INFO(_ID,_LABEL,_FLAGS)"]="((void)g)", - IMGUI_VERSION="\"1.92.6\"", - IMGUI_VERSION_NUM="19261", + IMGUI_VERSION="\"1.92.7\"", + IMGUI_VERSION_NUM="19270", IMGUI_WINDOW_HARD_MIN_SIZE="4.0f", IMSTB_TEXTEDIT_CHARTYPE="char", IMSTB_TEXTEDIT_GETWIDTH_NEWLINE="(-1.0f)", @@ -109,7 +109,7 @@ local t={ ImGuiKey_Mouse_END="(ImGuiKey_MouseWheelY + 1)", ImGuiKey_NavGamepadActivate="(g.IO.ConfigNavSwapGamepadButtons ? ImGuiKey_GamepadFaceRight : ImGuiKey_GamepadFaceDown)", ImGuiKey_NavGamepadCancel="(g.IO.ConfigNavSwapGamepadButtons ? ImGuiKey_GamepadFaceDown : ImGuiKey_GamepadFaceRight)", - ImGuiKey_NavGamepadInput="ImGuiKey_GamepadFaceUp", + ImGuiKey_NavGamepadContextMenu="ImGuiKey_GamepadFaceUp", ImGuiKey_NavGamepadMenu="ImGuiKey_GamepadFaceLeft", ImGuiKey_NavGamepadTweakFast="ImGuiKey_GamepadR1", ImGuiKey_NavGamepadTweakSlow="ImGuiKey_GamepadL1", diff --git a/generator/output/definitions.json b/generator/output/definitions.json index 6f12f28..37a0b8b 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -631,7 +631,7 @@ }, "funcname": "HSV", "is_static_function": true, - "location": "imgui:3098", + "location": "imgui:3114", "nonUDT": 1, "ov_cimguiname": "ImColor_HSV", "ret": "ImColor_c", @@ -650,7 +650,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:3088", + "location": "imgui:3104", "ov_cimguiname": "ImColor_ImColor_Nil", "signature": "()", "stname": "ImColor" @@ -684,7 +684,7 @@ "a": "1.0f" }, "funcname": "ImColor", - "location": "imgui:3089", + "location": "imgui:3105", "ov_cimguiname": "ImColor_ImColor_Float", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -704,7 +704,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:3090", + "location": "imgui:3106", "ov_cimguiname": "ImColor_ImColor_Vec4", "signature": "(const ImVec4)", "stname": "ImColor" @@ -738,7 +738,7 @@ "a": "255" }, "funcname": "ImColor", - "location": "imgui:3091", + "location": "imgui:3107", "ov_cimguiname": "ImColor_ImColor_Int", "signature": "(int,int,int,int)", "stname": "ImColor" @@ -758,7 +758,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:3092", + "location": "imgui:3108", "ov_cimguiname": "ImColor_ImColor_U32", "signature": "(ImU32)", "stname": "ImColor" @@ -797,7 +797,7 @@ "a": "1.0f" }, "funcname": "SetHSV", - "location": "imgui:3097", + "location": "imgui:3113", "ov_cimguiname": "ImColor_SetHSV", "ret": "void", "signature": "(float,float,float,float)", @@ -817,7 +817,7 @@ "cimguiname": "ImColor_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3088", + "location": "imgui:3104", "ov_cimguiname": "ImColor_destroy", "ret": "void", "signature": "(ImColor*)", @@ -839,7 +839,7 @@ "cimguiname": "ImDrawCmd_GetTexID", "defaults": {}, "funcname": "GetTexID", - "location": "imgui:3305", + "location": "imgui:3328", "ov_cimguiname": "ImDrawCmd_GetTexID", "ret": "ImTextureID", "signature": "()const", @@ -857,7 +857,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawCmd", - "location": "imgui:3301", + "location": "imgui:3324", "ov_cimguiname": "ImDrawCmd_ImDrawCmd", "signature": "()", "stname": "ImDrawCmd" @@ -876,7 +876,7 @@ "cimguiname": "ImDrawCmd_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3301", + "location": "imgui:3324", "ov_cimguiname": "ImDrawCmd_destroy", "ret": "void", "signature": "(ImDrawCmd*)", @@ -939,7 +939,7 @@ "cimguiname": "ImDrawData_AddDrawList", "defaults": {}, "funcname": "AddDrawList", - "location": "imgui:3570", + "location": "imgui:3593", "ov_cimguiname": "ImDrawData_AddDrawList", "ret": "void", "signature": "(ImDrawList*)", @@ -961,7 +961,7 @@ "cimguiname": "ImDrawData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:3569", + "location": "imgui:3592", "ov_cimguiname": "ImDrawData_Clear", "ret": "void", "signature": "()", @@ -983,7 +983,7 @@ "cimguiname": "ImDrawData_DeIndexAllBuffers", "defaults": {}, "funcname": "DeIndexAllBuffers", - "location": "imgui:3571", + "location": "imgui:3594", "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", "ret": "void", "signature": "()", @@ -1001,7 +1001,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawData", - "location": "imgui:3568", + "location": "imgui:3591", "ov_cimguiname": "ImDrawData_ImDrawData", "signature": "()", "stname": "ImDrawData" @@ -1026,7 +1026,7 @@ "cimguiname": "ImDrawData_ScaleClipRects", "defaults": {}, "funcname": "ScaleClipRects", - "location": "imgui:3572", + "location": "imgui:3595", "ov_cimguiname": "ImDrawData_ScaleClipRects", "ret": "void", "signature": "(const ImVec2)", @@ -1046,7 +1046,7 @@ "cimguiname": "ImDrawData_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3568", + "location": "imgui:3591", "ov_cimguiname": "ImDrawData_destroy", "ret": "void", "signature": "(ImDrawData*)", @@ -1132,7 +1132,7 @@ "cimguiname": "ImDrawListSplitter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:3349", + "location": "imgui:3372", "ov_cimguiname": "ImDrawListSplitter_Clear", "ret": "void", "signature": "()", @@ -1154,7 +1154,7 @@ "cimguiname": "ImDrawListSplitter_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui:3350", + "location": "imgui:3373", "ov_cimguiname": "ImDrawListSplitter_ClearFreeMemory", "ret": "void", "signature": "()", @@ -1172,7 +1172,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSplitter", - "location": "imgui:3347", + "location": "imgui:3370", "ov_cimguiname": "ImDrawListSplitter_ImDrawListSplitter", "signature": "()", "stname": "ImDrawListSplitter" @@ -1197,7 +1197,7 @@ "cimguiname": "ImDrawListSplitter_Merge", "defaults": {}, "funcname": "Merge", - "location": "imgui:3352", + "location": "imgui:3375", "ov_cimguiname": "ImDrawListSplitter_Merge", "ret": "void", "signature": "(ImDrawList*)", @@ -1227,7 +1227,7 @@ "cimguiname": "ImDrawListSplitter_SetCurrentChannel", "defaults": {}, "funcname": "SetCurrentChannel", - "location": "imgui:3353", + "location": "imgui:3376", "ov_cimguiname": "ImDrawListSplitter_SetCurrentChannel", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1257,7 +1257,7 @@ "cimguiname": "ImDrawListSplitter_Split", "defaults": {}, "funcname": "Split", - "location": "imgui:3351", + "location": "imgui:3374", "ov_cimguiname": "ImDrawListSplitter_Split", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1277,7 +1277,7 @@ "cimguiname": "ImDrawListSplitter_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3348", + "location": "imgui:3371", "ov_cimguiname": "ImDrawListSplitter_destroy", "realdestructor": true, "ret": "void", @@ -1330,7 +1330,7 @@ "num_segments": "0" }, "funcname": "AddBezierCubic", - "location": "imgui:3454", + "location": "imgui:3477", "ov_cimguiname": "ImDrawList_AddBezierCubic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1378,7 +1378,7 @@ "num_segments": "0" }, "funcname": "AddBezierQuadratic", - "location": "imgui:3455", + "location": "imgui:3478", "ov_cimguiname": "ImDrawList_AddBezierQuadratic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1414,7 +1414,7 @@ "userdata_size": "0" }, "funcname": "AddCallback", - "location": "imgui:3497", + "location": "imgui:3520", "ov_cimguiname": "ImDrawList_AddCallback", "ret": "void", "signature": "(ImDrawCallback,void*,size_t)", @@ -1459,7 +1459,7 @@ "thickness": "1.0f" }, "funcname": "AddCircle", - "location": "imgui:3446", + "location": "imgui:3469", "ov_cimguiname": "ImDrawList_AddCircle", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1499,7 +1499,7 @@ "num_segments": "0" }, "funcname": "AddCircleFilled", - "location": "imgui:3447", + "location": "imgui:3470", "ov_cimguiname": "ImDrawList_AddCircleFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1533,7 +1533,7 @@ "cimguiname": "ImDrawList_AddConcavePolyFilled", "defaults": {}, "funcname": "AddConcavePolyFilled", - "location": "imgui:3462", + "location": "imgui:3485", "ov_cimguiname": "ImDrawList_AddConcavePolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -1567,7 +1567,7 @@ "cimguiname": "ImDrawList_AddConvexPolyFilled", "defaults": {}, "funcname": "AddConvexPolyFilled", - "location": "imgui:3461", + "location": "imgui:3484", "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -1589,7 +1589,7 @@ "cimguiname": "ImDrawList_AddDrawCmd", "defaults": {}, "funcname": "AddDrawCmd", - "location": "imgui:3500", + "location": "imgui:3523", "ov_cimguiname": "ImDrawList_AddDrawCmd", "ret": "void", "signature": "()", @@ -1639,7 +1639,7 @@ "thickness": "1.0f" }, "funcname": "AddEllipse", - "location": "imgui:3450", + "location": "imgui:3473", "ov_cimguiname": "ImDrawList_AddEllipse", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,int,float)", @@ -1684,7 +1684,7 @@ "rot": "0.0f" }, "funcname": "AddEllipseFilled", - "location": "imgui:3451", + "location": "imgui:3474", "ov_cimguiname": "ImDrawList_AddEllipseFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,int)", @@ -1734,7 +1734,7 @@ "uv_min": "ImVec2(0,0)" }, "funcname": "AddImage", - "location": "imgui:3468", + "location": "imgui:3491", "ov_cimguiname": "ImDrawList_AddImage", "ret": "void", "signature": "(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1802,7 +1802,7 @@ "uv4": "ImVec2(0,1)" }, "funcname": "AddImageQuad", - "location": "imgui:3469", + "location": "imgui:3492", "ov_cimguiname": "ImDrawList_AddImageQuad", "ret": "void", "signature": "(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1858,7 +1858,7 @@ "flags": "0" }, "funcname": "AddImageRounded", - "location": "imgui:3470", + "location": "imgui:3493", "ov_cimguiname": "ImDrawList_AddImageRounded", "ret": "void", "signature": "(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1898,7 +1898,7 @@ "thickness": "1.0f" }, "funcname": "AddLine", - "location": "imgui:3438", + "location": "imgui:3461", "ov_cimguiname": "ImDrawList_AddLine", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float)", @@ -1942,7 +1942,7 @@ "thickness": "1.0f" }, "funcname": "AddNgon", - "location": "imgui:3448", + "location": "imgui:3471", "ov_cimguiname": "ImDrawList_AddNgon", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1980,7 +1980,7 @@ "cimguiname": "ImDrawList_AddNgonFilled", "defaults": {}, "funcname": "AddNgonFilled", - "location": "imgui:3449", + "location": "imgui:3472", "ov_cimguiname": "ImDrawList_AddNgonFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -2022,7 +2022,7 @@ "cimguiname": "ImDrawList_AddPolyline", "defaults": {}, "funcname": "AddPolyline", - "location": "imgui:3460", + "location": "imgui:3483", "ov_cimguiname": "ImDrawList_AddPolyline", "ret": "void", "signature": "(const ImVec2*,int,ImU32,ImDrawFlags,float)", @@ -2070,7 +2070,7 @@ "thickness": "1.0f" }, "funcname": "AddQuad", - "location": "imgui:3442", + "location": "imgui:3465", "ov_cimguiname": "ImDrawList_AddQuad", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2112,7 +2112,7 @@ "cimguiname": "ImDrawList_AddQuadFilled", "defaults": {}, "funcname": "AddQuadFilled", - "location": "imgui:3443", + "location": "imgui:3466", "ov_cimguiname": "ImDrawList_AddQuadFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2162,7 +2162,7 @@ "thickness": "1.0f" }, "funcname": "AddRect", - "location": "imgui:3439", + "location": "imgui:3462", "ov_cimguiname": "ImDrawList_AddRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)", @@ -2207,7 +2207,7 @@ "rounding": "0.0f" }, "funcname": "AddRectFilled", - "location": "imgui:3440", + "location": "imgui:3463", "ov_cimguiname": "ImDrawList_AddRectFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -2253,7 +2253,7 @@ "cimguiname": "ImDrawList_AddRectFilledMultiColor", "defaults": {}, "funcname": "AddRectFilledMultiColor", - "location": "imgui:3441", + "location": "imgui:3464", "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", @@ -2293,7 +2293,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:3452", + "location": "imgui:3475", "ov_cimguiname": "ImDrawList_AddText_Vec2", "ret": "void", "signature": "(const ImVec2,ImU32,const char*,const char*)", @@ -2349,7 +2349,7 @@ "wrap_width": "0.0f" }, "funcname": "AddText", - "location": "imgui:3453", + "location": "imgui:3476", "ov_cimguiname": "ImDrawList_AddText_FontPtr", "ret": "void", "signature": "(ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)", @@ -2393,7 +2393,7 @@ "thickness": "1.0f" }, "funcname": "AddTriangle", - "location": "imgui:3444", + "location": "imgui:3467", "ov_cimguiname": "ImDrawList_AddTriangle", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2431,7 +2431,7 @@ "cimguiname": "ImDrawList_AddTriangleFilled", "defaults": {}, "funcname": "AddTriangleFilled", - "location": "imgui:3445", + "location": "imgui:3468", "ov_cimguiname": "ImDrawList_AddTriangleFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2453,7 +2453,7 @@ "cimguiname": "ImDrawList_ChannelsMerge", "defaults": {}, "funcname": "ChannelsMerge", - "location": "imgui:3510", + "location": "imgui:3533", "ov_cimguiname": "ImDrawList_ChannelsMerge", "ret": "void", "signature": "()", @@ -2479,7 +2479,7 @@ "cimguiname": "ImDrawList_ChannelsSetCurrent", "defaults": {}, "funcname": "ChannelsSetCurrent", - "location": "imgui:3511", + "location": "imgui:3534", "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", "ret": "void", "signature": "(int)", @@ -2505,7 +2505,7 @@ "cimguiname": "ImDrawList_ChannelsSplit", "defaults": {}, "funcname": "ChannelsSplit", - "location": "imgui:3509", + "location": "imgui:3532", "ov_cimguiname": "ImDrawList_ChannelsSplit", "ret": "void", "signature": "(int)", @@ -2527,7 +2527,7 @@ "cimguiname": "ImDrawList_CloneOutput", "defaults": {}, "funcname": "CloneOutput", - "location": "imgui:3501", + "location": "imgui:3524", "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", "signature": "()const", @@ -2550,7 +2550,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetClipRectMax", - "location": "imgui:3429", + "location": "imgui:3452", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "ImVec2_c", @@ -2574,7 +2574,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetClipRectMin", - "location": "imgui:3428", + "location": "imgui:3451", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "ImVec2_c", @@ -2598,7 +2598,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawList", - "location": "imgui:3420", + "location": "imgui:3443", "ov_cimguiname": "ImDrawList_ImDrawList", "signature": "(ImDrawListSharedData*)", "stname": "ImDrawList" @@ -2641,7 +2641,7 @@ "num_segments": "0" }, "funcname": "PathArcTo", - "location": "imgui:3481", + "location": "imgui:3504", "ov_cimguiname": "ImDrawList_PathArcTo", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -2679,7 +2679,7 @@ "cimguiname": "ImDrawList_PathArcToFast", "defaults": {}, "funcname": "PathArcToFast", - "location": "imgui:3482", + "location": "imgui:3505", "ov_cimguiname": "ImDrawList_PathArcToFast", "ret": "void", "signature": "(const ImVec2,float,int,int)", @@ -2719,7 +2719,7 @@ "num_segments": "0" }, "funcname": "PathBezierCubicCurveTo", - "location": "imgui:3484", + "location": "imgui:3507", "ov_cimguiname": "ImDrawList_PathBezierCubicCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,int)", @@ -2755,7 +2755,7 @@ "num_segments": "0" }, "funcname": "PathBezierQuadraticCurveTo", - "location": "imgui:3485", + "location": "imgui:3508", "ov_cimguiname": "ImDrawList_PathBezierQuadraticCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,int)", @@ -2777,7 +2777,7 @@ "cimguiname": "ImDrawList_PathClear", "defaults": {}, "funcname": "PathClear", - "location": "imgui:3475", + "location": "imgui:3498", "ov_cimguiname": "ImDrawList_PathClear", "ret": "void", "signature": "()", @@ -2825,7 +2825,7 @@ "num_segments": "0" }, "funcname": "PathEllipticalArcTo", - "location": "imgui:3483", + "location": "imgui:3506", "ov_cimguiname": "ImDrawList_PathEllipticalArcTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,float,float,int)", @@ -2851,7 +2851,7 @@ "cimguiname": "ImDrawList_PathFillConcave", "defaults": {}, "funcname": "PathFillConcave", - "location": "imgui:3479", + "location": "imgui:3502", "ov_cimguiname": "ImDrawList_PathFillConcave", "ret": "void", "signature": "(ImU32)", @@ -2877,7 +2877,7 @@ "cimguiname": "ImDrawList_PathFillConvex", "defaults": {}, "funcname": "PathFillConvex", - "location": "imgui:3478", + "location": "imgui:3501", "ov_cimguiname": "ImDrawList_PathFillConvex", "ret": "void", "signature": "(ImU32)", @@ -2903,7 +2903,7 @@ "cimguiname": "ImDrawList_PathLineTo", "defaults": {}, "funcname": "PathLineTo", - "location": "imgui:3476", + "location": "imgui:3499", "ov_cimguiname": "ImDrawList_PathLineTo", "ret": "void", "signature": "(const ImVec2)", @@ -2929,7 +2929,7 @@ "cimguiname": "ImDrawList_PathLineToMergeDuplicate", "defaults": {}, "funcname": "PathLineToMergeDuplicate", - "location": "imgui:3477", + "location": "imgui:3500", "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", "ret": "void", "signature": "(const ImVec2)", @@ -2970,7 +2970,7 @@ "rounding": "0.0f" }, "funcname": "PathRect", - "location": "imgui:3486", + "location": "imgui:3509", "ov_cimguiname": "ImDrawList_PathRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,ImDrawFlags)", @@ -3007,7 +3007,7 @@ "thickness": "1.0f" }, "funcname": "PathStroke", - "location": "imgui:3480", + "location": "imgui:3503", "ov_cimguiname": "ImDrawList_PathStroke", "ret": "void", "signature": "(ImU32,ImDrawFlags,float)", @@ -3029,7 +3029,7 @@ "cimguiname": "ImDrawList_PopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:3425", + "location": "imgui:3448", "ov_cimguiname": "ImDrawList_PopClipRect", "ret": "void", "signature": "()", @@ -3051,7 +3051,7 @@ "cimguiname": "ImDrawList_PopTexture", "defaults": {}, "funcname": "PopTexture", - "location": "imgui:3427", + "location": "imgui:3450", "ov_cimguiname": "ImDrawList_PopTexture", "ret": "void", "signature": "()", @@ -3109,7 +3109,7 @@ "cimguiname": "ImDrawList_PrimQuadUV", "defaults": {}, "funcname": "PrimQuadUV", - "location": "imgui:3520", + "location": "imgui:3543", "ov_cimguiname": "ImDrawList_PrimQuadUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -3143,7 +3143,7 @@ "cimguiname": "ImDrawList_PrimRect", "defaults": {}, "funcname": "PrimRect", - "location": "imgui:3518", + "location": "imgui:3541", "ov_cimguiname": "ImDrawList_PrimRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3185,7 +3185,7 @@ "cimguiname": "ImDrawList_PrimRectUV", "defaults": {}, "funcname": "PrimRectUV", - "location": "imgui:3519", + "location": "imgui:3542", "ov_cimguiname": "ImDrawList_PrimRectUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -3215,7 +3215,7 @@ "cimguiname": "ImDrawList_PrimReserve", "defaults": {}, "funcname": "PrimReserve", - "location": "imgui:3516", + "location": "imgui:3539", "ov_cimguiname": "ImDrawList_PrimReserve", "ret": "void", "signature": "(int,int)", @@ -3245,7 +3245,7 @@ "cimguiname": "ImDrawList_PrimUnreserve", "defaults": {}, "funcname": "PrimUnreserve", - "location": "imgui:3517", + "location": "imgui:3540", "ov_cimguiname": "ImDrawList_PrimUnreserve", "ret": "void", "signature": "(int,int)", @@ -3279,7 +3279,7 @@ "cimguiname": "ImDrawList_PrimVtx", "defaults": {}, "funcname": "PrimVtx", - "location": "imgui:3523", + "location": "imgui:3546", "ov_cimguiname": "ImDrawList_PrimVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3305,7 +3305,7 @@ "cimguiname": "ImDrawList_PrimWriteIdx", "defaults": {}, "funcname": "PrimWriteIdx", - "location": "imgui:3522", + "location": "imgui:3545", "ov_cimguiname": "ImDrawList_PrimWriteIdx", "ret": "void", "signature": "(ImDrawIdx)", @@ -3339,7 +3339,7 @@ "cimguiname": "ImDrawList_PrimWriteVtx", "defaults": {}, "funcname": "PrimWriteVtx", - "location": "imgui:3521", + "location": "imgui:3544", "ov_cimguiname": "ImDrawList_PrimWriteVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3375,7 +3375,7 @@ "intersect_with_current_clip_rect": "false" }, "funcname": "PushClipRect", - "location": "imgui:3423", + "location": "imgui:3446", "ov_cimguiname": "ImDrawList_PushClipRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,bool)", @@ -3397,7 +3397,7 @@ "cimguiname": "ImDrawList_PushClipRectFullScreen", "defaults": {}, "funcname": "PushClipRectFullScreen", - "location": "imgui:3424", + "location": "imgui:3447", "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", "ret": "void", "signature": "()", @@ -3423,7 +3423,7 @@ "cimguiname": "ImDrawList_PushTexture", "defaults": {}, "funcname": "PushTexture", - "location": "imgui:3426", + "location": "imgui:3449", "ov_cimguiname": "ImDrawList_PushTexture", "ret": "void", "signature": "(ImTextureRef)", @@ -3449,7 +3449,7 @@ "cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "defaults": {}, "funcname": "_CalcCircleAutoSegmentCount", - "location": "imgui:3546", + "location": "imgui:3569", "ov_cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "ret": "int", "signature": "(float)const", @@ -3471,7 +3471,7 @@ "cimguiname": "ImDrawList__ClearFreeMemory", "defaults": {}, "funcname": "_ClearFreeMemory", - "location": "imgui:3539", + "location": "imgui:3562", "ov_cimguiname": "ImDrawList__ClearFreeMemory", "ret": "void", "signature": "()", @@ -3493,7 +3493,7 @@ "cimguiname": "ImDrawList__OnChangedClipRect", "defaults": {}, "funcname": "_OnChangedClipRect", - "location": "imgui:3542", + "location": "imgui:3565", "ov_cimguiname": "ImDrawList__OnChangedClipRect", "ret": "void", "signature": "()", @@ -3515,7 +3515,7 @@ "cimguiname": "ImDrawList__OnChangedTexture", "defaults": {}, "funcname": "_OnChangedTexture", - "location": "imgui:3543", + "location": "imgui:3566", "ov_cimguiname": "ImDrawList__OnChangedTexture", "ret": "void", "signature": "()", @@ -3537,7 +3537,7 @@ "cimguiname": "ImDrawList__OnChangedVtxOffset", "defaults": {}, "funcname": "_OnChangedVtxOffset", - "location": "imgui:3544", + "location": "imgui:3567", "ov_cimguiname": "ImDrawList__OnChangedVtxOffset", "ret": "void", "signature": "()", @@ -3579,7 +3579,7 @@ "cimguiname": "ImDrawList__PathArcToFastEx", "defaults": {}, "funcname": "_PathArcToFastEx", - "location": "imgui:3547", + "location": "imgui:3570", "ov_cimguiname": "ImDrawList__PathArcToFastEx", "ret": "void", "signature": "(const ImVec2,float,int,int,int)", @@ -3621,7 +3621,7 @@ "cimguiname": "ImDrawList__PathArcToN", "defaults": {}, "funcname": "_PathArcToN", - "location": "imgui:3548", + "location": "imgui:3571", "ov_cimguiname": "ImDrawList__PathArcToN", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -3643,7 +3643,7 @@ "cimguiname": "ImDrawList__PopUnusedDrawCmd", "defaults": {}, "funcname": "_PopUnusedDrawCmd", - "location": "imgui:3540", + "location": "imgui:3563", "ov_cimguiname": "ImDrawList__PopUnusedDrawCmd", "ret": "void", "signature": "()", @@ -3665,7 +3665,7 @@ "cimguiname": "ImDrawList__ResetForNewFrame", "defaults": {}, "funcname": "_ResetForNewFrame", - "location": "imgui:3538", + "location": "imgui:3561", "ov_cimguiname": "ImDrawList__ResetForNewFrame", "ret": "void", "signature": "()", @@ -3691,7 +3691,7 @@ "cimguiname": "ImDrawList__SetDrawListSharedData", "defaults": {}, "funcname": "_SetDrawListSharedData", - "location": "imgui:3537", + "location": "imgui:3560", "ov_cimguiname": "ImDrawList__SetDrawListSharedData", "ret": "void", "signature": "(ImDrawListSharedData*)", @@ -3717,7 +3717,7 @@ "cimguiname": "ImDrawList__SetTexture", "defaults": {}, "funcname": "_SetTexture", - "location": "imgui:3545", + "location": "imgui:3568", "ov_cimguiname": "ImDrawList__SetTexture", "ret": "void", "signature": "(ImTextureRef)", @@ -3739,7 +3739,7 @@ "cimguiname": "ImDrawList__TryMergeDrawCmds", "defaults": {}, "funcname": "_TryMergeDrawCmds", - "location": "imgui:3541", + "location": "imgui:3564", "ov_cimguiname": "ImDrawList__TryMergeDrawCmds", "ret": "void", "signature": "()", @@ -3759,7 +3759,7 @@ "cimguiname": "ImDrawList_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3421", + "location": "imgui:3444", "ov_cimguiname": "ImDrawList_destroy", "realdestructor": true, "ret": "void", @@ -3778,7 +3778,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlasBuilder", - "location": "imgui_internal:4186", + "location": "imgui_internal:4203", "ov_cimguiname": "ImFontAtlasBuilder_ImFontAtlasBuilder", "signature": "()", "stname": "ImFontAtlasBuilder" @@ -3797,7 +3797,7 @@ "cimguiname": "ImFontAtlasBuilder_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:4186", + "location": "imgui_internal:4203", "ov_cimguiname": "ImFontAtlasBuilder_destroy", "ret": "void", "signature": "(ImFontAtlasBuilder*)", @@ -3815,7 +3815,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlasRect", - "location": "imgui:3750", + "location": "imgui:3773", "ov_cimguiname": "ImFontAtlasRect_ImFontAtlasRect", "signature": "()", "stname": "ImFontAtlasRect" @@ -3834,7 +3834,7 @@ "cimguiname": "ImFontAtlasRect_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3750", + "location": "imgui:3773", "ov_cimguiname": "ImFontAtlasRect_destroy", "ret": "void", "signature": "(ImFontAtlasRect*)", @@ -3870,7 +3870,7 @@ "out_r": "NULL" }, "funcname": "AddCustomRect", - "location": "imgui:3863", + "location": "imgui:3886", "ov_cimguiname": "ImFontAtlas_AddCustomRect", "ret": "ImFontAtlasRectId", "signature": "(int,int,ImFontAtlasRect*)", @@ -3896,7 +3896,7 @@ "cimguiname": "ImFontAtlas_AddFont", "defaults": {}, "funcname": "AddFont", - "location": "imgui:3785", + "location": "imgui:3808", "ov_cimguiname": "ImFontAtlas_AddFont", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3924,7 +3924,7 @@ "font_cfg": "NULL" }, "funcname": "AddFontDefault", - "location": "imgui:3786", + "location": "imgui:3809", "ov_cimguiname": "ImFontAtlas_AddFontDefault", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3952,7 +3952,7 @@ "font_cfg": "NULL" }, "funcname": "AddFontDefaultBitmap", - "location": "imgui:3788", + "location": "imgui:3811", "ov_cimguiname": "ImFontAtlas_AddFontDefaultBitmap", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3980,7 +3980,7 @@ "font_cfg": "NULL" }, "funcname": "AddFontDefaultVector", - "location": "imgui:3787", + "location": "imgui:3810", "ov_cimguiname": "ImFontAtlas_AddFontDefaultVector", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -4022,7 +4022,7 @@ "size_pixels": "0.0f" }, "funcname": "AddFontFromFileTTF", - "location": "imgui:3789", + "location": "imgui:3812", "ov_cimguiname": "ImFontAtlas_AddFontFromFileTTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -4064,7 +4064,7 @@ "size_pixels": "0.0f" }, "funcname": "AddFontFromMemoryCompressedBase85TTF", - "location": "imgui:3792", + "location": "imgui:3815", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -4110,7 +4110,7 @@ "size_pixels": "0.0f" }, "funcname": "AddFontFromMemoryCompressedTTF", - "location": "imgui:3791", + "location": "imgui:3814", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "ret": "ImFont*", "signature": "(const void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -4156,7 +4156,7 @@ "size_pixels": "0.0f" }, "funcname": "AddFontFromMemoryTTF", - "location": "imgui:3790", + "location": "imgui:3813", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "ret": "ImFont*", "signature": "(void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -4178,7 +4178,7 @@ "cimguiname": "ImFontAtlas_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:3795", + "location": "imgui:3818", "ov_cimguiname": "ImFontAtlas_Clear", "ret": "void", "signature": "()", @@ -4200,7 +4200,7 @@ "cimguiname": "ImFontAtlas_ClearFonts", "defaults": {}, "funcname": "ClearFonts", - "location": "imgui:3801", + "location": "imgui:3824", "ov_cimguiname": "ImFontAtlas_ClearFonts", "ret": "void", "signature": "()", @@ -4222,7 +4222,7 @@ "cimguiname": "ImFontAtlas_ClearInputData", "defaults": {}, "funcname": "ClearInputData", - "location": "imgui:3800", + "location": "imgui:3823", "ov_cimguiname": "ImFontAtlas_ClearInputData", "ret": "void", "signature": "()", @@ -4244,7 +4244,7 @@ "cimguiname": "ImFontAtlas_ClearTexData", "defaults": {}, "funcname": "ClearTexData", - "location": "imgui:3802", + "location": "imgui:3825", "ov_cimguiname": "ImFontAtlas_ClearTexData", "ret": "void", "signature": "()", @@ -4266,7 +4266,7 @@ "cimguiname": "ImFontAtlas_CompactCache", "defaults": {}, "funcname": "CompactCache", - "location": "imgui:3796", + "location": "imgui:3819", "ov_cimguiname": "ImFontAtlas_CompactCache", "ret": "void", "signature": "()", @@ -4296,7 +4296,7 @@ "cimguiname": "ImFontAtlas_GetCustomRect", "defaults": {}, "funcname": "GetCustomRect", - "location": "imgui:3865", + "location": "imgui:3888", "ov_cimguiname": "ImFontAtlas_GetCustomRect", "ret": "bool", "signature": "(ImFontAtlasRectId,ImFontAtlasRect*)const", @@ -4318,7 +4318,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "defaults": {}, "funcname": "GetGlyphRangesDefault", - "location": "imgui:3826", + "location": "imgui:3849", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "ret": "const ImWchar*", "signature": "()", @@ -4336,7 +4336,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlas", - "location": "imgui:3783", + "location": "imgui:3806", "ov_cimguiname": "ImFontAtlas_ImFontAtlas", "signature": "()", "stname": "ImFontAtlas" @@ -4361,7 +4361,7 @@ "cimguiname": "ImFontAtlas_RemoveCustomRect", "defaults": {}, "funcname": "RemoveCustomRect", - "location": "imgui:3864", + "location": "imgui:3887", "ov_cimguiname": "ImFontAtlas_RemoveCustomRect", "ret": "void", "signature": "(ImFontAtlasRectId)", @@ -4387,7 +4387,7 @@ "cimguiname": "ImFontAtlas_RemoveFont", "defaults": {}, "funcname": "RemoveFont", - "location": "imgui:3793", + "location": "imgui:3816", "ov_cimguiname": "ImFontAtlas_RemoveFont", "ret": "void", "signature": "(ImFont*)", @@ -4413,7 +4413,7 @@ "cimguiname": "ImFontAtlas_SetFontLoader", "defaults": {}, "funcname": "SetFontLoader", - "location": "imgui:3797", + "location": "imgui:3820", "ov_cimguiname": "ImFontAtlas_SetFontLoader", "ret": "void", "signature": "(const ImFontLoader*)", @@ -4433,7 +4433,7 @@ "cimguiname": "ImFontAtlas_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3784", + "location": "imgui:3807", "ov_cimguiname": "ImFontAtlas_destroy", "realdestructor": true, "ret": "void", @@ -4456,7 +4456,7 @@ "cimguiname": "ImFontBaked_ClearOutputData", "defaults": {}, "funcname": "ClearOutputData", - "location": "imgui:3958", + "location": "imgui:3981", "ov_cimguiname": "ImFontBaked_ClearOutputData", "ret": "void", "signature": "()", @@ -4482,7 +4482,7 @@ "cimguiname": "ImFontBaked_FindGlyph", "defaults": {}, "funcname": "FindGlyph", - "location": "imgui:3959", + "location": "imgui:3982", "ov_cimguiname": "ImFontBaked_FindGlyph", "ret": "ImFontGlyph*", "signature": "(ImWchar)", @@ -4508,7 +4508,7 @@ "cimguiname": "ImFontBaked_FindGlyphNoFallback", "defaults": {}, "funcname": "FindGlyphNoFallback", - "location": "imgui:3960", + "location": "imgui:3983", "ov_cimguiname": "ImFontBaked_FindGlyphNoFallback", "ret": "ImFontGlyph*", "signature": "(ImWchar)", @@ -4534,7 +4534,7 @@ "cimguiname": "ImFontBaked_GetCharAdvance", "defaults": {}, "funcname": "GetCharAdvance", - "location": "imgui:3961", + "location": "imgui:3984", "ov_cimguiname": "ImFontBaked_GetCharAdvance", "ret": "float", "signature": "(ImWchar)", @@ -4552,7 +4552,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontBaked", - "location": "imgui:3957", + "location": "imgui:3980", "ov_cimguiname": "ImFontBaked_ImFontBaked", "signature": "()", "stname": "ImFontBaked" @@ -4577,7 +4577,7 @@ "cimguiname": "ImFontBaked_IsGlyphLoaded", "defaults": {}, "funcname": "IsGlyphLoaded", - "location": "imgui:3962", + "location": "imgui:3985", "ov_cimguiname": "ImFontBaked_IsGlyphLoaded", "ret": "bool", "signature": "(ImWchar)", @@ -4597,7 +4597,7 @@ "cimguiname": "ImFontBaked_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3957", + "location": "imgui:3980", "ov_cimguiname": "ImFontBaked_destroy", "ret": "void", "signature": "(ImFontBaked*)", @@ -4615,7 +4615,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontConfig", - "location": "imgui:3701", + "location": "imgui:3724", "ov_cimguiname": "ImFontConfig_ImFontConfig", "signature": "()", "stname": "ImFontConfig" @@ -4634,7 +4634,7 @@ "cimguiname": "ImFontConfig_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3701", + "location": "imgui:3724", "ov_cimguiname": "ImFontConfig_destroy", "ret": "void", "signature": "(ImFontConfig*)", @@ -4660,7 +4660,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddChar", "defaults": {}, "funcname": "AddChar", - "location": "imgui:3730", + "location": "imgui:3753", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", "ret": "void", "signature": "(ImWchar)", @@ -4686,7 +4686,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "defaults": {}, "funcname": "AddRanges", - "location": "imgui:3732", + "location": "imgui:3755", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "ret": "void", "signature": "(const ImWchar*)", @@ -4718,7 +4718,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:3731", + "location": "imgui:3754", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddText", "ret": "void", "signature": "(const char*,const char*)", @@ -4744,7 +4744,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "defaults": {}, "funcname": "BuildRanges", - "location": "imgui:3733", + "location": "imgui:3756", "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "ret": "void", "signature": "(ImVector_ImWchar*)", @@ -4766,7 +4766,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:3727", + "location": "imgui:3750", "ov_cimguiname": "ImFontGlyphRangesBuilder_Clear", "ret": "void", "signature": "()", @@ -4792,7 +4792,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_GetBit", "defaults": {}, "funcname": "GetBit", - "location": "imgui:3728", + "location": "imgui:3751", "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", "ret": "bool", "signature": "(size_t)const", @@ -4810,7 +4810,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontGlyphRangesBuilder", - "location": "imgui:3726", + "location": "imgui:3749", "ov_cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "signature": "()", "stname": "ImFontGlyphRangesBuilder" @@ -4835,7 +4835,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui:3729", + "location": "imgui:3752", "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", "ret": "void", "signature": "(size_t)", @@ -4855,7 +4855,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3726", + "location": "imgui:3749", "ov_cimguiname": "ImFontGlyphRangesBuilder_destroy", "ret": "void", "signature": "(ImFontGlyphRangesBuilder*)", @@ -4873,7 +4873,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontGlyph", - "location": "imgui:3717", + "location": "imgui:3740", "ov_cimguiname": "ImFontGlyph_ImFontGlyph", "signature": "()", "stname": "ImFontGlyph" @@ -4892,7 +4892,7 @@ "cimguiname": "ImFontGlyph_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3717", + "location": "imgui:3740", "ov_cimguiname": "ImFontGlyph_destroy", "ret": "void", "signature": "(ImFontGlyph*)", @@ -4910,7 +4910,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontLoader", - "location": "imgui_internal:4089", + "location": "imgui_internal:4106", "ov_cimguiname": "ImFontLoader_ImFontLoader", "signature": "()", "stname": "ImFontLoader" @@ -4929,7 +4929,7 @@ "cimguiname": "ImFontLoader_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:4089", + "location": "imgui_internal:4106", "ov_cimguiname": "ImFontLoader_destroy", "ret": "void", "signature": "(ImFontLoader*)", @@ -4959,7 +4959,7 @@ "cimguiname": "ImFont_AddRemapChar", "defaults": {}, "funcname": "AddRemapChar", - "location": "imgui:4023", + "location": "imgui:4046", "ov_cimguiname": "ImFont_AddRemapChar", "ret": "void", "signature": "(ImWchar,ImWchar)", @@ -5009,7 +5009,7 @@ "text_end": "NULL" }, "funcname": "CalcTextSizeA", - "location": "imgui:4013", + "location": "imgui:4036", "nonUDT": 1, "ov_cimguiname": "ImFont_CalcTextSizeA", "ret": "ImVec2_c", @@ -5048,7 +5048,7 @@ "cimguiname": "ImFont_CalcWordWrapPosition", "defaults": {}, "funcname": "CalcWordWrapPosition", - "location": "imgui:4014", + "location": "imgui:4037", "ov_cimguiname": "ImFont_CalcWordWrapPosition", "ret": "const char*", "signature": "(float,const char*,const char*,float)", @@ -5070,7 +5070,7 @@ "cimguiname": "ImFont_ClearOutputData", "defaults": {}, "funcname": "ClearOutputData", - "location": "imgui:4022", + "location": "imgui:4045", "ov_cimguiname": "ImFont_ClearOutputData", "ret": "void", "signature": "()", @@ -5092,7 +5092,7 @@ "cimguiname": "ImFont_GetDebugName", "defaults": {}, "funcname": "GetDebugName", - "location": "imgui:4007", + "location": "imgui:4030", "ov_cimguiname": "ImFont_GetDebugName", "ret": "const char*", "signature": "()const", @@ -5124,7 +5124,7 @@ "density": "-1.0f" }, "funcname": "GetFontBaked", - "location": "imgui:4012", + "location": "imgui:4035", "ov_cimguiname": "ImFont_GetFontBaked", "ret": "ImFontBaked*", "signature": "(float,float)", @@ -5142,7 +5142,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFont", - "location": "imgui:4003", + "location": "imgui:4026", "ov_cimguiname": "ImFont_ImFont", "signature": "()", "stname": "ImFont" @@ -5167,7 +5167,7 @@ "cimguiname": "ImFont_IsGlyphInFont", "defaults": {}, "funcname": "IsGlyphInFont", - "location": "imgui:4005", + "location": "imgui:4028", "ov_cimguiname": "ImFont_IsGlyphInFont", "ret": "bool", "signature": "(ImWchar)", @@ -5197,7 +5197,7 @@ "cimguiname": "ImFont_IsGlyphRangeUnused", "defaults": {}, "funcname": "IsGlyphRangeUnused", - "location": "imgui:4024", + "location": "imgui:4047", "ov_cimguiname": "ImFont_IsGlyphRangeUnused", "ret": "bool", "signature": "(unsigned int,unsigned int)", @@ -5219,7 +5219,7 @@ "cimguiname": "ImFont_IsLoaded", "defaults": {}, "funcname": "IsLoaded", - "location": "imgui:4006", + "location": "imgui:4029", "ov_cimguiname": "ImFont_IsLoaded", "ret": "bool", "signature": "()const", @@ -5267,7 +5267,7 @@ "cpu_fine_clip": "NULL" }, "funcname": "RenderChar", - "location": "imgui:4015", + "location": "imgui:4038", "ov_cimguiname": "ImFont_RenderChar", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,ImWchar,const ImVec4*)", @@ -5328,7 +5328,7 @@ "wrap_width": "0.0f" }, "funcname": "RenderText", - "location": "imgui:4016", + "location": "imgui:4039", "ov_cimguiname": "ImFont_RenderText", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,const ImVec4,const char*,const char*,float,ImDrawTextFlags)", @@ -5348,7 +5348,7 @@ "cimguiname": "ImFont_destroy", "defaults": {}, "destructor": true, - "location": "imgui:4004", + "location": "imgui:4027", "ov_cimguiname": "ImFont_destroy", "realdestructor": true, "ret": "void", @@ -5367,7 +5367,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiBoxSelectState", - "location": "imgui_internal:1917", + "location": "imgui_internal:1918", "ov_cimguiname": "ImGuiBoxSelectState_ImGuiBoxSelectState", "signature": "()", "stname": "ImGuiBoxSelectState" @@ -5386,7 +5386,7 @@ "cimguiname": "ImGuiBoxSelectState_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1917", + "location": "imgui_internal:1918", "ov_cimguiname": "ImGuiBoxSelectState_destroy", "ret": "void", "signature": "(ImGuiBoxSelectState*)", @@ -5404,7 +5404,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiComboPreviewData", - "location": "imgui_internal:1178", + "location": "imgui_internal:1177", "ov_cimguiname": "ImGuiComboPreviewData_ImGuiComboPreviewData", "signature": "()", "stname": "ImGuiComboPreviewData" @@ -5423,7 +5423,7 @@ "cimguiname": "ImGuiComboPreviewData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1178", + "location": "imgui_internal:1177", "ov_cimguiname": "ImGuiComboPreviewData_destroy", "ret": "void", "signature": "(ImGuiComboPreviewData*)", @@ -5441,7 +5441,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContextHook", - "location": "imgui_internal:2376", + "location": "imgui_internal:2377", "ov_cimguiname": "ImGuiContextHook_ImGuiContextHook", "signature": "()", "stname": "ImGuiContextHook" @@ -5460,7 +5460,7 @@ "cimguiname": "ImGuiContextHook_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2376", + "location": "imgui_internal:2377", "ov_cimguiname": "ImGuiContextHook_destroy", "ret": "void", "signature": "(ImGuiContextHook*)", @@ -5483,7 +5483,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContext", - "location": "imgui_internal:2783", + "location": "imgui_internal:2793", "ov_cimguiname": "ImGuiContext_ImGuiContext", "signature": "(ImFontAtlas*)", "stname": "ImGuiContext" @@ -5502,7 +5502,7 @@ "cimguiname": "ImGuiContext_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2784", + "location": "imgui_internal:2794", "ov_cimguiname": "ImGuiContext_destroy", "realdestructor": true, "ret": "void", @@ -5521,7 +5521,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDebugAllocInfo", - "location": "imgui_internal:2304", + "location": "imgui_internal:2305", "ov_cimguiname": "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo", "signature": "()", "stname": "ImGuiDebugAllocInfo" @@ -5540,7 +5540,7 @@ "cimguiname": "ImGuiDebugAllocInfo_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2304", + "location": "imgui_internal:2305", "ov_cimguiname": "ImGuiDebugAllocInfo_destroy", "ret": "void", "signature": "(ImGuiDebugAllocInfo*)", @@ -5558,7 +5558,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDebugItemPathQuery", - "location": "imgui_internal:2347", + "location": "imgui_internal:2348", "ov_cimguiname": "ImGuiDebugItemPathQuery_ImGuiDebugItemPathQuery", "signature": "()", "stname": "ImGuiDebugItemPathQuery" @@ -5577,7 +5577,7 @@ "cimguiname": "ImGuiDebugItemPathQuery_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2347", + "location": "imgui_internal:2348", "ov_cimguiname": "ImGuiDebugItemPathQuery_destroy", "ret": "void", "signature": "(ImGuiDebugItemPathQuery*)", @@ -5595,7 +5595,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDockContext", - "location": "imgui_internal:2118", + "location": "imgui_internal:2119", "ov_cimguiname": "ImGuiDockContext_ImGuiDockContext", "signature": "()", "stname": "ImGuiDockContext" @@ -5614,7 +5614,7 @@ "cimguiname": "ImGuiDockContext_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2118", + "location": "imgui_internal:2119", "ov_cimguiname": "ImGuiDockContext_destroy", "ret": "void", "signature": "(ImGuiDockContext*)", @@ -5637,7 +5637,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDockNode", - "location": "imgui_internal:2071", + "location": "imgui_internal:2072", "ov_cimguiname": "ImGuiDockNode_ImGuiDockNode", "signature": "(ImGuiID)", "stname": "ImGuiDockNode" @@ -5658,7 +5658,7 @@ "cimguiname": "ImGuiDockNode_IsCentralNode", "defaults": {}, "funcname": "IsCentralNode", - "location": "imgui_internal:2076", + "location": "imgui_internal:2077", "ov_cimguiname": "ImGuiDockNode_IsCentralNode", "ret": "bool", "signature": "()const", @@ -5680,7 +5680,7 @@ "cimguiname": "ImGuiDockNode_IsDockSpace", "defaults": {}, "funcname": "IsDockSpace", - "location": "imgui_internal:2074", + "location": "imgui_internal:2075", "ov_cimguiname": "ImGuiDockNode_IsDockSpace", "ret": "bool", "signature": "()const", @@ -5702,7 +5702,7 @@ "cimguiname": "ImGuiDockNode_IsEmpty", "defaults": {}, "funcname": "IsEmpty", - "location": "imgui_internal:2081", + "location": "imgui_internal:2082", "ov_cimguiname": "ImGuiDockNode_IsEmpty", "ret": "bool", "signature": "()const", @@ -5724,7 +5724,7 @@ "cimguiname": "ImGuiDockNode_IsFloatingNode", "defaults": {}, "funcname": "IsFloatingNode", - "location": "imgui_internal:2075", + "location": "imgui_internal:2076", "ov_cimguiname": "ImGuiDockNode_IsFloatingNode", "ret": "bool", "signature": "()const", @@ -5746,7 +5746,7 @@ "cimguiname": "ImGuiDockNode_IsHiddenTabBar", "defaults": {}, "funcname": "IsHiddenTabBar", - "location": "imgui_internal:2077", + "location": "imgui_internal:2078", "ov_cimguiname": "ImGuiDockNode_IsHiddenTabBar", "ret": "bool", "signature": "()const", @@ -5768,7 +5768,7 @@ "cimguiname": "ImGuiDockNode_IsLeafNode", "defaults": {}, "funcname": "IsLeafNode", - "location": "imgui_internal:2080", + "location": "imgui_internal:2081", "ov_cimguiname": "ImGuiDockNode_IsLeafNode", "ret": "bool", "signature": "()const", @@ -5790,7 +5790,7 @@ "cimguiname": "ImGuiDockNode_IsNoTabBar", "defaults": {}, "funcname": "IsNoTabBar", - "location": "imgui_internal:2078", + "location": "imgui_internal:2079", "ov_cimguiname": "ImGuiDockNode_IsNoTabBar", "ret": "bool", "signature": "()const", @@ -5812,7 +5812,7 @@ "cimguiname": "ImGuiDockNode_IsRootNode", "defaults": {}, "funcname": "IsRootNode", - "location": "imgui_internal:2073", + "location": "imgui_internal:2074", "ov_cimguiname": "ImGuiDockNode_IsRootNode", "ret": "bool", "signature": "()const", @@ -5834,7 +5834,7 @@ "cimguiname": "ImGuiDockNode_IsSplitNode", "defaults": {}, "funcname": "IsSplitNode", - "location": "imgui_internal:2079", + "location": "imgui_internal:2080", "ov_cimguiname": "ImGuiDockNode_IsSplitNode", "ret": "bool", "signature": "()const", @@ -5857,7 +5857,7 @@ "conv": "ImRect", "defaults": {}, "funcname": "Rect", - "location": "imgui_internal:2082", + "location": "imgui_internal:2083", "nonUDT": 1, "ov_cimguiname": "ImGuiDockNode_Rect", "ret": "ImRect_c", @@ -5884,7 +5884,7 @@ "cimguiname": "ImGuiDockNode_SetLocalFlags", "defaults": {}, "funcname": "SetLocalFlags", - "location": "imgui_internal:2084", + "location": "imgui_internal:2085", "ov_cimguiname": "ImGuiDockNode_SetLocalFlags", "ret": "void", "signature": "(ImGuiDockNodeFlags)", @@ -5906,7 +5906,7 @@ "cimguiname": "ImGuiDockNode_UpdateMergedFlags", "defaults": {}, "funcname": "UpdateMergedFlags", - "location": "imgui_internal:2085", + "location": "imgui_internal:2086", "ov_cimguiname": "ImGuiDockNode_UpdateMergedFlags", "ret": "void", "signature": "()", @@ -5926,7 +5926,7 @@ "cimguiname": "ImGuiDockNode_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2072", + "location": "imgui_internal:2073", "ov_cimguiname": "ImGuiDockNode_destroy", "realdestructor": true, "ret": "void", @@ -5945,7 +5945,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiErrorRecoveryState", - "location": "imgui_internal:1440", + "location": "imgui_internal:1441", "ov_cimguiname": "ImGuiErrorRecoveryState_ImGuiErrorRecoveryState", "signature": "()", "stname": "ImGuiErrorRecoveryState" @@ -5964,7 +5964,7 @@ "cimguiname": "ImGuiErrorRecoveryState_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1440", + "location": "imgui_internal:1441", "ov_cimguiname": "ImGuiErrorRecoveryState_destroy", "ret": "void", "signature": "(ImGuiErrorRecoveryState*)", @@ -6060,7 +6060,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiIDStackTool", - "location": "imgui_internal:2358", + "location": "imgui_internal:2359", "ov_cimguiname": "ImGuiIDStackTool_ImGuiIDStackTool", "signature": "()", "stname": "ImGuiIDStackTool" @@ -6079,7 +6079,7 @@ "cimguiname": "ImGuiIDStackTool_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2358", + "location": "imgui_internal:2359", "ov_cimguiname": "ImGuiIDStackTool_destroy", "ret": "void", "signature": "(ImGuiIDStackTool*)", @@ -6105,7 +6105,7 @@ "cimguiname": "ImGuiIO_AddFocusEvent", "defaults": {}, "funcname": "AddFocusEvent", - "location": "imgui:2627", + "location": "imgui:2633", "ov_cimguiname": "ImGuiIO_AddFocusEvent", "ret": "void", "signature": "(bool)", @@ -6131,7 +6131,7 @@ "cimguiname": "ImGuiIO_AddInputCharacter", "defaults": {}, "funcname": "AddInputCharacter", - "location": "imgui:2628", + "location": "imgui:2634", "ov_cimguiname": "ImGuiIO_AddInputCharacter", "ret": "void", "signature": "(unsigned int)", @@ -6157,7 +6157,7 @@ "cimguiname": "ImGuiIO_AddInputCharacterUTF16", "defaults": {}, "funcname": "AddInputCharacterUTF16", - "location": "imgui:2629", + "location": "imgui:2635", "ov_cimguiname": "ImGuiIO_AddInputCharacterUTF16", "ret": "void", "signature": "(ImWchar16)", @@ -6183,7 +6183,7 @@ "cimguiname": "ImGuiIO_AddInputCharactersUTF8", "defaults": {}, "funcname": "AddInputCharactersUTF8", - "location": "imgui:2630", + "location": "imgui:2636", "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", "ret": "void", "signature": "(const char*)", @@ -6217,7 +6217,7 @@ "cimguiname": "ImGuiIO_AddKeyAnalogEvent", "defaults": {}, "funcname": "AddKeyAnalogEvent", - "location": "imgui:2621", + "location": "imgui:2627", "ov_cimguiname": "ImGuiIO_AddKeyAnalogEvent", "ret": "void", "signature": "(ImGuiKey,bool,float)", @@ -6247,7 +6247,7 @@ "cimguiname": "ImGuiIO_AddKeyEvent", "defaults": {}, "funcname": "AddKeyEvent", - "location": "imgui:2620", + "location": "imgui:2626", "ov_cimguiname": "ImGuiIO_AddKeyEvent", "ret": "void", "signature": "(ImGuiKey,bool)", @@ -6277,7 +6277,7 @@ "cimguiname": "ImGuiIO_AddMouseButtonEvent", "defaults": {}, "funcname": "AddMouseButtonEvent", - "location": "imgui:2623", + "location": "imgui:2629", "ov_cimguiname": "ImGuiIO_AddMouseButtonEvent", "ret": "void", "signature": "(int,bool)", @@ -6307,7 +6307,7 @@ "cimguiname": "ImGuiIO_AddMousePosEvent", "defaults": {}, "funcname": "AddMousePosEvent", - "location": "imgui:2622", + "location": "imgui:2628", "ov_cimguiname": "ImGuiIO_AddMousePosEvent", "ret": "void", "signature": "(float,float)", @@ -6333,7 +6333,7 @@ "cimguiname": "ImGuiIO_AddMouseSourceEvent", "defaults": {}, "funcname": "AddMouseSourceEvent", - "location": "imgui:2625", + "location": "imgui:2631", "ov_cimguiname": "ImGuiIO_AddMouseSourceEvent", "ret": "void", "signature": "(ImGuiMouseSource)", @@ -6359,7 +6359,7 @@ "cimguiname": "ImGuiIO_AddMouseViewportEvent", "defaults": {}, "funcname": "AddMouseViewportEvent", - "location": "imgui:2626", + "location": "imgui:2632", "ov_cimguiname": "ImGuiIO_AddMouseViewportEvent", "ret": "void", "signature": "(ImGuiID)", @@ -6389,7 +6389,7 @@ "cimguiname": "ImGuiIO_AddMouseWheelEvent", "defaults": {}, "funcname": "AddMouseWheelEvent", - "location": "imgui:2624", + "location": "imgui:2630", "ov_cimguiname": "ImGuiIO_AddMouseWheelEvent", "ret": "void", "signature": "(float,float)", @@ -6411,7 +6411,7 @@ "cimguiname": "ImGuiIO_ClearEventsQueue", "defaults": {}, "funcname": "ClearEventsQueue", - "location": "imgui:2634", + "location": "imgui:2640", "ov_cimguiname": "ImGuiIO_ClearEventsQueue", "ret": "void", "signature": "()", @@ -6433,7 +6433,7 @@ "cimguiname": "ImGuiIO_ClearInputKeys", "defaults": {}, "funcname": "ClearInputKeys", - "location": "imgui:2635", + "location": "imgui:2641", "ov_cimguiname": "ImGuiIO_ClearInputKeys", "ret": "void", "signature": "()", @@ -6455,7 +6455,7 @@ "cimguiname": "ImGuiIO_ClearInputMouse", "defaults": {}, "funcname": "ClearInputMouse", - "location": "imgui:2636", + "location": "imgui:2642", "ov_cimguiname": "ImGuiIO_ClearInputMouse", "ret": "void", "signature": "()", @@ -6473,7 +6473,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiIO", - "location": "imgui:2727", + "location": "imgui:2733", "ov_cimguiname": "ImGuiIO_ImGuiIO", "signature": "()", "stname": "ImGuiIO" @@ -6498,7 +6498,7 @@ "cimguiname": "ImGuiIO_SetAppAcceptingEvents", "defaults": {}, "funcname": "SetAppAcceptingEvents", - "location": "imgui:2633", + "location": "imgui:2639", "ov_cimguiname": "ImGuiIO_SetAppAcceptingEvents", "ret": "void", "signature": "(bool)", @@ -6538,7 +6538,7 @@ "native_legacy_index": "-1" }, "funcname": "SetKeyEventNativeData", - "location": "imgui:2632", + "location": "imgui:2638", "ov_cimguiname": "ImGuiIO_SetKeyEventNativeData", "ret": "void", "signature": "(ImGuiKey,int,int,int)", @@ -6558,7 +6558,7 @@ "cimguiname": "ImGuiIO_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2727", + "location": "imgui:2733", "ov_cimguiname": "ImGuiIO_destroy", "ret": "void", "signature": "(ImGuiIO*)", @@ -6576,7 +6576,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputEvent", - "location": "imgui_internal:1582", + "location": "imgui_internal:1583", "ov_cimguiname": "ImGuiInputEvent_ImGuiInputEvent", "signature": "()", "stname": "ImGuiInputEvent" @@ -6595,7 +6595,7 @@ "cimguiname": "ImGuiInputEvent_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1582", + "location": "imgui_internal:1583", "ov_cimguiname": "ImGuiInputEvent_destroy", "ret": "void", "signature": "(ImGuiInputEvent*)", @@ -6617,7 +6617,7 @@ "cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui:2774", + "location": "imgui:2780", "ov_cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "ret": "void", "signature": "()", @@ -6647,7 +6647,7 @@ "cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "defaults": {}, "funcname": "DeleteChars", - "location": "imgui:2770", + "location": "imgui:2776", "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "ret": "void", "signature": "(int,int)", @@ -6669,7 +6669,7 @@ "cimguiname": "ImGuiInputTextCallbackData_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui:2775", + "location": "imgui:2781", "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", "signature": "()const", @@ -6687,7 +6687,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextCallbackData", - "location": "imgui:2769", + "location": "imgui:2775", "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "signature": "()", "stname": "ImGuiInputTextCallbackData" @@ -6722,7 +6722,7 @@ "text_end": "NULL" }, "funcname": "InsertChars", - "location": "imgui:2771", + "location": "imgui:2777", "ov_cimguiname": "ImGuiInputTextCallbackData_InsertChars", "ret": "void", "signature": "(int,const char*,const char*)", @@ -6744,7 +6744,7 @@ "cimguiname": "ImGuiInputTextCallbackData_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui:2772", + "location": "imgui:2778", "ov_cimguiname": "ImGuiInputTextCallbackData_SelectAll", "ret": "void", "signature": "()", @@ -6774,7 +6774,7 @@ "cimguiname": "ImGuiInputTextCallbackData_SetSelection", "defaults": {}, "funcname": "SetSelection", - "location": "imgui:2773", + "location": "imgui:2779", "ov_cimguiname": "ImGuiInputTextCallbackData_SetSelection", "ret": "void", "signature": "(int,int)", @@ -6794,7 +6794,7 @@ "cimguiname": "ImGuiInputTextCallbackData_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2769", + "location": "imgui:2775", "ov_cimguiname": "ImGuiInputTextCallbackData_destroy", "ret": "void", "signature": "(ImGuiInputTextCallbackData*)", @@ -6816,7 +6816,7 @@ "cimguiname": "ImGuiInputTextDeactivatedState_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui_internal:1225", + "location": "imgui_internal:1224", "ov_cimguiname": "ImGuiInputTextDeactivatedState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -6834,7 +6834,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextDeactivatedState", - "location": "imgui_internal:1224", + "location": "imgui_internal:1223", "ov_cimguiname": "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState", "signature": "()", "stname": "ImGuiInputTextDeactivatedState" @@ -6853,7 +6853,7 @@ "cimguiname": "ImGuiInputTextDeactivatedState_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1224", + "location": "imgui_internal:1223", "ov_cimguiname": "ImGuiInputTextDeactivatedState_destroy", "ret": "void", "signature": "(ImGuiInputTextDeactivatedState*)", @@ -6897,7 +6897,7 @@ "cimguiname": "ImGuiInputTextState_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui_internal:1278", + "location": "imgui_internal:1279", "ov_cimguiname": "ImGuiInputTextState_ClearSelection", "ret": "void", "signature": "()", @@ -6941,7 +6941,7 @@ "cimguiname": "ImGuiInputTextState_CursorAnimReset", "defaults": {}, "funcname": "CursorAnimReset", - "location": "imgui_internal:1275", + "location": "imgui_internal:1276", "ov_cimguiname": "ImGuiInputTextState_CursorAnimReset", "ret": "void", "signature": "()", @@ -6963,7 +6963,7 @@ "cimguiname": "ImGuiInputTextState_CursorClamp", "defaults": {}, "funcname": "CursorClamp", - "location": "imgui_internal:1276", + "location": "imgui_internal:1277", "ov_cimguiname": "ImGuiInputTextState_CursorClamp", "ret": "void", "signature": "()", @@ -6985,7 +6985,7 @@ "cimguiname": "ImGuiInputTextState_GetCursorPos", "defaults": {}, "funcname": "GetCursorPos", - "location": "imgui_internal:1279", + "location": "imgui_internal:1280", "ov_cimguiname": "ImGuiInputTextState_GetCursorPos", "ret": "int", "signature": "()const", @@ -7029,7 +7029,7 @@ "cimguiname": "ImGuiInputTextState_GetSelectionEnd", "defaults": {}, "funcname": "GetSelectionEnd", - "location": "imgui_internal:1281", + "location": "imgui_internal:1282", "ov_cimguiname": "ImGuiInputTextState_GetSelectionEnd", "ret": "int", "signature": "()const", @@ -7051,13 +7051,35 @@ "cimguiname": "ImGuiInputTextState_GetSelectionStart", "defaults": {}, "funcname": "GetSelectionStart", - "location": "imgui_internal:1280", + "location": "imgui_internal:1281", "ov_cimguiname": "ImGuiInputTextState_GetSelectionStart", "ret": "int", "signature": "()const", "stname": "ImGuiInputTextState" } ], + "ImGuiInputTextState_GetText": [ + { + "args": "(ImGuiInputTextState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextState*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "call_args_old": "()", + "cimguiname": "ImGuiInputTextState_GetText", + "defaults": {}, + "funcname": "GetText", + "location": "imgui_internal:1273", + "ov_cimguiname": "ImGuiInputTextState_GetText", + "ret": "const char*", + "signature": "()", + "stname": "ImGuiInputTextState" + } + ], "ImGuiInputTextState_HasSelection": [ { "args": "(ImGuiInputTextState* self)", @@ -7073,7 +7095,7 @@ "cimguiname": "ImGuiInputTextState_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui_internal:1277", + "location": "imgui_internal:1278", "ov_cimguiname": "ImGuiInputTextState_HasSelection", "ret": "bool", "signature": "()const", @@ -7164,7 +7186,7 @@ "cimguiname": "ImGuiInputTextState_ReloadUserBufAndKeepSelection", "defaults": {}, "funcname": "ReloadUserBufAndKeepSelection", - "location": "imgui_internal:1291", + "location": "imgui_internal:1292", "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndKeepSelection", "ret": "void", "signature": "()", @@ -7186,7 +7208,7 @@ "cimguiname": "ImGuiInputTextState_ReloadUserBufAndMoveToEnd", "defaults": {}, "funcname": "ReloadUserBufAndMoveToEnd", - "location": "imgui_internal:1292", + "location": "imgui_internal:1293", "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndMoveToEnd", "ret": "void", "signature": "()", @@ -7208,7 +7230,7 @@ "cimguiname": "ImGuiInputTextState_ReloadUserBufAndSelectAll", "defaults": {}, "funcname": "ReloadUserBufAndSelectAll", - "location": "imgui_internal:1290", + "location": "imgui_internal:1291", "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndSelectAll", "ret": "void", "signature": "()", @@ -7230,7 +7252,7 @@ "cimguiname": "ImGuiInputTextState_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui_internal:1283", + "location": "imgui_internal:1284", "ov_cimguiname": "ImGuiInputTextState_SelectAll", "ret": "void", "signature": "()", @@ -7260,7 +7282,7 @@ "cimguiname": "ImGuiInputTextState_SetSelection", "defaults": {}, "funcname": "SetSelection", - "location": "imgui_internal:1282", + "location": "imgui_internal:1283", "ov_cimguiname": "ImGuiInputTextState_SetSelection", "ret": "void", "signature": "(int,int)", @@ -7299,7 +7321,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyOwnerData", - "location": "imgui_internal:1626", + "location": "imgui_internal:1627", "ov_cimguiname": "ImGuiKeyOwnerData_ImGuiKeyOwnerData", "signature": "()", "stname": "ImGuiKeyOwnerData" @@ -7318,7 +7340,7 @@ "cimguiname": "ImGuiKeyOwnerData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1626", + "location": "imgui_internal:1627", "ov_cimguiname": "ImGuiKeyOwnerData_destroy", "ret": "void", "signature": "(ImGuiKeyOwnerData*)", @@ -7336,7 +7358,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyRoutingData", - "location": "imgui_internal:1602", + "location": "imgui_internal:1603", "ov_cimguiname": "ImGuiKeyRoutingData_ImGuiKeyRoutingData", "signature": "()", "stname": "ImGuiKeyRoutingData" @@ -7355,7 +7377,7 @@ "cimguiname": "ImGuiKeyRoutingData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1602", + "location": "imgui_internal:1603", "ov_cimguiname": "ImGuiKeyRoutingData_destroy", "ret": "void", "signature": "(ImGuiKeyRoutingData*)", @@ -7377,7 +7399,7 @@ "cimguiname": "ImGuiKeyRoutingTable_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1614", + "location": "imgui_internal:1615", "ov_cimguiname": "ImGuiKeyRoutingTable_Clear", "ret": "void", "signature": "()", @@ -7395,7 +7417,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyRoutingTable", - "location": "imgui_internal:1613", + "location": "imgui_internal:1614", "ov_cimguiname": "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable", "signature": "()", "stname": "ImGuiKeyRoutingTable" @@ -7414,7 +7436,7 @@ "cimguiname": "ImGuiKeyRoutingTable_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1613", + "location": "imgui_internal:1614", "ov_cimguiname": "ImGuiKeyRoutingTable_destroy", "ret": "void", "signature": "(ImGuiKeyRoutingTable*)", @@ -7432,7 +7454,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiLastItemData", - "location": "imgui_internal:1407", + "location": "imgui_internal:1408", "ov_cimguiname": "ImGuiLastItemData_ImGuiLastItemData", "signature": "()", "stname": "ImGuiLastItemData" @@ -7451,7 +7473,7 @@ "cimguiname": "ImGuiLastItemData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1407", + "location": "imgui_internal:1408", "ov_cimguiname": "ImGuiLastItemData_destroy", "ret": "void", "signature": "(ImGuiLastItemData*)", @@ -7469,7 +7491,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipperData", - "location": "imgui_internal:1697", + "location": "imgui_internal:1698", "ov_cimguiname": "ImGuiListClipperData_ImGuiListClipperData", "signature": "()", "stname": "ImGuiListClipperData" @@ -7494,7 +7516,7 @@ "cimguiname": "ImGuiListClipperData_Reset", "defaults": {}, "funcname": "Reset", - "location": "imgui_internal:1698", + "location": "imgui_internal:1699", "ov_cimguiname": "ImGuiListClipperData_Reset", "ret": "void", "signature": "(ImGuiListClipper*)", @@ -7514,7 +7536,7 @@ "cimguiname": "ImGuiListClipperData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1697", + "location": "imgui_internal:1698", "ov_cimguiname": "ImGuiListClipperData_destroy", "ret": "void", "signature": "(ImGuiListClipperData*)", @@ -7541,7 +7563,7 @@ "defaults": {}, "funcname": "FromIndices", "is_static_function": true, - "location": "imgui_internal:1684", + "location": "imgui_internal:1685", "ov_cimguiname": "ImGuiListClipperRange_FromIndices", "ret": "ImGuiListClipperRange", "signature": "(int,int)", @@ -7576,7 +7598,7 @@ "defaults": {}, "funcname": "FromPositions", "is_static_function": true, - "location": "imgui_internal:1685", + "location": "imgui_internal:1686", "ov_cimguiname": "ImGuiListClipperRange_FromPositions", "ret": "ImGuiListClipperRange", "signature": "(float,float,int,int)", @@ -7608,7 +7630,7 @@ "items_height": "-1.0f" }, "funcname": "Begin", - "location": "imgui:2999", + "location": "imgui:3006", "ov_cimguiname": "ImGuiListClipper_Begin", "ret": "void", "signature": "(int,float)", @@ -7630,7 +7652,7 @@ "cimguiname": "ImGuiListClipper_End", "defaults": {}, "funcname": "End", - "location": "imgui:3000", + "location": "imgui:3007", "ov_cimguiname": "ImGuiListClipper_End", "ret": "void", "signature": "()", @@ -7648,7 +7670,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipper", - "location": "imgui:2997", + "location": "imgui:3004", "ov_cimguiname": "ImGuiListClipper_ImGuiListClipper", "signature": "()", "stname": "ImGuiListClipper" @@ -7673,7 +7695,7 @@ "cimguiname": "ImGuiListClipper_IncludeItemByIndex", "defaults": {}, "funcname": "IncludeItemByIndex", - "location": "imgui:3005", + "location": "imgui:3012", "ov_cimguiname": "ImGuiListClipper_IncludeItemByIndex", "ret": "void", "signature": "(int)", @@ -7703,7 +7725,7 @@ "cimguiname": "ImGuiListClipper_IncludeItemsByIndex", "defaults": {}, "funcname": "IncludeItemsByIndex", - "location": "imgui:3006", + "location": "imgui:3013", "ov_cimguiname": "ImGuiListClipper_IncludeItemsByIndex", "ret": "void", "signature": "(int,int)", @@ -7729,7 +7751,7 @@ "cimguiname": "ImGuiListClipper_SeekCursorForItem", "defaults": {}, "funcname": "SeekCursorForItem", - "location": "imgui:3011", + "location": "imgui:3018", "ov_cimguiname": "ImGuiListClipper_SeekCursorForItem", "ret": "void", "signature": "(int)", @@ -7751,7 +7773,7 @@ "cimguiname": "ImGuiListClipper_Step", "defaults": {}, "funcname": "Step", - "location": "imgui:3001", + "location": "imgui:3008", "ov_cimguiname": "ImGuiListClipper_Step", "ret": "bool", "signature": "()", @@ -7771,7 +7793,7 @@ "cimguiname": "ImGuiListClipper_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2998", + "location": "imgui:3005", "ov_cimguiname": "ImGuiListClipper_destroy", "realdestructor": true, "ret": "void", @@ -7798,7 +7820,7 @@ "cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "defaults": {}, "funcname": "CalcNextTotalWidth", - "location": "imgui_internal:1215", + "location": "imgui_internal:1214", "ov_cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "ret": "void", "signature": "(bool)", @@ -7836,7 +7858,7 @@ "cimguiname": "ImGuiMenuColumns_DeclColumns", "defaults": {}, "funcname": "DeclColumns", - "location": "imgui_internal:1214", + "location": "imgui_internal:1213", "ov_cimguiname": "ImGuiMenuColumns_DeclColumns", "ret": "float", "signature": "(float,float,float,float)", @@ -7854,7 +7876,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMenuColumns", - "location": "imgui_internal:1212", + "location": "imgui_internal:1211", "ov_cimguiname": "ImGuiMenuColumns_ImGuiMenuColumns", "signature": "()", "stname": "ImGuiMenuColumns" @@ -7883,7 +7905,7 @@ "cimguiname": "ImGuiMenuColumns_Update", "defaults": {}, "funcname": "Update", - "location": "imgui_internal:1213", + "location": "imgui_internal:1212", "ov_cimguiname": "ImGuiMenuColumns_Update", "ret": "void", "signature": "(float,bool)", @@ -7903,7 +7925,7 @@ "cimguiname": "ImGuiMenuColumns_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1212", + "location": "imgui_internal:1211", "ov_cimguiname": "ImGuiMenuColumns_destroy", "ret": "void", "signature": "(ImGuiMenuColumns*)", @@ -7921,7 +7943,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMultiSelectState", - "location": "imgui_internal:1964", + "location": "imgui_internal:1965", "ov_cimguiname": "ImGuiMultiSelectState_ImGuiMultiSelectState", "signature": "()", "stname": "ImGuiMultiSelectState" @@ -7940,7 +7962,7 @@ "cimguiname": "ImGuiMultiSelectState_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1964", + "location": "imgui_internal:1965", "ov_cimguiname": "ImGuiMultiSelectState_destroy", "ret": "void", "signature": "(ImGuiMultiSelectState*)", @@ -7962,7 +7984,7 @@ "cimguiname": "ImGuiMultiSelectTempData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1948", + "location": "imgui_internal:1949", "ov_cimguiname": "ImGuiMultiSelectTempData_Clear", "ret": "void", "signature": "()", @@ -7984,7 +8006,7 @@ "cimguiname": "ImGuiMultiSelectTempData_ClearIO", "defaults": {}, "funcname": "ClearIO", - "location": "imgui_internal:1949", + "location": "imgui_internal:1950", "ov_cimguiname": "ImGuiMultiSelectTempData_ClearIO", "ret": "void", "signature": "()", @@ -8002,7 +8024,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMultiSelectTempData", - "location": "imgui_internal:1947", + "location": "imgui_internal:1948", "ov_cimguiname": "ImGuiMultiSelectTempData_ImGuiMultiSelectTempData", "signature": "()", "stname": "ImGuiMultiSelectTempData" @@ -8021,7 +8043,7 @@ "cimguiname": "ImGuiMultiSelectTempData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1947", + "location": "imgui_internal:1948", "ov_cimguiname": "ImGuiMultiSelectTempData_destroy", "ret": "void", "signature": "(ImGuiMultiSelectTempData*)", @@ -8043,7 +8065,7 @@ "cimguiname": "ImGuiNavItemData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1789", + "location": "imgui_internal:1790", "ov_cimguiname": "ImGuiNavItemData_Clear", "ret": "void", "signature": "()", @@ -8061,7 +8083,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNavItemData", - "location": "imgui_internal:1788", + "location": "imgui_internal:1789", "ov_cimguiname": "ImGuiNavItemData_ImGuiNavItemData", "signature": "()", "stname": "ImGuiNavItemData" @@ -8080,7 +8102,7 @@ "cimguiname": "ImGuiNavItemData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1788", + "location": "imgui_internal:1789", "ov_cimguiname": "ImGuiNavItemData_destroy", "ret": "void", "signature": "(ImGuiNavItemData*)", @@ -8102,7 +8124,7 @@ "cimguiname": "ImGuiNextItemData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1391", + "location": "imgui_internal:1392", "ov_cimguiname": "ImGuiNextItemData_ClearFlags", "ret": "void", "signature": "()", @@ -8120,7 +8142,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextItemData", - "location": "imgui_internal:1390", + "location": "imgui_internal:1391", "ov_cimguiname": "ImGuiNextItemData_ImGuiNextItemData", "signature": "()", "stname": "ImGuiNextItemData" @@ -8139,7 +8161,7 @@ "cimguiname": "ImGuiNextItemData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1390", + "location": "imgui_internal:1391", "ov_cimguiname": "ImGuiNextItemData_destroy", "ret": "void", "signature": "(ImGuiNextItemData*)", @@ -8161,7 +8183,7 @@ "cimguiname": "ImGuiNextWindowData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1359", + "location": "imgui_internal:1360", "ov_cimguiname": "ImGuiNextWindowData_ClearFlags", "ret": "void", "signature": "()", @@ -8179,7 +8201,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextWindowData", - "location": "imgui_internal:1358", + "location": "imgui_internal:1359", "ov_cimguiname": "ImGuiNextWindowData_ImGuiNextWindowData", "signature": "()", "stname": "ImGuiNextWindowData" @@ -8198,7 +8220,7 @@ "cimguiname": "ImGuiNextWindowData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1358", + "location": "imgui_internal:1359", "ov_cimguiname": "ImGuiNextWindowData_destroy", "ret": "void", "signature": "(ImGuiNextWindowData*)", @@ -8216,7 +8238,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumnData", - "location": "imgui_internal:1868", + "location": "imgui_internal:1869", "ov_cimguiname": "ImGuiOldColumnData_ImGuiOldColumnData", "signature": "()", "stname": "ImGuiOldColumnData" @@ -8235,7 +8257,7 @@ "cimguiname": "ImGuiOldColumnData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1868", + "location": "imgui_internal:1869", "ov_cimguiname": "ImGuiOldColumnData_destroy", "ret": "void", "signature": "(ImGuiOldColumnData*)", @@ -8253,7 +8275,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumns", - "location": "imgui_internal:1889", + "location": "imgui_internal:1890", "ov_cimguiname": "ImGuiOldColumns_ImGuiOldColumns", "signature": "()", "stname": "ImGuiOldColumns" @@ -8272,7 +8294,7 @@ "cimguiname": "ImGuiOldColumns_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1889", + "location": "imgui_internal:1890", "ov_cimguiname": "ImGuiOldColumns_destroy", "ret": "void", "signature": "(ImGuiOldColumns*)", @@ -8290,7 +8312,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOnceUponAFrame", - "location": "imgui:2848", + "location": "imgui:2854", "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "signature": "()", "stname": "ImGuiOnceUponAFrame" @@ -8309,7 +8331,7 @@ "cimguiname": "ImGuiOnceUponAFrame_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2848", + "location": "imgui:2854", "ov_cimguiname": "ImGuiOnceUponAFrame_destroy", "ret": "void", "signature": "(ImGuiOnceUponAFrame*)", @@ -8331,7 +8353,7 @@ "cimguiname": "ImGuiPayload_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2826", + "location": "imgui:2832", "ov_cimguiname": "ImGuiPayload_Clear", "ret": "void", "signature": "()", @@ -8349,7 +8371,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPayload", - "location": "imgui:2825", + "location": "imgui:2831", "ov_cimguiname": "ImGuiPayload_ImGuiPayload", "signature": "()", "stname": "ImGuiPayload" @@ -8374,7 +8396,7 @@ "cimguiname": "ImGuiPayload_IsDataType", "defaults": {}, "funcname": "IsDataType", - "location": "imgui:2827", + "location": "imgui:2833", "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", "signature": "(const char*)const", @@ -8396,7 +8418,7 @@ "cimguiname": "ImGuiPayload_IsDelivery", "defaults": {}, "funcname": "IsDelivery", - "location": "imgui:2829", + "location": "imgui:2835", "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", "signature": "()const", @@ -8418,7 +8440,7 @@ "cimguiname": "ImGuiPayload_IsPreview", "defaults": {}, "funcname": "IsPreview", - "location": "imgui:2828", + "location": "imgui:2834", "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", "signature": "()const", @@ -8438,7 +8460,7 @@ "cimguiname": "ImGuiPayload_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2825", + "location": "imgui:2831", "ov_cimguiname": "ImGuiPayload_destroy", "ret": "void", "signature": "(ImGuiPayload*)", @@ -8460,7 +8482,7 @@ "cimguiname": "ImGuiPlatformIO_ClearPlatformHandlers", "defaults": {}, "funcname": "ClearPlatformHandlers", - "location": "imgui:4271", + "location": "imgui:4297", "ov_cimguiname": "ImGuiPlatformIO_ClearPlatformHandlers", "ret": "void", "signature": "()", @@ -8482,7 +8504,7 @@ "cimguiname": "ImGuiPlatformIO_ClearRendererHandlers", "defaults": {}, "funcname": "ClearRendererHandlers", - "location": "imgui:4272", + "location": "imgui:4298", "ov_cimguiname": "ImGuiPlatformIO_ClearRendererHandlers", "ret": "void", "signature": "()", @@ -8500,7 +8522,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformIO", - "location": "imgui:4167", + "location": "imgui:4193", "ov_cimguiname": "ImGuiPlatformIO_ImGuiPlatformIO", "signature": "()", "stname": "ImGuiPlatformIO" @@ -8519,7 +8541,7 @@ "cimguiname": "ImGuiPlatformIO_destroy", "defaults": {}, "destructor": true, - "location": "imgui:4167", + "location": "imgui:4193", "ov_cimguiname": "ImGuiPlatformIO_destroy", "ret": "void", "signature": "(ImGuiPlatformIO*)", @@ -8537,7 +8559,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformImeData", - "location": "imgui:4295", + "location": "imgui:4321", "ov_cimguiname": "ImGuiPlatformImeData_ImGuiPlatformImeData", "signature": "()", "stname": "ImGuiPlatformImeData" @@ -8556,7 +8578,7 @@ "cimguiname": "ImGuiPlatformImeData_destroy", "defaults": {}, "destructor": true, - "location": "imgui:4295", + "location": "imgui:4321", "ov_cimguiname": "ImGuiPlatformImeData_destroy", "ret": "void", "signature": "(ImGuiPlatformImeData*)", @@ -8574,7 +8596,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformMonitor", - "location": "imgui:4283", + "location": "imgui:4309", "ov_cimguiname": "ImGuiPlatformMonitor_ImGuiPlatformMonitor", "signature": "()", "stname": "ImGuiPlatformMonitor" @@ -8593,7 +8615,7 @@ "cimguiname": "ImGuiPlatformMonitor_destroy", "defaults": {}, "destructor": true, - "location": "imgui:4283", + "location": "imgui:4309", "ov_cimguiname": "ImGuiPlatformMonitor_destroy", "ret": "void", "signature": "(ImGuiPlatformMonitor*)", @@ -8611,7 +8633,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPopupData", - "location": "imgui_internal:1501", + "location": "imgui_internal:1502", "ov_cimguiname": "ImGuiPopupData_ImGuiPopupData", "signature": "()", "stname": "ImGuiPopupData" @@ -8630,7 +8652,7 @@ "cimguiname": "ImGuiPopupData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1501", + "location": "imgui_internal:1502", "ov_cimguiname": "ImGuiPopupData_destroy", "ret": "void", "signature": "(ImGuiPopupData*)", @@ -8653,7 +8675,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1465", + "location": "imgui_internal:1466", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr", "signature": "(void*)", "stname": "ImGuiPtrOrIndex" @@ -8673,7 +8695,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1466", + "location": "imgui_internal:1467", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int", "signature": "(int)", "stname": "ImGuiPtrOrIndex" @@ -8692,7 +8714,7 @@ "cimguiname": "ImGuiPtrOrIndex_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1465", + "location": "imgui_internal:1466", "ov_cimguiname": "ImGuiPtrOrIndex_destroy", "ret": "void", "signature": "(ImGuiPtrOrIndex*)", @@ -8718,7 +8740,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_ApplyRequests", "defaults": {}, "funcname": "ApplyRequests", - "location": "imgui:3228", + "location": "imgui:3251", "ov_cimguiname": "ImGuiSelectionBasicStorage_ApplyRequests", "ret": "void", "signature": "(ImGuiMultiSelectIO*)", @@ -8740,7 +8762,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:3230", + "location": "imgui:3253", "ov_cimguiname": "ImGuiSelectionBasicStorage_Clear", "ret": "void", "signature": "()", @@ -8766,7 +8788,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui:3229", + "location": "imgui:3252", "ov_cimguiname": "ImGuiSelectionBasicStorage_Contains", "ret": "bool", "signature": "(ImGuiID)const", @@ -8796,7 +8818,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_GetNextSelectedItem", "defaults": {}, "funcname": "GetNextSelectedItem", - "location": "imgui:3233", + "location": "imgui:3256", "ov_cimguiname": "ImGuiSelectionBasicStorage_GetNextSelectedItem", "ret": "bool", "signature": "(void**,ImGuiID*)", @@ -8822,7 +8844,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_GetStorageIdFromIndex", "defaults": {}, "funcname": "GetStorageIdFromIndex", - "location": "imgui:3234", + "location": "imgui:3257", "ov_cimguiname": "ImGuiSelectionBasicStorage_GetStorageIdFromIndex", "ret": "ImGuiID", "signature": "(int)", @@ -8840,7 +8862,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSelectionBasicStorage", - "location": "imgui:3227", + "location": "imgui:3250", "ov_cimguiname": "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage", "signature": "()", "stname": "ImGuiSelectionBasicStorage" @@ -8869,7 +8891,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_SetItemSelected", "defaults": {}, "funcname": "SetItemSelected", - "location": "imgui:3232", + "location": "imgui:3255", "ov_cimguiname": "ImGuiSelectionBasicStorage_SetItemSelected", "ret": "void", "signature": "(ImGuiID,bool)", @@ -8896,7 +8918,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_Swap", "defaults": {}, "funcname": "Swap", - "location": "imgui:3231", + "location": "imgui:3254", "ov_cimguiname": "ImGuiSelectionBasicStorage_Swap", "ret": "void", "signature": "(ImGuiSelectionBasicStorage*)", @@ -8916,7 +8938,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3227", + "location": "imgui:3250", "ov_cimguiname": "ImGuiSelectionBasicStorage_destroy", "ret": "void", "signature": "(ImGuiSelectionBasicStorage*)", @@ -8942,7 +8964,7 @@ "cimguiname": "ImGuiSelectionExternalStorage_ApplyRequests", "defaults": {}, "funcname": "ApplyRequests", - "location": "imgui:3247", + "location": "imgui:3270", "ov_cimguiname": "ImGuiSelectionExternalStorage_ApplyRequests", "ret": "void", "signature": "(ImGuiMultiSelectIO*)", @@ -8960,7 +8982,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSelectionExternalStorage", - "location": "imgui:3246", + "location": "imgui:3269", "ov_cimguiname": "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage", "signature": "()", "stname": "ImGuiSelectionExternalStorage" @@ -8979,7 +9001,7 @@ "cimguiname": "ImGuiSelectionExternalStorage_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3246", + "location": "imgui:3269", "ov_cimguiname": "ImGuiSelectionExternalStorage_destroy", "ret": "void", "signature": "(ImGuiSelectionExternalStorage*)", @@ -8997,7 +9019,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSettingsHandler", - "location": "imgui_internal:2212", + "location": "imgui_internal:2213", "ov_cimguiname": "ImGuiSettingsHandler_ImGuiSettingsHandler", "signature": "()", "stname": "ImGuiSettingsHandler" @@ -9016,7 +9038,7 @@ "cimguiname": "ImGuiSettingsHandler_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2212", + "location": "imgui_internal:2213", "ov_cimguiname": "ImGuiSettingsHandler_destroy", "ret": "void", "signature": "(ImGuiSettingsHandler*)", @@ -9034,7 +9056,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackLevelInfo", - "location": "imgui_internal:2334", + "location": "imgui_internal:2335", "ov_cimguiname": "ImGuiStackLevelInfo_ImGuiStackLevelInfo", "signature": "()", "stname": "ImGuiStackLevelInfo" @@ -9053,7 +9075,7 @@ "cimguiname": "ImGuiStackLevelInfo_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2334", + "location": "imgui_internal:2335", "ov_cimguiname": "ImGuiStackLevelInfo_destroy", "ret": "void", "signature": "(ImGuiStackLevelInfo*)", @@ -9080,7 +9102,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2906", + "location": "imgui:2912", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Int", "signature": "(ImGuiID,int)", "stname": "ImGuiStoragePair" @@ -9104,7 +9126,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2907", + "location": "imgui:2913", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Float", "signature": "(ImGuiID,float)", "stname": "ImGuiStoragePair" @@ -9128,7 +9150,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2908", + "location": "imgui:2914", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Ptr", "signature": "(ImGuiID,void*)", "stname": "ImGuiStoragePair" @@ -9147,7 +9169,7 @@ "cimguiname": "ImGuiStoragePair_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2906", + "location": "imgui:2912", "ov_cimguiname": "ImGuiStoragePair_destroy", "ret": "void", "signature": "(ImGuiStoragePair*)", @@ -9169,7 +9191,7 @@ "cimguiname": "ImGuiStorage_BuildSortByKey", "defaults": {}, "funcname": "BuildSortByKey", - "location": "imgui:2947", + "location": "imgui:2953", "ov_cimguiname": "ImGuiStorage_BuildSortByKey", "ret": "void", "signature": "()", @@ -9191,7 +9213,7 @@ "cimguiname": "ImGuiStorage_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2927", + "location": "imgui:2933", "ov_cimguiname": "ImGuiStorage_Clear", "ret": "void", "signature": "()", @@ -9223,7 +9245,7 @@ "default_val": "false" }, "funcname": "GetBool", - "location": "imgui:2930", + "location": "imgui:2936", "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", "signature": "(ImGuiID,bool)const", @@ -9255,7 +9277,7 @@ "default_val": "false" }, "funcname": "GetBoolRef", - "location": "imgui:2942", + "location": "imgui:2948", "ov_cimguiname": "ImGuiStorage_GetBoolRef", "ret": "bool*", "signature": "(ImGuiID,bool)", @@ -9287,7 +9309,7 @@ "default_val": "0.0f" }, "funcname": "GetFloat", - "location": "imgui:2932", + "location": "imgui:2938", "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", "signature": "(ImGuiID,float)const", @@ -9319,7 +9341,7 @@ "default_val": "0.0f" }, "funcname": "GetFloatRef", - "location": "imgui:2943", + "location": "imgui:2949", "ov_cimguiname": "ImGuiStorage_GetFloatRef", "ret": "float*", "signature": "(ImGuiID,float)", @@ -9351,7 +9373,7 @@ "default_val": "0" }, "funcname": "GetInt", - "location": "imgui:2928", + "location": "imgui:2934", "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", "signature": "(ImGuiID,int)const", @@ -9383,7 +9405,7 @@ "default_val": "0" }, "funcname": "GetIntRef", - "location": "imgui:2941", + "location": "imgui:2947", "ov_cimguiname": "ImGuiStorage_GetIntRef", "ret": "int*", "signature": "(ImGuiID,int)", @@ -9409,7 +9431,7 @@ "cimguiname": "ImGuiStorage_GetVoidPtr", "defaults": {}, "funcname": "GetVoidPtr", - "location": "imgui:2934", + "location": "imgui:2940", "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", "signature": "(ImGuiID)const", @@ -9441,7 +9463,7 @@ "default_val": "NULL" }, "funcname": "GetVoidPtrRef", - "location": "imgui:2944", + "location": "imgui:2950", "ov_cimguiname": "ImGuiStorage_GetVoidPtrRef", "ret": "void**", "signature": "(ImGuiID,void*)", @@ -9467,7 +9489,7 @@ "cimguiname": "ImGuiStorage_SetAllInt", "defaults": {}, "funcname": "SetAllInt", - "location": "imgui:2949", + "location": "imgui:2955", "ov_cimguiname": "ImGuiStorage_SetAllInt", "ret": "void", "signature": "(int)", @@ -9497,7 +9519,7 @@ "cimguiname": "ImGuiStorage_SetBool", "defaults": {}, "funcname": "SetBool", - "location": "imgui:2931", + "location": "imgui:2937", "ov_cimguiname": "ImGuiStorage_SetBool", "ret": "void", "signature": "(ImGuiID,bool)", @@ -9527,7 +9549,7 @@ "cimguiname": "ImGuiStorage_SetFloat", "defaults": {}, "funcname": "SetFloat", - "location": "imgui:2933", + "location": "imgui:2939", "ov_cimguiname": "ImGuiStorage_SetFloat", "ret": "void", "signature": "(ImGuiID,float)", @@ -9557,7 +9579,7 @@ "cimguiname": "ImGuiStorage_SetInt", "defaults": {}, "funcname": "SetInt", - "location": "imgui:2929", + "location": "imgui:2935", "ov_cimguiname": "ImGuiStorage_SetInt", "ret": "void", "signature": "(ImGuiID,int)", @@ -9587,7 +9609,7 @@ "cimguiname": "ImGuiStorage_SetVoidPtr", "defaults": {}, "funcname": "SetVoidPtr", - "location": "imgui:2935", + "location": "imgui:2941", "ov_cimguiname": "ImGuiStorage_SetVoidPtr", "ret": "void", "signature": "(ImGuiID,void*)", @@ -9725,7 +9747,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyle", - "location": "imgui:2449", + "location": "imgui:2455", "ov_cimguiname": "ImGuiStyle_ImGuiStyle", "signature": "()", "stname": "ImGuiStyle" @@ -9750,7 +9772,7 @@ "cimguiname": "ImGuiStyle_ScaleAllSizes", "defaults": {}, "funcname": "ScaleAllSizes", - "location": "imgui:2450", + "location": "imgui:2456", "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", "ret": "void", "signature": "(float)", @@ -9770,7 +9792,7 @@ "cimguiname": "ImGuiStyle_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2449", + "location": "imgui:2455", "ov_cimguiname": "ImGuiStyle_destroy", "ret": "void", "signature": "(ImGuiStyle*)", @@ -9788,7 +9810,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabBar", - "location": "imgui_internal:3087", + "location": "imgui_internal:3097", "ov_cimguiname": "ImGuiTabBar_ImGuiTabBar", "signature": "()", "stname": "ImGuiTabBar" @@ -9807,7 +9829,7 @@ "cimguiname": "ImGuiTabBar_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:3087", + "location": "imgui_internal:3097", "ov_cimguiname": "ImGuiTabBar_destroy", "ret": "void", "signature": "(ImGuiTabBar*)", @@ -9825,7 +9847,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabItem", - "location": "imgui_internal:3043", + "location": "imgui_internal:3053", "ov_cimguiname": "ImGuiTabItem_ImGuiTabItem", "signature": "()", "stname": "ImGuiTabItem" @@ -9844,7 +9866,7 @@ "cimguiname": "ImGuiTabItem_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:3043", + "location": "imgui_internal:3053", "ov_cimguiname": "ImGuiTabItem_destroy", "ret": "void", "signature": "(ImGuiTabItem*)", @@ -9862,7 +9884,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSettings", - "location": "imgui_internal:3353", + "location": "imgui_internal:3364", "ov_cimguiname": "ImGuiTableColumnSettings_ImGuiTableColumnSettings", "signature": "()", "stname": "ImGuiTableColumnSettings" @@ -9881,7 +9903,7 @@ "cimguiname": "ImGuiTableColumnSettings_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:3353", + "location": "imgui_internal:3364", "ov_cimguiname": "ImGuiTableColumnSettings_destroy", "ret": "void", "signature": "(ImGuiTableColumnSettings*)", @@ -9899,7 +9921,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSortSpecs", - "location": "imgui:2244", + "location": "imgui:2249", "ov_cimguiname": "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs", "signature": "()", "stname": "ImGuiTableColumnSortSpecs" @@ -9918,7 +9940,7 @@ "cimguiname": "ImGuiTableColumnSortSpecs_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2244", + "location": "imgui:2249", "ov_cimguiname": "ImGuiTableColumnSortSpecs_destroy", "ret": "void", "signature": "(ImGuiTableColumnSortSpecs*)", @@ -9936,7 +9958,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumn", - "location": "imgui_internal:3146", + "location": "imgui_internal:3156", "ov_cimguiname": "ImGuiTableColumn_ImGuiTableColumn", "signature": "()", "stname": "ImGuiTableColumn" @@ -9955,7 +9977,7 @@ "cimguiname": "ImGuiTableColumn_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:3146", + "location": "imgui_internal:3156", "ov_cimguiname": "ImGuiTableColumn_destroy", "ret": "void", "signature": "(ImGuiTableColumn*)", @@ -9973,7 +9995,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableInstanceData", - "location": "imgui_internal:3189", + "location": "imgui_internal:3199", "ov_cimguiname": "ImGuiTableInstanceData_ImGuiTableInstanceData", "signature": "()", "stname": "ImGuiTableInstanceData" @@ -9992,7 +10014,7 @@ "cimguiname": "ImGuiTableInstanceData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:3189", + "location": "imgui_internal:3199", "ov_cimguiname": "ImGuiTableInstanceData_destroy", "ret": "void", "signature": "(ImGuiTableInstanceData*)", @@ -10014,7 +10036,7 @@ "cimguiname": "ImGuiTableSettings_GetColumnSettings", "defaults": {}, "funcname": "GetColumnSettings", - "location": "imgui_internal:3376", + "location": "imgui_internal:3387", "ov_cimguiname": "ImGuiTableSettings_GetColumnSettings", "ret": "ImGuiTableColumnSettings*", "signature": "()", @@ -10032,7 +10054,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSettings", - "location": "imgui_internal:3375", + "location": "imgui_internal:3386", "ov_cimguiname": "ImGuiTableSettings_ImGuiTableSettings", "signature": "()", "stname": "ImGuiTableSettings" @@ -10051,7 +10073,7 @@ "cimguiname": "ImGuiTableSettings_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:3375", + "location": "imgui_internal:3386", "ov_cimguiname": "ImGuiTableSettings_destroy", "ret": "void", "signature": "(ImGuiTableSettings*)", @@ -10069,7 +10091,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSortSpecs", - "location": "imgui:2233", + "location": "imgui:2238", "ov_cimguiname": "ImGuiTableSortSpecs_ImGuiTableSortSpecs", "signature": "()", "stname": "ImGuiTableSortSpecs" @@ -10088,7 +10110,7 @@ "cimguiname": "ImGuiTableSortSpecs_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2233", + "location": "imgui:2238", "ov_cimguiname": "ImGuiTableSortSpecs_destroy", "ret": "void", "signature": "(ImGuiTableSortSpecs*)", @@ -10106,7 +10128,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableTempData", - "location": "imgui_internal:3338", + "location": "imgui_internal:3349", "ov_cimguiname": "ImGuiTableTempData_ImGuiTableTempData", "signature": "()", "stname": "ImGuiTableTempData" @@ -10125,7 +10147,7 @@ "cimguiname": "ImGuiTableTempData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:3338", + "location": "imgui_internal:3349", "ov_cimguiname": "ImGuiTableTempData_destroy", "ret": "void", "signature": "(ImGuiTableTempData*)", @@ -10143,7 +10165,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTable", - "location": "imgui_internal:3309", + "location": "imgui_internal:3320", "ov_cimguiname": "ImGuiTable_ImGuiTable", "signature": "()", "stname": "ImGuiTable" @@ -10162,7 +10184,7 @@ "cimguiname": "ImGuiTable_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:3310", + "location": "imgui_internal:3321", "ov_cimguiname": "ImGuiTable_destroy", "realdestructor": true, "ret": "void", @@ -10181,7 +10203,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextBuffer", - "location": "imgui:2886", + "location": "imgui:2892", "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "signature": "()", "stname": "ImGuiTextBuffer" @@ -10212,7 +10234,7 @@ "str_end": "NULL" }, "funcname": "append", - "location": "imgui:2896", + "location": "imgui:2902", "ov_cimguiname": "ImGuiTextBuffer_append", "ret": "void", "signature": "(const char*,const char*)", @@ -10243,7 +10265,7 @@ "defaults": {}, "funcname": "appendf", "isvararg": "...)", - "location": "imgui:2897", + "location": "imgui:2903", "manual": true, "ov_cimguiname": "ImGuiTextBuffer_appendf", "ret": "void", @@ -10274,7 +10296,7 @@ "cimguiname": "ImGuiTextBuffer_appendfv", "defaults": {}, "funcname": "appendfv", - "location": "imgui:2898", + "location": "imgui:2904", "ov_cimguiname": "ImGuiTextBuffer_appendfv", "ret": "void", "signature": "(const char*,va_list)", @@ -10296,7 +10318,7 @@ "cimguiname": "ImGuiTextBuffer_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:2888", + "location": "imgui:2894", "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", "signature": "()const", @@ -10318,7 +10340,7 @@ "cimguiname": "ImGuiTextBuffer_c_str", "defaults": {}, "funcname": "c_str", - "location": "imgui:2895", + "location": "imgui:2901", "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", "signature": "()const", @@ -10340,7 +10362,7 @@ "cimguiname": "ImGuiTextBuffer_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:2892", + "location": "imgui:2898", "ov_cimguiname": "ImGuiTextBuffer_clear", "ret": "void", "signature": "()", @@ -10360,7 +10382,7 @@ "cimguiname": "ImGuiTextBuffer_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2886", + "location": "imgui:2892", "ov_cimguiname": "ImGuiTextBuffer_destroy", "ret": "void", "signature": "(ImGuiTextBuffer*)", @@ -10382,7 +10404,7 @@ "cimguiname": "ImGuiTextBuffer_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2891", + "location": "imgui:2897", "ov_cimguiname": "ImGuiTextBuffer_empty", "ret": "bool", "signature": "()const", @@ -10404,7 +10426,7 @@ "cimguiname": "ImGuiTextBuffer_end", "defaults": {}, "funcname": "end", - "location": "imgui:2889", + "location": "imgui:2895", "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", "signature": "()const", @@ -10430,7 +10452,7 @@ "cimguiname": "ImGuiTextBuffer_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:2894", + "location": "imgui:2900", "ov_cimguiname": "ImGuiTextBuffer_reserve", "ret": "void", "signature": "(int)", @@ -10456,7 +10478,7 @@ "cimguiname": "ImGuiTextBuffer_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:2893", + "location": "imgui:2899", "ov_cimguiname": "ImGuiTextBuffer_resize", "ret": "void", "signature": "(int)", @@ -10478,7 +10500,7 @@ "cimguiname": "ImGuiTextBuffer_size", "defaults": {}, "funcname": "size", - "location": "imgui:2890", + "location": "imgui:2896", "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", "signature": "()const", @@ -10500,7 +10522,7 @@ "cimguiname": "ImGuiTextFilter_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:2859", + "location": "imgui:2865", "ov_cimguiname": "ImGuiTextFilter_Build", "ret": "void", "signature": "()", @@ -10522,7 +10544,7 @@ "cimguiname": "ImGuiTextFilter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2860", + "location": "imgui:2866", "ov_cimguiname": "ImGuiTextFilter_Clear", "ret": "void", "signature": "()", @@ -10555,7 +10577,7 @@ "width": "0.0f" }, "funcname": "Draw", - "location": "imgui:2857", + "location": "imgui:2863", "ov_cimguiname": "ImGuiTextFilter_Draw", "ret": "bool", "signature": "(const char*,float)", @@ -10580,7 +10602,7 @@ "default_filter": "\"\"" }, "funcname": "ImGuiTextFilter", - "location": "imgui:2856", + "location": "imgui:2862", "ov_cimguiname": "ImGuiTextFilter_ImGuiTextFilter", "signature": "(const char*)", "stname": "ImGuiTextFilter" @@ -10601,7 +10623,7 @@ "cimguiname": "ImGuiTextFilter_IsActive", "defaults": {}, "funcname": "IsActive", - "location": "imgui:2861", + "location": "imgui:2867", "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", "signature": "()const", @@ -10633,7 +10655,7 @@ "text_end": "NULL" }, "funcname": "PassFilter", - "location": "imgui:2858", + "location": "imgui:2864", "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", "signature": "(const char*,const char*)const", @@ -10653,7 +10675,7 @@ "cimguiname": "ImGuiTextFilter_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2856", + "location": "imgui:2862", "ov_cimguiname": "ImGuiTextFilter_destroy", "ret": "void", "signature": "(ImGuiTextFilter*)", @@ -10809,7 +10831,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2869", + "location": "imgui:2875", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Nil", "signature": "()", "stname": "ImGuiTextRange" @@ -10833,7 +10855,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2870", + "location": "imgui:2876", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Str", "signature": "(const char*,const char*)", "stname": "ImGuiTextRange" @@ -10852,7 +10874,7 @@ "cimguiname": "ImGuiTextRange_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2869", + "location": "imgui:2875", "ov_cimguiname": "ImGuiTextRange_destroy", "ret": "void", "signature": "(ImGuiTextRange*)", @@ -10874,7 +10896,7 @@ "cimguiname": "ImGuiTextRange_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2871", + "location": "imgui:2877", "ov_cimguiname": "ImGuiTextRange_empty", "ret": "bool", "signature": "()const", @@ -10904,7 +10926,7 @@ "cimguiname": "ImGuiTextRange_split", "defaults": {}, "funcname": "split", - "location": "imgui:2872", + "location": "imgui:2878", "ov_cimguiname": "ImGuiTextRange_split", "ret": "void", "signature": "(char,ImVector_ImGuiTextRange*)const", @@ -10926,7 +10948,7 @@ "cimguiname": "ImGuiTypingSelectState_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1833", + "location": "imgui_internal:1834", "ov_cimguiname": "ImGuiTypingSelectState_Clear", "ret": "void", "signature": "()", @@ -10944,7 +10966,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTypingSelectState", - "location": "imgui_internal:1832", + "location": "imgui_internal:1833", "ov_cimguiname": "ImGuiTypingSelectState_ImGuiTypingSelectState", "signature": "()", "stname": "ImGuiTypingSelectState" @@ -10963,7 +10985,7 @@ "cimguiname": "ImGuiTypingSelectState_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1832", + "location": "imgui_internal:1833", "ov_cimguiname": "ImGuiTypingSelectState_destroy", "ret": "void", "signature": "(ImGuiTypingSelectState*)", @@ -10990,7 +11012,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "CalcWorkRectPos", - "location": "imgui_internal:2164", + "location": "imgui_internal:2165", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectPos", "ret": "ImVec2_c", @@ -11022,7 +11044,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "CalcWorkRectSize", - "location": "imgui_internal:2165", + "location": "imgui_internal:2166", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectSize", "ret": "ImVec2_c", @@ -11045,7 +11067,7 @@ "cimguiname": "ImGuiViewportP_ClearRequestFlags", "defaults": {}, "funcname": "ClearRequestFlags", - "location": "imgui_internal:2161", + "location": "imgui_internal:2162", "ov_cimguiname": "ImGuiViewportP_ClearRequestFlags", "ret": "void", "signature": "()", @@ -11068,7 +11090,7 @@ "conv": "ImRect", "defaults": {}, "funcname": "GetBuildWorkRect", - "location": "imgui_internal:2171", + "location": "imgui_internal:2172", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetBuildWorkRect", "ret": "ImRect_c", @@ -11092,7 +11114,7 @@ "conv": "ImRect", "defaults": {}, "funcname": "GetMainRect", - "location": "imgui_internal:2169", + "location": "imgui_internal:2170", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetMainRect", "ret": "ImRect_c", @@ -11116,7 +11138,7 @@ "conv": "ImRect", "defaults": {}, "funcname": "GetWorkRect", - "location": "imgui_internal:2170", + "location": "imgui_internal:2171", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetWorkRect", "ret": "ImRect_c", @@ -11135,7 +11157,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewportP", - "location": "imgui_internal:2159", + "location": "imgui_internal:2160", "ov_cimguiname": "ImGuiViewportP_ImGuiViewportP", "signature": "()", "stname": "ImGuiViewportP" @@ -11156,7 +11178,7 @@ "cimguiname": "ImGuiViewportP_UpdateWorkRect", "defaults": {}, "funcname": "UpdateWorkRect", - "location": "imgui_internal:2166", + "location": "imgui_internal:2167", "ov_cimguiname": "ImGuiViewportP_UpdateWorkRect", "ret": "void", "signature": "()", @@ -11176,7 +11198,7 @@ "cimguiname": "ImGuiViewportP_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2160", + "location": "imgui_internal:2161", "ov_cimguiname": "ImGuiViewportP_destroy", "realdestructor": true, "ret": "void", @@ -11200,7 +11222,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetCenter", - "location": "imgui:4110", + "location": "imgui:4135", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetCenter", "ret": "ImVec2_c", @@ -11208,6 +11230,28 @@ "stname": "ImGuiViewport" } ], + "ImGuiViewport_GetDebugName": [ + { + "args": "(ImGuiViewport* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiViewport*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "call_args_old": "()", + "cimguiname": "ImGuiViewport_GetDebugName", + "defaults": {}, + "funcname": "GetDebugName", + "location": "imgui:4137", + "ov_cimguiname": "ImGuiViewport_GetDebugName", + "ret": "const char*", + "signature": "()const", + "stname": "ImGuiViewport" + } + ], "ImGuiViewport_GetWorkCenter": [ { "args": "(ImGuiViewport* self)", @@ -11224,7 +11268,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetWorkCenter", - "location": "imgui:4111", + "location": "imgui:4136", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetWorkCenter", "ret": "ImVec2_c", @@ -11243,7 +11287,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewport", - "location": "imgui:4106", + "location": "imgui:4131", "ov_cimguiname": "ImGuiViewport_ImGuiViewport", "signature": "()", "stname": "ImGuiViewport" @@ -11262,7 +11306,7 @@ "cimguiname": "ImGuiViewport_destroy", "defaults": {}, "destructor": true, - "location": "imgui:4107", + "location": "imgui:4132", "ov_cimguiname": "ImGuiViewport_destroy", "realdestructor": true, "ret": "void", @@ -11281,7 +11325,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowClass", - "location": "imgui:2807", + "location": "imgui:2813", "ov_cimguiname": "ImGuiWindowClass_ImGuiWindowClass", "signature": "()", "stname": "ImGuiWindowClass" @@ -11300,7 +11344,7 @@ "cimguiname": "ImGuiWindowClass_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2807", + "location": "imgui:2813", "ov_cimguiname": "ImGuiWindowClass_destroy", "ret": "void", "signature": "(ImGuiWindowClass*)", @@ -11322,7 +11366,7 @@ "cimguiname": "ImGuiWindowSettings_GetName", "defaults": {}, "funcname": "GetName", - "location": "imgui_internal:2197", + "location": "imgui_internal:2198", "ov_cimguiname": "ImGuiWindowSettings_GetName", "ret": "char*", "signature": "()", @@ -11340,7 +11384,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowSettings", - "location": "imgui_internal:2196", + "location": "imgui_internal:2197", "ov_cimguiname": "ImGuiWindowSettings_ImGuiWindowSettings", "signature": "()", "stname": "ImGuiWindowSettings" @@ -11359,7 +11403,7 @@ "cimguiname": "ImGuiWindowSettings_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2196", + "location": "imgui_internal:2197", "ov_cimguiname": "ImGuiWindowSettings_destroy", "ret": "void", "signature": "(ImGuiWindowSettings*)", @@ -11391,7 +11435,7 @@ "str_end": "NULL" }, "funcname": "GetID", - "location": "imgui_internal:2989", + "location": "imgui_internal:2999", "ov_cimguiname": "ImGuiWindow_GetID_Str", "ret": "ImGuiID", "signature": "(const char*,const char*)", @@ -11415,7 +11459,7 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2990", + "location": "imgui_internal:3000", "ov_cimguiname": "ImGuiWindow_GetID_Ptr", "ret": "ImGuiID", "signature": "(const void*)", @@ -11439,7 +11483,7 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2991", + "location": "imgui_internal:3001", "ov_cimguiname": "ImGuiWindow_GetID_Int", "ret": "ImGuiID", "signature": "(int)", @@ -11465,7 +11509,7 @@ "cimguiname": "ImGuiWindow_GetIDFromPos", "defaults": {}, "funcname": "GetIDFromPos", - "location": "imgui_internal:2992", + "location": "imgui_internal:3002", "ov_cimguiname": "ImGuiWindow_GetIDFromPos", "ret": "ImGuiID", "signature": "(const ImVec2)", @@ -11491,7 +11535,7 @@ "cimguiname": "ImGuiWindow_GetIDFromRectangle", "defaults": {}, "funcname": "GetIDFromRectangle", - "location": "imgui_internal:2993", + "location": "imgui_internal:3003", "ov_cimguiname": "ImGuiWindow_GetIDFromRectangle", "ret": "ImGuiID", "signature": "(const ImRect)", @@ -11518,7 +11562,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindow", - "location": "imgui_internal:2985", + "location": "imgui_internal:2995", "ov_cimguiname": "ImGuiWindow_ImGuiWindow", "signature": "(ImGuiContext*,const char*)", "stname": "ImGuiWindow" @@ -11540,7 +11584,7 @@ "conv": "ImRect", "defaults": {}, "funcname": "MenuBarRect", - "location": "imgui_internal:2998", + "location": "imgui_internal:3008", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_MenuBarRect", "ret": "ImRect_c", @@ -11564,7 +11608,7 @@ "conv": "ImRect", "defaults": {}, "funcname": "Rect", - "location": "imgui_internal:2996", + "location": "imgui_internal:3006", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_Rect", "ret": "ImRect_c", @@ -11588,7 +11632,7 @@ "conv": "ImRect", "defaults": {}, "funcname": "TitleBarRect", - "location": "imgui_internal:2997", + "location": "imgui_internal:3007", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_TitleBarRect", "ret": "ImRect_c", @@ -11609,7 +11653,7 @@ "cimguiname": "ImGuiWindow_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2987", + "location": "imgui_internal:2997", "ov_cimguiname": "ImGuiWindow_destroy", "realdestructor": true, "ret": "void", @@ -13371,7 +13415,7 @@ "cimguiname": "ImTextureData_Create", "defaults": {}, "funcname": "Create", - "location": "imgui:3642", + "location": "imgui:3665", "ov_cimguiname": "ImTextureData_Create", "ret": "void", "signature": "(ImTextureFormat,int,int)", @@ -13393,7 +13437,7 @@ "cimguiname": "ImTextureData_DestroyPixels", "defaults": {}, "funcname": "DestroyPixels", - "location": "imgui:3643", + "location": "imgui:3666", "ov_cimguiname": "ImTextureData_DestroyPixels", "ret": "void", "signature": "()", @@ -13415,7 +13459,7 @@ "cimguiname": "ImTextureData_GetPitch", "defaults": {}, "funcname": "GetPitch", - "location": "imgui:3647", + "location": "imgui:3670", "ov_cimguiname": "ImTextureData_GetPitch", "ret": "int", "signature": "()const", @@ -13437,7 +13481,7 @@ "cimguiname": "ImTextureData_GetPixels", "defaults": {}, "funcname": "GetPixels", - "location": "imgui:3644", + "location": "imgui:3667", "ov_cimguiname": "ImTextureData_GetPixels", "ret": "void*", "signature": "()", @@ -13467,7 +13511,7 @@ "cimguiname": "ImTextureData_GetPixelsAt", "defaults": {}, "funcname": "GetPixelsAt", - "location": "imgui:3645", + "location": "imgui:3668", "ov_cimguiname": "ImTextureData_GetPixelsAt", "ret": "void*", "signature": "(int,int)", @@ -13489,7 +13533,7 @@ "cimguiname": "ImTextureData_GetSizeInBytes", "defaults": {}, "funcname": "GetSizeInBytes", - "location": "imgui:3646", + "location": "imgui:3669", "ov_cimguiname": "ImTextureData_GetSizeInBytes", "ret": "int", "signature": "()const", @@ -13511,7 +13555,7 @@ "cimguiname": "ImTextureData_GetTexID", "defaults": {}, "funcname": "GetTexID", - "location": "imgui:3649", + "location": "imgui:3672", "ov_cimguiname": "ImTextureData_GetTexID", "ret": "ImTextureID", "signature": "()const", @@ -13534,7 +13578,7 @@ "conv": "ImTextureRef", "defaults": {}, "funcname": "GetTexRef", - "location": "imgui:3648", + "location": "imgui:3671", "nonUDT": 1, "ov_cimguiname": "ImTextureData_GetTexRef", "ret": "ImTextureRef_c", @@ -13553,7 +13597,7 @@ "constructor": true, "defaults": {}, "funcname": "ImTextureData", - "location": "imgui:3640", + "location": "imgui:3663", "ov_cimguiname": "ImTextureData_ImTextureData", "signature": "()", "stname": "ImTextureData" @@ -13578,7 +13622,7 @@ "cimguiname": "ImTextureData_SetStatus", "defaults": {}, "funcname": "SetStatus", - "location": "imgui:3655", + "location": "imgui:3678", "ov_cimguiname": "ImTextureData_SetStatus", "ret": "void", "signature": "(ImTextureStatus)", @@ -13604,7 +13648,7 @@ "cimguiname": "ImTextureData_SetTexID", "defaults": {}, "funcname": "SetTexID", - "location": "imgui:3654", + "location": "imgui:3677", "ov_cimguiname": "ImTextureData_SetTexID", "ret": "void", "signature": "(ImTextureID)", @@ -13624,7 +13668,7 @@ "cimguiname": "ImTextureData_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3641", + "location": "imgui:3664", "ov_cimguiname": "ImTextureData_destroy", "realdestructor": true, "ret": "void", @@ -13647,7 +13691,7 @@ "cimguiname": "ImTextureRef_GetTexID", "defaults": {}, "funcname": "GetTexID", - "location": "imgui:378", + "location": "imgui:380", "ov_cimguiname": "ImTextureRef_GetTexID", "ret": "ImTextureID", "signature": "()const", @@ -13665,7 +13709,7 @@ "constructor": true, "defaults": {}, "funcname": "ImTextureRef", - "location": "imgui:372", + "location": "imgui:374", "ov_cimguiname": "ImTextureRef_ImTextureRef_Nil", "signature": "()", "stname": "ImTextureRef" @@ -13685,7 +13729,7 @@ "constructor": true, "defaults": {}, "funcname": "ImTextureRef", - "location": "imgui:373", + "location": "imgui:375", "ov_cimguiname": "ImTextureRef_ImTextureRef_TextureID", "signature": "(ImTextureID)", "stname": "ImTextureRef" @@ -13704,7 +13748,7 @@ "cimguiname": "ImTextureRef_destroy", "defaults": {}, "destructor": true, - "location": "imgui:372", + "location": "imgui:374", "ov_cimguiname": "ImTextureRef_destroy", "ret": "void", "signature": "(ImTextureRef*)", @@ -14051,7 +14095,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:2301", + "location": "imgui:2306", "ov_cimguiname": "ImVector_ImVector_Nil", "signature": "()", "stname": "ImVector", @@ -14072,7 +14116,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:2302", + "location": "imgui:2307", "ov_cimguiname": "ImVector_ImVector_Vector_T_", "signature": "(const ImVector_T )", "stname": "ImVector", @@ -14098,7 +14142,7 @@ "cimguiname": "ImVector__grow_capacity", "defaults": {}, "funcname": "_grow_capacity", - "location": "imgui:2328", + "location": "imgui:2333", "ov_cimguiname": "ImVector__grow_capacity", "ret": "int", "signature": "(int)const", @@ -14121,7 +14165,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:2324", + "location": "imgui:2329", "ov_cimguiname": "ImVector_back_Nil", "ret": "T*", "retref": "&", @@ -14143,7 +14187,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:2325", + "location": "imgui:2330", "ov_cimguiname": "ImVector_back__const", "ret": "const T*", "retref": "&", @@ -14167,7 +14211,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:2318", + "location": "imgui:2323", "ov_cimguiname": "ImVector_begin_Nil", "ret": "T*", "signature": "()", @@ -14188,7 +14232,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:2319", + "location": "imgui:2324", "ov_cimguiname": "ImVector_begin__const", "ret": "const T*", "signature": "()const", @@ -14211,7 +14255,7 @@ "cimguiname": "ImVector_capacity", "defaults": {}, "funcname": "capacity", - "location": "imgui:2314", + "location": "imgui:2319", "ov_cimguiname": "ImVector_capacity", "ret": "int", "signature": "()const", @@ -14234,7 +14278,7 @@ "cimguiname": "ImVector_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:2306", + "location": "imgui:2311", "ov_cimguiname": "ImVector_clear", "ret": "void", "signature": "()", @@ -14257,7 +14301,7 @@ "cimguiname": "ImVector_clear_delete", "defaults": {}, "funcname": "clear_delete", - "location": "imgui:2307", + "location": "imgui:2312", "ov_cimguiname": "ImVector_clear_delete", "ret": "void", "signature": "()", @@ -14280,7 +14324,7 @@ "cimguiname": "ImVector_clear_destruct", "defaults": {}, "funcname": "clear_destruct", - "location": "imgui:2308", + "location": "imgui:2313", "ov_cimguiname": "ImVector_clear_destruct", "ret": "void", "signature": "()", @@ -14307,7 +14351,7 @@ "cimguiname": "ImVector_contains", "defaults": {}, "funcname": "contains", - "location": "imgui:2343", + "location": "imgui:2348", "ov_cimguiname": "ImVector_contains", "ret": "bool", "signature": "(const T)const", @@ -14328,7 +14372,7 @@ "cimguiname": "ImVector_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2304", + "location": "imgui:2309", "ov_cimguiname": "ImVector_destroy", "realdestructor": true, "ret": "void", @@ -14352,7 +14396,7 @@ "cimguiname": "ImVector_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2310", + "location": "imgui:2315", "ov_cimguiname": "ImVector_empty", "ret": "bool", "signature": "()const", @@ -14375,7 +14419,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:2320", + "location": "imgui:2325", "ov_cimguiname": "ImVector_end_Nil", "ret": "T*", "signature": "()", @@ -14396,7 +14440,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:2321", + "location": "imgui:2326", "ov_cimguiname": "ImVector_end__const", "ret": "const T*", "signature": "()const", @@ -14423,7 +14467,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:2339", + "location": "imgui:2344", "ov_cimguiname": "ImVector_erase_Nil", "ret": "T*", "signature": "(const T*)", @@ -14452,7 +14496,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:2340", + "location": "imgui:2345", "ov_cimguiname": "ImVector_erase_TPtr", "ret": "T*", "signature": "(const T*,const T*)", @@ -14479,7 +14523,7 @@ "cimguiname": "ImVector_erase_unsorted", "defaults": {}, "funcname": "erase_unsorted", - "location": "imgui:2341", + "location": "imgui:2346", "ov_cimguiname": "ImVector_erase_unsorted", "ret": "T*", "signature": "(const T*)", @@ -14506,7 +14550,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:2344", + "location": "imgui:2349", "ov_cimguiname": "ImVector_find_Nil", "ret": "T*", "signature": "(const T)", @@ -14531,7 +14575,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:2345", + "location": "imgui:2350", "ov_cimguiname": "ImVector_find__const", "ret": "const T*", "signature": "(const T)const", @@ -14558,7 +14602,7 @@ "cimguiname": "ImVector_find_erase", "defaults": {}, "funcname": "find_erase", - "location": "imgui:2347", + "location": "imgui:2352", "ov_cimguiname": "ImVector_find_erase", "ret": "bool", "signature": "(const T)", @@ -14585,7 +14629,7 @@ "cimguiname": "ImVector_find_erase_unsorted", "defaults": {}, "funcname": "find_erase_unsorted", - "location": "imgui:2348", + "location": "imgui:2353", "ov_cimguiname": "ImVector_find_erase_unsorted", "ret": "bool", "signature": "(const T)", @@ -14612,7 +14656,7 @@ "cimguiname": "ImVector_find_index", "defaults": {}, "funcname": "find_index", - "location": "imgui:2346", + "location": "imgui:2351", "ov_cimguiname": "ImVector_find_index", "ret": "int", "signature": "(const T)const", @@ -14635,7 +14679,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:2322", + "location": "imgui:2327", "ov_cimguiname": "ImVector_front_Nil", "ret": "T*", "retref": "&", @@ -14657,7 +14701,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:2323", + "location": "imgui:2328", "ov_cimguiname": "ImVector_front__const", "ret": "const T*", "retref": "&", @@ -14685,7 +14729,7 @@ "cimguiname": "ImVector_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui:2349", + "location": "imgui:2354", "ov_cimguiname": "ImVector_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -14716,7 +14760,7 @@ "cimguiname": "ImVector_insert", "defaults": {}, "funcname": "insert", - "location": "imgui:2342", + "location": "imgui:2347", "ov_cimguiname": "ImVector_insert", "ret": "T*", "signature": "(const T*,const T)", @@ -14739,7 +14783,7 @@ "cimguiname": "ImVector_max_size", "defaults": {}, "funcname": "max_size", - "location": "imgui:2313", + "location": "imgui:2318", "ov_cimguiname": "ImVector_max_size", "ret": "int", "signature": "()const", @@ -14762,7 +14806,7 @@ "cimguiname": "ImVector_pop_back", "defaults": {}, "funcname": "pop_back", - "location": "imgui:2337", + "location": "imgui:2342", "ov_cimguiname": "ImVector_pop_back", "ret": "void", "signature": "()", @@ -14789,7 +14833,7 @@ "cimguiname": "ImVector_push_back", "defaults": {}, "funcname": "push_back", - "location": "imgui:2336", + "location": "imgui:2341", "ov_cimguiname": "ImVector_push_back", "ret": "void", "signature": "(const T)", @@ -14816,7 +14860,7 @@ "cimguiname": "ImVector_push_front", "defaults": {}, "funcname": "push_front", - "location": "imgui:2338", + "location": "imgui:2343", "ov_cimguiname": "ImVector_push_front", "ret": "void", "signature": "(const T)", @@ -14843,7 +14887,7 @@ "cimguiname": "ImVector_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:2332", + "location": "imgui:2337", "ov_cimguiname": "ImVector_reserve", "ret": "void", "signature": "(int)", @@ -14870,7 +14914,7 @@ "cimguiname": "ImVector_reserve_discard", "defaults": {}, "funcname": "reserve_discard", - "location": "imgui:2333", + "location": "imgui:2338", "ov_cimguiname": "ImVector_reserve_discard", "ret": "void", "signature": "(int)", @@ -14897,7 +14941,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:2329", + "location": "imgui:2334", "ov_cimguiname": "ImVector_resize_Nil", "ret": "void", "signature": "(int)", @@ -14926,7 +14970,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:2330", + "location": "imgui:2335", "ov_cimguiname": "ImVector_resize_T", "ret": "void", "signature": "(int,const T)", @@ -14953,7 +14997,7 @@ "cimguiname": "ImVector_shrink", "defaults": {}, "funcname": "shrink", - "location": "imgui:2331", + "location": "imgui:2336", "ov_cimguiname": "ImVector_shrink", "ret": "void", "signature": "(int)", @@ -14976,7 +15020,7 @@ "cimguiname": "ImVector_size", "defaults": {}, "funcname": "size", - "location": "imgui:2311", + "location": "imgui:2316", "ov_cimguiname": "ImVector_size", "ret": "int", "signature": "()const", @@ -14999,7 +15043,7 @@ "cimguiname": "ImVector_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui:2312", + "location": "imgui:2317", "ov_cimguiname": "ImVector_size_in_bytes", "ret": "int", "signature": "()const", @@ -15027,7 +15071,7 @@ "cimguiname": "ImVector_swap", "defaults": {}, "funcname": "swap", - "location": "imgui:2326", + "location": "imgui:2331", "ov_cimguiname": "ImVector_swap", "ret": "void", "signature": "(ImVector_T *)", @@ -15056,7 +15100,7 @@ "flags": "0" }, "funcname": "AcceptDragDropPayload", - "location": "imgui:1012", + "location": "imgui:1015", "namespace": "ImGui", "ov_cimguiname": "igAcceptDragDropPayload", "ret": "const ImGuiPayload*", @@ -15079,7 +15123,7 @@ "cimguiname": "igActivateItemByID", "defaults": {}, "funcname": "ActivateItemByID", - "location": "imgui_internal:3603", + "location": "imgui_internal:3616", "namespace": "ImGui", "ov_cimguiname": "igActivateItemByID", "ret": "void", @@ -15106,7 +15150,7 @@ "cimguiname": "igAddContextHook", "defaults": {}, "funcname": "AddContextHook", - "location": "imgui_internal:3452", + "location": "imgui_internal:3463", "namespace": "ImGui", "ov_cimguiname": "igAddContextHook", "ret": "ImGuiID", @@ -15137,7 +15181,7 @@ "cimguiname": "igAddDrawListToDrawDataEx", "defaults": {}, "funcname": "AddDrawListToDrawDataEx", - "location": "imgui_internal:3444", + "location": "imgui_internal:3455", "namespace": "ImGui", "ov_cimguiname": "igAddDrawListToDrawDataEx", "ret": "void", @@ -15160,7 +15204,7 @@ "cimguiname": "igAddSettingsHandler", "defaults": {}, "funcname": "AddSettingsHandler", - "location": "imgui_internal:3479", + "location": "imgui_internal:3490", "namespace": "ImGui", "ov_cimguiname": "igAddSettingsHandler", "ret": "void", @@ -15178,7 +15222,7 @@ "cimguiname": "igAlignTextToFramePadding", "defaults": {}, "funcname": "AlignTextToFramePadding", - "location": "imgui:594", + "location": "imgui:596", "namespace": "ImGui", "ov_cimguiname": "igAlignTextToFramePadding", "ret": "void", @@ -15205,7 +15249,7 @@ "cimguiname": "igArrowButton", "defaults": {}, "funcname": "ArrowButton", - "location": "imgui:643", + "location": "imgui:645", "namespace": "ImGui", "ov_cimguiname": "igArrowButton", "ret": "bool", @@ -15242,7 +15286,7 @@ "flags": "0" }, "funcname": "ArrowButtonEx", - "location": "imgui_internal:3920", + "location": "imgui_internal:3934", "namespace": "ImGui", "ov_cimguiname": "igArrowButtonEx", "ret": "bool", @@ -15276,7 +15320,7 @@ "p_open": "NULL" }, "funcname": "Begin", - "location": "imgui:440", + "location": "imgui:442", "namespace": "ImGui", "ov_cimguiname": "igBegin", "ret": "bool", @@ -15311,7 +15355,7 @@ "cimguiname": "igBeginBoxSelect", "defaults": {}, "funcname": "BeginBoxSelect", - "location": "imgui_internal:3775", + "location": "imgui_internal:3788", "namespace": "ImGui", "ov_cimguiname": "igBeginBoxSelect", "ret": "bool", @@ -15350,7 +15394,7 @@ "window_flags": "0" }, "funcname": "BeginChild", - "location": "imgui:461", + "location": "imgui:463", "namespace": "ImGui", "ov_cimguiname": "igBeginChild_Str", "ret": "bool", @@ -15387,7 +15431,7 @@ "window_flags": "0" }, "funcname": "BeginChild", - "location": "imgui:462", + "location": "imgui:464", "namespace": "ImGui", "ov_cimguiname": "igBeginChild_ID", "ret": "bool", @@ -15426,7 +15470,7 @@ "cimguiname": "igBeginChildEx", "defaults": {}, "funcname": "BeginChildEx", - "location": "imgui_internal:3548", + "location": "imgui_internal:3559", "namespace": "ImGui", "ov_cimguiname": "igBeginChildEx", "ret": "bool", @@ -15459,7 +15503,7 @@ "flags": "0" }, "funcname": "BeginColumns", - "location": "imgui_internal:3788", + "location": "imgui_internal:3801", "namespace": "ImGui", "ov_cimguiname": "igBeginColumns", "ret": "void", @@ -15492,7 +15536,7 @@ "flags": "0" }, "funcname": "BeginCombo", - "location": "imgui:667", + "location": "imgui:669", "namespace": "ImGui", "ov_cimguiname": "igBeginCombo", "ret": "bool", @@ -15523,7 +15567,7 @@ "cimguiname": "igBeginComboPopup", "defaults": {}, "funcname": "BeginComboPopup", - "location": "imgui_internal:3576", + "location": "imgui_internal:3589", "namespace": "ImGui", "ov_cimguiname": "igBeginComboPopup", "ret": "bool", @@ -15541,7 +15585,7 @@ "cimguiname": "igBeginComboPreview", "defaults": {}, "funcname": "BeginComboPreview", - "location": "imgui_internal:3577", + "location": "imgui_internal:3590", "namespace": "ImGui", "ov_cimguiname": "igBeginComboPreview", "ret": "bool", @@ -15566,7 +15610,7 @@ "disabled": "true" }, "funcname": "BeginDisabled", - "location": "imgui:1021", + "location": "imgui:1024", "namespace": "ImGui", "ov_cimguiname": "igBeginDisabled", "ret": "void", @@ -15584,7 +15628,7 @@ "cimguiname": "igBeginDisabledOverrideReenable", "defaults": {}, "funcname": "BeginDisabledOverrideReenable", - "location": "imgui_internal:3538", + "location": "imgui_internal:3549", "namespace": "ImGui", "ov_cimguiname": "igBeginDisabledOverrideReenable", "ret": "void", @@ -15607,7 +15651,7 @@ "cimguiname": "igBeginDockableDragDropSource", "defaults": {}, "funcname": "BeginDockableDragDropSource", - "location": "imgui_internal:3717", + "location": "imgui_internal:3730", "namespace": "ImGui", "ov_cimguiname": "igBeginDockableDragDropSource", "ret": "void", @@ -15630,7 +15674,7 @@ "cimguiname": "igBeginDockableDragDropTarget", "defaults": {}, "funcname": "BeginDockableDragDropTarget", - "location": "imgui_internal:3718", + "location": "imgui_internal:3731", "namespace": "ImGui", "ov_cimguiname": "igBeginDockableDragDropTarget", "ret": "void", @@ -15657,7 +15701,7 @@ "cimguiname": "igBeginDocked", "defaults": {}, "funcname": "BeginDocked", - "location": "imgui_internal:3716", + "location": "imgui_internal:3729", "namespace": "ImGui", "ov_cimguiname": "igBeginDocked", "ret": "void", @@ -15682,7 +15726,7 @@ "flags": "0" }, "funcname": "BeginDragDropSource", - "location": "imgui:1008", + "location": "imgui:1011", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropSource", "ret": "bool", @@ -15700,7 +15744,7 @@ "cimguiname": "igBeginDragDropTarget", "defaults": {}, "funcname": "BeginDragDropTarget", - "location": "imgui:1011", + "location": "imgui:1014", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTarget", "ret": "bool", @@ -15727,7 +15771,7 @@ "cimguiname": "igBeginDragDropTargetCustom", "defaults": {}, "funcname": "BeginDragDropTargetCustom", - "location": "imgui_internal:3759", + "location": "imgui_internal:3772", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTargetCustom", "ret": "bool", @@ -15756,7 +15800,7 @@ "p_bb": "NULL" }, "funcname": "BeginDragDropTargetViewport", - "location": "imgui_internal:3760", + "location": "imgui_internal:3773", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTargetViewport", "ret": "bool", @@ -15774,7 +15818,7 @@ "cimguiname": "igBeginErrorTooltip", "defaults": {}, "funcname": "BeginErrorTooltip", - "location": "imgui_internal:4007", + "location": "imgui_internal:4021", "namespace": "ImGui", "ov_cimguiname": "igBeginErrorTooltip", "ret": "bool", @@ -15792,7 +15836,7 @@ "cimguiname": "igBeginGroup", "defaults": {}, "funcname": "BeginGroup", - "location": "imgui:592", + "location": "imgui:594", "namespace": "ImGui", "ov_cimguiname": "igBeginGroup", "ret": "void", @@ -15810,7 +15854,7 @@ "cimguiname": "igBeginItemTooltip", "defaults": {}, "funcname": "BeginItemTooltip", - "location": "imgui:839", + "location": "imgui:842", "namespace": "ImGui", "ov_cimguiname": "igBeginItemTooltip", "ret": "bool", @@ -15839,7 +15883,7 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginListBox", - "location": "imgui:793", + "location": "imgui:796", "namespace": "ImGui", "ov_cimguiname": "igBeginListBox", "ret": "bool", @@ -15857,7 +15901,7 @@ "cimguiname": "igBeginMainMenuBar", "defaults": {}, "funcname": "BeginMainMenuBar", - "location": "imgui:819", + "location": "imgui:822", "namespace": "ImGui", "ov_cimguiname": "igBeginMainMenuBar", "ret": "bool", @@ -15886,7 +15930,7 @@ "enabled": "true" }, "funcname": "BeginMenu", - "location": "imgui:821", + "location": "imgui:824", "namespace": "ImGui", "ov_cimguiname": "igBeginMenu", "ret": "bool", @@ -15904,7 +15948,7 @@ "cimguiname": "igBeginMenuBar", "defaults": {}, "funcname": "BeginMenuBar", - "location": "imgui:817", + "location": "imgui:820", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuBar", "ret": "bool", @@ -15937,7 +15981,7 @@ "enabled": "true" }, "funcname": "BeginMenuEx", - "location": "imgui_internal:3572", + "location": "imgui_internal:3585", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuEx", "ret": "bool", @@ -15971,7 +16015,7 @@ "selection_size": "-1" }, "funcname": "BeginMultiSelect", - "location": "imgui:781", + "location": "imgui:784", "namespace": "ImGui", "ov_cimguiname": "igBeginMultiSelect", "ret": "ImGuiMultiSelectIO*", @@ -16000,7 +16044,7 @@ "flags": "0" }, "funcname": "BeginPopup", - "location": "imgui:853", + "location": "imgui:856", "namespace": "ImGui", "ov_cimguiname": "igBeginPopup", "ret": "bool", @@ -16030,7 +16074,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextItem", - "location": "imgui:878", + "location": "imgui:881", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextItem", "ret": "bool", @@ -16060,7 +16104,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextVoid", - "location": "imgui:880", + "location": "imgui:883", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextVoid", "ret": "bool", @@ -16090,7 +16134,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextWindow", - "location": "imgui:879", + "location": "imgui:882", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextWindow", "ret": "bool", @@ -16117,7 +16161,7 @@ "cimguiname": "igBeginPopupEx", "defaults": {}, "funcname": "BeginPopupEx", - "location": "imgui_internal:3551", + "location": "imgui_internal:3562", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupEx", "ret": "bool", @@ -16148,7 +16192,7 @@ "cimguiname": "igBeginPopupMenuEx", "defaults": {}, "funcname": "BeginPopupMenuEx", - "location": "imgui_internal:3552", + "location": "imgui_internal:3563", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupMenuEx", "ret": "bool", @@ -16182,7 +16226,7 @@ "p_open": "NULL" }, "funcname": "BeginPopupModal", - "location": "imgui:854", + "location": "imgui:857", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupModal", "ret": "bool", @@ -16211,7 +16255,7 @@ "flags": "0" }, "funcname": "BeginTabBar", - "location": "imgui:958", + "location": "imgui:961", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBar", "ret": "bool", @@ -16242,7 +16286,7 @@ "cimguiname": "igBeginTabBarEx", "defaults": {}, "funcname": "BeginTabBarEx", - "location": "imgui_internal:3862", + "location": "imgui_internal:3876", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBarEx", "ret": "bool", @@ -16276,7 +16320,7 @@ "p_open": "NULL" }, "funcname": "BeginTabItem", - "location": "imgui:960", + "location": "imgui:963", "namespace": "ImGui", "ov_cimguiname": "igBeginTabItem", "ret": "bool", @@ -16319,7 +16363,7 @@ "outer_size": "ImVec2(0.0f,0.0f)" }, "funcname": "BeginTable", - "location": "imgui:909", + "location": "imgui:912", "namespace": "ImGui", "ov_cimguiname": "igBeginTable", "ret": "bool", @@ -16366,7 +16410,7 @@ "outer_size": "ImVec2(0,0)" }, "funcname": "BeginTableEx", - "location": "imgui_internal:3814", + "location": "imgui_internal:3827", "namespace": "ImGui", "ov_cimguiname": "igBeginTableEx", "ret": "bool", @@ -16384,7 +16428,7 @@ "cimguiname": "igBeginTooltip", "defaults": {}, "funcname": "BeginTooltip", - "location": "imgui:830", + "location": "imgui:833", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltip", "ret": "bool", @@ -16411,7 +16455,7 @@ "cimguiname": "igBeginTooltipEx", "defaults": {}, "funcname": "BeginTooltipEx", - "location": "imgui_internal:3567", + "location": "imgui_internal:3580", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltipEx", "ret": "bool", @@ -16429,7 +16473,7 @@ "cimguiname": "igBeginTooltipHidden", "defaults": {}, "funcname": "BeginTooltipHidden", - "location": "imgui_internal:3568", + "location": "imgui_internal:3581", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltipHidden", "ret": "bool", @@ -16468,7 +16512,7 @@ "cimguiname": "igBeginViewportSideBar", "defaults": {}, "funcname": "BeginViewportSideBar", - "location": "imgui_internal:3571", + "location": "imgui_internal:3584", "namespace": "ImGui", "ov_cimguiname": "igBeginViewportSideBar", "ret": "bool", @@ -16491,7 +16535,7 @@ "cimguiname": "igBringWindowToDisplayBack", "defaults": {}, "funcname": "BringWindowToDisplayBack", - "location": "imgui_internal:3422", + "location": "imgui_internal:3433", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBack", "ret": "void", @@ -16518,7 +16562,7 @@ "cimguiname": "igBringWindowToDisplayBehind", "defaults": {}, "funcname": "BringWindowToDisplayBehind", - "location": "imgui_internal:3423", + "location": "imgui_internal:3434", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBehind", "ret": "void", @@ -16541,7 +16585,7 @@ "cimguiname": "igBringWindowToDisplayFront", "defaults": {}, "funcname": "BringWindowToDisplayFront", - "location": "imgui_internal:3421", + "location": "imgui_internal:3432", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayFront", "ret": "void", @@ -16564,7 +16608,7 @@ "cimguiname": "igBringWindowToFocusFront", "defaults": {}, "funcname": "BringWindowToFocusFront", - "location": "imgui_internal:3420", + "location": "imgui_internal:3431", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToFocusFront", "ret": "void", @@ -16582,7 +16626,7 @@ "cimguiname": "igBullet", "defaults": {}, "funcname": "Bullet", - "location": "imgui:650", + "location": "imgui:652", "namespace": "ImGui", "ov_cimguiname": "igBullet", "ret": "void", @@ -16610,7 +16654,7 @@ "defaults": {}, "funcname": "BulletText", "isvararg": "...)", - "location": "imgui:633", + "location": "imgui:635", "namespace": "ImGui", "ov_cimguiname": "igBulletText", "ret": "void", @@ -16637,7 +16681,7 @@ "cimguiname": "igBulletTextV", "defaults": {}, "funcname": "BulletTextV", - "location": "imgui:634", + "location": "imgui:636", "namespace": "ImGui", "ov_cimguiname": "igBulletTextV", "ret": "void", @@ -16666,7 +16710,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Button", - "location": "imgui:640", + "location": "imgui:642", "namespace": "ImGui", "ov_cimguiname": "igButton", "ret": "bool", @@ -16707,7 +16751,7 @@ "flags": "0" }, "funcname": "ButtonBehavior", - "location": "imgui_internal:3938", + "location": "imgui_internal:3953", "namespace": "ImGui", "ov_cimguiname": "igButtonBehavior", "ret": "bool", @@ -16741,7 +16785,7 @@ "size_arg": "ImVec2(0,0)" }, "funcname": "ButtonEx", - "location": "imgui_internal:3919", + "location": "imgui_internal:3933", "namespace": "ImGui", "ov_cimguiname": "igButtonEx", "ret": "bool", @@ -16780,7 +16824,7 @@ "cimguiname": "igCalcClipRectVisibleItemsY", "defaults": {}, "funcname": "CalcClipRectVisibleItemsY", - "location": "imgui_internal:3534", + "location": "imgui_internal:3545", "namespace": "ImGui", "ov_cimguiname": "igCalcClipRectVisibleItemsY", "ret": "void", @@ -16812,7 +16856,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "CalcItemSize", - "location": "imgui_internal:3530", + "location": "imgui_internal:3541", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcItemSize", @@ -16831,7 +16875,7 @@ "cimguiname": "igCalcItemWidth", "defaults": {}, "funcname": "CalcItemWidth", - "location": "imgui:551", + "location": "imgui:553", "namespace": "ImGui", "ov_cimguiname": "igCalcItemWidth", "ret": "float", @@ -16862,7 +16906,7 @@ "cimguiname": "igCalcRoundingFlagsForRectInRect", "defaults": {}, "funcname": "CalcRoundingFlagsForRectInRect", - "location": "imgui_internal:3911", + "location": "imgui_internal:3925", "namespace": "ImGui", "ov_cimguiname": "igCalcRoundingFlagsForRectInRect", "ret": "ImDrawFlags", @@ -16902,7 +16946,7 @@ "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", - "location": "imgui:1082", + "location": "imgui:1085", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcTextSize", @@ -16938,7 +16982,7 @@ "cimguiname": "igCalcTypematicRepeatAmount", "defaults": {}, "funcname": "CalcTypematicRepeatAmount", - "location": "imgui_internal:3632", + "location": "imgui_internal:3645", "namespace": "ImGui", "ov_cimguiname": "igCalcTypematicRepeatAmount", "ret": "int", @@ -16962,7 +17006,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "CalcWindowNextAutoFitSize", - "location": "imgui_internal:3400", + "location": "imgui_internal:3411", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcWindowNextAutoFitSize", @@ -16990,7 +17034,7 @@ "cimguiname": "igCalcWrapWidthForPos", "defaults": {}, "funcname": "CalcWrapWidthForPos", - "location": "imgui_internal:3531", + "location": "imgui_internal:3542", "namespace": "ImGui", "ov_cimguiname": "igCalcWrapWidthForPos", "ret": "float", @@ -17017,7 +17061,7 @@ "cimguiname": "igCallContextHooks", "defaults": {}, "funcname": "CallContextHooks", - "location": "imgui_internal:3454", + "location": "imgui_internal:3465", "namespace": "ImGui", "ov_cimguiname": "igCallContextHooks", "ret": "void", @@ -17044,7 +17088,7 @@ "cimguiname": "igCheckbox", "defaults": {}, "funcname": "Checkbox", - "location": "imgui:644", + "location": "imgui:646", "namespace": "ImGui", "ov_cimguiname": "igCheckbox", "ret": "bool", @@ -17075,7 +17119,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui:645", + "location": "imgui:647", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_IntPtr", "ret": "bool", @@ -17104,7 +17148,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui:646", + "location": "imgui:648", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_UintPtr", "ret": "bool", @@ -17133,7 +17177,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:3924", + "location": "imgui_internal:3938", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_S64Ptr", "ret": "bool", @@ -17162,7 +17206,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:3925", + "location": "imgui_internal:3939", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_U64Ptr", "ret": "bool", @@ -17180,7 +17224,7 @@ "cimguiname": "igClearActiveID", "defaults": {}, "funcname": "ClearActiveID", - "location": "imgui_internal:3513", + "location": "imgui_internal:3524", "namespace": "ImGui", "ov_cimguiname": "igClearActiveID", "ret": "void", @@ -17198,7 +17242,7 @@ "cimguiname": "igClearDragDrop", "defaults": {}, "funcname": "ClearDragDrop", - "location": "imgui_internal:3761", + "location": "imgui_internal:3774", "namespace": "ImGui", "ov_cimguiname": "igClearDragDrop", "ret": "void", @@ -17216,7 +17260,7 @@ "cimguiname": "igClearIniSettings", "defaults": {}, "funcname": "ClearIniSettings", - "location": "imgui_internal:3478", + "location": "imgui_internal:3489", "namespace": "ImGui", "ov_cimguiname": "igClearIniSettings", "ret": "void", @@ -17239,7 +17283,7 @@ "cimguiname": "igClearWindowSettings", "defaults": {}, "funcname": "ClearWindowSettings", - "location": "imgui_internal:3487", + "location": "imgui_internal:3498", "namespace": "ImGui", "ov_cimguiname": "igClearWindowSettings", "ret": "void", @@ -17266,7 +17310,7 @@ "cimguiname": "igCloseButton", "defaults": {}, "funcname": "CloseButton", - "location": "imgui_internal:3928", + "location": "imgui_internal:3942", "namespace": "ImGui", "ov_cimguiname": "igCloseButton", "ret": "bool", @@ -17284,7 +17328,7 @@ "cimguiname": "igCloseCurrentPopup", "defaults": {}, "funcname": "CloseCurrentPopup", - "location": "imgui:867", + "location": "imgui:870", "namespace": "ImGui", "ov_cimguiname": "igCloseCurrentPopup", "ret": "void", @@ -17311,7 +17355,7 @@ "cimguiname": "igClosePopupToLevel", "defaults": {}, "funcname": "ClosePopupToLevel", - "location": "imgui_internal:3554", + "location": "imgui_internal:3565", "namespace": "ImGui", "ov_cimguiname": "igClosePopupToLevel", "ret": "void", @@ -17329,7 +17373,7 @@ "cimguiname": "igClosePopupsExceptModals", "defaults": {}, "funcname": "ClosePopupsExceptModals", - "location": "imgui_internal:3556", + "location": "imgui_internal:3567", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsExceptModals", "ret": "void", @@ -17356,7 +17400,7 @@ "cimguiname": "igClosePopupsOverWindow", "defaults": {}, "funcname": "ClosePopupsOverWindow", - "location": "imgui_internal:3555", + "location": "imgui_internal:3566", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsOverWindow", "ret": "void", @@ -17387,7 +17431,7 @@ "cimguiname": "igCollapseButton", "defaults": {}, "funcname": "CollapseButton", - "location": "imgui_internal:3929", + "location": "imgui_internal:3943", "namespace": "ImGui", "ov_cimguiname": "igCollapseButton", "ret": "bool", @@ -17416,7 +17460,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:763", + "location": "imgui:765", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_TreeNodeFlags", "ret": "bool", @@ -17447,7 +17491,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:764", + "location": "imgui:766", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_BoolPtr", "ret": "bool", @@ -17485,7 +17529,7 @@ "size": "ImVec2(0,0)" }, "funcname": "ColorButton", - "location": "imgui:744", + "location": "imgui:746", "namespace": "ImGui", "ov_cimguiname": "igColorButton", "ret": "bool", @@ -17508,7 +17552,7 @@ "cimguiname": "igColorConvertFloat4ToU32", "defaults": {}, "funcname": "ColorConvertFloat4ToU32", - "location": "imgui:1086", + "location": "imgui:1089", "namespace": "ImGui", "ov_cimguiname": "igColorConvertFloat4ToU32", "ret": "ImU32", @@ -17554,7 +17598,7 @@ "cimguiname": "igColorConvertHSVtoRGB", "defaults": {}, "funcname": "ColorConvertHSVtoRGB", - "location": "imgui:1088", + "location": "imgui:1091", "namespace": "ImGui", "ov_cimguiname": "igColorConvertHSVtoRGB", "ret": "void", @@ -17600,7 +17644,7 @@ "cimguiname": "igColorConvertRGBtoHSV", "defaults": {}, "funcname": "ColorConvertRGBtoHSV", - "location": "imgui:1087", + "location": "imgui:1090", "namespace": "ImGui", "ov_cimguiname": "igColorConvertRGBtoHSV", "ret": "void", @@ -17624,7 +17668,7 @@ "conv": "ImVec4", "defaults": {}, "funcname": "ColorConvertU32ToFloat4", - "location": "imgui:1085", + "location": "imgui:1088", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igColorConvertU32ToFloat4", @@ -17658,7 +17702,7 @@ "flags": "0" }, "funcname": "ColorEdit3", - "location": "imgui:740", + "location": "imgui:742", "namespace": "ImGui", "ov_cimguiname": "igColorEdit3", "ret": "bool", @@ -17691,7 +17735,7 @@ "flags": "0" }, "funcname": "ColorEdit4", - "location": "imgui:741", + "location": "imgui:743", "namespace": "ImGui", "ov_cimguiname": "igColorEdit4", "ret": "bool", @@ -17718,7 +17762,7 @@ "cimguiname": "igColorEditOptionsPopup", "defaults": {}, "funcname": "ColorEditOptionsPopup", - "location": "imgui_internal:3983", + "location": "imgui_internal:3997", "namespace": "ImGui", "ov_cimguiname": "igColorEditOptionsPopup", "ret": "void", @@ -17751,7 +17795,7 @@ "flags": "0" }, "funcname": "ColorPicker3", - "location": "imgui:742", + "location": "imgui:744", "namespace": "ImGui", "ov_cimguiname": "igColorPicker3", "ret": "bool", @@ -17789,7 +17833,7 @@ "ref_col": "NULL" }, "funcname": "ColorPicker4", - "location": "imgui:743", + "location": "imgui:745", "namespace": "ImGui", "ov_cimguiname": "igColorPicker4", "ret": "bool", @@ -17816,7 +17860,7 @@ "cimguiname": "igColorPickerOptionsPopup", "defaults": {}, "funcname": "ColorPickerOptionsPopup", - "location": "imgui_internal:3984", + "location": "imgui_internal:3998", "namespace": "ImGui", "ov_cimguiname": "igColorPickerOptionsPopup", "ret": "void", @@ -17847,7 +17891,7 @@ "cimguiname": "igColorTooltip", "defaults": {}, "funcname": "ColorTooltip", - "location": "imgui_internal:3982", + "location": "imgui_internal:3996", "namespace": "ImGui", "ov_cimguiname": "igColorTooltip", "ret": "void", @@ -17882,7 +17926,7 @@ "id": "NULL" }, "funcname": "Columns", - "location": "imgui:947", + "location": "imgui:950", "namespace": "ImGui", "ov_cimguiname": "igColumns", "ret": "void", @@ -17923,7 +17967,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:669", + "location": "imgui:671", "namespace": "ImGui", "ov_cimguiname": "igCombo_Str_arr", "ret": "bool", @@ -17958,7 +18002,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:670", + "location": "imgui:672", "namespace": "ImGui", "ov_cimguiname": "igCombo_Str", "ret": "bool", @@ -18003,7 +18047,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:671", + "location": "imgui:673", "namespace": "ImGui", "ov_cimguiname": "igCombo_FnStrPtr", "ret": "bool", @@ -18026,7 +18070,7 @@ "cimguiname": "igConvertSingleModFlagToKey", "defaults": {}, "funcname": "ConvertSingleModFlagToKey", - "location": "imgui_internal:3616", + "location": "imgui_internal:3629", "namespace": "ImGui", "ov_cimguiname": "igConvertSingleModFlagToKey", "ret": "ImGuiKey", @@ -18051,7 +18095,7 @@ "shared_font_atlas": "NULL" }, "funcname": "CreateContext", - "location": "imgui:397", + "location": "imgui:399", "namespace": "ImGui", "ov_cimguiname": "igCreateContext", "ret": "ImGuiContext*", @@ -18074,7 +18118,7 @@ "cimguiname": "igCreateNewWindowSettings", "defaults": {}, "funcname": "CreateNewWindowSettings", - "location": "imgui_internal:3484", + "location": "imgui_internal:3495", "namespace": "ImGui", "ov_cimguiname": "igCreateNewWindowSettings", "ret": "ImGuiWindowSettings*", @@ -18115,7 +18159,7 @@ "p_data_when_empty": "NULL" }, "funcname": "DataTypeApplyFromText", - "location": "imgui_internal:3966", + "location": "imgui_internal:3980", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyFromText", "ret": "bool", @@ -18154,7 +18198,7 @@ "cimguiname": "igDataTypeApplyOp", "defaults": {}, "funcname": "DataTypeApplyOp", - "location": "imgui_internal:3965", + "location": "imgui_internal:3979", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyOp", "ret": "void", @@ -18189,7 +18233,7 @@ "cimguiname": "igDataTypeClamp", "defaults": {}, "funcname": "DataTypeClamp", - "location": "imgui_internal:3968", + "location": "imgui_internal:3982", "namespace": "ImGui", "ov_cimguiname": "igDataTypeClamp", "ret": "bool", @@ -18220,7 +18264,7 @@ "cimguiname": "igDataTypeCompare", "defaults": {}, "funcname": "DataTypeCompare", - "location": "imgui_internal:3967", + "location": "imgui_internal:3981", "namespace": "ImGui", "ov_cimguiname": "igDataTypeCompare", "ret": "int", @@ -18259,7 +18303,7 @@ "cimguiname": "igDataTypeFormatString", "defaults": {}, "funcname": "DataTypeFormatString", - "location": "imgui_internal:3964", + "location": "imgui_internal:3978", "namespace": "ImGui", "ov_cimguiname": "igDataTypeFormatString", "ret": "int", @@ -18282,7 +18326,7 @@ "cimguiname": "igDataTypeGetInfo", "defaults": {}, "funcname": "DataTypeGetInfo", - "location": "imgui_internal:3963", + "location": "imgui_internal:3977", "namespace": "ImGui", "ov_cimguiname": "igDataTypeGetInfo", "ret": "const ImGuiDataTypeInfo*", @@ -18309,7 +18353,7 @@ "cimguiname": "igDataTypeIsZero", "defaults": {}, "funcname": "DataTypeIsZero", - "location": "imgui_internal:3969", + "location": "imgui_internal:3983", "namespace": "ImGui", "ov_cimguiname": "igDataTypeIsZero", "ret": "bool", @@ -18344,7 +18388,7 @@ "cimguiname": "igDebugAllocHook", "defaults": {}, "funcname": "DebugAllocHook", - "location": "imgui_internal:4011", + "location": "imgui_internal:4028", "namespace": "ImGui", "ov_cimguiname": "igDebugAllocHook", "ret": "void", @@ -18371,7 +18415,7 @@ "cimguiname": "igDebugBreakButton", "defaults": {}, "funcname": "DebugBreakButton", - "location": "imgui_internal:4020", + "location": "imgui_internal:4037", "namespace": "ImGui", "ov_cimguiname": "igDebugBreakButton", "ret": "bool", @@ -18398,7 +18442,7 @@ "cimguiname": "igDebugBreakButtonTooltip", "defaults": {}, "funcname": "DebugBreakButtonTooltip", - "location": "imgui_internal:4021", + "location": "imgui_internal:4038", "namespace": "ImGui", "ov_cimguiname": "igDebugBreakButtonTooltip", "ret": "void", @@ -18416,7 +18460,7 @@ "cimguiname": "igDebugBreakClearData", "defaults": {}, "funcname": "DebugBreakClearData", - "location": "imgui_internal:4019", + "location": "imgui_internal:4036", "namespace": "ImGui", "ov_cimguiname": "igDebugBreakClearData", "ret": "void", @@ -18463,7 +18507,7 @@ "cimguiname": "igDebugCheckVersionAndDataLayout", "defaults": {}, "funcname": "DebugCheckVersionAndDataLayout", - "location": "imgui:1176", + "location": "imgui:1179", "namespace": "ImGui", "ov_cimguiname": "igDebugCheckVersionAndDataLayout", "ret": "bool", @@ -18488,7 +18532,7 @@ "col": "4278190335" }, "funcname": "DebugDrawCursorPos", - "location": "imgui_internal:4012", + "location": "imgui_internal:4029", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawCursorPos", "ret": "void", @@ -18513,7 +18557,7 @@ "col": "4278190335" }, "funcname": "DebugDrawItemRect", - "location": "imgui_internal:4014", + "location": "imgui_internal:4031", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawItemRect", "ret": "void", @@ -18538,7 +18582,7 @@ "col": "4278190335" }, "funcname": "DebugDrawLineExtents", - "location": "imgui_internal:4013", + "location": "imgui_internal:4030", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawLineExtents", "ret": "void", @@ -18561,7 +18605,7 @@ "cimguiname": "igDebugFlashStyleColor", "defaults": {}, "funcname": "DebugFlashStyleColor", - "location": "imgui:1174", + "location": "imgui:1177", "namespace": "ImGui", "ov_cimguiname": "igDebugFlashStyleColor", "ret": "void", @@ -18596,7 +18640,7 @@ "cimguiname": "igDebugHookIdInfo", "defaults": {}, "funcname": "DebugHookIdInfo", - "location": "imgui_internal:4024", + "location": "imgui_internal:4041", "namespace": "ImGui", "ov_cimguiname": "igDebugHookIdInfo", "ret": "void", @@ -18619,7 +18663,7 @@ "cimguiname": "igDebugLocateItem", "defaults": {}, "funcname": "DebugLocateItem", - "location": "imgui_internal:4016", + "location": "imgui_internal:4033", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItem", "ret": "void", @@ -18642,7 +18686,7 @@ "cimguiname": "igDebugLocateItemOnHover", "defaults": {}, "funcname": "DebugLocateItemOnHover", - "location": "imgui_internal:4017", + "location": "imgui_internal:4034", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItemOnHover", "ret": "void", @@ -18660,7 +18704,7 @@ "cimguiname": "igDebugLocateItemResolveWithLastItem", "defaults": {}, "funcname": "DebugLocateItemResolveWithLastItem", - "location": "imgui_internal:4018", + "location": "imgui_internal:4035", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItemResolveWithLastItem", "ret": "void", @@ -18688,7 +18732,7 @@ "defaults": {}, "funcname": "DebugLog", "isvararg": "...)", - "location": "imgui:1178", + "location": "imgui:1181", "namespace": "ImGui", "ov_cimguiname": "igDebugLog", "ret": "void", @@ -18715,7 +18759,7 @@ "cimguiname": "igDebugLogV", "defaults": {}, "funcname": "DebugLogV", - "location": "imgui:1179", + "location": "imgui:1182", "namespace": "ImGui", "ov_cimguiname": "igDebugLogV", "ret": "void", @@ -18738,7 +18782,7 @@ "cimguiname": "igDebugNodeColumns", "defaults": {}, "funcname": "DebugNodeColumns", - "location": "imgui_internal:4025", + "location": "imgui_internal:4042", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeColumns", "ret": "void", @@ -18765,7 +18809,7 @@ "cimguiname": "igDebugNodeDockNode", "defaults": {}, "funcname": "DebugNodeDockNode", - "location": "imgui_internal:4026", + "location": "imgui_internal:4043", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDockNode", "ret": "void", @@ -18804,7 +18848,7 @@ "cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "defaults": {}, "funcname": "DebugNodeDrawCmdShowMeshAndBoundingBox", - "location": "imgui_internal:4028", + "location": "imgui_internal:4045", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "ret": "void", @@ -18839,7 +18883,7 @@ "cimguiname": "igDebugNodeDrawList", "defaults": {}, "funcname": "DebugNodeDrawList", - "location": "imgui_internal:4027", + "location": "imgui_internal:4044", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawList", "ret": "void", @@ -18862,7 +18906,7 @@ "cimguiname": "igDebugNodeFont", "defaults": {}, "funcname": "DebugNodeFont", - "location": "imgui_internal:4029", + "location": "imgui_internal:4046", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFont", "ret": "void", @@ -18889,7 +18933,7 @@ "cimguiname": "igDebugNodeFontGlyph", "defaults": {}, "funcname": "DebugNodeFontGlyph", - "location": "imgui_internal:4031", + "location": "imgui_internal:4048", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFontGlyph", "ret": "void", @@ -18897,7 +18941,7 @@ "stname": "" } ], - "igDebugNodeFontGlyphesForSrcMask": [ + "igDebugNodeFontGlyphsForSrcMask": [ { "args": "(ImFont* font,ImFontBaked* baked,int src_mask)", "argsT": [ @@ -18917,12 +18961,12 @@ "argsoriginal": "(ImFont* font,ImFontBaked* baked,int src_mask)", "call_args": "(font,baked,src_mask)", "call_args_old": "(font,baked,src_mask)", - "cimguiname": "igDebugNodeFontGlyphesForSrcMask", + "cimguiname": "igDebugNodeFontGlyphsForSrcMask", "defaults": {}, - "funcname": "DebugNodeFontGlyphesForSrcMask", - "location": "imgui_internal:4030", + "funcname": "DebugNodeFontGlyphsForSrcMask", + "location": "imgui_internal:4047", "namespace": "ImGui", - "ov_cimguiname": "igDebugNodeFontGlyphesForSrcMask", + "ov_cimguiname": "igDebugNodeFontGlyphsForSrcMask", "ret": "void", "signature": "(ImFont*,ImFontBaked*,int)", "stname": "" @@ -18943,7 +18987,7 @@ "cimguiname": "igDebugNodeInputTextState", "defaults": {}, "funcname": "DebugNodeInputTextState", - "location": "imgui_internal:4037", + "location": "imgui_internal:4054", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeInputTextState", "ret": "void", @@ -18966,7 +19010,7 @@ "cimguiname": "igDebugNodeMultiSelectState", "defaults": {}, "funcname": "DebugNodeMultiSelectState", - "location": "imgui_internal:4039", + "location": "imgui_internal:4056", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeMultiSelectState", "ret": "void", @@ -18997,7 +19041,7 @@ "cimguiname": "igDebugNodePlatformMonitor", "defaults": {}, "funcname": "DebugNodePlatformMonitor", - "location": "imgui_internal:4045", + "location": "imgui_internal:4062", "namespace": "ImGui", "ov_cimguiname": "igDebugNodePlatformMonitor", "ret": "void", @@ -19024,7 +19068,7 @@ "cimguiname": "igDebugNodeStorage", "defaults": {}, "funcname": "DebugNodeStorage", - "location": "imgui_internal:4033", + "location": "imgui_internal:4050", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeStorage", "ret": "void", @@ -19051,7 +19095,7 @@ "cimguiname": "igDebugNodeTabBar", "defaults": {}, "funcname": "DebugNodeTabBar", - "location": "imgui_internal:4034", + "location": "imgui_internal:4051", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTabBar", "ret": "void", @@ -19074,7 +19118,7 @@ "cimguiname": "igDebugNodeTable", "defaults": {}, "funcname": "DebugNodeTable", - "location": "imgui_internal:4035", + "location": "imgui_internal:4052", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTable", "ret": "void", @@ -19097,7 +19141,7 @@ "cimguiname": "igDebugNodeTableSettings", "defaults": {}, "funcname": "DebugNodeTableSettings", - "location": "imgui_internal:4036", + "location": "imgui_internal:4053", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTableSettings", "ret": "void", @@ -19130,7 +19174,7 @@ "highlight_rect": "NULL" }, "funcname": "DebugNodeTexture", - "location": "imgui_internal:4032", + "location": "imgui_internal:4049", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTexture", "ret": "void", @@ -19153,7 +19197,7 @@ "cimguiname": "igDebugNodeTypingSelectState", "defaults": {}, "funcname": "DebugNodeTypingSelectState", - "location": "imgui_internal:4038", + "location": "imgui_internal:4055", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTypingSelectState", "ret": "void", @@ -19176,7 +19220,7 @@ "cimguiname": "igDebugNodeViewport", "defaults": {}, "funcname": "DebugNodeViewport", - "location": "imgui_internal:4044", + "location": "imgui_internal:4061", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeViewport", "ret": "void", @@ -19203,7 +19247,7 @@ "cimguiname": "igDebugNodeWindow", "defaults": {}, "funcname": "DebugNodeWindow", - "location": "imgui_internal:4040", + "location": "imgui_internal:4057", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindow", "ret": "void", @@ -19226,7 +19270,7 @@ "cimguiname": "igDebugNodeWindowSettings", "defaults": {}, "funcname": "DebugNodeWindowSettings", - "location": "imgui_internal:4041", + "location": "imgui_internal:4058", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowSettings", "ret": "void", @@ -19253,7 +19297,7 @@ "cimguiname": "igDebugNodeWindowsList", "defaults": {}, "funcname": "DebugNodeWindowsList", - "location": "imgui_internal:4042", + "location": "imgui_internal:4059", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsList", "ret": "void", @@ -19284,7 +19328,7 @@ "cimguiname": "igDebugNodeWindowsListByBeginStackParent", "defaults": {}, "funcname": "DebugNodeWindowsListByBeginStackParent", - "location": "imgui_internal:4043", + "location": "imgui_internal:4060", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsListByBeginStackParent", "ret": "void", @@ -19307,7 +19351,7 @@ "cimguiname": "igDebugRenderKeyboardPreview", "defaults": {}, "funcname": "DebugRenderKeyboardPreview", - "location": "imgui_internal:4046", + "location": "imgui_internal:4063", "namespace": "ImGui", "ov_cimguiname": "igDebugRenderKeyboardPreview", "ret": "void", @@ -19338,7 +19382,7 @@ "cimguiname": "igDebugRenderViewportThumbnail", "defaults": {}, "funcname": "DebugRenderViewportThumbnail", - "location": "imgui_internal:4047", + "location": "imgui_internal:4064", "namespace": "ImGui", "ov_cimguiname": "igDebugRenderViewportThumbnail", "ret": "void", @@ -19356,7 +19400,7 @@ "cimguiname": "igDebugStartItemPicker", "defaults": {}, "funcname": "DebugStartItemPicker", - "location": "imgui:1175", + "location": "imgui:1178", "namespace": "ImGui", "ov_cimguiname": "igDebugStartItemPicker", "ret": "void", @@ -19379,7 +19423,7 @@ "cimguiname": "igDebugTextEncoding", "defaults": {}, "funcname": "DebugTextEncoding", - "location": "imgui:1173", + "location": "imgui:1176", "namespace": "ImGui", "ov_cimguiname": "igDebugTextEncoding", "ret": "void", @@ -19406,7 +19450,7 @@ "cimguiname": "igDebugTextUnformattedWithLocateItem", "defaults": {}, "funcname": "DebugTextUnformattedWithLocateItem", - "location": "imgui_internal:4015", + "location": "imgui_internal:4032", "namespace": "ImGui", "ov_cimguiname": "igDebugTextUnformattedWithLocateItem", "ret": "void", @@ -19429,7 +19473,7 @@ "cimguiname": "igDebugTextureIDToU64", "defaults": {}, "funcname": "DebugTextureIDToU64", - "location": "imgui_internal:4023", + "location": "imgui_internal:4040", "namespace": "ImGui", "ov_cimguiname": "igDebugTextureIDToU64", "ret": "ImU64", @@ -19437,6 +19481,37 @@ "stname": "" } ], + "igDemoMarker": [ + { + "args": "(const char* file,int line,const char* section)", + "argsT": [ + { + "name": "file", + "type": "const char*" + }, + { + "name": "line", + "type": "int" + }, + { + "name": "section", + "type": "const char*" + } + ], + "argsoriginal": "(const char* file,int line,const char* section)", + "call_args": "(file,line,section)", + "call_args_old": "(file,line,section)", + "cimguiname": "igDemoMarker", + "defaults": {}, + "funcname": "DemoMarker", + "location": "imgui_internal:4025", + "namespace": "ImGui", + "ov_cimguiname": "igDemoMarker", + "ret": "void", + "signature": "(const char*,int,const char*)", + "stname": "" + } + ], "igDestroyContext": [ { "args": "(ImGuiContext* ctx)", @@ -19454,7 +19529,7 @@ "ctx": "NULL" }, "funcname": "DestroyContext", - "location": "imgui:398", + "location": "imgui:400", "namespace": "ImGui", "ov_cimguiname": "igDestroyContext", "ret": "void", @@ -19477,7 +19552,7 @@ "cimguiname": "igDestroyPlatformWindow", "defaults": {}, "funcname": "DestroyPlatformWindow", - "location": "imgui_internal:3469", + "location": "imgui_internal:3480", "namespace": "ImGui", "ov_cimguiname": "igDestroyPlatformWindow", "ret": "void", @@ -19495,7 +19570,7 @@ "cimguiname": "igDestroyPlatformWindows", "defaults": {}, "funcname": "DestroyPlatformWindows", - "location": "imgui:1196", + "location": "imgui:1199", "namespace": "ImGui", "ov_cimguiname": "igDestroyPlatformWindows", "ret": "void", @@ -19525,7 +19600,7 @@ "node_id": "0" }, "funcname": "DockBuilderAddNode", - "location": "imgui_internal:3733", + "location": "imgui_internal:3746", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderAddNode", "ret": "ImGuiID", @@ -19556,7 +19631,7 @@ "cimguiname": "igDockBuilderCopyDockSpace", "defaults": {}, "funcname": "DockBuilderCopyDockSpace", - "location": "imgui_internal:3740", + "location": "imgui_internal:3753", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyDockSpace", "ret": "void", @@ -19587,7 +19662,7 @@ "cimguiname": "igDockBuilderCopyNode", "defaults": {}, "funcname": "DockBuilderCopyNode", - "location": "imgui_internal:3741", + "location": "imgui_internal:3754", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyNode", "ret": "void", @@ -19614,7 +19689,7 @@ "cimguiname": "igDockBuilderCopyWindowSettings", "defaults": {}, "funcname": "DockBuilderCopyWindowSettings", - "location": "imgui_internal:3742", + "location": "imgui_internal:3755", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyWindowSettings", "ret": "void", @@ -19641,7 +19716,7 @@ "cimguiname": "igDockBuilderDockWindow", "defaults": {}, "funcname": "DockBuilderDockWindow", - "location": "imgui_internal:3730", + "location": "imgui_internal:3743", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderDockWindow", "ret": "void", @@ -19664,7 +19739,7 @@ "cimguiname": "igDockBuilderFinish", "defaults": {}, "funcname": "DockBuilderFinish", - "location": "imgui_internal:3743", + "location": "imgui_internal:3756", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderFinish", "ret": "void", @@ -19687,7 +19762,7 @@ "cimguiname": "igDockBuilderGetCentralNode", "defaults": {}, "funcname": "DockBuilderGetCentralNode", - "location": "imgui_internal:3732", + "location": "imgui_internal:3745", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderGetCentralNode", "ret": "ImGuiDockNode*", @@ -19710,7 +19785,7 @@ "cimguiname": "igDockBuilderGetNode", "defaults": {}, "funcname": "DockBuilderGetNode", - "location": "imgui_internal:3731", + "location": "imgui_internal:3744", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderGetNode", "ret": "ImGuiDockNode*", @@ -19733,7 +19808,7 @@ "cimguiname": "igDockBuilderRemoveNode", "defaults": {}, "funcname": "DockBuilderRemoveNode", - "location": "imgui_internal:3734", + "location": "imgui_internal:3747", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNode", "ret": "void", @@ -19756,7 +19831,7 @@ "cimguiname": "igDockBuilderRemoveNodeChildNodes", "defaults": {}, "funcname": "DockBuilderRemoveNodeChildNodes", - "location": "imgui_internal:3736", + "location": "imgui_internal:3749", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNodeChildNodes", "ret": "void", @@ -19785,7 +19860,7 @@ "clear_settings_refs": "true" }, "funcname": "DockBuilderRemoveNodeDockedWindows", - "location": "imgui_internal:3735", + "location": "imgui_internal:3748", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNodeDockedWindows", "ret": "void", @@ -19812,7 +19887,7 @@ "cimguiname": "igDockBuilderSetNodePos", "defaults": {}, "funcname": "DockBuilderSetNodePos", - "location": "imgui_internal:3737", + "location": "imgui_internal:3750", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSetNodePos", "ret": "void", @@ -19839,7 +19914,7 @@ "cimguiname": "igDockBuilderSetNodeSize", "defaults": {}, "funcname": "DockBuilderSetNodeSize", - "location": "imgui_internal:3738", + "location": "imgui_internal:3751", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSetNodeSize", "ret": "void", @@ -19878,7 +19953,7 @@ "cimguiname": "igDockBuilderSplitNode", "defaults": {}, "funcname": "DockBuilderSplitNode", - "location": "imgui_internal:3739", + "location": "imgui_internal:3752", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSplitNode", "ret": "ImGuiID", @@ -19925,7 +20000,7 @@ "cimguiname": "igDockContextCalcDropPosForDocking", "defaults": {}, "funcname": "DockContextCalcDropPosForDocking", - "location": "imgui_internal:3705", + "location": "imgui_internal:3718", "namespace": "ImGui", "ov_cimguiname": "igDockContextCalcDropPosForDocking", "ret": "bool", @@ -19956,7 +20031,7 @@ "cimguiname": "igDockContextClearNodes", "defaults": {}, "funcname": "DockContextClearNodes", - "location": "imgui_internal:3694", + "location": "imgui_internal:3707", "namespace": "ImGui", "ov_cimguiname": "igDockContextClearNodes", "ret": "void", @@ -19979,7 +20054,7 @@ "cimguiname": "igDockContextEndFrame", "defaults": {}, "funcname": "DockContextEndFrame", - "location": "imgui_internal:3698", + "location": "imgui_internal:3711", "namespace": "ImGui", "ov_cimguiname": "igDockContextEndFrame", "ret": "void", @@ -20006,7 +20081,7 @@ "cimguiname": "igDockContextFindNodeByID", "defaults": {}, "funcname": "DockContextFindNodeByID", - "location": "imgui_internal:3706", + "location": "imgui_internal:3719", "namespace": "ImGui", "ov_cimguiname": "igDockContextFindNodeByID", "ret": "ImGuiDockNode*", @@ -20029,7 +20104,7 @@ "cimguiname": "igDockContextGenNodeID", "defaults": {}, "funcname": "DockContextGenNodeID", - "location": "imgui_internal:3699", + "location": "imgui_internal:3712", "namespace": "ImGui", "ov_cimguiname": "igDockContextGenNodeID", "ret": "ImGuiID", @@ -20052,7 +20127,7 @@ "cimguiname": "igDockContextInitialize", "defaults": {}, "funcname": "DockContextInitialize", - "location": "imgui_internal:3692", + "location": "imgui_internal:3705", "namespace": "ImGui", "ov_cimguiname": "igDockContextInitialize", "ret": "void", @@ -20075,7 +20150,7 @@ "cimguiname": "igDockContextNewFrameUpdateDocking", "defaults": {}, "funcname": "DockContextNewFrameUpdateDocking", - "location": "imgui_internal:3697", + "location": "imgui_internal:3710", "namespace": "ImGui", "ov_cimguiname": "igDockContextNewFrameUpdateDocking", "ret": "void", @@ -20098,7 +20173,7 @@ "cimguiname": "igDockContextNewFrameUpdateUndocking", "defaults": {}, "funcname": "DockContextNewFrameUpdateUndocking", - "location": "imgui_internal:3696", + "location": "imgui_internal:3709", "namespace": "ImGui", "ov_cimguiname": "igDockContextNewFrameUpdateUndocking", "ret": "void", @@ -20125,7 +20200,7 @@ "cimguiname": "igDockContextProcessUndockNode", "defaults": {}, "funcname": "DockContextProcessUndockNode", - "location": "imgui_internal:3704", + "location": "imgui_internal:3717", "namespace": "ImGui", "ov_cimguiname": "igDockContextProcessUndockNode", "ret": "void", @@ -20158,7 +20233,7 @@ "clear_persistent_docking_ref": "true" }, "funcname": "DockContextProcessUndockWindow", - "location": "imgui_internal:3703", + "location": "imgui_internal:3716", "namespace": "ImGui", "ov_cimguiname": "igDockContextProcessUndockWindow", "ret": "void", @@ -20205,7 +20280,7 @@ "cimguiname": "igDockContextQueueDock", "defaults": {}, "funcname": "DockContextQueueDock", - "location": "imgui_internal:3700", + "location": "imgui_internal:3713", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueDock", "ret": "void", @@ -20232,7 +20307,7 @@ "cimguiname": "igDockContextQueueUndockNode", "defaults": {}, "funcname": "DockContextQueueUndockNode", - "location": "imgui_internal:3702", + "location": "imgui_internal:3715", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueUndockNode", "ret": "void", @@ -20259,7 +20334,7 @@ "cimguiname": "igDockContextQueueUndockWindow", "defaults": {}, "funcname": "DockContextQueueUndockWindow", - "location": "imgui_internal:3701", + "location": "imgui_internal:3714", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueUndockWindow", "ret": "void", @@ -20282,7 +20357,7 @@ "cimguiname": "igDockContextRebuildNodes", "defaults": {}, "funcname": "DockContextRebuildNodes", - "location": "imgui_internal:3695", + "location": "imgui_internal:3708", "namespace": "ImGui", "ov_cimguiname": "igDockContextRebuildNodes", "ret": "void", @@ -20305,7 +20380,7 @@ "cimguiname": "igDockContextShutdown", "defaults": {}, "funcname": "DockContextShutdown", - "location": "imgui_internal:3693", + "location": "imgui_internal:3706", "namespace": "ImGui", "ov_cimguiname": "igDockContextShutdown", "ret": "void", @@ -20328,7 +20403,7 @@ "cimguiname": "igDockNodeBeginAmendTabBar", "defaults": {}, "funcname": "DockNodeBeginAmendTabBar", - "location": "imgui_internal:3708", + "location": "imgui_internal:3721", "namespace": "ImGui", "ov_cimguiname": "igDockNodeBeginAmendTabBar", "ret": "bool", @@ -20346,7 +20421,7 @@ "cimguiname": "igDockNodeEndAmendTabBar", "defaults": {}, "funcname": "DockNodeEndAmendTabBar", - "location": "imgui_internal:3709", + "location": "imgui_internal:3722", "namespace": "ImGui", "ov_cimguiname": "igDockNodeEndAmendTabBar", "ret": "void", @@ -20369,7 +20444,7 @@ "cimguiname": "igDockNodeGetDepth", "defaults": {}, "funcname": "DockNodeGetDepth", - "location": "imgui_internal:3712", + "location": "imgui_internal:3725", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetDepth", "ret": "int", @@ -20392,7 +20467,7 @@ "cimguiname": "igDockNodeGetRootNode", "defaults": {}, "funcname": "DockNodeGetRootNode", - "location": "imgui_internal:3710", + "location": "imgui_internal:3723", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetRootNode", "ret": "ImGuiDockNode*", @@ -20415,7 +20490,7 @@ "cimguiname": "igDockNodeGetWindowMenuButtonId", "defaults": {}, "funcname": "DockNodeGetWindowMenuButtonId", - "location": "imgui_internal:3713", + "location": "imgui_internal:3726", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetWindowMenuButtonId", "ret": "ImGuiID", @@ -20442,7 +20517,7 @@ "cimguiname": "igDockNodeIsInHierarchyOf", "defaults": {}, "funcname": "DockNodeIsInHierarchyOf", - "location": "imgui_internal:3711", + "location": "imgui_internal:3724", "namespace": "ImGui", "ov_cimguiname": "igDockNodeIsInHierarchyOf", "ret": "bool", @@ -20473,7 +20548,7 @@ "cimguiname": "igDockNodeWindowMenuHandler_Default", "defaults": {}, "funcname": "DockNodeWindowMenuHandler_Default", - "location": "imgui_internal:3707", + "location": "imgui_internal:3720", "namespace": "ImGui", "ov_cimguiname": "igDockNodeWindowMenuHandler_Default", "ret": "void", @@ -20512,7 +20587,7 @@ "window_class": "NULL" }, "funcname": "DockSpace", - "location": "imgui:986", + "location": "imgui:989", "namespace": "ImGui", "ov_cimguiname": "igDockSpace", "ret": "ImGuiID", @@ -20552,7 +20627,7 @@ "window_class": "NULL" }, "funcname": "DockSpaceOverViewport", - "location": "imgui:987", + "location": "imgui:990", "namespace": "ImGui", "ov_cimguiname": "igDockSpaceOverViewport", "ret": "ImGuiID", @@ -20603,7 +20678,7 @@ "cimguiname": "igDragBehavior", "defaults": {}, "funcname": "DragBehavior", - "location": "imgui_internal:3939", + "location": "imgui_internal:3954", "namespace": "ImGui", "ov_cimguiname": "igDragBehavior", "ret": "bool", @@ -20656,7 +20731,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat", - "location": "imgui:685", + "location": "imgui:687", "namespace": "ImGui", "ov_cimguiname": "igDragFloat", "ret": "bool", @@ -20709,7 +20784,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat2", - "location": "imgui:686", + "location": "imgui:688", "namespace": "ImGui", "ov_cimguiname": "igDragFloat2", "ret": "bool", @@ -20762,7 +20837,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat3", - "location": "imgui:687", + "location": "imgui:689", "namespace": "ImGui", "ov_cimguiname": "igDragFloat3", "ret": "bool", @@ -20815,7 +20890,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat4", - "location": "imgui:688", + "location": "imgui:690", "namespace": "ImGui", "ov_cimguiname": "igDragFloat4", "ret": "bool", @@ -20877,7 +20952,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloatRange2", - "location": "imgui:689", + "location": "imgui:691", "namespace": "ImGui", "ov_cimguiname": "igDragFloatRange2", "ret": "bool", @@ -20930,7 +21005,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt", - "location": "imgui:690", + "location": "imgui:692", "namespace": "ImGui", "ov_cimguiname": "igDragInt", "ret": "bool", @@ -20983,7 +21058,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt2", - "location": "imgui:691", + "location": "imgui:693", "namespace": "ImGui", "ov_cimguiname": "igDragInt2", "ret": "bool", @@ -21036,7 +21111,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt3", - "location": "imgui:692", + "location": "imgui:694", "namespace": "ImGui", "ov_cimguiname": "igDragInt3", "ret": "bool", @@ -21089,7 +21164,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt4", - "location": "imgui:693", + "location": "imgui:695", "namespace": "ImGui", "ov_cimguiname": "igDragInt4", "ret": "bool", @@ -21151,7 +21226,7 @@ "v_speed": "1.0f" }, "funcname": "DragIntRange2", - "location": "imgui:694", + "location": "imgui:696", "namespace": "ImGui", "ov_cimguiname": "igDragIntRange2", "ret": "bool", @@ -21208,7 +21283,7 @@ "v_speed": "1.0f" }, "funcname": "DragScalar", - "location": "imgui:695", + "location": "imgui:697", "namespace": "ImGui", "ov_cimguiname": "igDragScalar", "ret": "bool", @@ -21269,7 +21344,7 @@ "v_speed": "1.0f" }, "funcname": "DragScalarN", - "location": "imgui:696", + "location": "imgui:698", "namespace": "ImGui", "ov_cimguiname": "igDragScalarN", "ret": "bool", @@ -21292,7 +21367,7 @@ "cimguiname": "igDummy", "defaults": {}, "funcname": "Dummy", - "location": "imgui:589", + "location": "imgui:591", "namespace": "ImGui", "ov_cimguiname": "igDummy", "ret": "void", @@ -21310,7 +21385,7 @@ "cimguiname": "igEnd", "defaults": {}, "funcname": "End", - "location": "imgui:441", + "location": "imgui:443", "namespace": "ImGui", "ov_cimguiname": "igEnd", "ret": "void", @@ -21337,7 +21412,7 @@ "cimguiname": "igEndBoxSelect", "defaults": {}, "funcname": "EndBoxSelect", - "location": "imgui_internal:3776", + "location": "imgui_internal:3789", "namespace": "ImGui", "ov_cimguiname": "igEndBoxSelect", "ret": "void", @@ -21355,7 +21430,7 @@ "cimguiname": "igEndChild", "defaults": {}, "funcname": "EndChild", - "location": "imgui:463", + "location": "imgui:465", "namespace": "ImGui", "ov_cimguiname": "igEndChild", "ret": "void", @@ -21373,7 +21448,7 @@ "cimguiname": "igEndColumns", "defaults": {}, "funcname": "EndColumns", - "location": "imgui_internal:3789", + "location": "imgui_internal:3802", "namespace": "ImGui", "ov_cimguiname": "igEndColumns", "ret": "void", @@ -21391,7 +21466,7 @@ "cimguiname": "igEndCombo", "defaults": {}, "funcname": "EndCombo", - "location": "imgui:668", + "location": "imgui:670", "namespace": "ImGui", "ov_cimguiname": "igEndCombo", "ret": "void", @@ -21409,7 +21484,7 @@ "cimguiname": "igEndComboPreview", "defaults": {}, "funcname": "EndComboPreview", - "location": "imgui_internal:3578", + "location": "imgui_internal:3591", "namespace": "ImGui", "ov_cimguiname": "igEndComboPreview", "ret": "void", @@ -21427,7 +21502,7 @@ "cimguiname": "igEndDisabled", "defaults": {}, "funcname": "EndDisabled", - "location": "imgui:1022", + "location": "imgui:1025", "namespace": "ImGui", "ov_cimguiname": "igEndDisabled", "ret": "void", @@ -21445,7 +21520,7 @@ "cimguiname": "igEndDisabledOverrideReenable", "defaults": {}, "funcname": "EndDisabledOverrideReenable", - "location": "imgui_internal:3539", + "location": "imgui_internal:3550", "namespace": "ImGui", "ov_cimguiname": "igEndDisabledOverrideReenable", "ret": "void", @@ -21463,7 +21538,7 @@ "cimguiname": "igEndDragDropSource", "defaults": {}, "funcname": "EndDragDropSource", - "location": "imgui:1010", + "location": "imgui:1013", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropSource", "ret": "void", @@ -21481,7 +21556,7 @@ "cimguiname": "igEndDragDropTarget", "defaults": {}, "funcname": "EndDragDropTarget", - "location": "imgui:1013", + "location": "imgui:1016", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropTarget", "ret": "void", @@ -21499,7 +21574,7 @@ "cimguiname": "igEndErrorTooltip", "defaults": {}, "funcname": "EndErrorTooltip", - "location": "imgui_internal:4008", + "location": "imgui_internal:4022", "namespace": "ImGui", "ov_cimguiname": "igEndErrorTooltip", "ret": "void", @@ -21517,7 +21592,7 @@ "cimguiname": "igEndFrame", "defaults": {}, "funcname": "EndFrame", - "location": "imgui:407", + "location": "imgui:409", "namespace": "ImGui", "ov_cimguiname": "igEndFrame", "ret": "void", @@ -21535,7 +21610,7 @@ "cimguiname": "igEndGroup", "defaults": {}, "funcname": "EndGroup", - "location": "imgui:593", + "location": "imgui:595", "namespace": "ImGui", "ov_cimguiname": "igEndGroup", "ret": "void", @@ -21553,7 +21628,7 @@ "cimguiname": "igEndListBox", "defaults": {}, "funcname": "EndListBox", - "location": "imgui:794", + "location": "imgui:797", "namespace": "ImGui", "ov_cimguiname": "igEndListBox", "ret": "void", @@ -21571,7 +21646,7 @@ "cimguiname": "igEndMainMenuBar", "defaults": {}, "funcname": "EndMainMenuBar", - "location": "imgui:820", + "location": "imgui:823", "namespace": "ImGui", "ov_cimguiname": "igEndMainMenuBar", "ret": "void", @@ -21589,7 +21664,7 @@ "cimguiname": "igEndMenu", "defaults": {}, "funcname": "EndMenu", - "location": "imgui:822", + "location": "imgui:825", "namespace": "ImGui", "ov_cimguiname": "igEndMenu", "ret": "void", @@ -21607,7 +21682,7 @@ "cimguiname": "igEndMenuBar", "defaults": {}, "funcname": "EndMenuBar", - "location": "imgui:818", + "location": "imgui:821", "namespace": "ImGui", "ov_cimguiname": "igEndMenuBar", "ret": "void", @@ -21625,7 +21700,7 @@ "cimguiname": "igEndMultiSelect", "defaults": {}, "funcname": "EndMultiSelect", - "location": "imgui:782", + "location": "imgui:785", "namespace": "ImGui", "ov_cimguiname": "igEndMultiSelect", "ret": "ImGuiMultiSelectIO*", @@ -21643,7 +21718,7 @@ "cimguiname": "igEndPopup", "defaults": {}, "funcname": "EndPopup", - "location": "imgui:855", + "location": "imgui:858", "namespace": "ImGui", "ov_cimguiname": "igEndPopup", "ret": "void", @@ -21661,7 +21736,7 @@ "cimguiname": "igEndTabBar", "defaults": {}, "funcname": "EndTabBar", - "location": "imgui:959", + "location": "imgui:962", "namespace": "ImGui", "ov_cimguiname": "igEndTabBar", "ret": "void", @@ -21679,7 +21754,7 @@ "cimguiname": "igEndTabItem", "defaults": {}, "funcname": "EndTabItem", - "location": "imgui:961", + "location": "imgui:964", "namespace": "ImGui", "ov_cimguiname": "igEndTabItem", "ret": "void", @@ -21697,7 +21772,7 @@ "cimguiname": "igEndTable", "defaults": {}, "funcname": "EndTable", - "location": "imgui:910", + "location": "imgui:913", "namespace": "ImGui", "ov_cimguiname": "igEndTable", "ret": "void", @@ -21715,7 +21790,7 @@ "cimguiname": "igEndTooltip", "defaults": {}, "funcname": "EndTooltip", - "location": "imgui:831", + "location": "imgui:834", "namespace": "ImGui", "ov_cimguiname": "igEndTooltip", "ret": "void", @@ -21733,7 +21808,7 @@ "cimguiname": "igErrorCheckEndFrameFinalizeErrorTooltip", "defaults": {}, "funcname": "ErrorCheckEndFrameFinalizeErrorTooltip", - "location": "imgui_internal:4006", + "location": "imgui_internal:4020", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckEndFrameFinalizeErrorTooltip", "ret": "void", @@ -21751,7 +21826,7 @@ "cimguiname": "igErrorCheckUsingSetCursorPosToExtendParentBoundaries", "defaults": {}, "funcname": "ErrorCheckUsingSetCursorPosToExtendParentBoundaries", - "location": "imgui_internal:4005", + "location": "imgui_internal:4019", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckUsingSetCursorPosToExtendParentBoundaries", "ret": "void", @@ -21774,7 +21849,7 @@ "cimguiname": "igErrorLog", "defaults": {}, "funcname": "ErrorLog", - "location": "imgui_internal:4001", + "location": "imgui_internal:4015", "namespace": "ImGui", "ov_cimguiname": "igErrorLog", "ret": "bool", @@ -21797,7 +21872,7 @@ "cimguiname": "igErrorRecoveryStoreState", "defaults": {}, "funcname": "ErrorRecoveryStoreState", - "location": "imgui_internal:4002", + "location": "imgui_internal:4016", "namespace": "ImGui", "ov_cimguiname": "igErrorRecoveryStoreState", "ret": "void", @@ -21820,7 +21895,7 @@ "cimguiname": "igErrorRecoveryTryToRecoverState", "defaults": {}, "funcname": "ErrorRecoveryTryToRecoverState", - "location": "imgui_internal:4003", + "location": "imgui_internal:4017", "namespace": "ImGui", "ov_cimguiname": "igErrorRecoveryTryToRecoverState", "ret": "void", @@ -21843,7 +21918,7 @@ "cimguiname": "igErrorRecoveryTryToRecoverWindowState", "defaults": {}, "funcname": "ErrorRecoveryTryToRecoverWindowState", - "location": "imgui_internal:4004", + "location": "imgui_internal:4018", "namespace": "ImGui", "ov_cimguiname": "igErrorRecoveryTryToRecoverWindowState", "ret": "void", @@ -21851,6 +21926,41 @@ "stname": "" } ], + "igExtendHitBoxWhenNearViewportEdge": [ + { + "args": "(ImGuiWindow* window,ImRect* bb,float threshold,ImGuiAxis axis)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "bb", + "type": "ImRect*" + }, + { + "name": "threshold", + "type": "float" + }, + { + "name": "axis", + "type": "ImGuiAxis" + } + ], + "argsoriginal": "(ImGuiWindow* window,ImRect* bb,float threshold,ImGuiAxis axis)", + "call_args": "(window,bb,threshold,axis)", + "call_args_old": "(window,bb,threshold,axis)", + "cimguiname": "igExtendHitBoxWhenNearViewportEdge", + "defaults": {}, + "funcname": "ExtendHitBoxWhenNearViewportEdge", + "location": "imgui_internal:3950", + "namespace": "ImGui", + "ov_cimguiname": "igExtendHitBoxWhenNearViewportEdge", + "ret": "void", + "signature": "(ImGuiWindow*,ImRect*,float,ImGuiAxis)", + "stname": "" + } + ], "igFindBestWindowPosForPopup": [ { "args": "(ImGuiWindow* window)", @@ -21867,7 +21977,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "FindBestWindowPosForPopup", - "location": "imgui_internal:3562", + "location": "imgui_internal:3573", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopup", @@ -21912,7 +22022,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "FindBestWindowPosForPopupEx", - "location": "imgui_internal:3563", + "location": "imgui_internal:3574", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopupEx", @@ -21936,7 +22046,7 @@ "cimguiname": "igFindBlockingModal", "defaults": {}, "funcname": "FindBlockingModal", - "location": "imgui_internal:3561", + "location": "imgui_internal:3572", "namespace": "ImGui", "ov_cimguiname": "igFindBlockingModal", "ret": "ImGuiWindow*", @@ -21959,7 +22069,7 @@ "cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", "defaults": {}, "funcname": "FindBottomMostVisibleWindowWithinBeginStack", - "location": "imgui_internal:3425", + "location": "imgui_internal:3436", "namespace": "ImGui", "ov_cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", "ret": "ImGuiWindow*", @@ -21982,7 +22092,7 @@ "cimguiname": "igFindHoveredViewportFromPlatformWindowStack", "defaults": {}, "funcname": "FindHoveredViewportFromPlatformWindowStack", - "location": "imgui_internal:3473", + "location": "imgui_internal:3484", "namespace": "ImGui", "ov_cimguiname": "igFindHoveredViewportFromPlatformWindowStack", "ret": "ImGuiViewportP*", @@ -22017,7 +22127,7 @@ "cimguiname": "igFindHoveredWindowEx", "defaults": {}, "funcname": "FindHoveredWindowEx", - "location": "imgui_internal:3459", + "location": "imgui_internal:3470", "namespace": "ImGui", "ov_cimguiname": "igFindHoveredWindowEx", "ret": "void", @@ -22044,7 +22154,7 @@ "cimguiname": "igFindOrCreateColumns", "defaults": {}, "funcname": "FindOrCreateColumns", - "location": "imgui_internal:3794", + "location": "imgui_internal:3807", "namespace": "ImGui", "ov_cimguiname": "igFindOrCreateColumns", "ret": "ImGuiOldColumns*", @@ -22073,7 +22183,7 @@ "text_end": "NULL" }, "funcname": "FindRenderedTextEnd", - "location": "imgui_internal:3900", + "location": "imgui_internal:3914", "namespace": "ImGui", "ov_cimguiname": "igFindRenderedTextEnd", "ret": "const char*", @@ -22096,7 +22206,7 @@ "cimguiname": "igFindSettingsHandler", "defaults": {}, "funcname": "FindSettingsHandler", - "location": "imgui_internal:3481", + "location": "imgui_internal:3492", "namespace": "ImGui", "ov_cimguiname": "igFindSettingsHandler", "ret": "ImGuiSettingsHandler*", @@ -22119,7 +22229,7 @@ "cimguiname": "igFindViewportByID", "defaults": {}, "funcname": "FindViewportByID", - "location": "imgui:1197", + "location": "imgui:1200", "namespace": "ImGui", "ov_cimguiname": "igFindViewportByID", "ret": "ImGuiViewport*", @@ -22142,7 +22252,7 @@ "cimguiname": "igFindViewportByPlatformHandle", "defaults": {}, "funcname": "FindViewportByPlatformHandle", - "location": "imgui:1198", + "location": "imgui:1201", "namespace": "ImGui", "ov_cimguiname": "igFindViewportByPlatformHandle", "ret": "ImGuiViewport*", @@ -22165,7 +22275,7 @@ "cimguiname": "igFindWindowByID", "defaults": {}, "funcname": "FindWindowByID", - "location": "imgui_internal:3396", + "location": "imgui_internal:3407", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByID", "ret": "ImGuiWindow*", @@ -22188,7 +22298,7 @@ "cimguiname": "igFindWindowByName", "defaults": {}, "funcname": "FindWindowByName", - "location": "imgui_internal:3397", + "location": "imgui_internal:3408", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByName", "ret": "ImGuiWindow*", @@ -22211,7 +22321,7 @@ "cimguiname": "igFindWindowDisplayIndex", "defaults": {}, "funcname": "FindWindowDisplayIndex", - "location": "imgui_internal:3424", + "location": "imgui_internal:3435", "namespace": "ImGui", "ov_cimguiname": "igFindWindowDisplayIndex", "ret": "int", @@ -22234,7 +22344,7 @@ "cimguiname": "igFindWindowSettingsByID", "defaults": {}, "funcname": "FindWindowSettingsByID", - "location": "imgui_internal:3485", + "location": "imgui_internal:3496", "namespace": "ImGui", "ov_cimguiname": "igFindWindowSettingsByID", "ret": "ImGuiWindowSettings*", @@ -22257,7 +22367,7 @@ "cimguiname": "igFindWindowSettingsByWindow", "defaults": {}, "funcname": "FindWindowSettingsByWindow", - "location": "imgui_internal:3486", + "location": "imgui_internal:3497", "namespace": "ImGui", "ov_cimguiname": "igFindWindowSettingsByWindow", "ret": "ImGuiWindowSettings*", @@ -22280,7 +22390,7 @@ "cimguiname": "igFixupKeyChord", "defaults": {}, "funcname": "FixupKeyChord", - "location": "imgui_internal:3615", + "location": "imgui_internal:3628", "namespace": "ImGui", "ov_cimguiname": "igFixupKeyChord", "ret": "ImGuiKeyChord", @@ -22298,7 +22408,7 @@ "cimguiname": "igFocusItem", "defaults": {}, "funcname": "FocusItem", - "location": "imgui_internal:3602", + "location": "imgui_internal:3615", "namespace": "ImGui", "ov_cimguiname": "igFocusItem", "ret": "void", @@ -22333,7 +22443,7 @@ "cimguiname": "igFocusTopMostWindowUnderOne", "defaults": {}, "funcname": "FocusTopMostWindowUnderOne", - "location": "imgui_internal:3419", + "location": "imgui_internal:3430", "namespace": "ImGui", "ov_cimguiname": "igFocusTopMostWindowUnderOne", "ret": "void", @@ -22362,7 +22472,7 @@ "flags": "0" }, "funcname": "FocusWindow", - "location": "imgui_internal:3418", + "location": "imgui_internal:3429", "namespace": "ImGui", "ov_cimguiname": "igFocusWindow", "ret": "void", @@ -22385,7 +22495,7 @@ "cimguiname": "igGcAwakeTransientWindowBuffers", "defaults": {}, "funcname": "GcAwakeTransientWindowBuffers", - "location": "imgui_internal:3998", + "location": "imgui_internal:4012", "namespace": "ImGui", "ov_cimguiname": "igGcAwakeTransientWindowBuffers", "ret": "void", @@ -22403,7 +22513,7 @@ "cimguiname": "igGcCompactTransientMiscBuffers", "defaults": {}, "funcname": "GcCompactTransientMiscBuffers", - "location": "imgui_internal:3996", + "location": "imgui_internal:4010", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientMiscBuffers", "ret": "void", @@ -22426,7 +22536,7 @@ "cimguiname": "igGcCompactTransientWindowBuffers", "defaults": {}, "funcname": "GcCompactTransientWindowBuffers", - "location": "imgui_internal:3997", + "location": "imgui_internal:4011", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientWindowBuffers", "ret": "void", @@ -22444,7 +22554,7 @@ "cimguiname": "igGetActiveID", "defaults": {}, "funcname": "GetActiveID", - "location": "imgui_internal:3509", + "location": "imgui_internal:3520", "namespace": "ImGui", "ov_cimguiname": "igGetActiveID", "ret": "ImGuiID", @@ -22475,7 +22585,7 @@ "cimguiname": "igGetAllocatorFunctions", "defaults": {}, "funcname": "GetAllocatorFunctions", - "location": "imgui:1187", + "location": "imgui:1190", "namespace": "ImGui", "ov_cimguiname": "igGetAllocatorFunctions", "ret": "void", @@ -22500,7 +22610,7 @@ "viewport": "NULL" }, "funcname": "GetBackgroundDrawList", - "location": "imgui:1068", + "location": "imgui:1071", "namespace": "ImGui", "ov_cimguiname": "igGetBackgroundDrawList", "ret": "ImDrawList*", @@ -22523,7 +22633,7 @@ "cimguiname": "igGetBoxSelectState", "defaults": {}, "funcname": "GetBoxSelectState", - "location": "imgui_internal:3783", + "location": "imgui_internal:3796", "namespace": "ImGui", "ov_cimguiname": "igGetBoxSelectState", "ret": "ImGuiBoxSelectState*", @@ -22541,7 +22651,7 @@ "cimguiname": "igGetClipboardText", "defaults": {}, "funcname": "GetClipboardText", - "location": "imgui:1157", + "location": "imgui:1160", "namespace": "ImGui", "ov_cimguiname": "igGetClipboardText", "ret": "const char*", @@ -22570,7 +22680,7 @@ "alpha_mul": "1.0f" }, "funcname": "GetColorU32", - "location": "imgui:558", + "location": "imgui:560", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_Col", "ret": "ImU32", @@ -22591,7 +22701,7 @@ "cimguiname": "igGetColorU32", "defaults": {}, "funcname": "GetColorU32", - "location": "imgui:559", + "location": "imgui:561", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_Vec4", "ret": "ImU32", @@ -22618,7 +22728,7 @@ "alpha_mul": "1.0f" }, "funcname": "GetColorU32", - "location": "imgui:560", + "location": "imgui:562", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_U32", "ret": "ImU32", @@ -22636,7 +22746,7 @@ "cimguiname": "igGetColumnIndex", "defaults": {}, "funcname": "GetColumnIndex", - "location": "imgui:949", + "location": "imgui:952", "namespace": "ImGui", "ov_cimguiname": "igGetColumnIndex", "ret": "int", @@ -22663,7 +22773,7 @@ "cimguiname": "igGetColumnNormFromOffset", "defaults": {}, "funcname": "GetColumnNormFromOffset", - "location": "imgui_internal:3796", + "location": "imgui_internal:3809", "namespace": "ImGui", "ov_cimguiname": "igGetColumnNormFromOffset", "ret": "float", @@ -22688,7 +22798,7 @@ "column_index": "-1" }, "funcname": "GetColumnOffset", - "location": "imgui:952", + "location": "imgui:955", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffset", "ret": "float", @@ -22715,7 +22825,7 @@ "cimguiname": "igGetColumnOffsetFromNorm", "defaults": {}, "funcname": "GetColumnOffsetFromNorm", - "location": "imgui_internal:3795", + "location": "imgui_internal:3808", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffsetFromNorm", "ret": "float", @@ -22740,7 +22850,7 @@ "column_index": "-1" }, "funcname": "GetColumnWidth", - "location": "imgui:950", + "location": "imgui:953", "namespace": "ImGui", "ov_cimguiname": "igGetColumnWidth", "ret": "float", @@ -22758,7 +22868,7 @@ "cimguiname": "igGetColumnsCount", "defaults": {}, "funcname": "GetColumnsCount", - "location": "imgui:954", + "location": "imgui:957", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsCount", "ret": "int", @@ -22785,7 +22895,7 @@ "cimguiname": "igGetColumnsID", "defaults": {}, "funcname": "GetColumnsID", - "location": "imgui_internal:3793", + "location": "imgui_internal:3806", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsID", "ret": "ImGuiID", @@ -22804,7 +22914,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetContentRegionAvail", - "location": "imgui:575", + "location": "imgui:577", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionAvail", @@ -22823,7 +22933,7 @@ "cimguiname": "igGetCurrentContext", "defaults": {}, "funcname": "GetCurrentContext", - "location": "imgui:399", + "location": "imgui:401", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentContext", "ret": "ImGuiContext*", @@ -22841,7 +22951,7 @@ "cimguiname": "igGetCurrentFocusScope", "defaults": {}, "funcname": "GetCurrentFocusScope", - "location": "imgui_internal:3755", + "location": "imgui_internal:3768", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentFocusScope", "ret": "ImGuiID", @@ -22859,7 +22969,7 @@ "cimguiname": "igGetCurrentTabBar", "defaults": {}, "funcname": "GetCurrentTabBar", - "location": "imgui_internal:3859", + "location": "imgui_internal:3873", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentTabBar", "ret": "ImGuiTabBar*", @@ -22877,7 +22987,7 @@ "cimguiname": "igGetCurrentTable", "defaults": {}, "funcname": "GetCurrentTable", - "location": "imgui_internal:3812", + "location": "imgui_internal:3825", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentTable", "ret": "ImGuiTable*", @@ -22895,7 +23005,7 @@ "cimguiname": "igGetCurrentWindow", "defaults": {}, "funcname": "GetCurrentWindow", - "location": "imgui_internal:3395", + "location": "imgui_internal:3406", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindow", "ret": "ImGuiWindow*", @@ -22913,7 +23023,7 @@ "cimguiname": "igGetCurrentWindowRead", "defaults": {}, "funcname": "GetCurrentWindowRead", - "location": "imgui_internal:3394", + "location": "imgui_internal:3405", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindowRead", "ret": "ImGuiWindow*", @@ -22932,7 +23042,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetCursorPos", - "location": "imgui:576", + "location": "imgui:578", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorPos", @@ -22951,7 +23061,7 @@ "cimguiname": "igGetCursorPosX", "defaults": {}, "funcname": "GetCursorPosX", - "location": "imgui:577", + "location": "imgui:579", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosX", "ret": "float", @@ -22969,7 +23079,7 @@ "cimguiname": "igGetCursorPosY", "defaults": {}, "funcname": "GetCursorPosY", - "location": "imgui:578", + "location": "imgui:580", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosY", "ret": "float", @@ -22988,7 +23098,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetCursorScreenPos", - "location": "imgui:573", + "location": "imgui:575", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorScreenPos", @@ -23008,7 +23118,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetCursorStartPos", - "location": "imgui:582", + "location": "imgui:584", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorStartPos", @@ -23027,7 +23137,7 @@ "cimguiname": "igGetDefaultFont", "defaults": {}, "funcname": "GetDefaultFont", - "location": "imgui_internal:3440", + "location": "imgui_internal:3451", "namespace": "ImGui", "ov_cimguiname": "igGetDefaultFont", "ret": "ImFont*", @@ -23045,7 +23155,7 @@ "cimguiname": "igGetDragDropPayload", "defaults": {}, "funcname": "GetDragDropPayload", - "location": "imgui:1014", + "location": "imgui:1017", "namespace": "ImGui", "ov_cimguiname": "igGetDragDropPayload", "ret": "const ImGuiPayload*", @@ -23063,7 +23173,7 @@ "cimguiname": "igGetDrawData", "defaults": {}, "funcname": "GetDrawData", - "location": "imgui:409", + "location": "imgui:411", "namespace": "ImGui", "ov_cimguiname": "igGetDrawData", "ret": "ImDrawData*", @@ -23081,7 +23191,7 @@ "cimguiname": "igGetDrawListSharedData", "defaults": {}, "funcname": "GetDrawListSharedData", - "location": "imgui:1076", + "location": "imgui:1079", "namespace": "ImGui", "ov_cimguiname": "igGetDrawListSharedData", "ret": "ImDrawListSharedData*", @@ -23099,7 +23209,7 @@ "cimguiname": "igGetFocusID", "defaults": {}, "funcname": "GetFocusID", - "location": "imgui_internal:3510", + "location": "imgui_internal:3521", "namespace": "ImGui", "ov_cimguiname": "igGetFocusID", "ret": "ImGuiID", @@ -23117,7 +23227,7 @@ "cimguiname": "igGetFont", "defaults": {}, "funcname": "GetFont", - "location": "imgui:531", + "location": "imgui:533", "namespace": "ImGui", "ov_cimguiname": "igGetFont", "ret": "ImFont*", @@ -23135,7 +23245,7 @@ "cimguiname": "igGetFontBaked", "defaults": {}, "funcname": "GetFontBaked", - "location": "imgui:533", + "location": "imgui:535", "namespace": "ImGui", "ov_cimguiname": "igGetFontBaked", "ret": "ImFontBaked*", @@ -23153,7 +23263,7 @@ "cimguiname": "igGetFontRasterizerDensity", "defaults": {}, "funcname": "GetFontRasterizerDensity", - "location": "imgui_internal:3438", + "location": "imgui_internal:3449", "namespace": "ImGui", "ov_cimguiname": "igGetFontRasterizerDensity", "ret": "float", @@ -23171,7 +23281,7 @@ "cimguiname": "igGetFontSize", "defaults": {}, "funcname": "GetFontSize", - "location": "imgui:532", + "location": "imgui:534", "namespace": "ImGui", "ov_cimguiname": "igGetFontSize", "ret": "float", @@ -23190,7 +23300,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetFontTexUvWhitePixel", - "location": "imgui:557", + "location": "imgui:559", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetFontTexUvWhitePixel", @@ -23216,7 +23326,7 @@ "viewport": "NULL" }, "funcname": "GetForegroundDrawList", - "location": "imgui:1069", + "location": "imgui:1072", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_ViewportPtr", "ret": "ImDrawList*", @@ -23237,7 +23347,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui_internal:3443", + "location": "imgui_internal:3454", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_WindowPtr", "ret": "ImDrawList*", @@ -23255,7 +23365,7 @@ "cimguiname": "igGetFrameCount", "defaults": {}, "funcname": "GetFrameCount", - "location": "imgui:1075", + "location": "imgui:1078", "namespace": "ImGui", "ov_cimguiname": "igGetFrameCount", "ret": "int", @@ -23273,7 +23383,7 @@ "cimguiname": "igGetFrameHeight", "defaults": {}, "funcname": "GetFrameHeight", - "location": "imgui:597", + "location": "imgui:599", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeight", "ret": "float", @@ -23291,7 +23401,7 @@ "cimguiname": "igGetFrameHeightWithSpacing", "defaults": {}, "funcname": "GetFrameHeightWithSpacing", - "location": "imgui:598", + "location": "imgui:600", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeightWithSpacing", "ret": "float", @@ -23309,7 +23419,7 @@ "cimguiname": "igGetHoveredID", "defaults": {}, "funcname": "GetHoveredID", - "location": "imgui_internal:3514", + "location": "imgui_internal:3525", "namespace": "ImGui", "ov_cimguiname": "igGetHoveredID", "ret": "ImGuiID", @@ -23332,7 +23442,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:616", + "location": "imgui:618", "namespace": "ImGui", "ov_cimguiname": "igGetID_Str", "ret": "ImGuiID", @@ -23357,7 +23467,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:617", + "location": "imgui:619", "namespace": "ImGui", "ov_cimguiname": "igGetID_StrStr", "ret": "ImGuiID", @@ -23378,7 +23488,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:618", + "location": "imgui:620", "namespace": "ImGui", "ov_cimguiname": "igGetID_Ptr", "ret": "ImGuiID", @@ -23399,7 +23509,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:619", + "location": "imgui:621", "namespace": "ImGui", "ov_cimguiname": "igGetID_Int", "ret": "ImGuiID", @@ -23430,7 +23540,7 @@ "cimguiname": "igGetIDWithSeed", "defaults": {}, "funcname": "GetIDWithSeed", - "location": "imgui_internal:3519", + "location": "imgui_internal:3530", "namespace": "ImGui", "ov_cimguiname": "igGetIDWithSeed_Str", "ret": "ImGuiID", @@ -23455,7 +23565,7 @@ "cimguiname": "igGetIDWithSeed", "defaults": {}, "funcname": "GetIDWithSeed", - "location": "imgui_internal:3520", + "location": "imgui_internal:3531", "namespace": "ImGui", "ov_cimguiname": "igGetIDWithSeed_Int", "ret": "ImGuiID", @@ -23473,7 +23583,7 @@ "cimguiname": "igGetIO", "defaults": {}, "funcname": "GetIO", - "location": "imgui:403", + "location": "imgui:405", "namespace": "ImGui", "ov_cimguiname": "igGetIO_Nil", "ret": "ImGuiIO*", @@ -23495,7 +23605,7 @@ "cimguiname": "igGetIO", "defaults": {}, "funcname": "GetIO", - "location": "imgui_internal:3391", + "location": "imgui_internal:3402", "namespace": "ImGui", "ov_cimguiname": "igGetIO_ContextPtr", "ret": "ImGuiIO*", @@ -23519,7 +23629,7 @@ "cimguiname": "igGetInputTextState", "defaults": {}, "funcname": "GetInputTextState", - "location": "imgui_internal:3977", + "location": "imgui_internal:3991", "namespace": "ImGui", "ov_cimguiname": "igGetInputTextState", "ret": "ImGuiInputTextState*", @@ -23537,7 +23647,7 @@ "cimguiname": "igGetItemFlags", "defaults": {}, "funcname": "GetItemFlags", - "location": "imgui:1059", + "location": "imgui:1062", "namespace": "ImGui", "ov_cimguiname": "igGetItemFlags", "ret": "ImGuiItemFlags", @@ -23555,7 +23665,7 @@ "cimguiname": "igGetItemID", "defaults": {}, "funcname": "GetItemID", - "location": "imgui:1055", + "location": "imgui:1058", "namespace": "ImGui", "ov_cimguiname": "igGetItemID", "ret": "ImGuiID", @@ -23574,7 +23684,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetItemRectMax", - "location": "imgui:1057", + "location": "imgui:1060", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMax", @@ -23594,7 +23704,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetItemRectMin", - "location": "imgui:1056", + "location": "imgui:1059", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMin", @@ -23614,7 +23724,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetItemRectSize", - "location": "imgui:1058", + "location": "imgui:1061", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectSize", @@ -23633,7 +23743,7 @@ "cimguiname": "igGetItemStatusFlags", "defaults": {}, "funcname": "GetItemStatusFlags", - "location": "imgui_internal:3508", + "location": "imgui_internal:3519", "namespace": "ImGui", "ov_cimguiname": "igGetItemStatusFlags", "ret": "ImGuiItemStatusFlags", @@ -23656,7 +23766,7 @@ "cimguiname": "igGetKeyChordName", "defaults": {}, "funcname": "GetKeyChordName", - "location": "imgui_internal:3627", + "location": "imgui_internal:3640", "namespace": "ImGui", "ov_cimguiname": "igGetKeyChordName", "ret": "const char*", @@ -23683,7 +23793,7 @@ "cimguiname": "igGetKeyData", "defaults": {}, "funcname": "GetKeyData", - "location": "imgui_internal:3625", + "location": "imgui_internal:3638", "namespace": "ImGui", "ov_cimguiname": "igGetKeyData_ContextPtr", "ret": "ImGuiKeyData*", @@ -23704,7 +23814,7 @@ "cimguiname": "igGetKeyData", "defaults": {}, "funcname": "GetKeyData", - "location": "imgui_internal:3626", + "location": "imgui_internal:3639", "namespace": "ImGui", "ov_cimguiname": "igGetKeyData_Key", "ret": "ImGuiKeyData*", @@ -23740,7 +23850,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetKeyMagnitude2d", - "location": "imgui_internal:3630", + "location": "imgui_internal:3643", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetKeyMagnitude2d", @@ -23764,7 +23874,7 @@ "cimguiname": "igGetKeyName", "defaults": {}, "funcname": "GetKeyName", - "location": "imgui:1099", + "location": "imgui:1102", "namespace": "ImGui", "ov_cimguiname": "igGetKeyName", "ret": "const char*", @@ -23787,7 +23897,7 @@ "cimguiname": "igGetKeyOwner", "defaults": {}, "funcname": "GetKeyOwner", - "location": "imgui_internal:3649", + "location": "imgui_internal:3662", "namespace": "ImGui", "ov_cimguiname": "igGetKeyOwner", "ret": "ImGuiID", @@ -23814,7 +23924,7 @@ "cimguiname": "igGetKeyOwnerData", "defaults": {}, "funcname": "GetKeyOwnerData", - "location": "imgui_internal:3654", + "location": "imgui_internal:3667", "namespace": "ImGui", "ov_cimguiname": "igGetKeyOwnerData", "ret": "ImGuiKeyOwnerData*", @@ -23845,7 +23955,7 @@ "cimguiname": "igGetKeyPressedAmount", "defaults": {}, "funcname": "GetKeyPressedAmount", - "location": "imgui:1098", + "location": "imgui:1101", "namespace": "ImGui", "ov_cimguiname": "igGetKeyPressedAmount", "ret": "int", @@ -23863,7 +23973,7 @@ "cimguiname": "igGetMainViewport", "defaults": {}, "funcname": "GetMainViewport", - "location": "imgui:1065", + "location": "imgui:1068", "namespace": "ImGui", "ov_cimguiname": "igGetMainViewport", "ret": "ImGuiViewport*", @@ -23886,7 +23996,7 @@ "cimguiname": "igGetMouseButtonFromPopupFlags", "defaults": {}, "funcname": "GetMouseButtonFromPopupFlags", - "location": "imgui_internal:3564", + "location": "imgui_internal:3575", "namespace": "ImGui", "ov_cimguiname": "igGetMouseButtonFromPopupFlags", "ret": "ImGuiMouseButton", @@ -23909,7 +24019,7 @@ "cimguiname": "igGetMouseClickedCount", "defaults": {}, "funcname": "GetMouseClickedCount", - "location": "imgui:1142", + "location": "imgui:1145", "namespace": "ImGui", "ov_cimguiname": "igGetMouseClickedCount", "ret": "int", @@ -23927,7 +24037,7 @@ "cimguiname": "igGetMouseCursor", "defaults": {}, "funcname": "GetMouseCursor", - "location": "imgui:1151", + "location": "imgui:1154", "namespace": "ImGui", "ov_cimguiname": "igGetMouseCursor", "ret": "ImGuiMouseCursor", @@ -23958,7 +24068,7 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", - "location": "imgui:1149", + "location": "imgui:1152", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMouseDragDelta", @@ -23978,7 +24088,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetMousePos", - "location": "imgui:1146", + "location": "imgui:1149", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePos", @@ -23998,7 +24108,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetMousePosOnOpeningCurrentPopup", - "location": "imgui:1147", + "location": "imgui:1150", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup", @@ -24022,7 +24132,7 @@ "cimguiname": "igGetMultiSelectState", "defaults": {}, "funcname": "GetMultiSelectState", - "location": "imgui_internal:3784", + "location": "imgui_internal:3797", "namespace": "ImGui", "ov_cimguiname": "igGetMultiSelectState", "ret": "ImGuiMultiSelectState*", @@ -24045,7 +24155,7 @@ "cimguiname": "igGetNavTweakPressedAmount", "defaults": {}, "funcname": "GetNavTweakPressedAmount", - "location": "imgui_internal:3631", + "location": "imgui_internal:3644", "namespace": "ImGui", "ov_cimguiname": "igGetNavTweakPressedAmount", "ret": "float", @@ -24063,7 +24173,7 @@ "cimguiname": "igGetPlatformIO", "defaults": {}, "funcname": "GetPlatformIO", - "location": "imgui:404", + "location": "imgui:406", "namespace": "ImGui", "ov_cimguiname": "igGetPlatformIO_Nil", "ret": "ImGuiPlatformIO*", @@ -24085,7 +24195,7 @@ "cimguiname": "igGetPlatformIO", "defaults": {}, "funcname": "GetPlatformIO", - "location": "imgui_internal:3392", + "location": "imgui_internal:3403", "namespace": "ImGui", "ov_cimguiname": "igGetPlatformIO_ContextPtr", "ret": "ImGuiPlatformIO*", @@ -24110,7 +24220,7 @@ "conv": "ImRect", "defaults": {}, "funcname": "GetPopupAllowedExtentRect", - "location": "imgui_internal:3558", + "location": "imgui_internal:3569", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetPopupAllowedExtentRect", @@ -24134,7 +24244,7 @@ "cimguiname": "igGetRoundedFontSize", "defaults": {}, "funcname": "GetRoundedFontSize", - "location": "imgui_internal:3439", + "location": "imgui_internal:3450", "namespace": "ImGui", "ov_cimguiname": "igGetRoundedFontSize", "ret": "float", @@ -24152,7 +24262,7 @@ "cimguiname": "igGetScale", "defaults": {}, "funcname": "GetScale", - "location": "imgui_internal:3393", + "location": "imgui_internal:3404", "namespace": "ImGui", "ov_cimguiname": "igGetScale", "ret": "float", @@ -24170,7 +24280,7 @@ "cimguiname": "igGetScrollMaxX", "defaults": {}, "funcname": "GetScrollMaxX", - "location": "imgui:506", + "location": "imgui:508", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxX", "ret": "float", @@ -24188,7 +24298,7 @@ "cimguiname": "igGetScrollMaxY", "defaults": {}, "funcname": "GetScrollMaxY", - "location": "imgui:507", + "location": "imgui:509", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxY", "ret": "float", @@ -24206,7 +24316,7 @@ "cimguiname": "igGetScrollX", "defaults": {}, "funcname": "GetScrollX", - "location": "imgui:502", + "location": "imgui:504", "namespace": "ImGui", "ov_cimguiname": "igGetScrollX", "ret": "float", @@ -24224,7 +24334,7 @@ "cimguiname": "igGetScrollY", "defaults": {}, "funcname": "GetScrollY", - "location": "imgui:503", + "location": "imgui:505", "namespace": "ImGui", "ov_cimguiname": "igGetScrollY", "ret": "float", @@ -24247,7 +24357,7 @@ "cimguiname": "igGetShortcutRoutingData", "defaults": {}, "funcname": "GetShortcutRoutingData", - "location": "imgui_internal:3688", + "location": "imgui_internal:3701", "namespace": "ImGui", "ov_cimguiname": "igGetShortcutRoutingData", "ret": "ImGuiKeyRoutingData*", @@ -24265,7 +24375,7 @@ "cimguiname": "igGetStateStorage", "defaults": {}, "funcname": "GetStateStorage", - "location": "imgui:1079", + "location": "imgui:1082", "namespace": "ImGui", "ov_cimguiname": "igGetStateStorage", "ret": "ImGuiStorage*", @@ -24283,7 +24393,7 @@ "cimguiname": "igGetStyle", "defaults": {}, "funcname": "GetStyle", - "location": "imgui:405", + "location": "imgui:407", "namespace": "ImGui", "ov_cimguiname": "igGetStyle", "ret": "ImGuiStyle*", @@ -24307,7 +24417,7 @@ "cimguiname": "igGetStyleColorName", "defaults": {}, "funcname": "GetStyleColorName", - "location": "imgui:1077", + "location": "imgui:1080", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorName", "ret": "const char*", @@ -24330,7 +24440,7 @@ "cimguiname": "igGetStyleColorVec4", "defaults": {}, "funcname": "GetStyleColorVec4", - "location": "imgui:561", + "location": "imgui:563", "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetStyleColorVec4", @@ -24355,7 +24465,7 @@ "cimguiname": "igGetStyleVarInfo", "defaults": {}, "funcname": "GetStyleVarInfo", - "location": "imgui_internal:3537", + "location": "imgui_internal:3548", "namespace": "ImGui", "ov_cimguiname": "igGetStyleVarInfo", "ret": "const ImGuiStyleVarInfo*", @@ -24373,7 +24483,7 @@ "cimguiname": "igGetTextLineHeight", "defaults": {}, "funcname": "GetTextLineHeight", - "location": "imgui:595", + "location": "imgui:597", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeight", "ret": "float", @@ -24391,7 +24501,7 @@ "cimguiname": "igGetTextLineHeightWithSpacing", "defaults": {}, "funcname": "GetTextLineHeightWithSpacing", - "location": "imgui:596", + "location": "imgui:598", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeightWithSpacing", "ret": "float", @@ -24409,7 +24519,7 @@ "cimguiname": "igGetTime", "defaults": {}, "funcname": "GetTime", - "location": "imgui:1074", + "location": "imgui:1077", "namespace": "ImGui", "ov_cimguiname": "igGetTime", "ret": "double", @@ -24427,7 +24537,7 @@ "cimguiname": "igGetTopMostAndVisiblePopupModal", "defaults": {}, "funcname": "GetTopMostAndVisiblePopupModal", - "location": "imgui_internal:3560", + "location": "imgui_internal:3571", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostAndVisiblePopupModal", "ret": "ImGuiWindow*", @@ -24445,7 +24555,7 @@ "cimguiname": "igGetTopMostPopupModal", "defaults": {}, "funcname": "GetTopMostPopupModal", - "location": "imgui_internal:3559", + "location": "imgui_internal:3570", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostPopupModal", "ret": "ImGuiWindow*", @@ -24463,7 +24573,7 @@ "cimguiname": "igGetTreeNodeToLabelSpacing", "defaults": {}, "funcname": "GetTreeNodeToLabelSpacing", - "location": "imgui:762", + "location": "imgui:764", "namespace": "ImGui", "ov_cimguiname": "igGetTreeNodeToLabelSpacing", "ret": "float", @@ -24494,7 +24604,7 @@ "cimguiname": "igGetTypematicRepeatRate", "defaults": {}, "funcname": "GetTypematicRepeatRate", - "location": "imgui_internal:3633", + "location": "imgui_internal:3646", "namespace": "ImGui", "ov_cimguiname": "igGetTypematicRepeatRate", "ret": "void", @@ -24519,7 +24629,7 @@ "flags": "ImGuiTypingSelectFlags_None" }, "funcname": "GetTypingSelectRequest", - "location": "imgui_internal:3769", + "location": "imgui_internal:3782", "namespace": "ImGui", "ov_cimguiname": "igGetTypingSelectRequest", "ret": "ImGuiTypingSelectRequest*", @@ -24537,7 +24647,7 @@ "cimguiname": "igGetVersion", "defaults": {}, "funcname": "GetVersion", - "location": "imgui:421", + "location": "imgui:423", "namespace": "ImGui", "ov_cimguiname": "igGetVersion", "ret": "const char*", @@ -24560,7 +24670,7 @@ "cimguiname": "igGetViewportPlatformMonitor", "defaults": {}, "funcname": "GetViewportPlatformMonitor", - "location": "imgui_internal:3472", + "location": "imgui_internal:3483", "namespace": "ImGui", "ov_cimguiname": "igGetViewportPlatformMonitor", "ret": "const ImGuiPlatformMonitor*", @@ -24583,7 +24693,7 @@ "cimguiname": "igGetWindowAlwaysWantOwnTabBar", "defaults": {}, "funcname": "GetWindowAlwaysWantOwnTabBar", - "location": "imgui_internal:3715", + "location": "imgui_internal:3728", "namespace": "ImGui", "ov_cimguiname": "igGetWindowAlwaysWantOwnTabBar", "ret": "bool", @@ -24601,7 +24711,7 @@ "cimguiname": "igGetWindowDockID", "defaults": {}, "funcname": "GetWindowDockID", - "location": "imgui:990", + "location": "imgui:993", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDockID", "ret": "ImGuiID", @@ -24619,7 +24729,7 @@ "cimguiname": "igGetWindowDockNode", "defaults": {}, "funcname": "GetWindowDockNode", - "location": "imgui_internal:3714", + "location": "imgui_internal:3727", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDockNode", "ret": "ImGuiDockNode*", @@ -24637,7 +24747,7 @@ "cimguiname": "igGetWindowDpiScale", "defaults": {}, "funcname": "GetWindowDpiScale", - "location": "imgui:472", + "location": "imgui:474", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDpiScale", "ret": "float", @@ -24655,7 +24765,7 @@ "cimguiname": "igGetWindowDrawList", "defaults": {}, "funcname": "GetWindowDrawList", - "location": "imgui:471", + "location": "imgui:473", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDrawList", "ret": "ImDrawList*", @@ -24673,7 +24783,7 @@ "cimguiname": "igGetWindowHeight", "defaults": {}, "funcname": "GetWindowHeight", - "location": "imgui:476", + "location": "imgui:478", "namespace": "ImGui", "ov_cimguiname": "igGetWindowHeight", "ret": "float", @@ -24692,7 +24802,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetWindowPos", - "location": "imgui:473", + "location": "imgui:475", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowPos", @@ -24720,7 +24830,7 @@ "cimguiname": "igGetWindowResizeBorderID", "defaults": {}, "funcname": "GetWindowResizeBorderID", - "location": "imgui_internal:3935", + "location": "imgui_internal:3949", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeBorderID", "ret": "ImGuiID", @@ -24747,7 +24857,7 @@ "cimguiname": "igGetWindowResizeCornerID", "defaults": {}, "funcname": "GetWindowResizeCornerID", - "location": "imgui_internal:3934", + "location": "imgui_internal:3948", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeCornerID", "ret": "ImGuiID", @@ -24774,7 +24884,7 @@ "cimguiname": "igGetWindowScrollbarID", "defaults": {}, "funcname": "GetWindowScrollbarID", - "location": "imgui_internal:3933", + "location": "imgui_internal:3947", "namespace": "ImGui", "ov_cimguiname": "igGetWindowScrollbarID", "ret": "ImGuiID", @@ -24802,7 +24912,7 @@ "conv": "ImRect", "defaults": {}, "funcname": "GetWindowScrollbarRect", - "location": "imgui_internal:3932", + "location": "imgui_internal:3946", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowScrollbarRect", @@ -24822,7 +24932,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetWindowSize", - "location": "imgui:474", + "location": "imgui:476", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowSize", @@ -24841,7 +24951,7 @@ "cimguiname": "igGetWindowViewport", "defaults": {}, "funcname": "GetWindowViewport", - "location": "imgui:477", + "location": "imgui:479", "namespace": "ImGui", "ov_cimguiname": "igGetWindowViewport", "ret": "ImGuiViewport*", @@ -24859,7 +24969,7 @@ "cimguiname": "igGetWindowWidth", "defaults": {}, "funcname": "GetWindowWidth", - "location": "imgui:475", + "location": "imgui:477", "namespace": "ImGui", "ov_cimguiname": "igGetWindowWidth", "ret": "float", @@ -25689,7 +25799,7 @@ "cimguiname": "igImFontAtlasAddDrawListSharedData", "defaults": {}, "funcname": "ImFontAtlasAddDrawListSharedData", - "location": "imgui_internal:4235", + "location": "imgui_internal:4252", "ov_cimguiname": "igImFontAtlasAddDrawListSharedData", "ret": "void", "signature": "(ImFontAtlas*,ImDrawListSharedData*)", @@ -25727,7 +25837,7 @@ "cimguiname": "igImFontAtlasBakedAdd", "defaults": {}, "funcname": "ImFontAtlasBakedAdd", - "location": "imgui_internal:4221", + "location": "imgui_internal:4238", "ov_cimguiname": "igImFontAtlasBakedAdd", "ret": "ImFontBaked*", "signature": "(ImFontAtlas*,ImFont*,float,float,ImGuiID)", @@ -25761,7 +25871,7 @@ "cimguiname": "igImFontAtlasBakedAddFontGlyph", "defaults": {}, "funcname": "ImFontAtlasBakedAddFontGlyph", - "location": "imgui_internal:4223", + "location": "imgui_internal:4240", "ov_cimguiname": "igImFontAtlasBakedAddFontGlyph", "ret": "ImFontGlyph*", "signature": "(ImFontAtlas*,ImFontBaked*,ImFontConfig*,const ImFontGlyph*)", @@ -25799,7 +25909,7 @@ "cimguiname": "igImFontAtlasBakedAddFontGlyphAdvancedX", "defaults": {}, "funcname": "ImFontAtlasBakedAddFontGlyphAdvancedX", - "location": "imgui_internal:4224", + "location": "imgui_internal:4241", "ov_cimguiname": "igImFontAtlasBakedAddFontGlyphAdvancedX", "ret": "void", "signature": "(ImFontAtlas*,ImFontBaked*,ImFontConfig*,ImWchar,float)", @@ -25829,7 +25939,7 @@ "cimguiname": "igImFontAtlasBakedDiscard", "defaults": {}, "funcname": "ImFontAtlasBakedDiscard", - "location": "imgui_internal:4222", + "location": "imgui_internal:4239", "ov_cimguiname": "igImFontAtlasBakedDiscard", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFontBaked*)", @@ -25863,7 +25973,7 @@ "cimguiname": "igImFontAtlasBakedDiscardFontGlyph", "defaults": {}, "funcname": "ImFontAtlasBakedDiscardFontGlyph", - "location": "imgui_internal:4225", + "location": "imgui_internal:4242", "ov_cimguiname": "igImFontAtlasBakedDiscardFontGlyph", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFontBaked*,ImFontGlyph*)", @@ -25897,7 +26007,7 @@ "cimguiname": "igImFontAtlasBakedGetClosestMatch", "defaults": {}, "funcname": "ImFontAtlasBakedGetClosestMatch", - "location": "imgui_internal:4220", + "location": "imgui_internal:4237", "ov_cimguiname": "igImFontAtlasBakedGetClosestMatch", "ret": "ImFontBaked*", "signature": "(ImFontAtlas*,ImFont*,float,float)", @@ -25927,7 +26037,7 @@ "cimguiname": "igImFontAtlasBakedGetId", "defaults": {}, "funcname": "ImFontAtlasBakedGetId", - "location": "imgui_internal:4218", + "location": "imgui_internal:4235", "ov_cimguiname": "igImFontAtlasBakedGetId", "ret": "ImGuiID", "signature": "(ImGuiID,float,float)", @@ -25961,7 +26071,7 @@ "cimguiname": "igImFontAtlasBakedGetOrAdd", "defaults": {}, "funcname": "ImFontAtlasBakedGetOrAdd", - "location": "imgui_internal:4219", + "location": "imgui_internal:4236", "ov_cimguiname": "igImFontAtlasBakedGetOrAdd", "ret": "ImFontBaked*", "signature": "(ImFontAtlas*,ImFont*,float,float)", @@ -26011,7 +26121,7 @@ "cimguiname": "igImFontAtlasBakedSetFontGlyphBitmap", "defaults": {}, "funcname": "ImFontAtlasBakedSetFontGlyphBitmap", - "location": "imgui_internal:4226", + "location": "imgui_internal:4243", "ov_cimguiname": "igImFontAtlasBakedSetFontGlyphBitmap", "ret": "void", "signature": "(ImFontAtlas*,ImFontBaked*,ImFontConfig*,ImFontGlyph*,ImTextureRect*,const unsigned char*,ImTextureFormat,int)", @@ -26033,7 +26143,7 @@ "cimguiname": "igImFontAtlasBuildClear", "defaults": {}, "funcname": "ImFontAtlasBuildClear", - "location": "imgui_internal:4196", + "location": "imgui_internal:4213", "ov_cimguiname": "igImFontAtlasBuildClear", "ret": "void", "signature": "(ImFontAtlas*)", @@ -26055,7 +26165,7 @@ "cimguiname": "igImFontAtlasBuildDestroy", "defaults": {}, "funcname": "ImFontAtlasBuildDestroy", - "location": "imgui_internal:4190", + "location": "imgui_internal:4207", "ov_cimguiname": "igImFontAtlasBuildDestroy", "ret": "void", "signature": "(ImFontAtlas*)", @@ -26081,7 +26191,7 @@ "cimguiname": "igImFontAtlasBuildDiscardBakes", "defaults": {}, "funcname": "ImFontAtlasBuildDiscardBakes", - "location": "imgui_internal:4208", + "location": "imgui_internal:4225", "ov_cimguiname": "igImFontAtlasBuildDiscardBakes", "ret": "void", "signature": "(ImFontAtlas*,int)", @@ -26115,7 +26225,7 @@ "cimguiname": "igImFontAtlasBuildGetOversampleFactors", "defaults": {}, "funcname": "ImFontAtlasBuildGetOversampleFactors", - "location": "imgui_internal:4207", + "location": "imgui_internal:4224", "ov_cimguiname": "igImFontAtlasBuildGetOversampleFactors", "ret": "void", "signature": "(ImFontConfig*,ImFontBaked*,int*,int*)", @@ -26137,7 +26247,7 @@ "cimguiname": "igImFontAtlasBuildInit", "defaults": {}, "funcname": "ImFontAtlasBuildInit", - "location": "imgui_internal:4189", + "location": "imgui_internal:4206", "ov_cimguiname": "igImFontAtlasBuildInit", "ret": "void", "signature": "(ImFontAtlas*)", @@ -26159,7 +26269,7 @@ "cimguiname": "igImFontAtlasBuildLegacyPreloadAllGlyphRanges", "defaults": {}, "funcname": "ImFontAtlasBuildLegacyPreloadAllGlyphRanges", - "location": "imgui_internal:4206", + "location": "imgui_internal:4223", "ov_cimguiname": "igImFontAtlasBuildLegacyPreloadAllGlyphRanges", "ret": "void", "signature": "(ImFontAtlas*)", @@ -26181,7 +26291,7 @@ "cimguiname": "igImFontAtlasBuildMain", "defaults": {}, "funcname": "ImFontAtlasBuildMain", - "location": "imgui_internal:4191", + "location": "imgui_internal:4208", "ov_cimguiname": "igImFontAtlasBuildMain", "ret": "void", "signature": "(ImFontAtlas*)", @@ -26211,7 +26321,7 @@ "cimguiname": "igImFontAtlasBuildNotifySetFont", "defaults": {}, "funcname": "ImFontAtlasBuildNotifySetFont", - "location": "imgui_internal:4193", + "location": "imgui_internal:4210", "ov_cimguiname": "igImFontAtlasBuildNotifySetFont", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFont*)", @@ -26257,7 +26367,7 @@ "cimguiname": "igImFontAtlasBuildRenderBitmapFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRenderBitmapFromString", - "location": "imgui_internal:4195", + "location": "imgui_internal:4212", "ov_cimguiname": "igImFontAtlasBuildRenderBitmapFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char)", @@ -26283,7 +26393,7 @@ "cimguiname": "igImFontAtlasBuildSetupFontLoader", "defaults": {}, "funcname": "ImFontAtlasBuildSetupFontLoader", - "location": "imgui_internal:4192", + "location": "imgui_internal:4209", "ov_cimguiname": "igImFontAtlasBuildSetupFontLoader", "ret": "void", "signature": "(ImFontAtlas*,const ImFontLoader*)", @@ -26313,7 +26423,7 @@ "cimguiname": "igImFontAtlasBuildSetupFontSpecialGlyphs", "defaults": {}, "funcname": "ImFontAtlasBuildSetupFontSpecialGlyphs", - "location": "imgui_internal:4205", + "location": "imgui_internal:4222", "ov_cimguiname": "igImFontAtlasBuildSetupFontSpecialGlyphs", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFontConfig*)", @@ -26335,7 +26445,7 @@ "cimguiname": "igImFontAtlasBuildUpdatePointers", "defaults": {}, "funcname": "ImFontAtlasBuildUpdatePointers", - "location": "imgui_internal:4194", + "location": "imgui_internal:4211", "ov_cimguiname": "igImFontAtlasBuildUpdatePointers", "ret": "void", "signature": "(ImFontAtlas*)", @@ -26357,7 +26467,7 @@ "cimguiname": "igImFontAtlasDebugLogTextureRequests", "defaults": {}, "funcname": "ImFontAtlasDebugLogTextureRequests", - "location": "imgui_internal:4252", + "location": "imgui_internal:4269", "ov_cimguiname": "igImFontAtlasDebugLogTextureRequests", "ret": "void", "signature": "(ImFontAtlas*)", @@ -26383,7 +26493,7 @@ "cimguiname": "igImFontAtlasFontDestroyOutput", "defaults": {}, "funcname": "ImFontAtlasFontDestroyOutput", - "location": "imgui_internal:4214", + "location": "imgui_internal:4231", "ov_cimguiname": "igImFontAtlasFontDestroyOutput", "ret": "void", "signature": "(ImFontAtlas*,ImFont*)", @@ -26409,7 +26519,7 @@ "cimguiname": "igImFontAtlasFontDestroySourceData", "defaults": {}, "funcname": "ImFontAtlasFontDestroySourceData", - "location": "imgui_internal:4212", + "location": "imgui_internal:4229", "ov_cimguiname": "igImFontAtlasFontDestroySourceData", "ret": "void", "signature": "(ImFontAtlas*,ImFontConfig*)", @@ -26439,7 +26549,7 @@ "cimguiname": "igImFontAtlasFontDiscardBakes", "defaults": {}, "funcname": "ImFontAtlasFontDiscardBakes", - "location": "imgui_internal:4216", + "location": "imgui_internal:4233", "ov_cimguiname": "igImFontAtlasFontDiscardBakes", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,int)", @@ -26465,7 +26575,7 @@ "cimguiname": "igImFontAtlasFontInitOutput", "defaults": {}, "funcname": "ImFontAtlasFontInitOutput", - "location": "imgui_internal:4213", + "location": "imgui_internal:4230", "ov_cimguiname": "igImFontAtlasFontInitOutput", "ret": "bool", "signature": "(ImFontAtlas*,ImFont*)", @@ -26491,7 +26601,7 @@ "cimguiname": "igImFontAtlasFontRebuildOutput", "defaults": {}, "funcname": "ImFontAtlasFontRebuildOutput", - "location": "imgui_internal:4215", + "location": "imgui_internal:4232", "ov_cimguiname": "igImFontAtlasFontRebuildOutput", "ret": "void", "signature": "(ImFontAtlas*,ImFont*)", @@ -26521,7 +26631,7 @@ "cimguiname": "igImFontAtlasFontSourceAddToFont", "defaults": {}, "funcname": "ImFontAtlasFontSourceAddToFont", - "location": "imgui_internal:4211", + "location": "imgui_internal:4228", "ov_cimguiname": "igImFontAtlasFontSourceAddToFont", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFontConfig*)", @@ -26547,7 +26657,7 @@ "cimguiname": "igImFontAtlasFontSourceInit", "defaults": {}, "funcname": "ImFontAtlasFontSourceInit", - "location": "imgui_internal:4210", + "location": "imgui_internal:4227", "ov_cimguiname": "igImFontAtlasFontSourceInit", "ret": "bool", "signature": "(ImFontAtlas*,ImFontConfig*)", @@ -26564,7 +26674,7 @@ "cimguiname": "igImFontAtlasGetFontLoaderForStbTruetype", "defaults": {}, "funcname": "ImFontAtlasGetFontLoaderForStbTruetype", - "location": "imgui_internal:4093", + "location": "imgui_internal:4110", "ov_cimguiname": "igImFontAtlasGetFontLoaderForStbTruetype", "ret": "const ImFontLoader*", "signature": "()", @@ -26606,7 +26716,7 @@ "cimguiname": "igImFontAtlasGetMouseCursorTexData", "defaults": {}, "funcname": "ImFontAtlasGetMouseCursorTexData", - "location": "imgui_internal:4255", + "location": "imgui_internal:4272", "ov_cimguiname": "igImFontAtlasGetMouseCursorTexData", "ret": "bool", "signature": "(ImFontAtlas*,ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])", @@ -26642,7 +26752,7 @@ "overwrite_entry": "NULL" }, "funcname": "ImFontAtlasPackAddRect", - "location": "imgui_internal:4229", + "location": "imgui_internal:4246", "ov_cimguiname": "igImFontAtlasPackAddRect", "ret": "ImFontAtlasRectId", "signature": "(ImFontAtlas*,int,int,ImFontAtlasRectEntry*)", @@ -26668,7 +26778,7 @@ "cimguiname": "igImFontAtlasPackDiscardRect", "defaults": {}, "funcname": "ImFontAtlasPackDiscardRect", - "location": "imgui_internal:4232", + "location": "imgui_internal:4249", "ov_cimguiname": "igImFontAtlasPackDiscardRect", "ret": "void", "signature": "(ImFontAtlas*,ImFontAtlasRectId)", @@ -26694,7 +26804,7 @@ "cimguiname": "igImFontAtlasPackGetRect", "defaults": {}, "funcname": "ImFontAtlasPackGetRect", - "location": "imgui_internal:4230", + "location": "imgui_internal:4247", "ov_cimguiname": "igImFontAtlasPackGetRect", "ret": "ImTextureRect*", "signature": "(ImFontAtlas*,ImFontAtlasRectId)", @@ -26720,7 +26830,7 @@ "cimguiname": "igImFontAtlasPackGetRectSafe", "defaults": {}, "funcname": "ImFontAtlasPackGetRectSafe", - "location": "imgui_internal:4231", + "location": "imgui_internal:4248", "ov_cimguiname": "igImFontAtlasPackGetRectSafe", "ret": "ImTextureRect*", "signature": "(ImFontAtlas*,ImFontAtlasRectId)", @@ -26742,7 +26852,7 @@ "cimguiname": "igImFontAtlasPackInit", "defaults": {}, "funcname": "ImFontAtlasPackInit", - "location": "imgui_internal:4228", + "location": "imgui_internal:4245", "ov_cimguiname": "igImFontAtlasPackInit", "ret": "void", "signature": "(ImFontAtlas*)", @@ -26764,7 +26874,7 @@ "cimguiname": "igImFontAtlasRectId_GetGeneration", "defaults": {}, "funcname": "ImFontAtlasRectId_GetGeneration", - "location": "imgui_internal:4116", + "location": "imgui_internal:4133", "ov_cimguiname": "igImFontAtlasRectId_GetGeneration", "ret": "unsigned int", "signature": "(ImFontAtlasRectId)", @@ -26786,7 +26896,7 @@ "cimguiname": "igImFontAtlasRectId_GetIndex", "defaults": {}, "funcname": "ImFontAtlasRectId_GetIndex", - "location": "imgui_internal:4115", + "location": "imgui_internal:4132", "ov_cimguiname": "igImFontAtlasRectId_GetIndex", "ret": "int", "signature": "(ImFontAtlasRectId)", @@ -26812,7 +26922,7 @@ "cimguiname": "igImFontAtlasRectId_Make", "defaults": {}, "funcname": "ImFontAtlasRectId_Make", - "location": "imgui_internal:4117", + "location": "imgui_internal:4134", "ov_cimguiname": "igImFontAtlasRectId_Make", "ret": "ImFontAtlasRectId", "signature": "(int,int)", @@ -26838,7 +26948,7 @@ "cimguiname": "igImFontAtlasRemoveDrawListSharedData", "defaults": {}, "funcname": "ImFontAtlasRemoveDrawListSharedData", - "location": "imgui_internal:4236", + "location": "imgui_internal:4253", "ov_cimguiname": "igImFontAtlasRemoveDrawListSharedData", "ret": "void", "signature": "(ImFontAtlas*,ImDrawListSharedData*)", @@ -26868,7 +26978,7 @@ "cimguiname": "igImFontAtlasTextureAdd", "defaults": {}, "funcname": "ImFontAtlasTextureAdd", - "location": "imgui_internal:4198", + "location": "imgui_internal:4215", "ov_cimguiname": "igImFontAtlasTextureAdd", "ret": "ImTextureData*", "signature": "(ImFontAtlas*,int,int)", @@ -26918,7 +27028,7 @@ "cimguiname": "igImFontAtlasTextureBlockConvert", "defaults": {}, "funcname": "ImFontAtlasTextureBlockConvert", - "location": "imgui_internal:4240", + "location": "imgui_internal:4257", "ov_cimguiname": "igImFontAtlasTextureBlockConvert", "ret": "void", "signature": "(const unsigned char*,ImTextureFormat,int,unsigned char*,ImTextureFormat,int,int,int)", @@ -26968,7 +27078,7 @@ "cimguiname": "igImFontAtlasTextureBlockCopy", "defaults": {}, "funcname": "ImFontAtlasTextureBlockCopy", - "location": "imgui_internal:4244", + "location": "imgui_internal:4261", "ov_cimguiname": "igImFontAtlasTextureBlockCopy", "ret": "void", "signature": "(ImTextureData*,int,int,ImTextureData*,int,int,int,int)", @@ -27010,7 +27120,7 @@ "cimguiname": "igImFontAtlasTextureBlockFill", "defaults": {}, "funcname": "ImFontAtlasTextureBlockFill", - "location": "imgui_internal:4243", + "location": "imgui_internal:4260", "ov_cimguiname": "igImFontAtlasTextureBlockFill", "ret": "void", "signature": "(ImTextureData*,int,int,int,int,ImU32)", @@ -27032,7 +27142,7 @@ "cimguiname": "igImFontAtlasTextureBlockPostProcess", "defaults": {}, "funcname": "ImFontAtlasTextureBlockPostProcess", - "location": "imgui_internal:4241", + "location": "imgui_internal:4258", "ov_cimguiname": "igImFontAtlasTextureBlockPostProcess", "ret": "void", "signature": "(ImFontAtlasPostProcessData*)", @@ -27058,7 +27168,7 @@ "cimguiname": "igImFontAtlasTextureBlockPostProcessMultiply", "defaults": {}, "funcname": "ImFontAtlasTextureBlockPostProcessMultiply", - "location": "imgui_internal:4242", + "location": "imgui_internal:4259", "ov_cimguiname": "igImFontAtlasTextureBlockPostProcessMultiply", "ret": "void", "signature": "(ImFontAtlasPostProcessData*,float)", @@ -27100,7 +27210,7 @@ "cimguiname": "igImFontAtlasTextureBlockQueueUpload", "defaults": {}, "funcname": "ImFontAtlasTextureBlockQueueUpload", - "location": "imgui_internal:4245", + "location": "imgui_internal:4262", "ov_cimguiname": "igImFontAtlasTextureBlockQueueUpload", "ret": "void", "signature": "(ImFontAtlas*,ImTextureData*,int,int,int,int)", @@ -27122,7 +27232,7 @@ "cimguiname": "igImFontAtlasTextureCompact", "defaults": {}, "funcname": "ImFontAtlasTextureCompact", - "location": "imgui_internal:4202", + "location": "imgui_internal:4219", "ov_cimguiname": "igImFontAtlasTextureCompact", "ret": "void", "signature": "(ImFontAtlas*)", @@ -27145,7 +27255,7 @@ "conv": "ImVec2i", "defaults": {}, "funcname": "ImFontAtlasTextureGetSizeEstimate", - "location": "imgui_internal:4203", + "location": "imgui_internal:4220", "nonUDT": 1, "ov_cimguiname": "igImFontAtlasTextureGetSizeEstimate", "ret": "ImVec2i_c", @@ -27179,7 +27289,7 @@ "old_w": "-1" }, "funcname": "ImFontAtlasTextureGrow", - "location": "imgui_internal:4201", + "location": "imgui_internal:4218", "ov_cimguiname": "igImFontAtlasTextureGrow", "ret": "void", "signature": "(ImFontAtlas*,int,int)", @@ -27201,7 +27311,7 @@ "cimguiname": "igImFontAtlasTextureMakeSpace", "defaults": {}, "funcname": "ImFontAtlasTextureMakeSpace", - "location": "imgui_internal:4199", + "location": "imgui_internal:4216", "ov_cimguiname": "igImFontAtlasTextureMakeSpace", "ret": "void", "signature": "(ImFontAtlas*)", @@ -27231,7 +27341,7 @@ "cimguiname": "igImFontAtlasTextureRepack", "defaults": {}, "funcname": "ImFontAtlasTextureRepack", - "location": "imgui_internal:4200", + "location": "imgui_internal:4217", "ov_cimguiname": "igImFontAtlasTextureRepack", "ret": "void", "signature": "(ImFontAtlas*,int,int)", @@ -27253,7 +27363,7 @@ "cimguiname": "igImFontAtlasUpdateDrawListsSharedData", "defaults": {}, "funcname": "ImFontAtlasUpdateDrawListsSharedData", - "location": "imgui_internal:4238", + "location": "imgui_internal:4255", "ov_cimguiname": "igImFontAtlasUpdateDrawListsSharedData", "ret": "void", "signature": "(ImFontAtlas*)", @@ -27283,7 +27393,7 @@ "cimguiname": "igImFontAtlasUpdateDrawListsTextures", "defaults": {}, "funcname": "ImFontAtlasUpdateDrawListsTextures", - "location": "imgui_internal:4237", + "location": "imgui_internal:4254", "ov_cimguiname": "igImFontAtlasUpdateDrawListsTextures", "ret": "void", "signature": "(ImFontAtlas*,ImTextureRef,ImTextureRef)", @@ -27313,7 +27423,7 @@ "cimguiname": "igImFontAtlasUpdateNewFrame", "defaults": {}, "funcname": "ImFontAtlasUpdateNewFrame", - "location": "imgui_internal:4234", + "location": "imgui_internal:4251", "ov_cimguiname": "igImFontAtlasUpdateNewFrame", "ret": "void", "signature": "(ImFontAtlas*,int,bool)", @@ -29371,7 +29481,7 @@ "cimguiname": "igImTextureDataGetFormatBytesPerPixel", "defaults": {}, "funcname": "ImTextureDataGetFormatBytesPerPixel", - "location": "imgui_internal:4247", + "location": "imgui_internal:4264", "ov_cimguiname": "igImTextureDataGetFormatBytesPerPixel", "ret": "int", "signature": "(ImTextureFormat)", @@ -29393,7 +29503,7 @@ "cimguiname": "igImTextureDataGetFormatName", "defaults": {}, "funcname": "ImTextureDataGetFormatName", - "location": "imgui_internal:4249", + "location": "imgui_internal:4266", "ov_cimguiname": "igImTextureDataGetFormatName", "ret": "const char*", "signature": "(ImTextureFormat)", @@ -29415,7 +29525,7 @@ "cimguiname": "igImTextureDataGetStatusName", "defaults": {}, "funcname": "ImTextureDataGetStatusName", - "location": "imgui_internal:4248", + "location": "imgui_internal:4265", "ov_cimguiname": "igImTextureDataGetStatusName", "ret": "const char*", "signature": "(ImTextureStatus)", @@ -29741,7 +29851,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "Image", - "location": "imgui:660", + "location": "imgui:662", "namespace": "ImGui", "ov_cimguiname": "igImage", "ret": "void", @@ -29793,7 +29903,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "ImageButton", - "location": "imgui:662", + "location": "imgui:664", "namespace": "ImGui", "ov_cimguiname": "igImageButton", "ret": "bool", @@ -29846,7 +29956,7 @@ "flags": "0" }, "funcname": "ImageButtonEx", - "location": "imgui_internal:3921", + "location": "imgui_internal:3935", "namespace": "ImGui", "ov_cimguiname": "igImageButtonEx", "ret": "bool", @@ -29894,7 +30004,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "ImageWithBg", - "location": "imgui:661", + "location": "imgui:663", "namespace": "ImGui", "ov_cimguiname": "igImageWithBg", "ret": "void", @@ -29919,7 +30029,7 @@ "indent_w": "0.0f" }, "funcname": "Indent", - "location": "imgui:590", + "location": "imgui:592", "namespace": "ImGui", "ov_cimguiname": "igIndent", "ret": "void", @@ -29937,7 +30047,7 @@ "cimguiname": "igInitialize", "defaults": {}, "funcname": "Initialize", - "location": "imgui_internal:3447", + "location": "imgui_internal:3458", "namespace": "ImGui", "ov_cimguiname": "igInitialize", "ret": "void", @@ -29985,7 +30095,7 @@ "step_fast": "0.0" }, "funcname": "InputDouble", - "location": "imgui:733", + "location": "imgui:735", "namespace": "ImGui", "ov_cimguiname": "igInputDouble", "ret": "bool", @@ -30033,7 +30143,7 @@ "step_fast": "0.0f" }, "funcname": "InputFloat", - "location": "imgui:725", + "location": "imgui:727", "namespace": "ImGui", "ov_cimguiname": "igInputFloat", "ret": "bool", @@ -30071,7 +30181,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat2", - "location": "imgui:726", + "location": "imgui:728", "namespace": "ImGui", "ov_cimguiname": "igInputFloat2", "ret": "bool", @@ -30109,7 +30219,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat3", - "location": "imgui:727", + "location": "imgui:729", "namespace": "ImGui", "ov_cimguiname": "igInputFloat3", "ret": "bool", @@ -30147,7 +30257,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat4", - "location": "imgui:728", + "location": "imgui:730", "namespace": "ImGui", "ov_cimguiname": "igInputFloat4", "ret": "bool", @@ -30190,7 +30300,7 @@ "step_fast": "100" }, "funcname": "InputInt", - "location": "imgui:729", + "location": "imgui:731", "namespace": "ImGui", "ov_cimguiname": "igInputInt", "ret": "bool", @@ -30223,7 +30333,7 @@ "flags": "0" }, "funcname": "InputInt2", - "location": "imgui:730", + "location": "imgui:732", "namespace": "ImGui", "ov_cimguiname": "igInputInt2", "ret": "bool", @@ -30256,7 +30366,7 @@ "flags": "0" }, "funcname": "InputInt3", - "location": "imgui:731", + "location": "imgui:733", "namespace": "ImGui", "ov_cimguiname": "igInputInt3", "ret": "bool", @@ -30289,7 +30399,7 @@ "flags": "0" }, "funcname": "InputInt4", - "location": "imgui:732", + "location": "imgui:734", "namespace": "ImGui", "ov_cimguiname": "igInputInt4", "ret": "bool", @@ -30341,7 +30451,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalar", - "location": "imgui:734", + "location": "imgui:736", "namespace": "ImGui", "ov_cimguiname": "igInputScalar", "ret": "bool", @@ -30397,7 +30507,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalarN", - "location": "imgui:735", + "location": "imgui:737", "namespace": "ImGui", "ov_cimguiname": "igInputScalarN", "ret": "bool", @@ -30444,7 +30554,7 @@ "user_data": "NULL" }, "funcname": "InputText", - "location": "imgui:722", + "location": "imgui:724", "namespace": "ImGui", "ov_cimguiname": "igInputText", "ret": "bool", @@ -30467,7 +30577,7 @@ "cimguiname": "igInputTextDeactivateHook", "defaults": {}, "funcname": "InputTextDeactivateHook", - "location": "imgui_internal:3973", + "location": "imgui_internal:3987", "namespace": "ImGui", "ov_cimguiname": "igInputTextDeactivateHook", "ret": "void", @@ -30521,7 +30631,7 @@ "user_data": "NULL" }, "funcname": "InputTextEx", - "location": "imgui_internal:3972", + "location": "imgui_internal:3986", "namespace": "ImGui", "ov_cimguiname": "igInputTextEx", "ret": "bool", @@ -30573,7 +30683,7 @@ "user_data": "NULL" }, "funcname": "InputTextMultiline", - "location": "imgui:723", + "location": "imgui:725", "namespace": "ImGui", "ov_cimguiname": "igInputTextMultiline", "ret": "bool", @@ -30624,7 +30734,7 @@ "user_data": "NULL" }, "funcname": "InputTextWithHint", - "location": "imgui:724", + "location": "imgui:726", "namespace": "ImGui", "ov_cimguiname": "igInputTextWithHint", "ret": "bool", @@ -30657,7 +30767,7 @@ "flags": "0" }, "funcname": "InvisibleButton", - "location": "imgui:642", + "location": "imgui:644", "namespace": "ImGui", "ov_cimguiname": "igInvisibleButton", "ret": "bool", @@ -30680,7 +30790,7 @@ "cimguiname": "igIsActiveIdUsingNavDir", "defaults": {}, "funcname": "IsActiveIdUsingNavDir", - "location": "imgui_internal:3636", + "location": "imgui_internal:3649", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingNavDir", "ret": "bool", @@ -30703,7 +30813,7 @@ "cimguiname": "igIsAliasKey", "defaults": {}, "funcname": "IsAliasKey", - "location": "imgui_internal:3613", + "location": "imgui_internal:3626", "namespace": "ImGui", "ov_cimguiname": "igIsAliasKey", "ret": "bool", @@ -30721,7 +30831,7 @@ "cimguiname": "igIsAnyItemActive", "defaults": {}, "funcname": "IsAnyItemActive", - "location": "imgui:1053", + "location": "imgui:1056", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemActive", "ret": "bool", @@ -30739,7 +30849,7 @@ "cimguiname": "igIsAnyItemFocused", "defaults": {}, "funcname": "IsAnyItemFocused", - "location": "imgui:1054", + "location": "imgui:1057", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemFocused", "ret": "bool", @@ -30757,7 +30867,7 @@ "cimguiname": "igIsAnyItemHovered", "defaults": {}, "funcname": "IsAnyItemHovered", - "location": "imgui:1052", + "location": "imgui:1055", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemHovered", "ret": "bool", @@ -30775,7 +30885,7 @@ "cimguiname": "igIsAnyMouseDown", "defaults": {}, "funcname": "IsAnyMouseDown", - "location": "imgui:1145", + "location": "imgui:1148", "namespace": "ImGui", "ov_cimguiname": "igIsAnyMouseDown", "ret": "bool", @@ -30802,7 +30912,7 @@ "cimguiname": "igIsClippedEx", "defaults": {}, "funcname": "IsClippedEx", - "location": "imgui_internal:3528", + "location": "imgui_internal:3539", "namespace": "ImGui", "ov_cimguiname": "igIsClippedEx", "ret": "bool", @@ -30820,7 +30930,7 @@ "cimguiname": "igIsDragDropActive", "defaults": {}, "funcname": "IsDragDropActive", - "location": "imgui_internal:3758", + "location": "imgui_internal:3771", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropActive", "ret": "bool", @@ -30838,7 +30948,7 @@ "cimguiname": "igIsDragDropPayloadBeingAccepted", "defaults": {}, "funcname": "IsDragDropPayloadBeingAccepted", - "location": "imgui_internal:3762", + "location": "imgui_internal:3775", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropPayloadBeingAccepted", "ret": "bool", @@ -30861,7 +30971,7 @@ "cimguiname": "igIsGamepadKey", "defaults": {}, "funcname": "IsGamepadKey", - "location": "imgui_internal:3611", + "location": "imgui_internal:3624", "namespace": "ImGui", "ov_cimguiname": "igIsGamepadKey", "ret": "bool", @@ -30879,7 +30989,7 @@ "cimguiname": "igIsItemActivated", "defaults": {}, "funcname": "IsItemActivated", - "location": "imgui:1048", + "location": "imgui:1051", "namespace": "ImGui", "ov_cimguiname": "igIsItemActivated", "ret": "bool", @@ -30897,7 +31007,7 @@ "cimguiname": "igIsItemActive", "defaults": {}, "funcname": "IsItemActive", - "location": "imgui:1043", + "location": "imgui:1046", "namespace": "ImGui", "ov_cimguiname": "igIsItemActive", "ret": "bool", @@ -30915,7 +31025,7 @@ "cimguiname": "igIsItemActiveAsInputText", "defaults": {}, "funcname": "IsItemActiveAsInputText", - "location": "imgui_internal:3979", + "location": "imgui_internal:3993", "namespace": "ImGui", "ov_cimguiname": "igIsItemActiveAsInputText", "ret": "bool", @@ -30940,7 +31050,7 @@ "mouse_button": "0" }, "funcname": "IsItemClicked", - "location": "imgui:1045", + "location": "imgui:1048", "namespace": "ImGui", "ov_cimguiname": "igIsItemClicked", "ret": "bool", @@ -30958,7 +31068,7 @@ "cimguiname": "igIsItemDeactivated", "defaults": {}, "funcname": "IsItemDeactivated", - "location": "imgui:1049", + "location": "imgui:1052", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivated", "ret": "bool", @@ -30976,7 +31086,7 @@ "cimguiname": "igIsItemDeactivatedAfterEdit", "defaults": {}, "funcname": "IsItemDeactivatedAfterEdit", - "location": "imgui:1050", + "location": "imgui:1053", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivatedAfterEdit", "ret": "bool", @@ -30994,7 +31104,7 @@ "cimguiname": "igIsItemEdited", "defaults": {}, "funcname": "IsItemEdited", - "location": "imgui:1047", + "location": "imgui:1050", "namespace": "ImGui", "ov_cimguiname": "igIsItemEdited", "ret": "bool", @@ -31012,7 +31122,7 @@ "cimguiname": "igIsItemFocused", "defaults": {}, "funcname": "IsItemFocused", - "location": "imgui:1044", + "location": "imgui:1047", "namespace": "ImGui", "ov_cimguiname": "igIsItemFocused", "ret": "bool", @@ -31037,7 +31147,7 @@ "flags": "0" }, "funcname": "IsItemHovered", - "location": "imgui:1042", + "location": "imgui:1045", "namespace": "ImGui", "ov_cimguiname": "igIsItemHovered", "ret": "bool", @@ -31055,7 +31165,7 @@ "cimguiname": "igIsItemToggledOpen", "defaults": {}, "funcname": "IsItemToggledOpen", - "location": "imgui:1051", + "location": "imgui:1054", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledOpen", "ret": "bool", @@ -31073,7 +31183,7 @@ "cimguiname": "igIsItemToggledSelection", "defaults": {}, "funcname": "IsItemToggledSelection", - "location": "imgui:784", + "location": "imgui:787", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledSelection", "ret": "bool", @@ -31091,7 +31201,7 @@ "cimguiname": "igIsItemVisible", "defaults": {}, "funcname": "IsItemVisible", - "location": "imgui:1046", + "location": "imgui:1049", "namespace": "ImGui", "ov_cimguiname": "igIsItemVisible", "ret": "bool", @@ -31114,7 +31224,7 @@ "cimguiname": "igIsKeyChordPressed", "defaults": {}, "funcname": "IsKeyChordPressed", - "location": "imgui:1097", + "location": "imgui:1100", "namespace": "ImGui", "ov_cimguiname": "igIsKeyChordPressed_Nil", "ret": "bool", @@ -31145,7 +31255,7 @@ "owner_id": "0" }, "funcname": "IsKeyChordPressed", - "location": "imgui_internal:3665", + "location": "imgui_internal:3678", "namespace": "ImGui", "ov_cimguiname": "igIsKeyChordPressed_InputFlags", "ret": "bool", @@ -31168,7 +31278,7 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui:1094", + "location": "imgui:1097", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown_Nil", "ret": "bool", @@ -31193,7 +31303,7 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui_internal:3662", + "location": "imgui_internal:3675", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown_ID", "ret": "bool", @@ -31222,7 +31332,7 @@ "repeat": "true" }, "funcname": "IsKeyPressed", - "location": "imgui:1095", + "location": "imgui:1098", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed_Bool", "ret": "bool", @@ -31253,7 +31363,7 @@ "owner_id": "0" }, "funcname": "IsKeyPressed", - "location": "imgui_internal:3663", + "location": "imgui_internal:3676", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed_InputFlags", "ret": "bool", @@ -31276,7 +31386,7 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui:1096", + "location": "imgui:1099", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased_Nil", "ret": "bool", @@ -31301,7 +31411,7 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui_internal:3664", + "location": "imgui_internal:3677", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased_ID", "ret": "bool", @@ -31324,7 +31434,7 @@ "cimguiname": "igIsKeyboardKey", "defaults": {}, "funcname": "IsKeyboardKey", - "location": "imgui_internal:3610", + "location": "imgui_internal:3623", "namespace": "ImGui", "ov_cimguiname": "igIsKeyboardKey", "ret": "bool", @@ -31347,7 +31457,7 @@ "cimguiname": "igIsLRModKey", "defaults": {}, "funcname": "IsLRModKey", - "location": "imgui_internal:3614", + "location": "imgui_internal:3627", "namespace": "ImGui", "ov_cimguiname": "igIsLRModKey", "ret": "bool", @@ -31370,7 +31480,7 @@ "cimguiname": "igIsLegacyKey", "defaults": {}, "funcname": "IsLegacyKey", - "location": "imgui_internal:3609", + "location": "imgui_internal:3622", "namespace": "ImGui", "ov_cimguiname": "igIsLegacyKey", "ret": "bool", @@ -31399,7 +31509,7 @@ "repeat": "false" }, "funcname": "IsMouseClicked", - "location": "imgui:1138", + "location": "imgui:1141", "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked_Bool", "ret": "bool", @@ -31430,7 +31540,7 @@ "owner_id": "0" }, "funcname": "IsMouseClicked", - "location": "imgui_internal:3667", + "location": "imgui_internal:3680", "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked_InputFlags", "ret": "bool", @@ -31453,7 +31563,7 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", - "location": "imgui:1140", + "location": "imgui:1143", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked_Nil", "ret": "bool", @@ -31478,7 +31588,7 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", - "location": "imgui_internal:3669", + "location": "imgui_internal:3682", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked_ID", "ret": "bool", @@ -31501,7 +31611,7 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui:1137", + "location": "imgui:1140", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown_Nil", "ret": "bool", @@ -31526,7 +31636,7 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui_internal:3666", + "location": "imgui_internal:3679", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown_ID", "ret": "bool", @@ -31555,7 +31665,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragPastThreshold", - "location": "imgui_internal:3629", + "location": "imgui_internal:3642", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragPastThreshold", "ret": "bool", @@ -31584,7 +31694,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragging", - "location": "imgui:1148", + "location": "imgui:1151", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragging", "ret": "bool", @@ -31617,7 +31727,7 @@ "clip": "true" }, "funcname": "IsMouseHoveringRect", - "location": "imgui:1143", + "location": "imgui:1146", "namespace": "ImGui", "ov_cimguiname": "igIsMouseHoveringRect", "ret": "bool", @@ -31640,7 +31750,7 @@ "cimguiname": "igIsMouseKey", "defaults": {}, "funcname": "IsMouseKey", - "location": "imgui_internal:3612", + "location": "imgui_internal:3625", "namespace": "ImGui", "ov_cimguiname": "igIsMouseKey", "ret": "bool", @@ -31665,7 +31775,7 @@ "mouse_pos": "NULL" }, "funcname": "IsMousePosValid", - "location": "imgui:1144", + "location": "imgui:1147", "namespace": "ImGui", "ov_cimguiname": "igIsMousePosValid", "ret": "bool", @@ -31688,7 +31798,7 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui:1139", + "location": "imgui:1142", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased_Nil", "ret": "bool", @@ -31713,7 +31823,7 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui_internal:3668", + "location": "imgui_internal:3681", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased_ID", "ret": "bool", @@ -31740,7 +31850,7 @@ "cimguiname": "igIsMouseReleasedWithDelay", "defaults": {}, "funcname": "IsMouseReleasedWithDelay", - "location": "imgui:1141", + "location": "imgui:1144", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleasedWithDelay", "ret": "bool", @@ -31763,7 +31873,7 @@ "cimguiname": "igIsNamedKey", "defaults": {}, "funcname": "IsNamedKey", - "location": "imgui_internal:3607", + "location": "imgui_internal:3620", "namespace": "ImGui", "ov_cimguiname": "igIsNamedKey", "ret": "bool", @@ -31786,7 +31896,7 @@ "cimguiname": "igIsNamedKeyOrMod", "defaults": {}, "funcname": "IsNamedKeyOrMod", - "location": "imgui_internal:3608", + "location": "imgui_internal:3621", "namespace": "ImGui", "ov_cimguiname": "igIsNamedKeyOrMod", "ret": "bool", @@ -31815,7 +31925,7 @@ "flags": "0" }, "funcname": "IsPopupOpen", - "location": "imgui:886", + "location": "imgui:889", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen_Str", "ret": "bool", @@ -31840,7 +31950,7 @@ "cimguiname": "igIsPopupOpen", "defaults": {}, "funcname": "IsPopupOpen", - "location": "imgui_internal:3557", + "location": "imgui_internal:3568", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen_ID", "ret": "bool", @@ -31848,6 +31958,56 @@ "stname": "" } ], + "igIsPopupOpenRequestForItem": [ + { + "args": "(ImGuiPopupFlags flags,ImGuiID id)", + "argsT": [ + { + "name": "flags", + "type": "ImGuiPopupFlags" + }, + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiPopupFlags flags,ImGuiID id)", + "call_args": "(flags,id)", + "call_args_old": "(flags,id)", + "cimguiname": "igIsPopupOpenRequestForItem", + "defaults": {}, + "funcname": "IsPopupOpenRequestForItem", + "location": "imgui_internal:3576", + "namespace": "ImGui", + "ov_cimguiname": "igIsPopupOpenRequestForItem", + "ret": "bool", + "signature": "(ImGuiPopupFlags,ImGuiID)", + "stname": "" + } + ], + "igIsPopupOpenRequestForWindow": [ + { + "args": "(ImGuiPopupFlags flags)", + "argsT": [ + { + "name": "flags", + "type": "ImGuiPopupFlags" + } + ], + "argsoriginal": "(ImGuiPopupFlags flags)", + "call_args": "(flags)", + "call_args_old": "(flags)", + "cimguiname": "igIsPopupOpenRequestForWindow", + "defaults": {}, + "funcname": "IsPopupOpenRequestForWindow", + "location": "imgui_internal:3577", + "namespace": "ImGui", + "ov_cimguiname": "igIsPopupOpenRequestForWindow", + "ret": "bool", + "signature": "(ImGuiPopupFlags)", + "stname": "" + } + ], "igIsRectVisible": [ { "args": "(const ImVec2_c size)", @@ -31863,7 +32023,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:1072", + "location": "imgui:1075", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Nil", "ret": "bool", @@ -31888,7 +32048,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:1073", + "location": "imgui:1076", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Vec2", "ret": "bool", @@ -31915,7 +32075,7 @@ "cimguiname": "igIsWindowAbove", "defaults": {}, "funcname": "IsWindowAbove", - "location": "imgui_internal:3404", + "location": "imgui_internal:3415", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAbove", "ret": "bool", @@ -31933,7 +32093,7 @@ "cimguiname": "igIsWindowAppearing", "defaults": {}, "funcname": "IsWindowAppearing", - "location": "imgui:467", + "location": "imgui:469", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAppearing", "ret": "bool", @@ -31968,7 +32128,7 @@ "cimguiname": "igIsWindowChildOf", "defaults": {}, "funcname": "IsWindowChildOf", - "location": "imgui_internal:3401", + "location": "imgui_internal:3412", "namespace": "ImGui", "ov_cimguiname": "igIsWindowChildOf", "ret": "bool", @@ -31986,7 +32146,7 @@ "cimguiname": "igIsWindowCollapsed", "defaults": {}, "funcname": "IsWindowCollapsed", - "location": "imgui:468", + "location": "imgui:470", "namespace": "ImGui", "ov_cimguiname": "igIsWindowCollapsed", "ret": "bool", @@ -32015,7 +32175,7 @@ "flags": "0" }, "funcname": "IsWindowContentHoverable", - "location": "imgui_internal:3527", + "location": "imgui_internal:3538", "namespace": "ImGui", "ov_cimguiname": "igIsWindowContentHoverable", "ret": "bool", @@ -32033,7 +32193,7 @@ "cimguiname": "igIsWindowDocked", "defaults": {}, "funcname": "IsWindowDocked", - "location": "imgui:991", + "location": "imgui:994", "namespace": "ImGui", "ov_cimguiname": "igIsWindowDocked", "ret": "bool", @@ -32058,7 +32218,7 @@ "flags": "0" }, "funcname": "IsWindowFocused", - "location": "imgui:469", + "location": "imgui:471", "namespace": "ImGui", "ov_cimguiname": "igIsWindowFocused", "ret": "bool", @@ -32083,7 +32243,7 @@ "flags": "0" }, "funcname": "IsWindowHovered", - "location": "imgui:470", + "location": "imgui:472", "namespace": "ImGui", "ov_cimguiname": "igIsWindowHovered", "ret": "bool", @@ -32106,7 +32266,7 @@ "cimguiname": "igIsWindowInBeginStack", "defaults": {}, "funcname": "IsWindowInBeginStack", - "location": "imgui_internal:3402", + "location": "imgui_internal:3413", "namespace": "ImGui", "ov_cimguiname": "igIsWindowInBeginStack", "ret": "bool", @@ -32129,7 +32289,7 @@ "cimguiname": "igIsWindowNavFocusable", "defaults": {}, "funcname": "IsWindowNavFocusable", - "location": "imgui_internal:3405", + "location": "imgui_internal:3416", "namespace": "ImGui", "ov_cimguiname": "igIsWindowNavFocusable", "ret": "bool", @@ -32156,7 +32316,7 @@ "cimguiname": "igIsWindowWithinBeginStackOf", "defaults": {}, "funcname": "IsWindowWithinBeginStackOf", - "location": "imgui_internal:3403", + "location": "imgui_internal:3414", "namespace": "ImGui", "ov_cimguiname": "igIsWindowWithinBeginStackOf", "ret": "bool", @@ -32194,7 +32354,7 @@ "nav_bb": "NULL" }, "funcname": "ItemAdd", - "location": "imgui_internal:3525", + "location": "imgui_internal:3536", "namespace": "ImGui", "ov_cimguiname": "igItemAdd", "ret": "bool", @@ -32225,7 +32385,7 @@ "cimguiname": "igItemHoverable", "defaults": {}, "funcname": "ItemHoverable", - "location": "imgui_internal:3526", + "location": "imgui_internal:3537", "namespace": "ImGui", "ov_cimguiname": "igItemHoverable", "ret": "bool", @@ -32254,7 +32414,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:3523", + "location": "imgui_internal:3534", "namespace": "ImGui", "ov_cimguiname": "igItemSize_Vec2", "ret": "void", @@ -32281,7 +32441,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:3524", + "location": "imgui_internal:3535", "namespace": "ImGui", "ov_cimguiname": "igItemSize_Rect", "ret": "void", @@ -32304,7 +32464,7 @@ "cimguiname": "igKeepAliveID", "defaults": {}, "funcname": "KeepAliveID", - "location": "imgui_internal:3516", + "location": "imgui_internal:3527", "namespace": "ImGui", "ov_cimguiname": "igKeepAliveID", "ret": "void", @@ -32336,7 +32496,7 @@ "defaults": {}, "funcname": "LabelText", "isvararg": "...)", - "location": "imgui:631", + "location": "imgui:633", "namespace": "ImGui", "ov_cimguiname": "igLabelText", "ret": "void", @@ -32367,7 +32527,7 @@ "cimguiname": "igLabelTextV", "defaults": {}, "funcname": "LabelTextV", - "location": "imgui:632", + "location": "imgui:634", "namespace": "ImGui", "ov_cimguiname": "igLabelTextV", "ret": "void", @@ -32408,7 +32568,7 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:795", + "location": "imgui:798", "namespace": "ImGui", "ov_cimguiname": "igListBox_Str_arr", "ret": "bool", @@ -32453,7 +32613,7 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:796", + "location": "imgui:799", "namespace": "ImGui", "ov_cimguiname": "igListBox_FnStrPtr", "ret": "bool", @@ -32476,7 +32636,7 @@ "cimguiname": "igLoadIniSettingsFromDisk", "defaults": {}, "funcname": "LoadIniSettingsFromDisk", - "location": "imgui:1164", + "location": "imgui:1167", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromDisk", "ret": "void", @@ -32505,7 +32665,7 @@ "ini_size": "0" }, "funcname": "LoadIniSettingsFromMemory", - "location": "imgui:1165", + "location": "imgui:1168", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromMemory", "ret": "void", @@ -32528,7 +32688,7 @@ "cimguiname": "igLocalizeGetMsg", "defaults": {}, "funcname": "LocalizeGetMsg", - "location": "imgui_internal:3491", + "location": "imgui_internal:3502", "namespace": "ImGui", "ov_cimguiname": "igLocalizeGetMsg", "ret": "const char*", @@ -32555,7 +32715,7 @@ "cimguiname": "igLocalizeRegisterEntries", "defaults": {}, "funcname": "LocalizeRegisterEntries", - "location": "imgui_internal:3490", + "location": "imgui_internal:3501", "namespace": "ImGui", "ov_cimguiname": "igLocalizeRegisterEntries", "ret": "void", @@ -32582,7 +32742,7 @@ "cimguiname": "igLogBegin", "defaults": {}, "funcname": "LogBegin", - "location": "imgui_internal:3542", + "location": "imgui_internal:3553", "namespace": "ImGui", "ov_cimguiname": "igLogBegin", "ret": "void", @@ -32600,7 +32760,7 @@ "cimguiname": "igLogButtons", "defaults": {}, "funcname": "LogButtons", - "location": "imgui:999", + "location": "imgui:1002", "namespace": "ImGui", "ov_cimguiname": "igLogButtons", "ret": "void", @@ -32618,7 +32778,7 @@ "cimguiname": "igLogFinish", "defaults": {}, "funcname": "LogFinish", - "location": "imgui:998", + "location": "imgui:1001", "namespace": "ImGui", "ov_cimguiname": "igLogFinish", "ret": "void", @@ -32651,7 +32811,7 @@ "text_end": "NULL" }, "funcname": "LogRenderedText", - "location": "imgui_internal:3544", + "location": "imgui_internal:3555", "namespace": "ImGui", "ov_cimguiname": "igLogRenderedText", "ret": "void", @@ -32678,7 +32838,7 @@ "cimguiname": "igLogSetNextTextDecoration", "defaults": {}, "funcname": "LogSetNextTextDecoration", - "location": "imgui_internal:3545", + "location": "imgui_internal:3556", "namespace": "ImGui", "ov_cimguiname": "igLogSetNextTextDecoration", "ret": "void", @@ -32706,7 +32866,7 @@ "defaults": {}, "funcname": "LogText", "isvararg": "...)", - "location": "imgui:1000", + "location": "imgui:1003", "namespace": "ImGui", "ov_cimguiname": "igLogText", "ret": "void", @@ -32733,7 +32893,7 @@ "cimguiname": "igLogTextV", "defaults": {}, "funcname": "LogTextV", - "location": "imgui:1001", + "location": "imgui:1004", "namespace": "ImGui", "ov_cimguiname": "igLogTextV", "ret": "void", @@ -32758,7 +32918,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToBuffer", - "location": "imgui_internal:3543", + "location": "imgui_internal:3554", "namespace": "ImGui", "ov_cimguiname": "igLogToBuffer", "ret": "void", @@ -32783,7 +32943,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToClipboard", - "location": "imgui:997", + "location": "imgui:1000", "namespace": "ImGui", "ov_cimguiname": "igLogToClipboard", "ret": "void", @@ -32813,7 +32973,7 @@ "filename": "NULL" }, "funcname": "LogToFile", - "location": "imgui:996", + "location": "imgui:999", "namespace": "ImGui", "ov_cimguiname": "igLogToFile", "ret": "void", @@ -32838,7 +32998,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToTTY", - "location": "imgui:995", + "location": "imgui:998", "namespace": "ImGui", "ov_cimguiname": "igLogToTTY", "ret": "void", @@ -32856,7 +33016,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:3476", + "location": "imgui_internal:3487", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_Nil", "ret": "void", @@ -32877,7 +33037,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:3477", + "location": "imgui_internal:3488", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_WindowPtr", "ret": "void", @@ -32900,7 +33060,7 @@ "cimguiname": "igMarkItemEdited", "defaults": {}, "funcname": "MarkItemEdited", - "location": "imgui_internal:3517", + "location": "imgui_internal:3528", "namespace": "ImGui", "ov_cimguiname": "igMarkItemEdited", "ret": "void", @@ -32923,7 +33083,7 @@ "cimguiname": "igMemAlloc", "defaults": {}, "funcname": "MemAlloc", - "location": "imgui:1188", + "location": "imgui:1191", "namespace": "ImGui", "ov_cimguiname": "igMemAlloc", "ret": "void*", @@ -32946,7 +33106,7 @@ "cimguiname": "igMemFree", "defaults": {}, "funcname": "MemFree", - "location": "imgui:1189", + "location": "imgui:1192", "namespace": "ImGui", "ov_cimguiname": "igMemFree", "ret": "void", @@ -32985,7 +33145,7 @@ "shortcut": "NULL" }, "funcname": "MenuItem", - "location": "imgui:823", + "location": "imgui:826", "namespace": "ImGui", "ov_cimguiname": "igMenuItem_Bool", "ret": "bool", @@ -33020,7 +33180,7 @@ "enabled": "true" }, "funcname": "MenuItem", - "location": "imgui:824", + "location": "imgui:827", "namespace": "ImGui", "ov_cimguiname": "igMenuItem_BoolPtr", "ret": "bool", @@ -33063,7 +33223,7 @@ "shortcut": "NULL" }, "funcname": "MenuItemEx", - "location": "imgui_internal:3573", + "location": "imgui_internal:3586", "namespace": "ImGui", "ov_cimguiname": "igMenuItemEx", "ret": "bool", @@ -33086,7 +33246,7 @@ "cimguiname": "igMouseButtonToKey", "defaults": {}, "funcname": "MouseButtonToKey", - "location": "imgui_internal:3628", + "location": "imgui_internal:3641", "namespace": "ImGui", "ov_cimguiname": "igMouseButtonToKey", "ret": "ImGuiKey", @@ -33113,7 +33273,7 @@ "cimguiname": "igMultiSelectAddSetAll", "defaults": {}, "funcname": "MultiSelectAddSetAll", - "location": "imgui_internal:3781", + "location": "imgui_internal:3794", "namespace": "ImGui", "ov_cimguiname": "igMultiSelectAddSetAll", "ret": "void", @@ -33152,7 +33312,7 @@ "cimguiname": "igMultiSelectAddSetRange", "defaults": {}, "funcname": "MultiSelectAddSetRange", - "location": "imgui_internal:3782", + "location": "imgui_internal:3795", "namespace": "ImGui", "ov_cimguiname": "igMultiSelectAddSetRange", "ret": "void", @@ -33183,7 +33343,7 @@ "cimguiname": "igMultiSelectItemFooter", "defaults": {}, "funcname": "MultiSelectItemFooter", - "location": "imgui_internal:3780", + "location": "imgui_internal:3793", "namespace": "ImGui", "ov_cimguiname": "igMultiSelectItemFooter", "ret": "void", @@ -33214,7 +33374,7 @@ "cimguiname": "igMultiSelectItemHeader", "defaults": {}, "funcname": "MultiSelectItemHeader", - "location": "imgui_internal:3779", + "location": "imgui_internal:3792", "namespace": "ImGui", "ov_cimguiname": "igMultiSelectItemHeader", "ret": "void", @@ -33237,7 +33397,7 @@ "cimguiname": "igNavClearPreferredPosForAxis", "defaults": {}, "funcname": "NavClearPreferredPosForAxis", - "location": "imgui_internal:3592", + "location": "imgui_internal:3605", "namespace": "ImGui", "ov_cimguiname": "igNavClearPreferredPosForAxis", "ret": "void", @@ -33260,7 +33420,7 @@ "cimguiname": "igNavHighlightActivated", "defaults": {}, "funcname": "NavHighlightActivated", - "location": "imgui_internal:3591", + "location": "imgui_internal:3604", "namespace": "ImGui", "ov_cimguiname": "igNavHighlightActivated", "ret": "void", @@ -33278,7 +33438,7 @@ "cimguiname": "igNavInitRequestApplyResult", "defaults": {}, "funcname": "NavInitRequestApplyResult", - "location": "imgui_internal:3582", + "location": "imgui_internal:3595", "namespace": "ImGui", "ov_cimguiname": "igNavInitRequestApplyResult", "ret": "void", @@ -33305,7 +33465,7 @@ "cimguiname": "igNavInitWindow", "defaults": {}, "funcname": "NavInitWindow", - "location": "imgui_internal:3581", + "location": "imgui_internal:3594", "namespace": "ImGui", "ov_cimguiname": "igNavInitWindow", "ret": "void", @@ -33323,7 +33483,7 @@ "cimguiname": "igNavMoveRequestApplyResult", "defaults": {}, "funcname": "NavMoveRequestApplyResult", - "location": "imgui_internal:3589", + "location": "imgui_internal:3602", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestApplyResult", "ret": "void", @@ -33341,7 +33501,7 @@ "cimguiname": "igNavMoveRequestButNoResultYet", "defaults": {}, "funcname": "NavMoveRequestButNoResultYet", - "location": "imgui_internal:3583", + "location": "imgui_internal:3596", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestButNoResultYet", "ret": "bool", @@ -33359,7 +33519,7 @@ "cimguiname": "igNavMoveRequestCancel", "defaults": {}, "funcname": "NavMoveRequestCancel", - "location": "imgui_internal:3588", + "location": "imgui_internal:3601", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestCancel", "ret": "void", @@ -33394,7 +33554,7 @@ "cimguiname": "igNavMoveRequestForward", "defaults": {}, "funcname": "NavMoveRequestForward", - "location": "imgui_internal:3585", + "location": "imgui_internal:3598", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestForward", "ret": "void", @@ -33417,7 +33577,7 @@ "cimguiname": "igNavMoveRequestResolveWithLastItem", "defaults": {}, "funcname": "NavMoveRequestResolveWithLastItem", - "location": "imgui_internal:3586", + "location": "imgui_internal:3599", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestResolveWithLastItem", "ret": "void", @@ -33444,7 +33604,7 @@ "cimguiname": "igNavMoveRequestResolveWithPastTreeNode", "defaults": {}, "funcname": "NavMoveRequestResolveWithPastTreeNode", - "location": "imgui_internal:3587", + "location": "imgui_internal:3600", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestResolveWithPastTreeNode", "ret": "void", @@ -33479,7 +33639,7 @@ "cimguiname": "igNavMoveRequestSubmit", "defaults": {}, "funcname": "NavMoveRequestSubmit", - "location": "imgui_internal:3584", + "location": "imgui_internal:3597", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestSubmit", "ret": "void", @@ -33506,7 +33666,7 @@ "cimguiname": "igNavMoveRequestTryWrapping", "defaults": {}, "funcname": "NavMoveRequestTryWrapping", - "location": "imgui_internal:3590", + "location": "imgui_internal:3603", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestTryWrapping", "ret": "void", @@ -33524,7 +33684,7 @@ "cimguiname": "igNavUpdateCurrentWindowIsScrollPushableX", "defaults": {}, "funcname": "NavUpdateCurrentWindowIsScrollPushableX", - "location": "imgui_internal:3594", + "location": "imgui_internal:3607", "namespace": "ImGui", "ov_cimguiname": "igNavUpdateCurrentWindowIsScrollPushableX", "ret": "void", @@ -33542,7 +33702,7 @@ "cimguiname": "igNewFrame", "defaults": {}, "funcname": "NewFrame", - "location": "imgui:406", + "location": "imgui:408", "namespace": "ImGui", "ov_cimguiname": "igNewFrame", "ret": "void", @@ -33560,7 +33720,7 @@ "cimguiname": "igNewLine", "defaults": {}, "funcname": "NewLine", - "location": "imgui:587", + "location": "imgui:589", "namespace": "ImGui", "ov_cimguiname": "igNewLine", "ret": "void", @@ -33578,7 +33738,7 @@ "cimguiname": "igNextColumn", "defaults": {}, "funcname": "NextColumn", - "location": "imgui:948", + "location": "imgui:951", "namespace": "ImGui", "ov_cimguiname": "igNextColumn", "ret": "void", @@ -33607,7 +33767,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui:864", + "location": "imgui:867", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_Str", "ret": "void", @@ -33634,7 +33794,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui:865", + "location": "imgui:868", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_ID", "ret": "void", @@ -33663,7 +33823,7 @@ "popup_flags": "ImGuiPopupFlags_None" }, "funcname": "OpenPopupEx", - "location": "imgui_internal:3553", + "location": "imgui_internal:3564", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupEx", "ret": "void", @@ -33693,7 +33853,7 @@ "str_id": "NULL" }, "funcname": "OpenPopupOnItemClick", - "location": "imgui:866", + "location": "imgui:869", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupOnItemClick", "ret": "void", @@ -33754,7 +33914,7 @@ "cimguiname": "igPlotEx", "defaults": {}, "funcname": "PlotEx", - "location": "imgui_internal:3988", + "location": "imgui_internal:4002", "namespace": "ImGui", "ov_cimguiname": "igPlotEx", "ret": "int", @@ -33816,7 +33976,7 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:802", + "location": "imgui:805", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FloatPtr", "ret": "void", @@ -33877,7 +34037,7 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:803", + "location": "imgui:806", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FnFloatPtr", "ret": "void", @@ -33939,7 +34099,7 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:800", + "location": "imgui:803", "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FloatPtr", "ret": "void", @@ -34000,7 +34160,7 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:801", + "location": "imgui:804", "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FnFloatPtr", "ret": "void", @@ -34018,7 +34178,7 @@ "cimguiname": "igPopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:1027", + "location": "imgui:1030", "namespace": "ImGui", "ov_cimguiname": "igPopClipRect", "ret": "void", @@ -34036,7 +34196,7 @@ "cimguiname": "igPopColumnsBackground", "defaults": {}, "funcname": "PopColumnsBackground", - "location": "imgui_internal:3792", + "location": "imgui_internal:3805", "namespace": "ImGui", "ov_cimguiname": "igPopColumnsBackground", "ret": "void", @@ -34054,7 +34214,7 @@ "cimguiname": "igPopFocusScope", "defaults": {}, "funcname": "PopFocusScope", - "location": "imgui_internal:3754", + "location": "imgui_internal:3767", "namespace": "ImGui", "ov_cimguiname": "igPopFocusScope", "ret": "void", @@ -34072,7 +34232,7 @@ "cimguiname": "igPopFont", "defaults": {}, "funcname": "PopFont", - "location": "imgui:530", + "location": "imgui:532", "namespace": "ImGui", "ov_cimguiname": "igPopFont", "ret": "void", @@ -34090,7 +34250,7 @@ "cimguiname": "igPopID", "defaults": {}, "funcname": "PopID", - "location": "imgui:615", + "location": "imgui:617", "namespace": "ImGui", "ov_cimguiname": "igPopID", "ret": "void", @@ -34108,7 +34268,7 @@ "cimguiname": "igPopItemFlag", "defaults": {}, "funcname": "PopItemFlag", - "location": "imgui:545", + "location": "imgui:547", "namespace": "ImGui", "ov_cimguiname": "igPopItemFlag", "ret": "void", @@ -34126,7 +34286,7 @@ "cimguiname": "igPopItemWidth", "defaults": {}, "funcname": "PopItemWidth", - "location": "imgui:549", + "location": "imgui:551", "namespace": "ImGui", "ov_cimguiname": "igPopItemWidth", "ret": "void", @@ -34144,7 +34304,7 @@ "cimguiname": "igPopPasswordFont", "defaults": {}, "funcname": "PopPasswordFont", - "location": "imgui_internal:3442", + "location": "imgui_internal:3453", "namespace": "ImGui", "ov_cimguiname": "igPopPasswordFont", "ret": "void", @@ -34169,7 +34329,7 @@ "count": "1" }, "funcname": "PopStyleColor", - "location": "imgui:538", + "location": "imgui:540", "namespace": "ImGui", "ov_cimguiname": "igPopStyleColor", "ret": "void", @@ -34194,7 +34354,7 @@ "count": "1" }, "funcname": "PopStyleVar", - "location": "imgui:543", + "location": "imgui:545", "namespace": "ImGui", "ov_cimguiname": "igPopStyleVar", "ret": "void", @@ -34212,7 +34372,7 @@ "cimguiname": "igPopTextWrapPos", "defaults": {}, "funcname": "PopTextWrapPos", - "location": "imgui:553", + "location": "imgui:555", "namespace": "ImGui", "ov_cimguiname": "igPopTextWrapPos", "ret": "void", @@ -34246,7 +34406,7 @@ "size_arg": "ImVec2(-FLT_MIN,0)" }, "funcname": "ProgressBar", - "location": "imgui:649", + "location": "imgui:651", "namespace": "ImGui", "ov_cimguiname": "igProgressBar", "ret": "void", @@ -34277,7 +34437,7 @@ "cimguiname": "igPushClipRect", "defaults": {}, "funcname": "PushClipRect", - "location": "imgui:1026", + "location": "imgui:1029", "namespace": "ImGui", "ov_cimguiname": "igPushClipRect", "ret": "void", @@ -34300,7 +34460,7 @@ "cimguiname": "igPushColumnClipRect", "defaults": {}, "funcname": "PushColumnClipRect", - "location": "imgui_internal:3790", + "location": "imgui_internal:3803", "namespace": "ImGui", "ov_cimguiname": "igPushColumnClipRect", "ret": "void", @@ -34318,7 +34478,7 @@ "cimguiname": "igPushColumnsBackground", "defaults": {}, "funcname": "PushColumnsBackground", - "location": "imgui_internal:3791", + "location": "imgui_internal:3804", "namespace": "ImGui", "ov_cimguiname": "igPushColumnsBackground", "ret": "void", @@ -34341,7 +34501,7 @@ "cimguiname": "igPushFocusScope", "defaults": {}, "funcname": "PushFocusScope", - "location": "imgui_internal:3753", + "location": "imgui_internal:3766", "namespace": "ImGui", "ov_cimguiname": "igPushFocusScope", "ret": "void", @@ -34368,7 +34528,7 @@ "cimguiname": "igPushFont", "defaults": {}, "funcname": "PushFont", - "location": "imgui:529", + "location": "imgui:531", "namespace": "ImGui", "ov_cimguiname": "igPushFont", "ret": "void", @@ -34391,7 +34551,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:611", + "location": "imgui:613", "namespace": "ImGui", "ov_cimguiname": "igPushID_Str", "ret": "void", @@ -34416,7 +34576,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:612", + "location": "imgui:614", "namespace": "ImGui", "ov_cimguiname": "igPushID_StrStr", "ret": "void", @@ -34437,7 +34597,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:613", + "location": "imgui:615", "namespace": "ImGui", "ov_cimguiname": "igPushID_Ptr", "ret": "void", @@ -34458,7 +34618,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:614", + "location": "imgui:616", "namespace": "ImGui", "ov_cimguiname": "igPushID_Int", "ret": "void", @@ -34485,7 +34645,7 @@ "cimguiname": "igPushItemFlag", "defaults": {}, "funcname": "PushItemFlag", - "location": "imgui:544", + "location": "imgui:546", "namespace": "ImGui", "ov_cimguiname": "igPushItemFlag", "ret": "void", @@ -34508,7 +34668,7 @@ "cimguiname": "igPushItemWidth", "defaults": {}, "funcname": "PushItemWidth", - "location": "imgui:548", + "location": "imgui:550", "namespace": "ImGui", "ov_cimguiname": "igPushItemWidth", "ret": "void", @@ -34535,7 +34695,7 @@ "cimguiname": "igPushMultiItemsWidths", "defaults": {}, "funcname": "PushMultiItemsWidths", - "location": "imgui_internal:3532", + "location": "imgui_internal:3543", "namespace": "ImGui", "ov_cimguiname": "igPushMultiItemsWidths", "ret": "void", @@ -34558,7 +34718,7 @@ "cimguiname": "igPushOverrideID", "defaults": {}, "funcname": "PushOverrideID", - "location": "imgui_internal:3518", + "location": "imgui_internal:3529", "namespace": "ImGui", "ov_cimguiname": "igPushOverrideID", "ret": "void", @@ -34576,7 +34736,7 @@ "cimguiname": "igPushPasswordFont", "defaults": {}, "funcname": "PushPasswordFont", - "location": "imgui_internal:3441", + "location": "imgui_internal:3452", "namespace": "ImGui", "ov_cimguiname": "igPushPasswordFont", "ret": "void", @@ -34603,7 +34763,7 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui:536", + "location": "imgui:538", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor_U32", "ret": "void", @@ -34628,7 +34788,7 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui:537", + "location": "imgui:539", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor_Vec4", "ret": "void", @@ -34655,7 +34815,7 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui:539", + "location": "imgui:541", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVar_Float", "ret": "void", @@ -34680,7 +34840,7 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui:540", + "location": "imgui:542", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVar_Vec2", "ret": "void", @@ -34707,7 +34867,7 @@ "cimguiname": "igPushStyleVarX", "defaults": {}, "funcname": "PushStyleVarX", - "location": "imgui:541", + "location": "imgui:543", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVarX", "ret": "void", @@ -34734,7 +34894,7 @@ "cimguiname": "igPushStyleVarY", "defaults": {}, "funcname": "PushStyleVarY", - "location": "imgui:542", + "location": "imgui:544", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVarY", "ret": "void", @@ -34759,7 +34919,7 @@ "wrap_local_pos_x": "0.0f" }, "funcname": "PushTextWrapPos", - "location": "imgui:552", + "location": "imgui:554", "namespace": "ImGui", "ov_cimguiname": "igPushTextWrapPos", "ret": "void", @@ -34786,7 +34946,7 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", - "location": "imgui:647", + "location": "imgui:649", "namespace": "ImGui", "ov_cimguiname": "igRadioButton_Bool", "ret": "bool", @@ -34815,7 +34975,7 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", - "location": "imgui:648", + "location": "imgui:650", "namespace": "ImGui", "ov_cimguiname": "igRadioButton_IntPtr", "ret": "bool", @@ -34838,7 +34998,7 @@ "cimguiname": "igRegisterFontAtlas", "defaults": {}, "funcname": "RegisterFontAtlas", - "location": "imgui_internal:3433", + "location": "imgui_internal:3444", "namespace": "ImGui", "ov_cimguiname": "igRegisterFontAtlas", "ret": "void", @@ -34861,7 +35021,7 @@ "cimguiname": "igRegisterUserTexture", "defaults": {}, "funcname": "RegisterUserTexture", - "location": "imgui_internal:3431", + "location": "imgui_internal:3442", "namespace": "ImGui", "ov_cimguiname": "igRegisterUserTexture", "ret": "void", @@ -34888,7 +35048,7 @@ "cimguiname": "igRemoveContextHook", "defaults": {}, "funcname": "RemoveContextHook", - "location": "imgui_internal:3453", + "location": "imgui_internal:3464", "namespace": "ImGui", "ov_cimguiname": "igRemoveContextHook", "ret": "void", @@ -34911,7 +35071,7 @@ "cimguiname": "igRemoveSettingsHandler", "defaults": {}, "funcname": "RemoveSettingsHandler", - "location": "imgui_internal:3480", + "location": "imgui_internal:3491", "namespace": "ImGui", "ov_cimguiname": "igRemoveSettingsHandler", "ret": "void", @@ -34929,7 +35089,7 @@ "cimguiname": "igRender", "defaults": {}, "funcname": "Render", - "location": "imgui:408", + "location": "imgui:410", "namespace": "ImGui", "ov_cimguiname": "igRender", "ret": "void", @@ -34970,7 +35130,7 @@ "scale": "1.0f" }, "funcname": "RenderArrow", - "location": "imgui_internal:3904", + "location": "imgui_internal:3918", "namespace": "ImGui", "ov_cimguiname": "igRenderArrow", "ret": "void", @@ -35005,7 +35165,7 @@ "cimguiname": "igRenderArrowDockMenu", "defaults": {}, "funcname": "RenderArrowDockMenu", - "location": "imgui_internal:3908", + "location": "imgui_internal:3922", "namespace": "ImGui", "ov_cimguiname": "igRenderArrowDockMenu", "ret": "void", @@ -35044,7 +35204,7 @@ "cimguiname": "igRenderArrowPointingAt", "defaults": {}, "funcname": "RenderArrowPointingAt", - "location": "imgui_internal:3907", + "location": "imgui_internal:3921", "namespace": "ImGui", "ov_cimguiname": "igRenderArrowPointingAt", "ret": "void", @@ -35075,7 +35235,7 @@ "cimguiname": "igRenderBullet", "defaults": {}, "funcname": "RenderBullet", - "location": "imgui_internal:3905", + "location": "imgui_internal:3919", "namespace": "ImGui", "ov_cimguiname": "igRenderBullet", "ret": "void", @@ -35110,7 +35270,7 @@ "cimguiname": "igRenderCheckMark", "defaults": {}, "funcname": "RenderCheckMark", - "location": "imgui_internal:3906", + "location": "imgui_internal:3920", "namespace": "ImGui", "ov_cimguiname": "igRenderCheckMark", "ret": "void", @@ -35141,7 +35301,7 @@ "cimguiname": "igRenderColorComponentMarker", "defaults": {}, "funcname": "RenderColorComponentMarker", - "location": "imgui_internal:3894", + "location": "imgui_internal:3908", "namespace": "ImGui", "ov_cimguiname": "igRenderColorComponentMarker", "ret": "void", @@ -35195,7 +35355,7 @@ "rounding": "0.0f" }, "funcname": "RenderColorRectWithAlphaCheckerboard", - "location": "imgui_internal:3895", + "location": "imgui_internal:3909", "namespace": "ImGui", "ov_cimguiname": "igRenderColorRectWithAlphaCheckerboard", "ret": "void", @@ -35222,7 +35382,7 @@ "cimguiname": "igRenderDragDropTargetRectEx", "defaults": {}, "funcname": "RenderDragDropTargetRectEx", - "location": "imgui_internal:3764", + "location": "imgui_internal:3777", "namespace": "ImGui", "ov_cimguiname": "igRenderDragDropTargetRectEx", "ret": "void", @@ -35245,7 +35405,7 @@ "cimguiname": "igRenderDragDropTargetRectForItem", "defaults": {}, "funcname": "RenderDragDropTargetRectForItem", - "location": "imgui_internal:3763", + "location": "imgui_internal:3776", "namespace": "ImGui", "ov_cimguiname": "igRenderDragDropTargetRectForItem", "ret": "void", @@ -35287,7 +35447,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrame", - "location": "imgui_internal:3892", + "location": "imgui_internal:3906", "namespace": "ImGui", "ov_cimguiname": "igRenderFrame", "ret": "void", @@ -35320,7 +35480,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrameBorder", - "location": "imgui_internal:3893", + "location": "imgui_internal:3907", "namespace": "ImGui", "ov_cimguiname": "igRenderFrameBorder", "ret": "void", @@ -35363,7 +35523,7 @@ "cimguiname": "igRenderMouseCursor", "defaults": {}, "funcname": "RenderMouseCursor", - "location": "imgui_internal:3901", + "location": "imgui_internal:3915", "namespace": "ImGui", "ov_cimguiname": "igRenderMouseCursor", "ret": "void", @@ -35396,7 +35556,7 @@ "flags": "ImGuiNavRenderCursorFlags_None" }, "funcname": "RenderNavCursor", - "location": "imgui_internal:3896", + "location": "imgui_internal:3910", "namespace": "ImGui", "ov_cimguiname": "igRenderNavCursor", "ret": "void", @@ -35426,7 +35586,7 @@ "renderer_render_arg": "NULL" }, "funcname": "RenderPlatformWindowsDefault", - "location": "imgui:1195", + "location": "imgui:1198", "namespace": "ImGui", "ov_cimguiname": "igRenderPlatformWindowsDefault", "ret": "void", @@ -35469,7 +35629,7 @@ "cimguiname": "igRenderRectFilledInRangeH", "defaults": {}, "funcname": "RenderRectFilledInRangeH", - "location": "imgui_internal:3909", + "location": "imgui_internal:3923", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledInRangeH", "ret": "void", @@ -35508,7 +35668,7 @@ "cimguiname": "igRenderRectFilledWithHole", "defaults": {}, "funcname": "RenderRectFilledWithHole", - "location": "imgui_internal:3910", + "location": "imgui_internal:3924", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledWithHole", "ret": "void", @@ -35546,7 +35706,7 @@ "text_end": "NULL" }, "funcname": "RenderText", - "location": "imgui_internal:3887", + "location": "imgui_internal:3901", "namespace": "ImGui", "ov_cimguiname": "igRenderText", "ret": "void", @@ -35596,7 +35756,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClipped", - "location": "imgui_internal:3889", + "location": "imgui_internal:3903", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClipped", "ret": "void", @@ -35650,7 +35810,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClippedEx", - "location": "imgui_internal:3890", + "location": "imgui_internal:3904", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClippedEx", "ret": "void", @@ -35697,7 +35857,7 @@ "cimguiname": "igRenderTextEllipsis", "defaults": {}, "funcname": "RenderTextEllipsis", - "location": "imgui_internal:3891", + "location": "imgui_internal:3905", "namespace": "ImGui", "ov_cimguiname": "igRenderTextEllipsis", "ret": "void", @@ -35732,7 +35892,7 @@ "cimguiname": "igRenderTextWrapped", "defaults": {}, "funcname": "RenderTextWrapped", - "location": "imgui_internal:3888", + "location": "imgui_internal:3902", "namespace": "ImGui", "ov_cimguiname": "igRenderTextWrapped", "ret": "void", @@ -35757,7 +35917,7 @@ "button": "0" }, "funcname": "ResetMouseDragDelta", - "location": "imgui:1150", + "location": "imgui:1153", "namespace": "ImGui", "ov_cimguiname": "igResetMouseDragDelta", "ret": "void", @@ -35787,7 +35947,7 @@ "spacing": "-1.0f" }, "funcname": "SameLine", - "location": "imgui:586", + "location": "imgui:588", "namespace": "ImGui", "ov_cimguiname": "igSameLine", "ret": "void", @@ -35810,7 +35970,7 @@ "cimguiname": "igSaveIniSettingsToDisk", "defaults": {}, "funcname": "SaveIniSettingsToDisk", - "location": "imgui:1166", + "location": "imgui:1169", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToDisk", "ret": "void", @@ -35835,7 +35995,7 @@ "out_ini_size": "NULL" }, "funcname": "SaveIniSettingsToMemory", - "location": "imgui:1167", + "location": "imgui:1170", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToMemory", "ret": "const char*", @@ -35862,7 +36022,7 @@ "cimguiname": "igScaleWindowsInViewport", "defaults": {}, "funcname": "ScaleWindowsInViewport", - "location": "imgui_internal:3468", + "location": "imgui_internal:3479", "namespace": "ImGui", "ov_cimguiname": "igScaleWindowsInViewport", "ret": "void", @@ -35889,7 +36049,7 @@ "cimguiname": "igScrollToBringRectIntoView", "defaults": {}, "funcname": "ScrollToBringRectIntoView", - "location": "imgui_internal:3504", + "location": "imgui_internal:3515", "namespace": "ImGui", "ov_cimguiname": "igScrollToBringRectIntoView", "ret": "void", @@ -35914,7 +36074,7 @@ "flags": "0" }, "funcname": "ScrollToItem", - "location": "imgui_internal:3500", + "location": "imgui_internal:3511", "namespace": "ImGui", "ov_cimguiname": "igScrollToItem", "ret": "void", @@ -35947,7 +36107,7 @@ "flags": "0" }, "funcname": "ScrollToRect", - "location": "imgui_internal:3501", + "location": "imgui_internal:3512", "namespace": "ImGui", "ov_cimguiname": "igScrollToRect", "ret": "void", @@ -35981,7 +36141,7 @@ "flags": "0" }, "funcname": "ScrollToRectEx", - "location": "imgui_internal:3502", + "location": "imgui_internal:3513", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igScrollToRectEx", @@ -36005,7 +36165,7 @@ "cimguiname": "igScrollbar", "defaults": {}, "funcname": "Scrollbar", - "location": "imgui_internal:3930", + "location": "imgui_internal:3944", "namespace": "ImGui", "ov_cimguiname": "igScrollbar", "ret": "void", @@ -36054,7 +36214,7 @@ "draw_rounding_flags": "0" }, "funcname": "ScrollbarEx", - "location": "imgui_internal:3931", + "location": "imgui_internal:3945", "namespace": "ImGui", "ov_cimguiname": "igScrollbarEx", "ret": "bool", @@ -36093,7 +36253,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:771", + "location": "imgui:774", "namespace": "ImGui", "ov_cimguiname": "igSelectable_Bool", "ret": "bool", @@ -36129,7 +36289,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:772", + "location": "imgui:775", "namespace": "ImGui", "ov_cimguiname": "igSelectable_BoolPtr", "ret": "bool", @@ -36147,7 +36307,7 @@ "cimguiname": "igSeparator", "defaults": {}, "funcname": "Separator", - "location": "imgui:585", + "location": "imgui:587", "namespace": "ImGui", "ov_cimguiname": "igSeparator", "ret": "void", @@ -36176,7 +36336,7 @@ "thickness": "1.0f" }, "funcname": "SeparatorEx", - "location": "imgui_internal:3922", + "location": "imgui_internal:3936", "namespace": "ImGui", "ov_cimguiname": "igSeparatorEx", "ret": "void", @@ -36199,7 +36359,7 @@ "cimguiname": "igSeparatorText", "defaults": {}, "funcname": "SeparatorText", - "location": "imgui:635", + "location": "imgui:637", "namespace": "ImGui", "ov_cimguiname": "igSeparatorText", "ret": "void", @@ -36234,7 +36394,7 @@ "cimguiname": "igSeparatorTextEx", "defaults": {}, "funcname": "SeparatorTextEx", - "location": "imgui_internal:3923", + "location": "imgui_internal:3937", "namespace": "ImGui", "ov_cimguiname": "igSeparatorTextEx", "ret": "void", @@ -36261,7 +36421,7 @@ "cimguiname": "igSetActiveID", "defaults": {}, "funcname": "SetActiveID", - "location": "imgui_internal:3511", + "location": "imgui_internal:3522", "namespace": "ImGui", "ov_cimguiname": "igSetActiveID", "ret": "void", @@ -36279,7 +36439,7 @@ "cimguiname": "igSetActiveIdUsingAllKeyboardKeys", "defaults": {}, "funcname": "SetActiveIdUsingAllKeyboardKeys", - "location": "imgui_internal:3635", + "location": "imgui_internal:3648", "namespace": "ImGui", "ov_cimguiname": "igSetActiveIdUsingAllKeyboardKeys", "ret": "void", @@ -36312,7 +36472,7 @@ "user_data": "NULL" }, "funcname": "SetAllocatorFunctions", - "location": "imgui:1186", + "location": "imgui:1189", "namespace": "ImGui", "ov_cimguiname": "igSetAllocatorFunctions", "ret": "void", @@ -36335,7 +36495,7 @@ "cimguiname": "igSetClipboardText", "defaults": {}, "funcname": "SetClipboardText", - "location": "imgui:1158", + "location": "imgui:1161", "namespace": "ImGui", "ov_cimguiname": "igSetClipboardText", "ret": "void", @@ -36358,7 +36518,7 @@ "cimguiname": "igSetColorEditOptions", "defaults": {}, "funcname": "SetColorEditOptions", - "location": "imgui:745", + "location": "imgui:747", "namespace": "ImGui", "ov_cimguiname": "igSetColorEditOptions", "ret": "void", @@ -36385,7 +36545,7 @@ "cimguiname": "igSetColumnOffset", "defaults": {}, "funcname": "SetColumnOffset", - "location": "imgui:953", + "location": "imgui:956", "namespace": "ImGui", "ov_cimguiname": "igSetColumnOffset", "ret": "void", @@ -36412,7 +36572,7 @@ "cimguiname": "igSetColumnWidth", "defaults": {}, "funcname": "SetColumnWidth", - "location": "imgui:951", + "location": "imgui:954", "namespace": "ImGui", "ov_cimguiname": "igSetColumnWidth", "ret": "void", @@ -36439,7 +36599,7 @@ "cimguiname": "igSetContextName", "defaults": {}, "funcname": "SetContextName", - "location": "imgui_internal:3451", + "location": "imgui_internal:3462", "namespace": "ImGui", "ov_cimguiname": "igSetContextName", "ret": "void", @@ -36462,7 +36622,7 @@ "cimguiname": "igSetCurrentContext", "defaults": {}, "funcname": "SetCurrentContext", - "location": "imgui:400", + "location": "imgui:402", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentContext", "ret": "void", @@ -36493,7 +36653,7 @@ "cimguiname": "igSetCurrentFont", "defaults": {}, "funcname": "SetCurrentFont", - "location": "imgui_internal:3435", + "location": "imgui_internal:3446", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentFont", "ret": "void", @@ -36520,7 +36680,7 @@ "cimguiname": "igSetCurrentViewport", "defaults": {}, "funcname": "SetCurrentViewport", - "location": "imgui_internal:3471", + "location": "imgui_internal:3482", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentViewport", "ret": "void", @@ -36543,7 +36703,7 @@ "cimguiname": "igSetCursorPos", "defaults": {}, "funcname": "SetCursorPos", - "location": "imgui:579", + "location": "imgui:581", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPos", "ret": "void", @@ -36566,7 +36726,7 @@ "cimguiname": "igSetCursorPosX", "defaults": {}, "funcname": "SetCursorPosX", - "location": "imgui:580", + "location": "imgui:582", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosX", "ret": "void", @@ -36589,7 +36749,7 @@ "cimguiname": "igSetCursorPosY", "defaults": {}, "funcname": "SetCursorPosY", - "location": "imgui:581", + "location": "imgui:583", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosY", "ret": "void", @@ -36612,7 +36772,7 @@ "cimguiname": "igSetCursorScreenPos", "defaults": {}, "funcname": "SetCursorScreenPos", - "location": "imgui:574", + "location": "imgui:576", "namespace": "ImGui", "ov_cimguiname": "igSetCursorScreenPos", "ret": "void", @@ -36649,7 +36809,7 @@ "cond": "0" }, "funcname": "SetDragDropPayload", - "location": "imgui:1009", + "location": "imgui:1012", "namespace": "ImGui", "ov_cimguiname": "igSetDragDropPayload", "ret": "bool", @@ -36676,7 +36836,7 @@ "cimguiname": "igSetFocusID", "defaults": {}, "funcname": "SetFocusID", - "location": "imgui_internal:3512", + "location": "imgui_internal:3523", "namespace": "ImGui", "ov_cimguiname": "igSetFocusID", "ret": "void", @@ -36699,7 +36859,7 @@ "cimguiname": "igSetFontRasterizerDensity", "defaults": {}, "funcname": "SetFontRasterizerDensity", - "location": "imgui_internal:3437", + "location": "imgui_internal:3448", "namespace": "ImGui", "ov_cimguiname": "igSetFontRasterizerDensity", "ret": "void", @@ -36722,7 +36882,7 @@ "cimguiname": "igSetHoveredID", "defaults": {}, "funcname": "SetHoveredID", - "location": "imgui_internal:3515", + "location": "imgui_internal:3526", "namespace": "ImGui", "ov_cimguiname": "igSetHoveredID", "ret": "void", @@ -36740,7 +36900,7 @@ "cimguiname": "igSetItemDefaultFocus", "defaults": {}, "funcname": "SetItemDefaultFocus", - "location": "imgui:1030", + "location": "imgui:1033", "namespace": "ImGui", "ov_cimguiname": "igSetItemDefaultFocus", "ret": "void", @@ -36763,7 +36923,7 @@ "cimguiname": "igSetItemKeyOwner", "defaults": {}, "funcname": "SetItemKeyOwner", - "location": "imgui:1131", + "location": "imgui:1134", "namespace": "ImGui", "ov_cimguiname": "igSetItemKeyOwner_Nil", "ret": "void", @@ -36788,7 +36948,7 @@ "cimguiname": "igSetItemKeyOwner", "defaults": {}, "funcname": "SetItemKeyOwner", - "location": "imgui_internal:3652", + "location": "imgui_internal:3665", "namespace": "ImGui", "ov_cimguiname": "igSetItemKeyOwner_InputFlags", "ret": "void", @@ -36816,7 +36976,7 @@ "defaults": {}, "funcname": "SetItemTooltip", "isvararg": "...)", - "location": "imgui:840", + "location": "imgui:843", "namespace": "ImGui", "ov_cimguiname": "igSetItemTooltip", "ret": "void", @@ -36843,7 +37003,7 @@ "cimguiname": "igSetItemTooltipV", "defaults": {}, "funcname": "SetItemTooltipV", - "location": "imgui:841", + "location": "imgui:844", "namespace": "ImGui", "ov_cimguiname": "igSetItemTooltipV", "ret": "void", @@ -36876,7 +37036,7 @@ "flags": "0" }, "funcname": "SetKeyOwner", - "location": "imgui_internal:3650", + "location": "imgui_internal:3663", "namespace": "ImGui", "ov_cimguiname": "igSetKeyOwner", "ret": "void", @@ -36909,7 +37069,7 @@ "flags": "0" }, "funcname": "SetKeyOwnersForKeyChord", - "location": "imgui_internal:3651", + "location": "imgui_internal:3664", "namespace": "ImGui", "ov_cimguiname": "igSetKeyOwnersForKeyChord", "ret": "void", @@ -36934,7 +37094,7 @@ "offset": "0" }, "funcname": "SetKeyboardFocusHere", - "location": "imgui:1031", + "location": "imgui:1034", "namespace": "ImGui", "ov_cimguiname": "igSetKeyboardFocusHere", "ret": "void", @@ -36969,7 +37129,7 @@ "cimguiname": "igSetLastItemData", "defaults": {}, "funcname": "SetLastItemData", - "location": "imgui_internal:3529", + "location": "imgui_internal:3540", "namespace": "ImGui", "ov_cimguiname": "igSetLastItemData", "ret": "void", @@ -36992,7 +37152,7 @@ "cimguiname": "igSetMouseCursor", "defaults": {}, "funcname": "SetMouseCursor", - "location": "imgui:1152", + "location": "imgui:1155", "namespace": "ImGui", "ov_cimguiname": "igSetMouseCursor", "ret": "void", @@ -37015,7 +37175,7 @@ "cimguiname": "igSetNavCursorVisible", "defaults": {}, "funcname": "SetNavCursorVisible", - "location": "imgui:1034", + "location": "imgui:1037", "namespace": "ImGui", "ov_cimguiname": "igSetNavCursorVisible", "ret": "void", @@ -37033,7 +37193,7 @@ "cimguiname": "igSetNavCursorVisibleAfterMove", "defaults": {}, "funcname": "SetNavCursorVisibleAfterMove", - "location": "imgui_internal:3593", + "location": "imgui_internal:3606", "namespace": "ImGui", "ov_cimguiname": "igSetNavCursorVisibleAfterMove", "ret": "void", @@ -37056,7 +37216,7 @@ "cimguiname": "igSetNavFocusScope", "defaults": {}, "funcname": "SetNavFocusScope", - "location": "imgui_internal:3597", + "location": "imgui_internal:3610", "namespace": "ImGui", "ov_cimguiname": "igSetNavFocusScope", "ret": "void", @@ -37091,7 +37251,7 @@ "cimguiname": "igSetNavID", "defaults": {}, "funcname": "SetNavID", - "location": "imgui_internal:3596", + "location": "imgui_internal:3609", "namespace": "ImGui", "ov_cimguiname": "igSetNavID", "ret": "void", @@ -37114,7 +37274,7 @@ "cimguiname": "igSetNavWindow", "defaults": {}, "funcname": "SetNavWindow", - "location": "imgui_internal:3595", + "location": "imgui_internal:3608", "namespace": "ImGui", "ov_cimguiname": "igSetNavWindow", "ret": "void", @@ -37137,7 +37297,7 @@ "cimguiname": "igSetNextFrameWantCaptureKeyboard", "defaults": {}, "funcname": "SetNextFrameWantCaptureKeyboard", - "location": "imgui:1100", + "location": "imgui:1103", "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureKeyboard", "ret": "void", @@ -37160,7 +37320,7 @@ "cimguiname": "igSetNextFrameWantCaptureMouse", "defaults": {}, "funcname": "SetNextFrameWantCaptureMouse", - "location": "imgui:1153", + "location": "imgui:1156", "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureMouse", "ret": "void", @@ -37178,7 +37338,7 @@ "cimguiname": "igSetNextItemAllowOverlap", "defaults": {}, "funcname": "SetNextItemAllowOverlap", - "location": "imgui:1037", + "location": "imgui:1040", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemAllowOverlap", "ret": "void", @@ -37201,7 +37361,7 @@ "cimguiname": "igSetNextItemColorMarker", "defaults": {}, "funcname": "SetNextItemColorMarker", - "location": "imgui_internal:3985", + "location": "imgui_internal:3999", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemColorMarker", "ret": "void", @@ -37230,7 +37390,7 @@ "cond": "0" }, "funcname": "SetNextItemOpen", - "location": "imgui:765", + "location": "imgui:767", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemOpen", "ret": "void", @@ -37257,7 +37417,7 @@ "cimguiname": "igSetNextItemRefVal", "defaults": {}, "funcname": "SetNextItemRefVal", - "location": "imgui_internal:3978", + "location": "imgui_internal:3992", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemRefVal", "ret": "void", @@ -37280,7 +37440,7 @@ "cimguiname": "igSetNextItemSelectionUserData", "defaults": {}, "funcname": "SetNextItemSelectionUserData", - "location": "imgui:783", + "location": "imgui:786", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemSelectionUserData", "ret": "void", @@ -37309,7 +37469,7 @@ "flags": "0" }, "funcname": "SetNextItemShortcut", - "location": "imgui:1123", + "location": "imgui:1126", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemShortcut", "ret": "void", @@ -37332,7 +37492,7 @@ "cimguiname": "igSetNextItemStorageID", "defaults": {}, "funcname": "SetNextItemStorageID", - "location": "imgui:766", + "location": "imgui:768", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemStorageID", "ret": "void", @@ -37355,7 +37515,7 @@ "cimguiname": "igSetNextItemWidth", "defaults": {}, "funcname": "SetNextItemWidth", - "location": "imgui:550", + "location": "imgui:552", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemWidth", "ret": "void", @@ -37378,7 +37538,7 @@ "cimguiname": "igSetNextWindowBgAlpha", "defaults": {}, "funcname": "SetNextWindowBgAlpha", - "location": "imgui:488", + "location": "imgui:490", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowBgAlpha", "ret": "void", @@ -37401,7 +37561,7 @@ "cimguiname": "igSetNextWindowClass", "defaults": {}, "funcname": "SetNextWindowClass", - "location": "imgui:989", + "location": "imgui:992", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowClass", "ret": "void", @@ -37430,7 +37590,7 @@ "cond": "0" }, "funcname": "SetNextWindowCollapsed", - "location": "imgui:485", + "location": "imgui:487", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowCollapsed", "ret": "void", @@ -37453,7 +37613,7 @@ "cimguiname": "igSetNextWindowContentSize", "defaults": {}, "funcname": "SetNextWindowContentSize", - "location": "imgui:484", + "location": "imgui:486", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowContentSize", "ret": "void", @@ -37482,7 +37642,7 @@ "cond": "0" }, "funcname": "SetNextWindowDockID", - "location": "imgui:988", + "location": "imgui:991", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowDockID", "ret": "void", @@ -37500,7 +37660,7 @@ "cimguiname": "igSetNextWindowFocus", "defaults": {}, "funcname": "SetNextWindowFocus", - "location": "imgui:486", + "location": "imgui:488", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowFocus", "ret": "void", @@ -37534,7 +37694,7 @@ "pivot": "ImVec2(0,0)" }, "funcname": "SetNextWindowPos", - "location": "imgui:481", + "location": "imgui:483", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowPos", "ret": "void", @@ -37557,7 +37717,7 @@ "cimguiname": "igSetNextWindowRefreshPolicy", "defaults": {}, "funcname": "SetNextWindowRefreshPolicy", - "location": "imgui_internal:3428", + "location": "imgui_internal:3439", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowRefreshPolicy", "ret": "void", @@ -37580,7 +37740,7 @@ "cimguiname": "igSetNextWindowScroll", "defaults": {}, "funcname": "SetNextWindowScroll", - "location": "imgui:487", + "location": "imgui:489", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowScroll", "ret": "void", @@ -37609,7 +37769,7 @@ "cond": "0" }, "funcname": "SetNextWindowSize", - "location": "imgui:482", + "location": "imgui:484", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSize", "ret": "void", @@ -37647,7 +37807,7 @@ "custom_callback_data": "NULL" }, "funcname": "SetNextWindowSizeConstraints", - "location": "imgui:483", + "location": "imgui:485", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSizeConstraints", "ret": "void", @@ -37670,7 +37830,7 @@ "cimguiname": "igSetNextWindowViewport", "defaults": {}, "funcname": "SetNextWindowViewport", - "location": "imgui:489", + "location": "imgui:491", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowViewport", "ret": "void", @@ -37699,7 +37859,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollFromPosX", - "location": "imgui:510", + "location": "imgui:512", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX_Float", "ret": "void", @@ -37728,7 +37888,7 @@ "cimguiname": "igSetScrollFromPosX", "defaults": {}, "funcname": "SetScrollFromPosX", - "location": "imgui_internal:3496", + "location": "imgui_internal:3507", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX_WindowPtr", "ret": "void", @@ -37757,7 +37917,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollFromPosY", - "location": "imgui:511", + "location": "imgui:513", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY_Float", "ret": "void", @@ -37786,7 +37946,7 @@ "cimguiname": "igSetScrollFromPosY", "defaults": {}, "funcname": "SetScrollFromPosY", - "location": "imgui_internal:3497", + "location": "imgui_internal:3508", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY_WindowPtr", "ret": "void", @@ -37811,7 +37971,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollHereX", - "location": "imgui:508", + "location": "imgui:510", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereX", "ret": "void", @@ -37836,7 +37996,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollHereY", - "location": "imgui:509", + "location": "imgui:511", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereY", "ret": "void", @@ -37859,7 +38019,7 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui:504", + "location": "imgui:506", "namespace": "ImGui", "ov_cimguiname": "igSetScrollX_Float", "ret": "void", @@ -37884,7 +38044,7 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui_internal:3494", + "location": "imgui_internal:3505", "namespace": "ImGui", "ov_cimguiname": "igSetScrollX_WindowPtr", "ret": "void", @@ -37907,7 +38067,7 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui:505", + "location": "imgui:507", "namespace": "ImGui", "ov_cimguiname": "igSetScrollY_Float", "ret": "void", @@ -37932,7 +38092,7 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui_internal:3495", + "location": "imgui_internal:3506", "namespace": "ImGui", "ov_cimguiname": "igSetScrollY_WindowPtr", "ret": "void", @@ -37963,7 +38123,7 @@ "cimguiname": "igSetShortcutRouting", "defaults": {}, "funcname": "SetShortcutRouting", - "location": "imgui_internal:3686", + "location": "imgui_internal:3699", "namespace": "ImGui", "ov_cimguiname": "igSetShortcutRouting", "ret": "bool", @@ -37986,7 +38146,7 @@ "cimguiname": "igSetStateStorage", "defaults": {}, "funcname": "SetStateStorage", - "location": "imgui:1078", + "location": "imgui:1081", "namespace": "ImGui", "ov_cimguiname": "igSetStateStorage", "ret": "void", @@ -38009,7 +38169,7 @@ "cimguiname": "igSetTabItemClosed", "defaults": {}, "funcname": "SetTabItemClosed", - "location": "imgui:963", + "location": "imgui:966", "namespace": "ImGui", "ov_cimguiname": "igSetTabItemClosed", "ret": "void", @@ -38037,7 +38197,7 @@ "defaults": {}, "funcname": "SetTooltip", "isvararg": "...)", - "location": "imgui:832", + "location": "imgui:835", "namespace": "ImGui", "ov_cimguiname": "igSetTooltip", "ret": "void", @@ -38064,7 +38224,7 @@ "cimguiname": "igSetTooltipV", "defaults": {}, "funcname": "SetTooltipV", - "location": "imgui:833", + "location": "imgui:836", "namespace": "ImGui", "ov_cimguiname": "igSetTooltipV", "ret": "void", @@ -38091,7 +38251,7 @@ "cimguiname": "igSetWindowClipRectBeforeSetChannel", "defaults": {}, "funcname": "SetWindowClipRectBeforeSetChannel", - "location": "imgui_internal:3787", + "location": "imgui_internal:3800", "namespace": "ImGui", "ov_cimguiname": "igSetWindowClipRectBeforeSetChannel", "ret": "void", @@ -38120,7 +38280,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui:492", + "location": "imgui:494", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_Bool", "ret": "void", @@ -38151,7 +38311,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui:496", + "location": "imgui:498", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_Str", "ret": "void", @@ -38182,7 +38342,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui_internal:3408", + "location": "imgui_internal:3419", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_WindowPtr", "ret": "void", @@ -38213,7 +38373,7 @@ "cimguiname": "igSetWindowDock", "defaults": {}, "funcname": "SetWindowDock", - "location": "imgui_internal:3719", + "location": "imgui_internal:3732", "namespace": "ImGui", "ov_cimguiname": "igSetWindowDock", "ret": "void", @@ -38231,7 +38391,7 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui:493", + "location": "imgui:495", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus_Nil", "ret": "void", @@ -38252,7 +38412,7 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui:497", + "location": "imgui:499", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus_Str", "ret": "void", @@ -38275,7 +38435,7 @@ "cimguiname": "igSetWindowHiddenAndSkipItemsForCurrentFrame", "defaults": {}, "funcname": "SetWindowHiddenAndSkipItemsForCurrentFrame", - "location": "imgui_internal:3410", + "location": "imgui_internal:3421", "namespace": "ImGui", "ov_cimguiname": "igSetWindowHiddenAndSkipItemsForCurrentFrame", "ret": "void", @@ -38306,7 +38466,7 @@ "cimguiname": "igSetWindowHitTestHole", "defaults": {}, "funcname": "SetWindowHitTestHole", - "location": "imgui_internal:3409", + "location": "imgui_internal:3420", "namespace": "ImGui", "ov_cimguiname": "igSetWindowHitTestHole", "ret": "void", @@ -38333,7 +38493,7 @@ "cimguiname": "igSetWindowParentWindowForFocusRoute", "defaults": {}, "funcname": "SetWindowParentWindowForFocusRoute", - "location": "imgui_internal:3411", + "location": "imgui_internal:3422", "namespace": "ImGui", "ov_cimguiname": "igSetWindowParentWindowForFocusRoute", "ret": "void", @@ -38362,7 +38522,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui:490", + "location": "imgui:492", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_Vec2", "ret": "void", @@ -38393,7 +38553,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui:494", + "location": "imgui:496", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_Str", "ret": "void", @@ -38424,7 +38584,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui_internal:3406", + "location": "imgui_internal:3417", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_WindowPtr", "ret": "void", @@ -38453,7 +38613,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui:491", + "location": "imgui:493", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_Vec2", "ret": "void", @@ -38484,7 +38644,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui:495", + "location": "imgui:497", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_Str", "ret": "void", @@ -38515,7 +38675,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui_internal:3407", + "location": "imgui_internal:3418", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_WindowPtr", "ret": "void", @@ -38542,7 +38702,7 @@ "cimguiname": "igSetWindowViewport", "defaults": {}, "funcname": "SetWindowViewport", - "location": "imgui_internal:3470", + "location": "imgui_internal:3481", "namespace": "ImGui", "ov_cimguiname": "igSetWindowViewport", "ret": "void", @@ -38589,7 +38749,7 @@ "cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "defaults": {}, "funcname": "ShadeVertsLinearColorGradientKeepAlpha", - "location": "imgui_internal:3991", + "location": "imgui_internal:4005", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "ret": "void", @@ -38640,7 +38800,7 @@ "cimguiname": "igShadeVertsLinearUV", "defaults": {}, "funcname": "ShadeVertsLinearUV", - "location": "imgui_internal:3992", + "location": "imgui_internal:4006", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearUV", "ret": "void", @@ -38687,7 +38847,7 @@ "cimguiname": "igShadeVertsTransformPos", "defaults": {}, "funcname": "ShadeVertsTransformPos", - "location": "imgui_internal:3993", + "location": "imgui_internal:4007", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsTransformPos", "ret": "void", @@ -38716,7 +38876,7 @@ "flags": "0" }, "funcname": "Shortcut", - "location": "imgui:1122", + "location": "imgui:1125", "namespace": "ImGui", "ov_cimguiname": "igShortcut_Nil", "ret": "bool", @@ -38745,7 +38905,7 @@ "cimguiname": "igShortcut", "defaults": {}, "funcname": "Shortcut", - "location": "imgui_internal:3685", + "location": "imgui_internal:3698", "namespace": "ImGui", "ov_cimguiname": "igShortcut_ID", "ret": "bool", @@ -38770,7 +38930,7 @@ "p_open": "NULL" }, "funcname": "ShowAboutWindow", - "location": "imgui:416", + "location": "imgui:418", "namespace": "ImGui", "ov_cimguiname": "igShowAboutWindow", "ret": "void", @@ -38795,7 +38955,7 @@ "p_open": "NULL" }, "funcname": "ShowDebugLogWindow", - "location": "imgui:414", + "location": "imgui:416", "namespace": "ImGui", "ov_cimguiname": "igShowDebugLogWindow", "ret": "void", @@ -38820,7 +38980,7 @@ "p_open": "NULL" }, "funcname": "ShowDemoWindow", - "location": "imgui:412", + "location": "imgui:414", "namespace": "ImGui", "ov_cimguiname": "igShowDemoWindow", "ret": "void", @@ -38843,7 +39003,7 @@ "cimguiname": "igShowFontAtlas", "defaults": {}, "funcname": "ShowFontAtlas", - "location": "imgui_internal:4022", + "location": "imgui_internal:4039", "namespace": "ImGui", "ov_cimguiname": "igShowFontAtlas", "ret": "void", @@ -38866,7 +39026,7 @@ "cimguiname": "igShowFontSelector", "defaults": {}, "funcname": "ShowFontSelector", - "location": "imgui:419", + "location": "imgui:421", "namespace": "ImGui", "ov_cimguiname": "igShowFontSelector", "ret": "void", @@ -38891,7 +39051,7 @@ "p_open": "NULL" }, "funcname": "ShowIDStackToolWindow", - "location": "imgui:415", + "location": "imgui:417", "namespace": "ImGui", "ov_cimguiname": "igShowIDStackToolWindow", "ret": "void", @@ -38916,7 +39076,7 @@ "p_open": "NULL" }, "funcname": "ShowMetricsWindow", - "location": "imgui:413", + "location": "imgui:415", "namespace": "ImGui", "ov_cimguiname": "igShowMetricsWindow", "ret": "void", @@ -38941,7 +39101,7 @@ "ref": "NULL" }, "funcname": "ShowStyleEditor", - "location": "imgui:417", + "location": "imgui:419", "namespace": "ImGui", "ov_cimguiname": "igShowStyleEditor", "ret": "void", @@ -38964,7 +39124,7 @@ "cimguiname": "igShowStyleSelector", "defaults": {}, "funcname": "ShowStyleSelector", - "location": "imgui:418", + "location": "imgui:420", "namespace": "ImGui", "ov_cimguiname": "igShowStyleSelector", "ret": "bool", @@ -38982,7 +39142,7 @@ "cimguiname": "igShowUserGuide", "defaults": {}, "funcname": "ShowUserGuide", - "location": "imgui:420", + "location": "imgui:422", "namespace": "ImGui", "ov_cimguiname": "igShowUserGuide", "ret": "void", @@ -39017,7 +39177,7 @@ "cimguiname": "igShrinkWidths", "defaults": {}, "funcname": "ShrinkWidths", - "location": "imgui_internal:3533", + "location": "imgui_internal:3544", "namespace": "ImGui", "ov_cimguiname": "igShrinkWidths", "ret": "void", @@ -39035,7 +39195,7 @@ "cimguiname": "igShutdown", "defaults": {}, "funcname": "Shutdown", - "location": "imgui_internal:3448", + "location": "imgui_internal:3459", "namespace": "ImGui", "ov_cimguiname": "igShutdown", "ret": "void", @@ -39083,7 +39243,7 @@ "v_degrees_min": "-360.0f" }, "funcname": "SliderAngle", - "location": "imgui:708", + "location": "imgui:710", "namespace": "ImGui", "ov_cimguiname": "igSliderAngle", "ret": "bool", @@ -39138,7 +39298,7 @@ "cimguiname": "igSliderBehavior", "defaults": {}, "funcname": "SliderBehavior", - "location": "imgui_internal:3940", + "location": "imgui_internal:3955", "namespace": "ImGui", "ov_cimguiname": "igSliderBehavior", "ret": "bool", @@ -39184,7 +39344,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat", - "location": "imgui:704", + "location": "imgui:706", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat", "ret": "bool", @@ -39230,7 +39390,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat2", - "location": "imgui:705", + "location": "imgui:707", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat2", "ret": "bool", @@ -39276,7 +39436,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat3", - "location": "imgui:706", + "location": "imgui:708", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat3", "ret": "bool", @@ -39322,7 +39482,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat4", - "location": "imgui:707", + "location": "imgui:709", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat4", "ret": "bool", @@ -39368,7 +39528,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt", - "location": "imgui:709", + "location": "imgui:711", "namespace": "ImGui", "ov_cimguiname": "igSliderInt", "ret": "bool", @@ -39414,7 +39574,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt2", - "location": "imgui:710", + "location": "imgui:712", "namespace": "ImGui", "ov_cimguiname": "igSliderInt2", "ret": "bool", @@ -39460,7 +39620,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt3", - "location": "imgui:711", + "location": "imgui:713", "namespace": "ImGui", "ov_cimguiname": "igSliderInt3", "ret": "bool", @@ -39506,7 +39666,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt4", - "location": "imgui:712", + "location": "imgui:714", "namespace": "ImGui", "ov_cimguiname": "igSliderInt4", "ret": "bool", @@ -39556,7 +39716,7 @@ "format": "NULL" }, "funcname": "SliderScalar", - "location": "imgui:713", + "location": "imgui:715", "namespace": "ImGui", "ov_cimguiname": "igSliderScalar", "ret": "bool", @@ -39610,7 +39770,7 @@ "format": "NULL" }, "funcname": "SliderScalarN", - "location": "imgui:714", + "location": "imgui:716", "namespace": "ImGui", "ov_cimguiname": "igSliderScalarN", "ret": "bool", @@ -39633,7 +39793,7 @@ "cimguiname": "igSmallButton", "defaults": {}, "funcname": "SmallButton", - "location": "imgui:641", + "location": "imgui:643", "namespace": "ImGui", "ov_cimguiname": "igSmallButton", "ret": "bool", @@ -39651,7 +39811,7 @@ "cimguiname": "igSpacing", "defaults": {}, "funcname": "Spacing", - "location": "imgui:588", + "location": "imgui:590", "namespace": "ImGui", "ov_cimguiname": "igSpacing", "ret": "void", @@ -39714,7 +39874,7 @@ "hover_visibility_delay": "0.0f" }, "funcname": "SplitterBehavior", - "location": "imgui_internal:3941", + "location": "imgui_internal:3956", "namespace": "ImGui", "ov_cimguiname": "igSplitterBehavior", "ret": "bool", @@ -39737,7 +39897,7 @@ "cimguiname": "igStartMouseMovingWindow", "defaults": {}, "funcname": "StartMouseMovingWindow", - "location": "imgui_internal:3460", + "location": "imgui_internal:3471", "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindow", "ret": "void", @@ -39768,7 +39928,7 @@ "cimguiname": "igStartMouseMovingWindowOrNode", "defaults": {}, "funcname": "StartMouseMovingWindowOrNode", - "location": "imgui_internal:3461", + "location": "imgui_internal:3472", "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindowOrNode", "ret": "void", @@ -39786,7 +39946,7 @@ "cimguiname": "igStopMouseMovingWindow", "defaults": {}, "funcname": "StopMouseMovingWindow", - "location": "imgui_internal:3462", + "location": "imgui_internal:3473", "namespace": "ImGui", "ov_cimguiname": "igStopMouseMovingWindow", "ret": "void", @@ -39811,7 +39971,7 @@ "dst": "NULL" }, "funcname": "StyleColorsClassic", - "location": "imgui:426", + "location": "imgui:428", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsClassic", "ret": "void", @@ -39836,7 +39996,7 @@ "dst": "NULL" }, "funcname": "StyleColorsDark", - "location": "imgui:424", + "location": "imgui:426", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsDark", "ret": "void", @@ -39861,7 +40021,7 @@ "dst": "NULL" }, "funcname": "StyleColorsLight", - "location": "imgui:425", + "location": "imgui:427", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsLight", "ret": "void", @@ -39892,7 +40052,7 @@ "cimguiname": "igTabBarAddTab", "defaults": {}, "funcname": "TabBarAddTab", - "location": "imgui_internal:3869", + "location": "imgui_internal:3883", "namespace": "ImGui", "ov_cimguiname": "igTabBarAddTab", "ret": "void", @@ -39919,7 +40079,7 @@ "cimguiname": "igTabBarCloseTab", "defaults": {}, "funcname": "TabBarCloseTab", - "location": "imgui_internal:3871", + "location": "imgui_internal:3885", "namespace": "ImGui", "ov_cimguiname": "igTabBarCloseTab", "ret": "void", @@ -39942,7 +40102,7 @@ "cimguiname": "igTabBarFindByID", "defaults": {}, "funcname": "TabBarFindByID", - "location": "imgui_internal:3860", + "location": "imgui_internal:3874", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindByID", "ret": "ImGuiTabBar*", @@ -39965,7 +40125,7 @@ "cimguiname": "igTabBarFindMostRecentlySelectedTabForActiveWindow", "defaults": {}, "funcname": "TabBarFindMostRecentlySelectedTabForActiveWindow", - "location": "imgui_internal:3865", + "location": "imgui_internal:3879", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindMostRecentlySelectedTabForActiveWindow", "ret": "ImGuiTabItem*", @@ -39992,7 +40152,7 @@ "cimguiname": "igTabBarFindTabByID", "defaults": {}, "funcname": "TabBarFindTabByID", - "location": "imgui_internal:3863", + "location": "imgui_internal:3877", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindTabByID", "ret": "ImGuiTabItem*", @@ -40019,7 +40179,7 @@ "cimguiname": "igTabBarFindTabByOrder", "defaults": {}, "funcname": "TabBarFindTabByOrder", - "location": "imgui_internal:3864", + "location": "imgui_internal:3878", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindTabByOrder", "ret": "ImGuiTabItem*", @@ -40042,7 +40202,7 @@ "cimguiname": "igTabBarGetCurrentTab", "defaults": {}, "funcname": "TabBarGetCurrentTab", - "location": "imgui_internal:3866", + "location": "imgui_internal:3880", "namespace": "ImGui", "ov_cimguiname": "igTabBarGetCurrentTab", "ret": "ImGuiTabItem*", @@ -40069,7 +40229,7 @@ "cimguiname": "igTabBarGetTabName", "defaults": {}, "funcname": "TabBarGetTabName", - "location": "imgui_internal:3868", + "location": "imgui_internal:3882", "namespace": "ImGui", "ov_cimguiname": "igTabBarGetTabName", "ret": "const char*", @@ -40096,7 +40256,7 @@ "cimguiname": "igTabBarGetTabOrder", "defaults": {}, "funcname": "TabBarGetTabOrder", - "location": "imgui_internal:3867", + "location": "imgui_internal:3881", "namespace": "ImGui", "ov_cimguiname": "igTabBarGetTabOrder", "ret": "int", @@ -40119,7 +40279,7 @@ "cimguiname": "igTabBarProcessReorder", "defaults": {}, "funcname": "TabBarProcessReorder", - "location": "imgui_internal:3876", + "location": "imgui_internal:3890", "namespace": "ImGui", "ov_cimguiname": "igTabBarProcessReorder", "ret": "bool", @@ -40146,7 +40306,7 @@ "cimguiname": "igTabBarQueueFocus", "defaults": {}, "funcname": "TabBarQueueFocus", - "location": "imgui_internal:3872", + "location": "imgui_internal:3886", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueFocus_TabItemPtr", "ret": "void", @@ -40171,7 +40331,7 @@ "cimguiname": "igTabBarQueueFocus", "defaults": {}, "funcname": "TabBarQueueFocus", - "location": "imgui_internal:3873", + "location": "imgui_internal:3887", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueFocus_Str", "ret": "void", @@ -40202,7 +40362,7 @@ "cimguiname": "igTabBarQueueReorder", "defaults": {}, "funcname": "TabBarQueueReorder", - "location": "imgui_internal:3874", + "location": "imgui_internal:3888", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorder", "ret": "void", @@ -40233,7 +40393,7 @@ "cimguiname": "igTabBarQueueReorderFromMousePos", "defaults": {}, "funcname": "TabBarQueueReorderFromMousePos", - "location": "imgui_internal:3875", + "location": "imgui_internal:3889", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorderFromMousePos", "ret": "void", @@ -40256,7 +40416,7 @@ "cimguiname": "igTabBarRemove", "defaults": {}, "funcname": "TabBarRemove", - "location": "imgui_internal:3861", + "location": "imgui_internal:3875", "namespace": "ImGui", "ov_cimguiname": "igTabBarRemove", "ret": "void", @@ -40283,7 +40443,7 @@ "cimguiname": "igTabBarRemoveTab", "defaults": {}, "funcname": "TabBarRemoveTab", - "location": "imgui_internal:3870", + "location": "imgui_internal:3884", "namespace": "ImGui", "ov_cimguiname": "igTabBarRemoveTab", "ret": "void", @@ -40318,7 +40478,7 @@ "cimguiname": "igTabItemBackground", "defaults": {}, "funcname": "TabItemBackground", - "location": "imgui_internal:3881", + "location": "imgui_internal:3895", "namespace": "ImGui", "ov_cimguiname": "igTabItemBackground", "ret": "void", @@ -40347,7 +40507,7 @@ "flags": "0" }, "funcname": "TabItemButton", - "location": "imgui:962", + "location": "imgui:965", "namespace": "ImGui", "ov_cimguiname": "igTabItemButton", "ret": "bool", @@ -40375,7 +40535,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "TabItemCalcSize", - "location": "imgui_internal:3879", + "location": "imgui_internal:3893", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize_Str", @@ -40398,7 +40558,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "TabItemCalcSize", - "location": "imgui_internal:3880", + "location": "imgui_internal:3894", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize_WindowPtr", @@ -40438,7 +40598,7 @@ "cimguiname": "igTabItemEx", "defaults": {}, "funcname": "TabItemEx", - "location": "imgui_internal:3877", + "location": "imgui_internal:3891", "namespace": "ImGui", "ov_cimguiname": "igTabItemEx", "ret": "bool", @@ -40497,7 +40657,7 @@ "cimguiname": "igTabItemLabelAndCloseButton", "defaults": {}, "funcname": "TabItemLabelAndCloseButton", - "location": "imgui_internal:3882", + "location": "imgui_internal:3896", "namespace": "ImGui", "ov_cimguiname": "igTabItemLabelAndCloseButton", "ret": "void", @@ -40528,7 +40688,7 @@ "cimguiname": "igTabItemSpacing", "defaults": {}, "funcname": "TabItemSpacing", - "location": "imgui_internal:3878", + "location": "imgui_internal:3892", "namespace": "ImGui", "ov_cimguiname": "igTabItemSpacing", "ret": "void", @@ -40546,7 +40706,7 @@ "cimguiname": "igTableAngledHeadersRow", "defaults": {}, "funcname": "TableAngledHeadersRow", - "location": "imgui:927", + "location": "imgui:930", "namespace": "ImGui", "ov_cimguiname": "igTableAngledHeadersRow", "ret": "void", @@ -40585,7 +40745,7 @@ "cimguiname": "igTableAngledHeadersRowEx", "defaults": {}, "funcname": "TableAngledHeadersRowEx", - "location": "imgui_internal:3809", + "location": "imgui_internal:3822", "namespace": "ImGui", "ov_cimguiname": "igTableAngledHeadersRowEx", "ret": "void", @@ -40608,7 +40768,7 @@ "cimguiname": "igTableBeginApplyRequests", "defaults": {}, "funcname": "TableBeginApplyRequests", - "location": "imgui_internal:3816", + "location": "imgui_internal:3829", "namespace": "ImGui", "ov_cimguiname": "igTableBeginApplyRequests", "ret": "void", @@ -40635,7 +40795,7 @@ "cimguiname": "igTableBeginCell", "defaults": {}, "funcname": "TableBeginCell", - "location": "imgui_internal:3835", + "location": "imgui_internal:3848", "namespace": "ImGui", "ov_cimguiname": "igTableBeginCell", "ret": "void", @@ -40658,7 +40818,7 @@ "cimguiname": "igTableBeginContextMenuPopup", "defaults": {}, "funcname": "TableBeginContextMenuPopup", - "location": "imgui_internal:3823", + "location": "imgui_internal:3836", "namespace": "ImGui", "ov_cimguiname": "igTableBeginContextMenuPopup", "ret": "bool", @@ -40685,7 +40845,7 @@ "cimguiname": "igTableBeginInitMemory", "defaults": {}, "funcname": "TableBeginInitMemory", - "location": "imgui_internal:3815", + "location": "imgui_internal:3828", "namespace": "ImGui", "ov_cimguiname": "igTableBeginInitMemory", "ret": "void", @@ -40708,7 +40868,7 @@ "cimguiname": "igTableBeginRow", "defaults": {}, "funcname": "TableBeginRow", - "location": "imgui_internal:3833", + "location": "imgui_internal:3846", "namespace": "ImGui", "ov_cimguiname": "igTableBeginRow", "ret": "void", @@ -40735,7 +40895,7 @@ "cimguiname": "igTableCalcMaxColumnWidth", "defaults": {}, "funcname": "TableCalcMaxColumnWidth", - "location": "imgui_internal:3840", + "location": "imgui_internal:3853", "namespace": "ImGui", "ov_cimguiname": "igTableCalcMaxColumnWidth", "ret": "float", @@ -40758,7 +40918,7 @@ "cimguiname": "igTableDrawBorders", "defaults": {}, "funcname": "TableDrawBorders", - "location": "imgui_internal:3821", + "location": "imgui_internal:3834", "namespace": "ImGui", "ov_cimguiname": "igTableDrawBorders", "ret": "void", @@ -40785,7 +40945,7 @@ "cimguiname": "igTableDrawDefaultContextMenu", "defaults": {}, "funcname": "TableDrawDefaultContextMenu", - "location": "imgui_internal:3822", + "location": "imgui_internal:3835", "namespace": "ImGui", "ov_cimguiname": "igTableDrawDefaultContextMenu", "ret": "void", @@ -40808,7 +40968,7 @@ "cimguiname": "igTableEndCell", "defaults": {}, "funcname": "TableEndCell", - "location": "imgui_internal:3836", + "location": "imgui_internal:3849", "namespace": "ImGui", "ov_cimguiname": "igTableEndCell", "ret": "void", @@ -40831,7 +40991,7 @@ "cimguiname": "igTableEndRow", "defaults": {}, "funcname": "TableEndRow", - "location": "imgui_internal:3834", + "location": "imgui_internal:3847", "namespace": "ImGui", "ov_cimguiname": "igTableEndRow", "ret": "void", @@ -40854,7 +41014,7 @@ "cimguiname": "igTableFindByID", "defaults": {}, "funcname": "TableFindByID", - "location": "imgui_internal:3813", + "location": "imgui_internal:3826", "namespace": "ImGui", "ov_cimguiname": "igTableFindByID", "ret": "ImGuiTable*", @@ -40881,7 +41041,7 @@ "cimguiname": "igTableFixColumnSortDirection", "defaults": {}, "funcname": "TableFixColumnSortDirection", - "location": "imgui_internal:3831", + "location": "imgui_internal:3844", "namespace": "ImGui", "ov_cimguiname": "igTableFixColumnSortDirection", "ret": "void", @@ -40904,7 +41064,7 @@ "cimguiname": "igTableFixDisplayOrder", "defaults": {}, "funcname": "TableFixDisplayOrder", - "location": "imgui_internal:3827", + "location": "imgui_internal:3840", "namespace": "ImGui", "ov_cimguiname": "igTableFixDisplayOrder", "ret": "void", @@ -40922,7 +41082,7 @@ "cimguiname": "igTableGcCompactSettings", "defaults": {}, "funcname": "TableGcCompactSettings", - "location": "imgui_internal:3847", + "location": "imgui_internal:3861", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactSettings", "ret": "void", @@ -40945,7 +41105,7 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", - "location": "imgui_internal:3845", + "location": "imgui_internal:3859", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TablePtr", "ret": "void", @@ -40966,7 +41126,7 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", - "location": "imgui_internal:3846", + "location": "imgui_internal:3860", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TableTempDataPtr", "ret": "void", @@ -40989,7 +41149,7 @@ "cimguiname": "igTableGetBoundSettings", "defaults": {}, "funcname": "TableGetBoundSettings", - "location": "imgui_internal:3853", + "location": "imgui_internal:3867", "namespace": "ImGui", "ov_cimguiname": "igTableGetBoundSettings", "ret": "ImGuiTableSettings*", @@ -41017,7 +41177,7 @@ "conv": "ImRect", "defaults": {}, "funcname": "TableGetCellBgRect", - "location": "imgui_internal:3837", + "location": "imgui_internal:3850", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTableGetCellBgRect", @@ -41036,7 +41196,7 @@ "cimguiname": "igTableGetColumnCount", "defaults": {}, "funcname": "TableGetColumnCount", - "location": "imgui:936", + "location": "imgui:939", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnCount", "ret": "int", @@ -41061,7 +41221,7 @@ "column_n": "-1" }, "funcname": "TableGetColumnFlags", - "location": "imgui:940", + "location": "imgui:943", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnFlags", "ret": "ImGuiTableColumnFlags", @@ -41079,7 +41239,7 @@ "cimguiname": "igTableGetColumnIndex", "defaults": {}, "funcname": "TableGetColumnIndex", - "location": "imgui:937", + "location": "imgui:940", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnIndex", "ret": "int", @@ -41104,7 +41264,7 @@ "column_n": "-1" }, "funcname": "TableGetColumnName", - "location": "imgui:939", + "location": "imgui:942", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName_Int", "ret": "const char*", @@ -41129,7 +41289,7 @@ "cimguiname": "igTableGetColumnName", "defaults": {}, "funcname": "TableGetColumnName", - "location": "imgui_internal:3838", + "location": "imgui_internal:3851", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName_TablePtr", "ret": "const char*", @@ -41152,7 +41312,7 @@ "cimguiname": "igTableGetColumnNextSortDirection", "defaults": {}, "funcname": "TableGetColumnNextSortDirection", - "location": "imgui_internal:3830", + "location": "imgui_internal:3843", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnNextSortDirection", "ret": "ImGuiSortDirection", @@ -41185,7 +41345,7 @@ "instance_no": "0" }, "funcname": "TableGetColumnResizeID", - "location": "imgui_internal:3839", + "location": "imgui_internal:3852", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnResizeID", "ret": "ImGuiID", @@ -41212,7 +41372,7 @@ "cimguiname": "igTableGetColumnWidthAuto", "defaults": {}, "funcname": "TableGetColumnWidthAuto", - "location": "imgui_internal:3832", + "location": "imgui_internal:3845", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnWidthAuto", "ret": "float", @@ -41230,7 +41390,7 @@ "cimguiname": "igTableGetHeaderAngledMaxLabelWidth", "defaults": {}, "funcname": "TableGetHeaderAngledMaxLabelWidth", - "location": "imgui_internal:3804", + "location": "imgui_internal:3817", "namespace": "ImGui", "ov_cimguiname": "igTableGetHeaderAngledMaxLabelWidth", "ret": "float", @@ -41248,7 +41408,7 @@ "cimguiname": "igTableGetHeaderRowHeight", "defaults": {}, "funcname": "TableGetHeaderRowHeight", - "location": "imgui_internal:3803", + "location": "imgui_internal:3816", "namespace": "ImGui", "ov_cimguiname": "igTableGetHeaderRowHeight", "ret": "float", @@ -41266,7 +41426,7 @@ "cimguiname": "igTableGetHoveredColumn", "defaults": {}, "funcname": "TableGetHoveredColumn", - "location": "imgui:942", + "location": "imgui:945", "namespace": "ImGui", "ov_cimguiname": "igTableGetHoveredColumn", "ret": "int", @@ -41284,7 +41444,7 @@ "cimguiname": "igTableGetHoveredRow", "defaults": {}, "funcname": "TableGetHoveredRow", - "location": "imgui_internal:3802", + "location": "imgui_internal:3815", "namespace": "ImGui", "ov_cimguiname": "igTableGetHoveredRow", "ret": "int", @@ -41311,7 +41471,7 @@ "cimguiname": "igTableGetInstanceData", "defaults": {}, "funcname": "TableGetInstanceData", - "location": "imgui_internal:3825", + "location": "imgui_internal:3838", "namespace": "ImGui", "ov_cimguiname": "igTableGetInstanceData", "ret": "ImGuiTableInstanceData*", @@ -41338,7 +41498,7 @@ "cimguiname": "igTableGetInstanceID", "defaults": {}, "funcname": "TableGetInstanceID", - "location": "imgui_internal:3826", + "location": "imgui_internal:3839", "namespace": "ImGui", "ov_cimguiname": "igTableGetInstanceID", "ret": "ImGuiID", @@ -41356,7 +41516,7 @@ "cimguiname": "igTableGetRowIndex", "defaults": {}, "funcname": "TableGetRowIndex", - "location": "imgui:938", + "location": "imgui:941", "namespace": "ImGui", "ov_cimguiname": "igTableGetRowIndex", "ret": "int", @@ -41374,7 +41534,7 @@ "cimguiname": "igTableGetSortSpecs", "defaults": {}, "funcname": "TableGetSortSpecs", - "location": "imgui:935", + "location": "imgui:938", "namespace": "ImGui", "ov_cimguiname": "igTableGetSortSpecs", "ret": "ImGuiTableSortSpecs*", @@ -41397,7 +41557,7 @@ "cimguiname": "igTableHeader", "defaults": {}, "funcname": "TableHeader", - "location": "imgui:925", + "location": "imgui:928", "namespace": "ImGui", "ov_cimguiname": "igTableHeader", "ret": "void", @@ -41415,7 +41575,7 @@ "cimguiname": "igTableHeadersRow", "defaults": {}, "funcname": "TableHeadersRow", - "location": "imgui:926", + "location": "imgui:929", "namespace": "ImGui", "ov_cimguiname": "igTableHeadersRow", "ret": "void", @@ -41438,7 +41598,7 @@ "cimguiname": "igTableLoadSettings", "defaults": {}, "funcname": "TableLoadSettings", - "location": "imgui_internal:3850", + "location": "imgui_internal:3864", "namespace": "ImGui", "ov_cimguiname": "igTableLoadSettings", "ret": "void", @@ -41461,7 +41621,7 @@ "cimguiname": "igTableMergeDrawChannels", "defaults": {}, "funcname": "TableMergeDrawChannels", - "location": "imgui_internal:3824", + "location": "imgui_internal:3837", "namespace": "ImGui", "ov_cimguiname": "igTableMergeDrawChannels", "ret": "void", @@ -41479,7 +41639,7 @@ "cimguiname": "igTableNextColumn", "defaults": {}, "funcname": "TableNextColumn", - "location": "imgui:912", + "location": "imgui:915", "namespace": "ImGui", "ov_cimguiname": "igTableNextColumn", "ret": "bool", @@ -41509,7 +41669,7 @@ "row_flags": "0" }, "funcname": "TableNextRow", - "location": "imgui:911", + "location": "imgui:914", "namespace": "ImGui", "ov_cimguiname": "igTableNextRow", "ret": "void", @@ -41534,7 +41694,7 @@ "column_n": "-1" }, "funcname": "TableOpenContextMenu", - "location": "imgui_internal:3799", + "location": "imgui_internal:3812", "namespace": "ImGui", "ov_cimguiname": "igTableOpenContextMenu", "ret": "void", @@ -41552,7 +41712,7 @@ "cimguiname": "igTablePopBackgroundChannel", "defaults": {}, "funcname": "TablePopBackgroundChannel", - "location": "imgui_internal:3806", + "location": "imgui_internal:3819", "namespace": "ImGui", "ov_cimguiname": "igTablePopBackgroundChannel", "ret": "void", @@ -41570,7 +41730,7 @@ "cimguiname": "igTablePopColumnChannel", "defaults": {}, "funcname": "TablePopColumnChannel", - "location": "imgui_internal:3808", + "location": "imgui_internal:3821", "namespace": "ImGui", "ov_cimguiname": "igTablePopColumnChannel", "ret": "void", @@ -41588,7 +41748,7 @@ "cimguiname": "igTablePushBackgroundChannel", "defaults": {}, "funcname": "TablePushBackgroundChannel", - "location": "imgui_internal:3805", + "location": "imgui_internal:3818", "namespace": "ImGui", "ov_cimguiname": "igTablePushBackgroundChannel", "ret": "void", @@ -41611,7 +41771,7 @@ "cimguiname": "igTablePushColumnChannel", "defaults": {}, "funcname": "TablePushColumnChannel", - "location": "imgui_internal:3807", + "location": "imgui_internal:3820", "namespace": "ImGui", "ov_cimguiname": "igTablePushColumnChannel", "ret": "void", @@ -41619,6 +41779,37 @@ "stname": "" } ], + "igTableQueueSetColumnDisplayOrder": [ + { + "args": "(ImGuiTable* table,int column_n,int dst_order)", + "argsT": [ + { + "name": "table", + "type": "ImGuiTable*" + }, + { + "name": "column_n", + "type": "int" + }, + { + "name": "dst_order", + "type": "int" + } + ], + "argsoriginal": "(ImGuiTable* table,int column_n,int dst_order)", + "call_args": "(table,column_n,dst_order)", + "call_args_old": "(table,column_n,dst_order)", + "cimguiname": "igTableQueueSetColumnDisplayOrder", + "defaults": {}, + "funcname": "TableQueueSetColumnDisplayOrder", + "location": "imgui_internal:3857", + "namespace": "ImGui", + "ov_cimguiname": "igTableQueueSetColumnDisplayOrder", + "ret": "void", + "signature": "(ImGuiTable*,int,int)", + "stname": "" + } + ], "igTableRemove": [ { "args": "(ImGuiTable* table)", @@ -41634,7 +41825,7 @@ "cimguiname": "igTableRemove", "defaults": {}, "funcname": "TableRemove", - "location": "imgui_internal:3844", + "location": "imgui_internal:3858", "namespace": "ImGui", "ov_cimguiname": "igTableRemove", "ret": "void", @@ -41657,7 +41848,7 @@ "cimguiname": "igTableResetSettings", "defaults": {}, "funcname": "TableResetSettings", - "location": "imgui_internal:3852", + "location": "imgui_internal:3866", "namespace": "ImGui", "ov_cimguiname": "igTableResetSettings", "ret": "void", @@ -41680,7 +41871,7 @@ "cimguiname": "igTableSaveSettings", "defaults": {}, "funcname": "TableSaveSettings", - "location": "imgui_internal:3851", + "location": "imgui_internal:3865", "namespace": "ImGui", "ov_cimguiname": "igTableSaveSettings", "ret": "void", @@ -41713,7 +41904,7 @@ "column_n": "-1" }, "funcname": "TableSetBgColor", - "location": "imgui:943", + "location": "imgui:946", "namespace": "ImGui", "ov_cimguiname": "igTableSetBgColor", "ret": "void", @@ -41744,7 +41935,7 @@ "cimguiname": "igTableSetColumnDisplayOrder", "defaults": {}, "funcname": "TableSetColumnDisplayOrder", - "location": "imgui_internal:3843", + "location": "imgui_internal:3856", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnDisplayOrder", "ret": "void", @@ -41771,7 +41962,7 @@ "cimguiname": "igTableSetColumnEnabled", "defaults": {}, "funcname": "TableSetColumnEnabled", - "location": "imgui:941", + "location": "imgui:944", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnEnabled", "ret": "void", @@ -41794,7 +41985,7 @@ "cimguiname": "igTableSetColumnIndex", "defaults": {}, "funcname": "TableSetColumnIndex", - "location": "imgui:913", + "location": "imgui:916", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnIndex", "ret": "bool", @@ -41825,7 +42016,7 @@ "cimguiname": "igTableSetColumnSortDirection", "defaults": {}, "funcname": "TableSetColumnSortDirection", - "location": "imgui_internal:3801", + "location": "imgui_internal:3814", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnSortDirection", "ret": "void", @@ -41852,7 +42043,7 @@ "cimguiname": "igTableSetColumnWidth", "defaults": {}, "funcname": "TableSetColumnWidth", - "location": "imgui_internal:3800", + "location": "imgui_internal:3813", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidth", "ret": "void", @@ -41875,7 +42066,7 @@ "cimguiname": "igTableSetColumnWidthAutoAll", "defaults": {}, "funcname": "TableSetColumnWidthAutoAll", - "location": "imgui_internal:3842", + "location": "imgui_internal:3855", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoAll", "ret": "void", @@ -41902,7 +42093,7 @@ "cimguiname": "igTableSetColumnWidthAutoSingle", "defaults": {}, "funcname": "TableSetColumnWidthAutoSingle", - "location": "imgui_internal:3841", + "location": "imgui_internal:3854", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoSingle", "ret": "void", @@ -41920,7 +42111,7 @@ "cimguiname": "igTableSettingsAddSettingsHandler", "defaults": {}, "funcname": "TableSettingsAddSettingsHandler", - "location": "imgui_internal:3854", + "location": "imgui_internal:3868", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsAddSettingsHandler", "ret": "void", @@ -41947,7 +42138,7 @@ "cimguiname": "igTableSettingsCreate", "defaults": {}, "funcname": "TableSettingsCreate", - "location": "imgui_internal:3855", + "location": "imgui_internal:3869", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsCreate", "ret": "ImGuiTableSettings*", @@ -41970,7 +42161,7 @@ "cimguiname": "igTableSettingsFindByID", "defaults": {}, "funcname": "TableSettingsFindByID", - "location": "imgui_internal:3856", + "location": "imgui_internal:3870", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsFindByID", "ret": "ImGuiTableSettings*", @@ -42009,7 +42200,7 @@ "user_id": "0" }, "funcname": "TableSetupColumn", - "location": "imgui:923", + "location": "imgui:926", "namespace": "ImGui", "ov_cimguiname": "igTableSetupColumn", "ret": "void", @@ -42032,7 +42223,7 @@ "cimguiname": "igTableSetupDrawChannels", "defaults": {}, "funcname": "TableSetupDrawChannels", - "location": "imgui_internal:3817", + "location": "imgui_internal:3830", "namespace": "ImGui", "ov_cimguiname": "igTableSetupDrawChannels", "ret": "void", @@ -42059,7 +42250,7 @@ "cimguiname": "igTableSetupScrollFreeze", "defaults": {}, "funcname": "TableSetupScrollFreeze", - "location": "imgui:924", + "location": "imgui:927", "namespace": "ImGui", "ov_cimguiname": "igTableSetupScrollFreeze", "ret": "void", @@ -42082,7 +42273,7 @@ "cimguiname": "igTableSortSpecsBuild", "defaults": {}, "funcname": "TableSortSpecsBuild", - "location": "imgui_internal:3829", + "location": "imgui_internal:3842", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsBuild", "ret": "void", @@ -42105,7 +42296,7 @@ "cimguiname": "igTableSortSpecsSanitize", "defaults": {}, "funcname": "TableSortSpecsSanitize", - "location": "imgui_internal:3828", + "location": "imgui_internal:3841", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsSanitize", "ret": "void", @@ -42128,7 +42319,7 @@ "cimguiname": "igTableUpdateBorders", "defaults": {}, "funcname": "TableUpdateBorders", - "location": "imgui_internal:3819", + "location": "imgui_internal:3832", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateBorders", "ret": "void", @@ -42151,7 +42342,7 @@ "cimguiname": "igTableUpdateColumnsWeightFromWidth", "defaults": {}, "funcname": "TableUpdateColumnsWeightFromWidth", - "location": "imgui_internal:3820", + "location": "imgui_internal:3833", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateColumnsWeightFromWidth", "ret": "void", @@ -42174,7 +42365,7 @@ "cimguiname": "igTableUpdateLayout", "defaults": {}, "funcname": "TableUpdateLayout", - "location": "imgui_internal:3818", + "location": "imgui_internal:3831", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateLayout", "ret": "void", @@ -42197,7 +42388,7 @@ "cimguiname": "igTeleportMousePos", "defaults": {}, "funcname": "TeleportMousePos", - "location": "imgui_internal:3634", + "location": "imgui_internal:3647", "namespace": "ImGui", "ov_cimguiname": "igTeleportMousePos", "ret": "void", @@ -42220,7 +42411,7 @@ "cimguiname": "igTempInputIsActive", "defaults": {}, "funcname": "TempInputIsActive", - "location": "imgui_internal:3976", + "location": "imgui_internal:3990", "namespace": "ImGui", "ov_cimguiname": "igTempInputIsActive", "ret": "bool", @@ -42274,7 +42465,7 @@ "p_clamp_min": "NULL" }, "funcname": "TempInputScalar", - "location": "imgui_internal:3975", + "location": "imgui_internal:3989", "namespace": "ImGui", "ov_cimguiname": "igTempInputScalar", "ret": "bool", @@ -42284,7 +42475,7 @@ ], "igTempInputText": [ { - "args": "(const ImRect_c bb,ImGuiID id,const char* label,char* buf,int buf_size,ImGuiInputTextFlags flags)", + "args": "(const ImRect_c bb,ImGuiID id,const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags,ImGuiInputTextCallback callback,void* user_data)", "argsT": [ { "name": "bb", @@ -42304,24 +42495,36 @@ }, { "name": "buf_size", - "type": "int" + "type": "size_t" }, { "name": "flags", "type": "ImGuiInputTextFlags" + }, + { + "name": "callback", + "type": "ImGuiInputTextCallback" + }, + { + "name": "user_data", + "type": "void*" } ], - "argsoriginal": "(const ImRect& bb,ImGuiID id,const char* label,char* buf,int buf_size,ImGuiInputTextFlags flags)", - "call_args": "(ConvertToCPP_ImRect(bb),id,label,buf,buf_size,flags)", - "call_args_old": "(bb,id,label,buf,buf_size,flags)", + "argsoriginal": "(const ImRect& bb,ImGuiID id,const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void*)0),void* user_data=((void*)0))", + "call_args": "(ConvertToCPP_ImRect(bb),id,label,buf,buf_size,flags,callback,user_data)", + "call_args_old": "(bb,id,label,buf,buf_size,flags,callback,user_data)", "cimguiname": "igTempInputText", - "defaults": {}, + "defaults": { + "callback": "NULL", + "flags": "0", + "user_data": "NULL" + }, "funcname": "TempInputText", - "location": "imgui_internal:3974", + "location": "imgui_internal:3988", "namespace": "ImGui", "ov_cimguiname": "igTempInputText", "ret": "bool", - "signature": "(const ImRect,ImGuiID,const char*,char*,int,ImGuiInputTextFlags)", + "signature": "(const ImRect,ImGuiID,const char*,char*,size_t,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)", "stname": "" } ], @@ -42344,7 +42547,7 @@ "cimguiname": "igTestKeyOwner", "defaults": {}, "funcname": "TestKeyOwner", - "location": "imgui_internal:3653", + "location": "imgui_internal:3666", "namespace": "ImGui", "ov_cimguiname": "igTestKeyOwner", "ret": "bool", @@ -42371,7 +42574,7 @@ "cimguiname": "igTestShortcutRouting", "defaults": {}, "funcname": "TestShortcutRouting", - "location": "imgui_internal:3687", + "location": "imgui_internal:3700", "namespace": "ImGui", "ov_cimguiname": "igTestShortcutRouting", "ret": "bool", @@ -42399,7 +42602,7 @@ "defaults": {}, "funcname": "Text", "isvararg": "...)", - "location": "imgui:623", + "location": "imgui:625", "namespace": "ImGui", "ov_cimguiname": "igText", "ret": "void", @@ -42435,7 +42638,7 @@ "defaults": {}, "funcname": "TextAligned", "isvararg": "...)", - "location": "imgui_internal:3915", + "location": "imgui_internal:3929", "namespace": "ImGui", "ov_cimguiname": "igTextAligned", "ret": "void", @@ -42470,7 +42673,7 @@ "cimguiname": "igTextAlignedV", "defaults": {}, "funcname": "TextAlignedV", - "location": "imgui_internal:3916", + "location": "imgui_internal:3930", "namespace": "ImGui", "ov_cimguiname": "igTextAlignedV", "ret": "void", @@ -42502,7 +42705,7 @@ "defaults": {}, "funcname": "TextColored", "isvararg": "...)", - "location": "imgui:625", + "location": "imgui:627", "namespace": "ImGui", "ov_cimguiname": "igTextColored", "ret": "void", @@ -42533,7 +42736,7 @@ "cimguiname": "igTextColoredV", "defaults": {}, "funcname": "TextColoredV", - "location": "imgui:626", + "location": "imgui:628", "namespace": "ImGui", "ov_cimguiname": "igTextColoredV", "ret": "void", @@ -42561,7 +42764,7 @@ "defaults": {}, "funcname": "TextDisabled", "isvararg": "...)", - "location": "imgui:627", + "location": "imgui:629", "namespace": "ImGui", "ov_cimguiname": "igTextDisabled", "ret": "void", @@ -42588,7 +42791,7 @@ "cimguiname": "igTextDisabledV", "defaults": {}, "funcname": "TextDisabledV", - "location": "imgui:628", + "location": "imgui:630", "namespace": "ImGui", "ov_cimguiname": "igTextDisabledV", "ret": "void", @@ -42622,7 +42825,7 @@ "text_end": "NULL" }, "funcname": "TextEx", - "location": "imgui_internal:3914", + "location": "imgui_internal:3928", "namespace": "ImGui", "ov_cimguiname": "igTextEx", "ret": "void", @@ -42645,7 +42848,7 @@ "cimguiname": "igTextLink", "defaults": {}, "funcname": "TextLink", - "location": "imgui:651", + "location": "imgui:653", "namespace": "ImGui", "ov_cimguiname": "igTextLink", "ret": "bool", @@ -42674,7 +42877,7 @@ "url": "NULL" }, "funcname": "TextLinkOpenURL", - "location": "imgui:652", + "location": "imgui:654", "namespace": "ImGui", "ov_cimguiname": "igTextLinkOpenURL", "ret": "bool", @@ -42703,7 +42906,7 @@ "text_end": "NULL" }, "funcname": "TextUnformatted", - "location": "imgui:622", + "location": "imgui:624", "namespace": "ImGui", "ov_cimguiname": "igTextUnformatted", "ret": "void", @@ -42730,7 +42933,7 @@ "cimguiname": "igTextV", "defaults": {}, "funcname": "TextV", - "location": "imgui:624", + "location": "imgui:626", "namespace": "ImGui", "ov_cimguiname": "igTextV", "ret": "void", @@ -42758,7 +42961,7 @@ "defaults": {}, "funcname": "TextWrapped", "isvararg": "...)", - "location": "imgui:629", + "location": "imgui:631", "namespace": "ImGui", "ov_cimguiname": "igTextWrapped", "ret": "void", @@ -42785,7 +42988,7 @@ "cimguiname": "igTextWrappedV", "defaults": {}, "funcname": "TextWrappedV", - "location": "imgui:630", + "location": "imgui:632", "namespace": "ImGui", "ov_cimguiname": "igTextWrappedV", "ret": "void", @@ -42824,7 +43027,7 @@ "cimguiname": "igTranslateWindowsInViewport", "defaults": {}, "funcname": "TranslateWindowsInViewport", - "location": "imgui_internal:3467", + "location": "imgui_internal:3478", "namespace": "ImGui", "ov_cimguiname": "igTranslateWindowsInViewport", "ret": "void", @@ -42847,7 +43050,7 @@ "cimguiname": "igTreeNode", "defaults": {}, "funcname": "TreeNode", - "location": "imgui:749", + "location": "imgui:751", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Str", "ret": "bool", @@ -42877,7 +43080,7 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:750", + "location": "imgui:752", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_StrStr", "ret": "bool", @@ -42907,7 +43110,7 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:751", + "location": "imgui:753", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Ptr", "ret": "bool", @@ -42944,7 +43147,7 @@ "label_end": "NULL" }, "funcname": "TreeNodeBehavior", - "location": "imgui_internal:3944", + "location": "imgui_internal:3959", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeBehavior", "ret": "bool", @@ -42967,7 +43170,7 @@ "cimguiname": "igTreeNodeDrawLineToChildNode", "defaults": {}, "funcname": "TreeNodeDrawLineToChildNode", - "location": "imgui_internal:3945", + "location": "imgui_internal:3960", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeDrawLineToChildNode", "ret": "void", @@ -42990,7 +43193,7 @@ "cimguiname": "igTreeNodeDrawLineToTreePop", "defaults": {}, "funcname": "TreeNodeDrawLineToTreePop", - "location": "imgui_internal:3946", + "location": "imgui_internal:3961", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeDrawLineToTreePop", "ret": "void", @@ -43019,7 +43222,7 @@ "flags": "0" }, "funcname": "TreeNodeEx", - "location": "imgui:754", + "location": "imgui:756", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Str", "ret": "bool", @@ -43053,7 +43256,7 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:755", + "location": "imgui:757", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_StrStr", "ret": "bool", @@ -43087,7 +43290,7 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:756", + "location": "imgui:758", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Ptr", "ret": "bool", @@ -43122,7 +43325,7 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:757", + "location": "imgui:759", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Str", "ret": "bool", @@ -43155,7 +43358,7 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:758", + "location": "imgui:760", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Ptr", "ret": "bool", @@ -43178,7 +43381,7 @@ "cimguiname": "igTreeNodeGetOpen", "defaults": {}, "funcname": "TreeNodeGetOpen", - "location": "imgui_internal:3948", + "location": "imgui:769", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeGetOpen", "ret": "bool", @@ -43205,7 +43408,7 @@ "cimguiname": "igTreeNodeSetOpen", "defaults": {}, "funcname": "TreeNodeSetOpen", - "location": "imgui_internal:3949", + "location": "imgui_internal:3963", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeSetOpen", "ret": "void", @@ -43232,7 +43435,7 @@ "cimguiname": "igTreeNodeUpdateNextOpen", "defaults": {}, "funcname": "TreeNodeUpdateNextOpen", - "location": "imgui_internal:3950", + "location": "imgui_internal:3964", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeUpdateNextOpen", "ret": "bool", @@ -43263,7 +43466,7 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:752", + "location": "imgui:754", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Str", "ret": "bool", @@ -43292,7 +43495,7 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:753", + "location": "imgui:755", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Ptr", "ret": "bool", @@ -43310,7 +43513,7 @@ "cimguiname": "igTreePop", "defaults": {}, "funcname": "TreePop", - "location": "imgui:761", + "location": "imgui:763", "namespace": "ImGui", "ov_cimguiname": "igTreePop", "ret": "void", @@ -43333,7 +43536,7 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", - "location": "imgui:759", + "location": "imgui:761", "namespace": "ImGui", "ov_cimguiname": "igTreePush_Str", "ret": "void", @@ -43354,7 +43557,7 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", - "location": "imgui:760", + "location": "imgui:762", "namespace": "ImGui", "ov_cimguiname": "igTreePush_Ptr", "ret": "void", @@ -43377,7 +43580,7 @@ "cimguiname": "igTreePushOverrideID", "defaults": {}, "funcname": "TreePushOverrideID", - "location": "imgui_internal:3947", + "location": "imgui_internal:3962", "namespace": "ImGui", "ov_cimguiname": "igTreePushOverrideID", "ret": "void", @@ -43414,7 +43617,7 @@ "cimguiname": "igTypingSelectFindBestLeadingMatch", "defaults": {}, "funcname": "TypingSelectFindBestLeadingMatch", - "location": "imgui_internal:3772", + "location": "imgui_internal:3785", "namespace": "ImGui", "ov_cimguiname": "igTypingSelectFindBestLeadingMatch", "ret": "int", @@ -43455,7 +43658,7 @@ "cimguiname": "igTypingSelectFindMatch", "defaults": {}, "funcname": "TypingSelectFindMatch", - "location": "imgui_internal:3770", + "location": "imgui_internal:3783", "namespace": "ImGui", "ov_cimguiname": "igTypingSelectFindMatch", "ret": "int", @@ -43496,7 +43699,7 @@ "cimguiname": "igTypingSelectFindNextSingleCharMatch", "defaults": {}, "funcname": "TypingSelectFindNextSingleCharMatch", - "location": "imgui_internal:3771", + "location": "imgui_internal:3784", "namespace": "ImGui", "ov_cimguiname": "igTypingSelectFindNextSingleCharMatch", "ret": "int", @@ -43521,7 +43724,7 @@ "indent_w": "0.0f" }, "funcname": "Unindent", - "location": "imgui:591", + "location": "imgui:593", "namespace": "ImGui", "ov_cimguiname": "igUnindent", "ret": "void", @@ -43544,7 +43747,7 @@ "cimguiname": "igUnregisterFontAtlas", "defaults": {}, "funcname": "UnregisterFontAtlas", - "location": "imgui_internal:3434", + "location": "imgui_internal:3445", "namespace": "ImGui", "ov_cimguiname": "igUnregisterFontAtlas", "ret": "void", @@ -43567,7 +43770,7 @@ "cimguiname": "igUnregisterUserTexture", "defaults": {}, "funcname": "UnregisterUserTexture", - "location": "imgui_internal:3432", + "location": "imgui_internal:3443", "namespace": "ImGui", "ov_cimguiname": "igUnregisterUserTexture", "ret": "void", @@ -43590,7 +43793,7 @@ "cimguiname": "igUpdateCurrentFontSize", "defaults": {}, "funcname": "UpdateCurrentFontSize", - "location": "imgui_internal:3436", + "location": "imgui_internal:3447", "namespace": "ImGui", "ov_cimguiname": "igUpdateCurrentFontSize", "ret": "void", @@ -43613,7 +43816,7 @@ "cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "defaults": {}, "funcname": "UpdateHoveredWindowAndCaptureFlags", - "location": "imgui_internal:3458", + "location": "imgui_internal:3469", "namespace": "ImGui", "ov_cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "ret": "void", @@ -43636,7 +43839,7 @@ "cimguiname": "igUpdateInputEvents", "defaults": {}, "funcname": "UpdateInputEvents", - "location": "imgui_internal:3457", + "location": "imgui_internal:3468", "namespace": "ImGui", "ov_cimguiname": "igUpdateInputEvents", "ret": "void", @@ -43654,7 +43857,7 @@ "cimguiname": "igUpdateMouseMovingWindowEndFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowEndFrame", - "location": "imgui_internal:3464", + "location": "imgui_internal:3475", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowEndFrame", "ret": "void", @@ -43672,7 +43875,7 @@ "cimguiname": "igUpdateMouseMovingWindowNewFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowNewFrame", - "location": "imgui_internal:3463", + "location": "imgui_internal:3474", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowNewFrame", "ret": "void", @@ -43690,7 +43893,7 @@ "cimguiname": "igUpdatePlatformWindows", "defaults": {}, "funcname": "UpdatePlatformWindows", - "location": "imgui:1194", + "location": "imgui:1197", "namespace": "ImGui", "ov_cimguiname": "igUpdatePlatformWindows", "ret": "void", @@ -43721,7 +43924,7 @@ "cimguiname": "igUpdateWindowParentAndRootLinks", "defaults": {}, "funcname": "UpdateWindowParentAndRootLinks", - "location": "imgui_internal:3398", + "location": "imgui_internal:3409", "namespace": "ImGui", "ov_cimguiname": "igUpdateWindowParentAndRootLinks", "ret": "void", @@ -43744,7 +43947,7 @@ "cimguiname": "igUpdateWindowSkipRefresh", "defaults": {}, "funcname": "UpdateWindowSkipRefresh", - "location": "imgui_internal:3399", + "location": "imgui_internal:3410", "namespace": "ImGui", "ov_cimguiname": "igUpdateWindowSkipRefresh", "ret": "void", @@ -43794,7 +43997,7 @@ "format": "\"%.3f\"" }, "funcname": "VSliderFloat", - "location": "imgui:715", + "location": "imgui:717", "namespace": "ImGui", "ov_cimguiname": "igVSliderFloat", "ret": "bool", @@ -43844,7 +44047,7 @@ "format": "\"%d\"" }, "funcname": "VSliderInt", - "location": "imgui:716", + "location": "imgui:718", "namespace": "ImGui", "ov_cimguiname": "igVSliderInt", "ret": "bool", @@ -43898,7 +44101,7 @@ "format": "NULL" }, "funcname": "VSliderScalar", - "location": "imgui:717", + "location": "imgui:719", "namespace": "ImGui", "ov_cimguiname": "igVSliderScalar", "ret": "bool", @@ -43925,7 +44128,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:807", + "location": "imgui:810", "namespace": "ImGui", "ov_cimguiname": "igValue_Bool", "ret": "void", @@ -43950,7 +44153,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:808", + "location": "imgui:811", "namespace": "ImGui", "ov_cimguiname": "igValue_Int", "ret": "void", @@ -43975,7 +44178,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:809", + "location": "imgui:812", "namespace": "ImGui", "ov_cimguiname": "igValue_Uint", "ret": "void", @@ -44006,7 +44209,7 @@ "float_format": "NULL" }, "funcname": "Value", - "location": "imgui:810", + "location": "imgui:813", "namespace": "ImGui", "ov_cimguiname": "igValue_Float", "ret": "void", @@ -44034,7 +44237,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "WindowPosAbsToRel", - "location": "imgui_internal:3414", + "location": "imgui_internal:3425", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowPosAbsToRel", @@ -44063,7 +44266,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "WindowPosRelToAbs", - "location": "imgui_internal:3415", + "location": "imgui_internal:3426", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowPosRelToAbs", @@ -44092,7 +44295,7 @@ "conv": "ImRect", "defaults": {}, "funcname": "WindowRectAbsToRel", - "location": "imgui_internal:3412", + "location": "imgui_internal:3423", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowRectAbsToRel", @@ -44121,7 +44324,7 @@ "conv": "ImRect", "defaults": {}, "funcname": "WindowRectRelToAbs", - "location": "imgui_internal:3413", + "location": "imgui_internal:3424", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowRectRelToAbs", diff --git a/generator/output/definitions.lua b/generator/output/definitions.lua index 93d79e0..b3c44ba 100644 --- a/generator/output/definitions.lua +++ b/generator/output/definitions.lua @@ -540,7 +540,7 @@ local t={ a="1.0f"}, funcname="HSV", is_static_function=true, - location="imgui:3098", + location="imgui:3114", nonUDT=1, ov_cimguiname="ImColor_HSV", ret="ImColor_c", @@ -558,7 +558,7 @@ local t={ constructor=true, defaults={}, funcname="ImColor", - location="imgui:3088", + location="imgui:3104", ov_cimguiname="ImColor_ImColor_Nil", signature="()", stname="ImColor"}, @@ -585,7 +585,7 @@ local t={ defaults={ a="1.0f"}, funcname="ImColor", - location="imgui:3089", + location="imgui:3105", ov_cimguiname="ImColor_ImColor_Float", signature="(float,float,float,float)", stname="ImColor"}, @@ -602,7 +602,7 @@ local t={ constructor=true, defaults={}, funcname="ImColor", - location="imgui:3090", + location="imgui:3106", ov_cimguiname="ImColor_ImColor_Vec4", signature="(const ImVec4)", stname="ImColor"}, @@ -629,7 +629,7 @@ local t={ defaults={ a="255"}, funcname="ImColor", - location="imgui:3091", + location="imgui:3107", ov_cimguiname="ImColor_ImColor_Int", signature="(int,int,int,int)", stname="ImColor"}, @@ -646,7 +646,7 @@ local t={ constructor=true, defaults={}, funcname="ImColor", - location="imgui:3092", + location="imgui:3108", ov_cimguiname="ImColor_ImColor_U32", signature="(ImU32)", stname="ImColor"}, @@ -681,7 +681,7 @@ local t={ defaults={ a="1.0f"}, funcname="SetHSV", - location="imgui:3097", + location="imgui:3113", ov_cimguiname="ImColor_SetHSV", ret="void", signature="(float,float,float,float)", @@ -698,7 +698,7 @@ local t={ cimguiname="ImColor_destroy", defaults={}, destructor=true, - location="imgui:3088", + location="imgui:3104", ov_cimguiname="ImColor_destroy", ret="void", signature="(ImColor*)", @@ -717,7 +717,7 @@ local t={ cimguiname="ImDrawCmd_GetTexID", defaults={}, funcname="GetTexID", - location="imgui:3305", + location="imgui:3328", ov_cimguiname="ImDrawCmd_GetTexID", ret="ImTextureID", signature="()const", @@ -734,7 +734,7 @@ local t={ constructor=true, defaults={}, funcname="ImDrawCmd", - location="imgui:3301", + location="imgui:3324", ov_cimguiname="ImDrawCmd_ImDrawCmd", signature="()", stname="ImDrawCmd"}, @@ -750,7 +750,7 @@ local t={ cimguiname="ImDrawCmd_destroy", defaults={}, destructor=true, - location="imgui:3301", + location="imgui:3324", ov_cimguiname="ImDrawCmd_destroy", ret="void", signature="(ImDrawCmd*)", @@ -805,7 +805,7 @@ local t={ cimguiname="ImDrawData_AddDrawList", defaults={}, funcname="AddDrawList", - location="imgui:3570", + location="imgui:3593", ov_cimguiname="ImDrawData_AddDrawList", ret="void", signature="(ImDrawList*)", @@ -824,7 +824,7 @@ local t={ cimguiname="ImDrawData_Clear", defaults={}, funcname="Clear", - location="imgui:3569", + location="imgui:3592", ov_cimguiname="ImDrawData_Clear", ret="void", signature="()", @@ -843,7 +843,7 @@ local t={ cimguiname="ImDrawData_DeIndexAllBuffers", defaults={}, funcname="DeIndexAllBuffers", - location="imgui:3571", + location="imgui:3594", ov_cimguiname="ImDrawData_DeIndexAllBuffers", ret="void", signature="()", @@ -860,7 +860,7 @@ local t={ constructor=true, defaults={}, funcname="ImDrawData", - location="imgui:3568", + location="imgui:3591", ov_cimguiname="ImDrawData_ImDrawData", signature="()", stname="ImDrawData"}, @@ -881,7 +881,7 @@ local t={ cimguiname="ImDrawData_ScaleClipRects", defaults={}, funcname="ScaleClipRects", - location="imgui:3572", + location="imgui:3595", ov_cimguiname="ImDrawData_ScaleClipRects", ret="void", signature="(const ImVec2)", @@ -898,7 +898,7 @@ local t={ cimguiname="ImDrawData_destroy", defaults={}, destructor=true, - location="imgui:3568", + location="imgui:3591", ov_cimguiname="ImDrawData_destroy", ret="void", signature="(ImDrawData*)", @@ -973,7 +973,7 @@ local t={ cimguiname="ImDrawListSplitter_Clear", defaults={}, funcname="Clear", - location="imgui:3349", + location="imgui:3372", ov_cimguiname="ImDrawListSplitter_Clear", ret="void", signature="()", @@ -992,7 +992,7 @@ local t={ cimguiname="ImDrawListSplitter_ClearFreeMemory", defaults={}, funcname="ClearFreeMemory", - location="imgui:3350", + location="imgui:3373", ov_cimguiname="ImDrawListSplitter_ClearFreeMemory", ret="void", signature="()", @@ -1009,7 +1009,7 @@ local t={ constructor=true, defaults={}, funcname="ImDrawListSplitter", - location="imgui:3347", + location="imgui:3370", ov_cimguiname="ImDrawListSplitter_ImDrawListSplitter", signature="()", stname="ImDrawListSplitter"}, @@ -1030,7 +1030,7 @@ local t={ cimguiname="ImDrawListSplitter_Merge", defaults={}, funcname="Merge", - location="imgui:3352", + location="imgui:3375", ov_cimguiname="ImDrawListSplitter_Merge", ret="void", signature="(ImDrawList*)", @@ -1055,7 +1055,7 @@ local t={ cimguiname="ImDrawListSplitter_SetCurrentChannel", defaults={}, funcname="SetCurrentChannel", - location="imgui:3353", + location="imgui:3376", ov_cimguiname="ImDrawListSplitter_SetCurrentChannel", ret="void", signature="(ImDrawList*,int)", @@ -1080,7 +1080,7 @@ local t={ cimguiname="ImDrawListSplitter_Split", defaults={}, funcname="Split", - location="imgui:3351", + location="imgui:3374", ov_cimguiname="ImDrawListSplitter_Split", ret="void", signature="(ImDrawList*,int)", @@ -1097,7 +1097,7 @@ local t={ cimguiname="ImDrawListSplitter_destroy", defaults={}, destructor=true, - location="imgui:3348", + location="imgui:3371", ov_cimguiname="ImDrawListSplitter_destroy", realdestructor=true, ret="void", @@ -1139,7 +1139,7 @@ local t={ defaults={ num_segments="0"}, funcname="AddBezierCubic", - location="imgui:3454", + location="imgui:3477", ov_cimguiname="ImDrawList_AddBezierCubic", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1177,7 +1177,7 @@ local t={ defaults={ num_segments="0"}, funcname="AddBezierQuadratic", - location="imgui:3455", + location="imgui:3478", ov_cimguiname="ImDrawList_AddBezierQuadratic", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1206,7 +1206,7 @@ local t={ defaults={ userdata_size="0"}, funcname="AddCallback", - location="imgui:3497", + location="imgui:3520", ov_cimguiname="ImDrawList_AddCallback", ret="void", signature="(ImDrawCallback,void*,size_t)", @@ -1242,7 +1242,7 @@ local t={ num_segments="0", thickness="1.0f"}, funcname="AddCircle", - location="imgui:3446", + location="imgui:3469", ov_cimguiname="ImDrawList_AddCircle", ret="void", signature="(const ImVec2,float,ImU32,int,float)", @@ -1274,7 +1274,7 @@ local t={ defaults={ num_segments="0"}, funcname="AddCircleFilled", - location="imgui:3447", + location="imgui:3470", ov_cimguiname="ImDrawList_AddCircleFilled", ret="void", signature="(const ImVec2,float,ImU32,int)", @@ -1302,7 +1302,7 @@ local t={ cimguiname="ImDrawList_AddConcavePolyFilled", defaults={}, funcname="AddConcavePolyFilled", - location="imgui:3462", + location="imgui:3485", ov_cimguiname="ImDrawList_AddConcavePolyFilled", ret="void", signature="(const ImVec2*,int,ImU32)", @@ -1330,7 +1330,7 @@ local t={ cimguiname="ImDrawList_AddConvexPolyFilled", defaults={}, funcname="AddConvexPolyFilled", - location="imgui:3461", + location="imgui:3484", ov_cimguiname="ImDrawList_AddConvexPolyFilled", ret="void", signature="(const ImVec2*,int,ImU32)", @@ -1349,7 +1349,7 @@ local t={ cimguiname="ImDrawList_AddDrawCmd", defaults={}, funcname="AddDrawCmd", - location="imgui:3500", + location="imgui:3523", ov_cimguiname="ImDrawList_AddDrawCmd", ret="void", signature="()", @@ -1389,7 +1389,7 @@ local t={ rot="0.0f", thickness="1.0f"}, funcname="AddEllipse", - location="imgui:3450", + location="imgui:3473", ov_cimguiname="ImDrawList_AddEllipse", ret="void", signature="(const ImVec2,const ImVec2,ImU32,float,int,float)", @@ -1425,7 +1425,7 @@ local t={ num_segments="0", rot="0.0f"}, funcname="AddEllipseFilled", - location="imgui:3451", + location="imgui:3474", ov_cimguiname="ImDrawList_AddEllipseFilled", ret="void", signature="(const ImVec2,const ImVec2,ImU32,float,int)", @@ -1465,7 +1465,7 @@ local t={ uv_max="ImVec2(1,1)", uv_min="ImVec2(0,0)"}, funcname="AddImage", - location="imgui:3468", + location="imgui:3491", ov_cimguiname="ImDrawList_AddImage", ret="void", signature="(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1519,7 +1519,7 @@ local t={ uv3="ImVec2(1,1)", uv4="ImVec2(0,1)"}, funcname="AddImageQuad", - location="imgui:3469", + location="imgui:3492", ov_cimguiname="ImDrawList_AddImageQuad", ret="void", signature="(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1563,7 +1563,7 @@ local t={ defaults={ flags="0"}, funcname="AddImageRounded", - location="imgui:3470", + location="imgui:3493", ov_cimguiname="ImDrawList_AddImageRounded", ret="void", signature="(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1595,7 +1595,7 @@ local t={ defaults={ thickness="1.0f"}, funcname="AddLine", - location="imgui:3438", + location="imgui:3461", ov_cimguiname="ImDrawList_AddLine", ret="void", signature="(const ImVec2,const ImVec2,ImU32,float)", @@ -1630,7 +1630,7 @@ local t={ defaults={ thickness="1.0f"}, funcname="AddNgon", - location="imgui:3448", + location="imgui:3471", ov_cimguiname="ImDrawList_AddNgon", ret="void", signature="(const ImVec2,float,ImU32,int,float)", @@ -1661,7 +1661,7 @@ local t={ cimguiname="ImDrawList_AddNgonFilled", defaults={}, funcname="AddNgonFilled", - location="imgui:3449", + location="imgui:3472", ov_cimguiname="ImDrawList_AddNgonFilled", ret="void", signature="(const ImVec2,float,ImU32,int)", @@ -1695,7 +1695,7 @@ local t={ cimguiname="ImDrawList_AddPolyline", defaults={}, funcname="AddPolyline", - location="imgui:3460", + location="imgui:3483", ov_cimguiname="ImDrawList_AddPolyline", ret="void", signature="(const ImVec2*,int,ImU32,ImDrawFlags,float)", @@ -1733,7 +1733,7 @@ local t={ defaults={ thickness="1.0f"}, funcname="AddQuad", - location="imgui:3442", + location="imgui:3465", ov_cimguiname="ImDrawList_AddQuad", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -1767,7 +1767,7 @@ local t={ cimguiname="ImDrawList_AddQuadFilled", defaults={}, funcname="AddQuadFilled", - location="imgui:3443", + location="imgui:3466", ov_cimguiname="ImDrawList_AddQuadFilled", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1807,7 +1807,7 @@ local t={ rounding="0.0f", thickness="1.0f"}, funcname="AddRect", - location="imgui:3439", + location="imgui:3462", ov_cimguiname="ImDrawList_AddRect", ret="void", signature="(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)", @@ -1843,7 +1843,7 @@ local t={ flags="0", rounding="0.0f"}, funcname="AddRectFilled", - location="imgui:3440", + location="imgui:3463", ov_cimguiname="ImDrawList_AddRectFilled", ret="void", signature="(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1880,7 +1880,7 @@ local t={ cimguiname="ImDrawList_AddRectFilledMultiColor", defaults={}, funcname="AddRectFilledMultiColor", - location="imgui:3441", + location="imgui:3464", ov_cimguiname="ImDrawList_AddRectFilledMultiColor", ret="void", signature="(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", @@ -1912,7 +1912,7 @@ local t={ defaults={ text_end="NULL"}, funcname="AddText", - location="imgui:3452", + location="imgui:3475", ov_cimguiname="ImDrawList_AddText_Vec2", ret="void", signature="(const ImVec2,ImU32,const char*,const char*)", @@ -1956,7 +1956,7 @@ local t={ text_end="NULL", wrap_width="0.0f"}, funcname="AddText", - location="imgui:3453", + location="imgui:3476", ov_cimguiname="ImDrawList_AddText_FontPtr", ret="void", signature="(ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)", @@ -1992,7 +1992,7 @@ local t={ defaults={ thickness="1.0f"}, funcname="AddTriangle", - location="imgui:3444", + location="imgui:3467", ov_cimguiname="ImDrawList_AddTriangle", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2023,7 +2023,7 @@ local t={ cimguiname="ImDrawList_AddTriangleFilled", defaults={}, funcname="AddTriangleFilled", - location="imgui:3445", + location="imgui:3468", ov_cimguiname="ImDrawList_AddTriangleFilled", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2042,7 +2042,7 @@ local t={ cimguiname="ImDrawList_ChannelsMerge", defaults={}, funcname="ChannelsMerge", - location="imgui:3510", + location="imgui:3533", ov_cimguiname="ImDrawList_ChannelsMerge", ret="void", signature="()", @@ -2064,7 +2064,7 @@ local t={ cimguiname="ImDrawList_ChannelsSetCurrent", defaults={}, funcname="ChannelsSetCurrent", - location="imgui:3511", + location="imgui:3534", ov_cimguiname="ImDrawList_ChannelsSetCurrent", ret="void", signature="(int)", @@ -2086,7 +2086,7 @@ local t={ cimguiname="ImDrawList_ChannelsSplit", defaults={}, funcname="ChannelsSplit", - location="imgui:3509", + location="imgui:3532", ov_cimguiname="ImDrawList_ChannelsSplit", ret="void", signature="(int)", @@ -2105,7 +2105,7 @@ local t={ cimguiname="ImDrawList_CloneOutput", defaults={}, funcname="CloneOutput", - location="imgui:3501", + location="imgui:3524", ov_cimguiname="ImDrawList_CloneOutput", ret="ImDrawList*", signature="()const", @@ -2125,7 +2125,7 @@ local t={ conv="ImVec2", defaults={}, funcname="GetClipRectMax", - location="imgui:3429", + location="imgui:3452", nonUDT=1, ov_cimguiname="ImDrawList_GetClipRectMax", ret="ImVec2_c", @@ -2146,7 +2146,7 @@ local t={ conv="ImVec2", defaults={}, funcname="GetClipRectMin", - location="imgui:3428", + location="imgui:3451", nonUDT=1, ov_cimguiname="ImDrawList_GetClipRectMin", ret="ImVec2_c", @@ -2167,7 +2167,7 @@ local t={ constructor=true, defaults={}, funcname="ImDrawList", - location="imgui:3420", + location="imgui:3443", ov_cimguiname="ImDrawList_ImDrawList", signature="(ImDrawListSharedData*)", stname="ImDrawList"}, @@ -2201,7 +2201,7 @@ local t={ defaults={ num_segments="0"}, funcname="PathArcTo", - location="imgui:3481", + location="imgui:3504", ov_cimguiname="ImDrawList_PathArcTo", ret="void", signature="(const ImVec2,float,float,float,int)", @@ -2232,7 +2232,7 @@ local t={ cimguiname="ImDrawList_PathArcToFast", defaults={}, funcname="PathArcToFast", - location="imgui:3482", + location="imgui:3505", ov_cimguiname="ImDrawList_PathArcToFast", ret="void", signature="(const ImVec2,float,int,int)", @@ -2264,7 +2264,7 @@ local t={ defaults={ num_segments="0"}, funcname="PathBezierCubicCurveTo", - location="imgui:3484", + location="imgui:3507", ov_cimguiname="ImDrawList_PathBezierCubicCurveTo", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,int)", @@ -2293,7 +2293,7 @@ local t={ defaults={ num_segments="0"}, funcname="PathBezierQuadraticCurveTo", - location="imgui:3485", + location="imgui:3508", ov_cimguiname="ImDrawList_PathBezierQuadraticCurveTo", ret="void", signature="(const ImVec2,const ImVec2,int)", @@ -2312,7 +2312,7 @@ local t={ cimguiname="ImDrawList_PathClear", defaults={}, funcname="PathClear", - location="imgui:3475", + location="imgui:3498", ov_cimguiname="ImDrawList_PathClear", ret="void", signature="()", @@ -2350,7 +2350,7 @@ local t={ defaults={ num_segments="0"}, funcname="PathEllipticalArcTo", - location="imgui:3483", + location="imgui:3506", ov_cimguiname="ImDrawList_PathEllipticalArcTo", ret="void", signature="(const ImVec2,const ImVec2,float,float,float,int)", @@ -2372,7 +2372,7 @@ local t={ cimguiname="ImDrawList_PathFillConcave", defaults={}, funcname="PathFillConcave", - location="imgui:3479", + location="imgui:3502", ov_cimguiname="ImDrawList_PathFillConcave", ret="void", signature="(ImU32)", @@ -2394,7 +2394,7 @@ local t={ cimguiname="ImDrawList_PathFillConvex", defaults={}, funcname="PathFillConvex", - location="imgui:3478", + location="imgui:3501", ov_cimguiname="ImDrawList_PathFillConvex", ret="void", signature="(ImU32)", @@ -2416,7 +2416,7 @@ local t={ cimguiname="ImDrawList_PathLineTo", defaults={}, funcname="PathLineTo", - location="imgui:3476", + location="imgui:3499", ov_cimguiname="ImDrawList_PathLineTo", ret="void", signature="(const ImVec2)", @@ -2438,7 +2438,7 @@ local t={ cimguiname="ImDrawList_PathLineToMergeDuplicate", defaults={}, funcname="PathLineToMergeDuplicate", - location="imgui:3477", + location="imgui:3500", ov_cimguiname="ImDrawList_PathLineToMergeDuplicate", ret="void", signature="(const ImVec2)", @@ -2471,7 +2471,7 @@ local t={ flags="0", rounding="0.0f"}, funcname="PathRect", - location="imgui:3486", + location="imgui:3509", ov_cimguiname="ImDrawList_PathRect", ret="void", signature="(const ImVec2,const ImVec2,float,ImDrawFlags)", @@ -2501,7 +2501,7 @@ local t={ flags="0", thickness="1.0f"}, funcname="PathStroke", - location="imgui:3480", + location="imgui:3503", ov_cimguiname="ImDrawList_PathStroke", ret="void", signature="(ImU32,ImDrawFlags,float)", @@ -2520,7 +2520,7 @@ local t={ cimguiname="ImDrawList_PopClipRect", defaults={}, funcname="PopClipRect", - location="imgui:3425", + location="imgui:3448", ov_cimguiname="ImDrawList_PopClipRect", ret="void", signature="()", @@ -2539,7 +2539,7 @@ local t={ cimguiname="ImDrawList_PopTexture", defaults={}, funcname="PopTexture", - location="imgui:3427", + location="imgui:3450", ov_cimguiname="ImDrawList_PopTexture", ret="void", signature="()", @@ -2585,7 +2585,7 @@ local t={ cimguiname="ImDrawList_PrimQuadUV", defaults={}, funcname="PrimQuadUV", - location="imgui:3520", + location="imgui:3543", ov_cimguiname="ImDrawList_PrimQuadUV", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2613,7 +2613,7 @@ local t={ cimguiname="ImDrawList_PrimRect", defaults={}, funcname="PrimRect", - location="imgui:3518", + location="imgui:3541", ov_cimguiname="ImDrawList_PrimRect", ret="void", signature="(const ImVec2,const ImVec2,ImU32)", @@ -2647,7 +2647,7 @@ local t={ cimguiname="ImDrawList_PrimRectUV", defaults={}, funcname="PrimRectUV", - location="imgui:3519", + location="imgui:3542", ov_cimguiname="ImDrawList_PrimRectUV", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2672,7 +2672,7 @@ local t={ cimguiname="ImDrawList_PrimReserve", defaults={}, funcname="PrimReserve", - location="imgui:3516", + location="imgui:3539", ov_cimguiname="ImDrawList_PrimReserve", ret="void", signature="(int,int)", @@ -2697,7 +2697,7 @@ local t={ cimguiname="ImDrawList_PrimUnreserve", defaults={}, funcname="PrimUnreserve", - location="imgui:3517", + location="imgui:3540", ov_cimguiname="ImDrawList_PrimUnreserve", ret="void", signature="(int,int)", @@ -2725,7 +2725,7 @@ local t={ cimguiname="ImDrawList_PrimVtx", defaults={}, funcname="PrimVtx", - location="imgui:3523", + location="imgui:3546", ov_cimguiname="ImDrawList_PrimVtx", ret="void", signature="(const ImVec2,const ImVec2,ImU32)", @@ -2747,7 +2747,7 @@ local t={ cimguiname="ImDrawList_PrimWriteIdx", defaults={}, funcname="PrimWriteIdx", - location="imgui:3522", + location="imgui:3545", ov_cimguiname="ImDrawList_PrimWriteIdx", ret="void", signature="(ImDrawIdx)", @@ -2775,7 +2775,7 @@ local t={ cimguiname="ImDrawList_PrimWriteVtx", defaults={}, funcname="PrimWriteVtx", - location="imgui:3521", + location="imgui:3544", ov_cimguiname="ImDrawList_PrimWriteVtx", ret="void", signature="(const ImVec2,const ImVec2,ImU32)", @@ -2804,7 +2804,7 @@ local t={ defaults={ intersect_with_current_clip_rect="false"}, funcname="PushClipRect", - location="imgui:3423", + location="imgui:3446", ov_cimguiname="ImDrawList_PushClipRect", ret="void", signature="(const ImVec2,const ImVec2,bool)", @@ -2823,7 +2823,7 @@ local t={ cimguiname="ImDrawList_PushClipRectFullScreen", defaults={}, funcname="PushClipRectFullScreen", - location="imgui:3424", + location="imgui:3447", ov_cimguiname="ImDrawList_PushClipRectFullScreen", ret="void", signature="()", @@ -2845,7 +2845,7 @@ local t={ cimguiname="ImDrawList_PushTexture", defaults={}, funcname="PushTexture", - location="imgui:3426", + location="imgui:3449", ov_cimguiname="ImDrawList_PushTexture", ret="void", signature="(ImTextureRef)", @@ -2867,7 +2867,7 @@ local t={ cimguiname="ImDrawList__CalcCircleAutoSegmentCount", defaults={}, funcname="_CalcCircleAutoSegmentCount", - location="imgui:3546", + location="imgui:3569", ov_cimguiname="ImDrawList__CalcCircleAutoSegmentCount", ret="int", signature="(float)const", @@ -2886,7 +2886,7 @@ local t={ cimguiname="ImDrawList__ClearFreeMemory", defaults={}, funcname="_ClearFreeMemory", - location="imgui:3539", + location="imgui:3562", ov_cimguiname="ImDrawList__ClearFreeMemory", ret="void", signature="()", @@ -2905,7 +2905,7 @@ local t={ cimguiname="ImDrawList__OnChangedClipRect", defaults={}, funcname="_OnChangedClipRect", - location="imgui:3542", + location="imgui:3565", ov_cimguiname="ImDrawList__OnChangedClipRect", ret="void", signature="()", @@ -2924,7 +2924,7 @@ local t={ cimguiname="ImDrawList__OnChangedTexture", defaults={}, funcname="_OnChangedTexture", - location="imgui:3543", + location="imgui:3566", ov_cimguiname="ImDrawList__OnChangedTexture", ret="void", signature="()", @@ -2943,7 +2943,7 @@ local t={ cimguiname="ImDrawList__OnChangedVtxOffset", defaults={}, funcname="_OnChangedVtxOffset", - location="imgui:3544", + location="imgui:3567", ov_cimguiname="ImDrawList__OnChangedVtxOffset", ret="void", signature="()", @@ -2977,7 +2977,7 @@ local t={ cimguiname="ImDrawList__PathArcToFastEx", defaults={}, funcname="_PathArcToFastEx", - location="imgui:3547", + location="imgui:3570", ov_cimguiname="ImDrawList__PathArcToFastEx", ret="void", signature="(const ImVec2,float,int,int,int)", @@ -3011,7 +3011,7 @@ local t={ cimguiname="ImDrawList__PathArcToN", defaults={}, funcname="_PathArcToN", - location="imgui:3548", + location="imgui:3571", ov_cimguiname="ImDrawList__PathArcToN", ret="void", signature="(const ImVec2,float,float,float,int)", @@ -3030,7 +3030,7 @@ local t={ cimguiname="ImDrawList__PopUnusedDrawCmd", defaults={}, funcname="_PopUnusedDrawCmd", - location="imgui:3540", + location="imgui:3563", ov_cimguiname="ImDrawList__PopUnusedDrawCmd", ret="void", signature="()", @@ -3049,7 +3049,7 @@ local t={ cimguiname="ImDrawList__ResetForNewFrame", defaults={}, funcname="_ResetForNewFrame", - location="imgui:3538", + location="imgui:3561", ov_cimguiname="ImDrawList__ResetForNewFrame", ret="void", signature="()", @@ -3071,7 +3071,7 @@ local t={ cimguiname="ImDrawList__SetDrawListSharedData", defaults={}, funcname="_SetDrawListSharedData", - location="imgui:3537", + location="imgui:3560", ov_cimguiname="ImDrawList__SetDrawListSharedData", ret="void", signature="(ImDrawListSharedData*)", @@ -3093,7 +3093,7 @@ local t={ cimguiname="ImDrawList__SetTexture", defaults={}, funcname="_SetTexture", - location="imgui:3545", + location="imgui:3568", ov_cimguiname="ImDrawList__SetTexture", ret="void", signature="(ImTextureRef)", @@ -3112,7 +3112,7 @@ local t={ cimguiname="ImDrawList__TryMergeDrawCmds", defaults={}, funcname="_TryMergeDrawCmds", - location="imgui:3541", + location="imgui:3564", ov_cimguiname="ImDrawList__TryMergeDrawCmds", ret="void", signature="()", @@ -3129,7 +3129,7 @@ local t={ cimguiname="ImDrawList_destroy", defaults={}, destructor=true, - location="imgui:3421", + location="imgui:3444", ov_cimguiname="ImDrawList_destroy", realdestructor=true, ret="void", @@ -3147,7 +3147,7 @@ local t={ constructor=true, defaults={}, funcname="ImFontAtlasBuilder", - location="imgui_internal:4186", + location="imgui_internal:4203", ov_cimguiname="ImFontAtlasBuilder_ImFontAtlasBuilder", signature="()", stname="ImFontAtlasBuilder"}, @@ -3163,7 +3163,7 @@ local t={ cimguiname="ImFontAtlasBuilder_destroy", defaults={}, destructor=true, - location="imgui_internal:4186", + location="imgui_internal:4203", ov_cimguiname="ImFontAtlasBuilder_destroy", ret="void", signature="(ImFontAtlasBuilder*)", @@ -3180,7 +3180,7 @@ local t={ constructor=true, defaults={}, funcname="ImFontAtlasRect", - location="imgui:3750", + location="imgui:3773", ov_cimguiname="ImFontAtlasRect_ImFontAtlasRect", signature="()", stname="ImFontAtlasRect"}, @@ -3196,7 +3196,7 @@ local t={ cimguiname="ImFontAtlasRect_destroy", defaults={}, destructor=true, - location="imgui:3750", + location="imgui:3773", ov_cimguiname="ImFontAtlasRect_destroy", ret="void", signature="(ImFontAtlasRect*)", @@ -3225,7 +3225,7 @@ local t={ defaults={ out_r="NULL"}, funcname="AddCustomRect", - location="imgui:3863", + location="imgui:3886", ov_cimguiname="ImFontAtlas_AddCustomRect", ret="ImFontAtlasRectId", signature="(int,int,ImFontAtlasRect*)", @@ -3247,7 +3247,7 @@ local t={ cimguiname="ImFontAtlas_AddFont", defaults={}, funcname="AddFont", - location="imgui:3785", + location="imgui:3808", ov_cimguiname="ImFontAtlas_AddFont", ret="ImFont*", signature="(const ImFontConfig*)", @@ -3270,7 +3270,7 @@ local t={ defaults={ font_cfg="NULL"}, funcname="AddFontDefault", - location="imgui:3786", + location="imgui:3809", ov_cimguiname="ImFontAtlas_AddFontDefault", ret="ImFont*", signature="(const ImFontConfig*)", @@ -3293,7 +3293,7 @@ local t={ defaults={ font_cfg="NULL"}, funcname="AddFontDefaultBitmap", - location="imgui:3788", + location="imgui:3811", ov_cimguiname="ImFontAtlas_AddFontDefaultBitmap", ret="ImFont*", signature="(const ImFontConfig*)", @@ -3316,7 +3316,7 @@ local t={ defaults={ font_cfg="NULL"}, funcname="AddFontDefaultVector", - location="imgui:3787", + location="imgui:3810", ov_cimguiname="ImFontAtlas_AddFontDefaultVector", ret="ImFont*", signature="(const ImFontConfig*)", @@ -3350,7 +3350,7 @@ local t={ glyph_ranges="NULL", size_pixels="0.0f"}, funcname="AddFontFromFileTTF", - location="imgui:3789", + location="imgui:3812", ov_cimguiname="ImFontAtlas_AddFontFromFileTTF", ret="ImFont*", signature="(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3384,7 +3384,7 @@ local t={ glyph_ranges="NULL", size_pixels="0.0f"}, funcname="AddFontFromMemoryCompressedBase85TTF", - location="imgui:3792", + location="imgui:3815", ov_cimguiname="ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", ret="ImFont*", signature="(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3421,7 +3421,7 @@ local t={ glyph_ranges="NULL", size_pixels="0.0f"}, funcname="AddFontFromMemoryCompressedTTF", - location="imgui:3791", + location="imgui:3814", ov_cimguiname="ImFontAtlas_AddFontFromMemoryCompressedTTF", ret="ImFont*", signature="(const void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3458,7 +3458,7 @@ local t={ glyph_ranges="NULL", size_pixels="0.0f"}, funcname="AddFontFromMemoryTTF", - location="imgui:3790", + location="imgui:3813", ov_cimguiname="ImFontAtlas_AddFontFromMemoryTTF", ret="ImFont*", signature="(void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3477,7 +3477,7 @@ local t={ cimguiname="ImFontAtlas_Clear", defaults={}, funcname="Clear", - location="imgui:3795", + location="imgui:3818", ov_cimguiname="ImFontAtlas_Clear", ret="void", signature="()", @@ -3496,7 +3496,7 @@ local t={ cimguiname="ImFontAtlas_ClearFonts", defaults={}, funcname="ClearFonts", - location="imgui:3801", + location="imgui:3824", ov_cimguiname="ImFontAtlas_ClearFonts", ret="void", signature="()", @@ -3515,7 +3515,7 @@ local t={ cimguiname="ImFontAtlas_ClearInputData", defaults={}, funcname="ClearInputData", - location="imgui:3800", + location="imgui:3823", ov_cimguiname="ImFontAtlas_ClearInputData", ret="void", signature="()", @@ -3534,7 +3534,7 @@ local t={ cimguiname="ImFontAtlas_ClearTexData", defaults={}, funcname="ClearTexData", - location="imgui:3802", + location="imgui:3825", ov_cimguiname="ImFontAtlas_ClearTexData", ret="void", signature="()", @@ -3553,7 +3553,7 @@ local t={ cimguiname="ImFontAtlas_CompactCache", defaults={}, funcname="CompactCache", - location="imgui:3796", + location="imgui:3819", ov_cimguiname="ImFontAtlas_CompactCache", ret="void", signature="()", @@ -3578,7 +3578,7 @@ local t={ cimguiname="ImFontAtlas_GetCustomRect", defaults={}, funcname="GetCustomRect", - location="imgui:3865", + location="imgui:3888", ov_cimguiname="ImFontAtlas_GetCustomRect", ret="bool", signature="(ImFontAtlasRectId,ImFontAtlasRect*)const", @@ -3597,7 +3597,7 @@ local t={ cimguiname="ImFontAtlas_GetGlyphRangesDefault", defaults={}, funcname="GetGlyphRangesDefault", - location="imgui:3826", + location="imgui:3849", ov_cimguiname="ImFontAtlas_GetGlyphRangesDefault", ret="const ImWchar*", signature="()", @@ -3614,7 +3614,7 @@ local t={ constructor=true, defaults={}, funcname="ImFontAtlas", - location="imgui:3783", + location="imgui:3806", ov_cimguiname="ImFontAtlas_ImFontAtlas", signature="()", stname="ImFontAtlas"}, @@ -3635,7 +3635,7 @@ local t={ cimguiname="ImFontAtlas_RemoveCustomRect", defaults={}, funcname="RemoveCustomRect", - location="imgui:3864", + location="imgui:3887", ov_cimguiname="ImFontAtlas_RemoveCustomRect", ret="void", signature="(ImFontAtlasRectId)", @@ -3657,7 +3657,7 @@ local t={ cimguiname="ImFontAtlas_RemoveFont", defaults={}, funcname="RemoveFont", - location="imgui:3793", + location="imgui:3816", ov_cimguiname="ImFontAtlas_RemoveFont", ret="void", signature="(ImFont*)", @@ -3679,7 +3679,7 @@ local t={ cimguiname="ImFontAtlas_SetFontLoader", defaults={}, funcname="SetFontLoader", - location="imgui:3797", + location="imgui:3820", ov_cimguiname="ImFontAtlas_SetFontLoader", ret="void", signature="(const ImFontLoader*)", @@ -3696,7 +3696,7 @@ local t={ cimguiname="ImFontAtlas_destroy", defaults={}, destructor=true, - location="imgui:3784", + location="imgui:3807", ov_cimguiname="ImFontAtlas_destroy", realdestructor=true, ret="void", @@ -3716,7 +3716,7 @@ local t={ cimguiname="ImFontBaked_ClearOutputData", defaults={}, funcname="ClearOutputData", - location="imgui:3958", + location="imgui:3981", ov_cimguiname="ImFontBaked_ClearOutputData", ret="void", signature="()", @@ -3738,7 +3738,7 @@ local t={ cimguiname="ImFontBaked_FindGlyph", defaults={}, funcname="FindGlyph", - location="imgui:3959", + location="imgui:3982", ov_cimguiname="ImFontBaked_FindGlyph", ret="ImFontGlyph*", signature="(ImWchar)", @@ -3760,7 +3760,7 @@ local t={ cimguiname="ImFontBaked_FindGlyphNoFallback", defaults={}, funcname="FindGlyphNoFallback", - location="imgui:3960", + location="imgui:3983", ov_cimguiname="ImFontBaked_FindGlyphNoFallback", ret="ImFontGlyph*", signature="(ImWchar)", @@ -3782,7 +3782,7 @@ local t={ cimguiname="ImFontBaked_GetCharAdvance", defaults={}, funcname="GetCharAdvance", - location="imgui:3961", + location="imgui:3984", ov_cimguiname="ImFontBaked_GetCharAdvance", ret="float", signature="(ImWchar)", @@ -3799,7 +3799,7 @@ local t={ constructor=true, defaults={}, funcname="ImFontBaked", - location="imgui:3957", + location="imgui:3980", ov_cimguiname="ImFontBaked_ImFontBaked", signature="()", stname="ImFontBaked"}, @@ -3820,7 +3820,7 @@ local t={ cimguiname="ImFontBaked_IsGlyphLoaded", defaults={}, funcname="IsGlyphLoaded", - location="imgui:3962", + location="imgui:3985", ov_cimguiname="ImFontBaked_IsGlyphLoaded", ret="bool", signature="(ImWchar)", @@ -3837,7 +3837,7 @@ local t={ cimguiname="ImFontBaked_destroy", defaults={}, destructor=true, - location="imgui:3957", + location="imgui:3980", ov_cimguiname="ImFontBaked_destroy", ret="void", signature="(ImFontBaked*)", @@ -3854,7 +3854,7 @@ local t={ constructor=true, defaults={}, funcname="ImFontConfig", - location="imgui:3701", + location="imgui:3724", ov_cimguiname="ImFontConfig_ImFontConfig", signature="()", stname="ImFontConfig"}, @@ -3870,7 +3870,7 @@ local t={ cimguiname="ImFontConfig_destroy", defaults={}, destructor=true, - location="imgui:3701", + location="imgui:3724", ov_cimguiname="ImFontConfig_destroy", ret="void", signature="(ImFontConfig*)", @@ -3892,7 +3892,7 @@ local t={ cimguiname="ImFontGlyphRangesBuilder_AddChar", defaults={}, funcname="AddChar", - location="imgui:3730", + location="imgui:3753", ov_cimguiname="ImFontGlyphRangesBuilder_AddChar", ret="void", signature="(ImWchar)", @@ -3914,7 +3914,7 @@ local t={ cimguiname="ImFontGlyphRangesBuilder_AddRanges", defaults={}, funcname="AddRanges", - location="imgui:3732", + location="imgui:3755", ov_cimguiname="ImFontGlyphRangesBuilder_AddRanges", ret="void", signature="(const ImWchar*)", @@ -3940,7 +3940,7 @@ local t={ defaults={ text_end="NULL"}, funcname="AddText", - location="imgui:3731", + location="imgui:3754", ov_cimguiname="ImFontGlyphRangesBuilder_AddText", ret="void", signature="(const char*,const char*)", @@ -3962,7 +3962,7 @@ local t={ cimguiname="ImFontGlyphRangesBuilder_BuildRanges", defaults={}, funcname="BuildRanges", - location="imgui:3733", + location="imgui:3756", ov_cimguiname="ImFontGlyphRangesBuilder_BuildRanges", ret="void", signature="(ImVector_ImWchar*)", @@ -3981,7 +3981,7 @@ local t={ cimguiname="ImFontGlyphRangesBuilder_Clear", defaults={}, funcname="Clear", - location="imgui:3727", + location="imgui:3750", ov_cimguiname="ImFontGlyphRangesBuilder_Clear", ret="void", signature="()", @@ -4003,7 +4003,7 @@ local t={ cimguiname="ImFontGlyphRangesBuilder_GetBit", defaults={}, funcname="GetBit", - location="imgui:3728", + location="imgui:3751", ov_cimguiname="ImFontGlyphRangesBuilder_GetBit", ret="bool", signature="(size_t)const", @@ -4020,7 +4020,7 @@ local t={ constructor=true, defaults={}, funcname="ImFontGlyphRangesBuilder", - location="imgui:3726", + location="imgui:3749", ov_cimguiname="ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", signature="()", stname="ImFontGlyphRangesBuilder"}, @@ -4041,7 +4041,7 @@ local t={ cimguiname="ImFontGlyphRangesBuilder_SetBit", defaults={}, funcname="SetBit", - location="imgui:3729", + location="imgui:3752", ov_cimguiname="ImFontGlyphRangesBuilder_SetBit", ret="void", signature="(size_t)", @@ -4058,7 +4058,7 @@ local t={ cimguiname="ImFontGlyphRangesBuilder_destroy", defaults={}, destructor=true, - location="imgui:3726", + location="imgui:3749", ov_cimguiname="ImFontGlyphRangesBuilder_destroy", ret="void", signature="(ImFontGlyphRangesBuilder*)", @@ -4075,7 +4075,7 @@ local t={ constructor=true, defaults={}, funcname="ImFontGlyph", - location="imgui:3717", + location="imgui:3740", ov_cimguiname="ImFontGlyph_ImFontGlyph", signature="()", stname="ImFontGlyph"}, @@ -4091,7 +4091,7 @@ local t={ cimguiname="ImFontGlyph_destroy", defaults={}, destructor=true, - location="imgui:3717", + location="imgui:3740", ov_cimguiname="ImFontGlyph_destroy", ret="void", signature="(ImFontGlyph*)", @@ -4108,7 +4108,7 @@ local t={ constructor=true, defaults={}, funcname="ImFontLoader", - location="imgui_internal:4089", + location="imgui_internal:4106", ov_cimguiname="ImFontLoader_ImFontLoader", signature="()", stname="ImFontLoader"}, @@ -4124,7 +4124,7 @@ local t={ cimguiname="ImFontLoader_destroy", defaults={}, destructor=true, - location="imgui_internal:4089", + location="imgui_internal:4106", ov_cimguiname="ImFontLoader_destroy", ret="void", signature="(ImFontLoader*)", @@ -4149,7 +4149,7 @@ local t={ cimguiname="ImFont_AddRemapChar", defaults={}, funcname="AddRemapChar", - location="imgui:4023", + location="imgui:4046", ov_cimguiname="ImFont_AddRemapChar", ret="void", signature="(ImWchar,ImWchar)", @@ -4189,7 +4189,7 @@ local t={ out_remaining="NULL", text_end="NULL"}, funcname="CalcTextSizeA", - location="imgui:4013", + location="imgui:4036", nonUDT=1, ov_cimguiname="ImFont_CalcTextSizeA", ret="ImVec2_c", @@ -4221,7 +4221,7 @@ local t={ cimguiname="ImFont_CalcWordWrapPosition", defaults={}, funcname="CalcWordWrapPosition", - location="imgui:4014", + location="imgui:4037", ov_cimguiname="ImFont_CalcWordWrapPosition", ret="const char*", signature="(float,const char*,const char*,float)", @@ -4240,7 +4240,7 @@ local t={ cimguiname="ImFont_ClearOutputData", defaults={}, funcname="ClearOutputData", - location="imgui:4022", + location="imgui:4045", ov_cimguiname="ImFont_ClearOutputData", ret="void", signature="()", @@ -4259,7 +4259,7 @@ local t={ cimguiname="ImFont_GetDebugName", defaults={}, funcname="GetDebugName", - location="imgui:4007", + location="imgui:4030", ov_cimguiname="ImFont_GetDebugName", ret="const char*", signature="()const", @@ -4285,7 +4285,7 @@ local t={ defaults={ density="-1.0f"}, funcname="GetFontBaked", - location="imgui:4012", + location="imgui:4035", ov_cimguiname="ImFont_GetFontBaked", ret="ImFontBaked*", signature="(float,float)", @@ -4302,7 +4302,7 @@ local t={ constructor=true, defaults={}, funcname="ImFont", - location="imgui:4003", + location="imgui:4026", ov_cimguiname="ImFont_ImFont", signature="()", stname="ImFont"}, @@ -4323,7 +4323,7 @@ local t={ cimguiname="ImFont_IsGlyphInFont", defaults={}, funcname="IsGlyphInFont", - location="imgui:4005", + location="imgui:4028", ov_cimguiname="ImFont_IsGlyphInFont", ret="bool", signature="(ImWchar)", @@ -4348,7 +4348,7 @@ local t={ cimguiname="ImFont_IsGlyphRangeUnused", defaults={}, funcname="IsGlyphRangeUnused", - location="imgui:4024", + location="imgui:4047", ov_cimguiname="ImFont_IsGlyphRangeUnused", ret="bool", signature="(unsigned int,unsigned int)", @@ -4367,7 +4367,7 @@ local t={ cimguiname="ImFont_IsLoaded", defaults={}, funcname="IsLoaded", - location="imgui:4006", + location="imgui:4029", ov_cimguiname="ImFont_IsLoaded", ret="bool", signature="()const", @@ -4405,7 +4405,7 @@ local t={ defaults={ cpu_fine_clip="NULL"}, funcname="RenderChar", - location="imgui:4015", + location="imgui:4038", ov_cimguiname="ImFont_RenderChar", ret="void", signature="(ImDrawList*,float,const ImVec2,ImU32,ImWchar,const ImVec4*)", @@ -4453,7 +4453,7 @@ local t={ flags="0", wrap_width="0.0f"}, funcname="RenderText", - location="imgui:4016", + location="imgui:4039", ov_cimguiname="ImFont_RenderText", ret="void", signature="(ImDrawList*,float,const ImVec2,ImU32,const ImVec4,const char*,const char*,float,ImDrawTextFlags)", @@ -4470,7 +4470,7 @@ local t={ cimguiname="ImFont_destroy", defaults={}, destructor=true, - location="imgui:4004", + location="imgui:4027", ov_cimguiname="ImFont_destroy", realdestructor=true, ret="void", @@ -4488,7 +4488,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiBoxSelectState", - location="imgui_internal:1917", + location="imgui_internal:1918", ov_cimguiname="ImGuiBoxSelectState_ImGuiBoxSelectState", signature="()", stname="ImGuiBoxSelectState"}, @@ -4504,7 +4504,7 @@ local t={ cimguiname="ImGuiBoxSelectState_destroy", defaults={}, destructor=true, - location="imgui_internal:1917", + location="imgui_internal:1918", ov_cimguiname="ImGuiBoxSelectState_destroy", ret="void", signature="(ImGuiBoxSelectState*)", @@ -4521,7 +4521,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiComboPreviewData", - location="imgui_internal:1178", + location="imgui_internal:1177", ov_cimguiname="ImGuiComboPreviewData_ImGuiComboPreviewData", signature="()", stname="ImGuiComboPreviewData"}, @@ -4537,7 +4537,7 @@ local t={ cimguiname="ImGuiComboPreviewData_destroy", defaults={}, destructor=true, - location="imgui_internal:1178", + location="imgui_internal:1177", ov_cimguiname="ImGuiComboPreviewData_destroy", ret="void", signature="(ImGuiComboPreviewData*)", @@ -4554,7 +4554,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiContextHook", - location="imgui_internal:2376", + location="imgui_internal:2377", ov_cimguiname="ImGuiContextHook_ImGuiContextHook", signature="()", stname="ImGuiContextHook"}, @@ -4570,7 +4570,7 @@ local t={ cimguiname="ImGuiContextHook_destroy", defaults={}, destructor=true, - location="imgui_internal:2376", + location="imgui_internal:2377", ov_cimguiname="ImGuiContextHook_destroy", ret="void", signature="(ImGuiContextHook*)", @@ -4590,7 +4590,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiContext", - location="imgui_internal:2783", + location="imgui_internal:2793", ov_cimguiname="ImGuiContext_ImGuiContext", signature="(ImFontAtlas*)", stname="ImGuiContext"}, @@ -4606,7 +4606,7 @@ local t={ cimguiname="ImGuiContext_destroy", defaults={}, destructor=true, - location="imgui_internal:2784", + location="imgui_internal:2794", ov_cimguiname="ImGuiContext_destroy", realdestructor=true, ret="void", @@ -4624,7 +4624,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiDebugAllocInfo", - location="imgui_internal:2304", + location="imgui_internal:2305", ov_cimguiname="ImGuiDebugAllocInfo_ImGuiDebugAllocInfo", signature="()", stname="ImGuiDebugAllocInfo"}, @@ -4640,7 +4640,7 @@ local t={ cimguiname="ImGuiDebugAllocInfo_destroy", defaults={}, destructor=true, - location="imgui_internal:2304", + location="imgui_internal:2305", ov_cimguiname="ImGuiDebugAllocInfo_destroy", ret="void", signature="(ImGuiDebugAllocInfo*)", @@ -4657,7 +4657,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiDebugItemPathQuery", - location="imgui_internal:2347", + location="imgui_internal:2348", ov_cimguiname="ImGuiDebugItemPathQuery_ImGuiDebugItemPathQuery", signature="()", stname="ImGuiDebugItemPathQuery"}, @@ -4673,7 +4673,7 @@ local t={ cimguiname="ImGuiDebugItemPathQuery_destroy", defaults={}, destructor=true, - location="imgui_internal:2347", + location="imgui_internal:2348", ov_cimguiname="ImGuiDebugItemPathQuery_destroy", ret="void", signature="(ImGuiDebugItemPathQuery*)", @@ -4690,7 +4690,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiDockContext", - location="imgui_internal:2118", + location="imgui_internal:2119", ov_cimguiname="ImGuiDockContext_ImGuiDockContext", signature="()", stname="ImGuiDockContext"}, @@ -4706,7 +4706,7 @@ local t={ cimguiname="ImGuiDockContext_destroy", defaults={}, destructor=true, - location="imgui_internal:2118", + location="imgui_internal:2119", ov_cimguiname="ImGuiDockContext_destroy", ret="void", signature="(ImGuiDockContext*)", @@ -4726,7 +4726,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiDockNode", - location="imgui_internal:2071", + location="imgui_internal:2072", ov_cimguiname="ImGuiDockNode_ImGuiDockNode", signature="(ImGuiID)", stname="ImGuiDockNode"}, @@ -4744,7 +4744,7 @@ local t={ cimguiname="ImGuiDockNode_IsCentralNode", defaults={}, funcname="IsCentralNode", - location="imgui_internal:2076", + location="imgui_internal:2077", ov_cimguiname="ImGuiDockNode_IsCentralNode", ret="bool", signature="()const", @@ -4763,7 +4763,7 @@ local t={ cimguiname="ImGuiDockNode_IsDockSpace", defaults={}, funcname="IsDockSpace", - location="imgui_internal:2074", + location="imgui_internal:2075", ov_cimguiname="ImGuiDockNode_IsDockSpace", ret="bool", signature="()const", @@ -4782,7 +4782,7 @@ local t={ cimguiname="ImGuiDockNode_IsEmpty", defaults={}, funcname="IsEmpty", - location="imgui_internal:2081", + location="imgui_internal:2082", ov_cimguiname="ImGuiDockNode_IsEmpty", ret="bool", signature="()const", @@ -4801,7 +4801,7 @@ local t={ cimguiname="ImGuiDockNode_IsFloatingNode", defaults={}, funcname="IsFloatingNode", - location="imgui_internal:2075", + location="imgui_internal:2076", ov_cimguiname="ImGuiDockNode_IsFloatingNode", ret="bool", signature="()const", @@ -4820,7 +4820,7 @@ local t={ cimguiname="ImGuiDockNode_IsHiddenTabBar", defaults={}, funcname="IsHiddenTabBar", - location="imgui_internal:2077", + location="imgui_internal:2078", ov_cimguiname="ImGuiDockNode_IsHiddenTabBar", ret="bool", signature="()const", @@ -4839,7 +4839,7 @@ local t={ cimguiname="ImGuiDockNode_IsLeafNode", defaults={}, funcname="IsLeafNode", - location="imgui_internal:2080", + location="imgui_internal:2081", ov_cimguiname="ImGuiDockNode_IsLeafNode", ret="bool", signature="()const", @@ -4858,7 +4858,7 @@ local t={ cimguiname="ImGuiDockNode_IsNoTabBar", defaults={}, funcname="IsNoTabBar", - location="imgui_internal:2078", + location="imgui_internal:2079", ov_cimguiname="ImGuiDockNode_IsNoTabBar", ret="bool", signature="()const", @@ -4877,7 +4877,7 @@ local t={ cimguiname="ImGuiDockNode_IsRootNode", defaults={}, funcname="IsRootNode", - location="imgui_internal:2073", + location="imgui_internal:2074", ov_cimguiname="ImGuiDockNode_IsRootNode", ret="bool", signature="()const", @@ -4896,7 +4896,7 @@ local t={ cimguiname="ImGuiDockNode_IsSplitNode", defaults={}, funcname="IsSplitNode", - location="imgui_internal:2079", + location="imgui_internal:2080", ov_cimguiname="ImGuiDockNode_IsSplitNode", ret="bool", signature="()const", @@ -4916,7 +4916,7 @@ local t={ conv="ImRect", defaults={}, funcname="Rect", - location="imgui_internal:2082", + location="imgui_internal:2083", nonUDT=1, ov_cimguiname="ImGuiDockNode_Rect", ret="ImRect_c", @@ -4939,7 +4939,7 @@ local t={ cimguiname="ImGuiDockNode_SetLocalFlags", defaults={}, funcname="SetLocalFlags", - location="imgui_internal:2084", + location="imgui_internal:2085", ov_cimguiname="ImGuiDockNode_SetLocalFlags", ret="void", signature="(ImGuiDockNodeFlags)", @@ -4958,7 +4958,7 @@ local t={ cimguiname="ImGuiDockNode_UpdateMergedFlags", defaults={}, funcname="UpdateMergedFlags", - location="imgui_internal:2085", + location="imgui_internal:2086", ov_cimguiname="ImGuiDockNode_UpdateMergedFlags", ret="void", signature="()", @@ -4975,7 +4975,7 @@ local t={ cimguiname="ImGuiDockNode_destroy", defaults={}, destructor=true, - location="imgui_internal:2072", + location="imgui_internal:2073", ov_cimguiname="ImGuiDockNode_destroy", realdestructor=true, ret="void", @@ -4993,7 +4993,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiErrorRecoveryState", - location="imgui_internal:1440", + location="imgui_internal:1441", ov_cimguiname="ImGuiErrorRecoveryState_ImGuiErrorRecoveryState", signature="()", stname="ImGuiErrorRecoveryState"}, @@ -5009,7 +5009,7 @@ local t={ cimguiname="ImGuiErrorRecoveryState_destroy", defaults={}, destructor=true, - location="imgui_internal:1440", + location="imgui_internal:1441", ov_cimguiname="ImGuiErrorRecoveryState_destroy", ret="void", signature="(ImGuiErrorRecoveryState*)", @@ -5094,7 +5094,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiIDStackTool", - location="imgui_internal:2358", + location="imgui_internal:2359", ov_cimguiname="ImGuiIDStackTool_ImGuiIDStackTool", signature="()", stname="ImGuiIDStackTool"}, @@ -5110,7 +5110,7 @@ local t={ cimguiname="ImGuiIDStackTool_destroy", defaults={}, destructor=true, - location="imgui_internal:2358", + location="imgui_internal:2359", ov_cimguiname="ImGuiIDStackTool_destroy", ret="void", signature="(ImGuiIDStackTool*)", @@ -5132,7 +5132,7 @@ local t={ cimguiname="ImGuiIO_AddFocusEvent", defaults={}, funcname="AddFocusEvent", - location="imgui:2627", + location="imgui:2633", ov_cimguiname="ImGuiIO_AddFocusEvent", ret="void", signature="(bool)", @@ -5154,7 +5154,7 @@ local t={ cimguiname="ImGuiIO_AddInputCharacter", defaults={}, funcname="AddInputCharacter", - location="imgui:2628", + location="imgui:2634", ov_cimguiname="ImGuiIO_AddInputCharacter", ret="void", signature="(unsigned int)", @@ -5176,7 +5176,7 @@ local t={ cimguiname="ImGuiIO_AddInputCharacterUTF16", defaults={}, funcname="AddInputCharacterUTF16", - location="imgui:2629", + location="imgui:2635", ov_cimguiname="ImGuiIO_AddInputCharacterUTF16", ret="void", signature="(ImWchar16)", @@ -5198,7 +5198,7 @@ local t={ cimguiname="ImGuiIO_AddInputCharactersUTF8", defaults={}, funcname="AddInputCharactersUTF8", - location="imgui:2630", + location="imgui:2636", ov_cimguiname="ImGuiIO_AddInputCharactersUTF8", ret="void", signature="(const char*)", @@ -5226,7 +5226,7 @@ local t={ cimguiname="ImGuiIO_AddKeyAnalogEvent", defaults={}, funcname="AddKeyAnalogEvent", - location="imgui:2621", + location="imgui:2627", ov_cimguiname="ImGuiIO_AddKeyAnalogEvent", ret="void", signature="(ImGuiKey,bool,float)", @@ -5251,7 +5251,7 @@ local t={ cimguiname="ImGuiIO_AddKeyEvent", defaults={}, funcname="AddKeyEvent", - location="imgui:2620", + location="imgui:2626", ov_cimguiname="ImGuiIO_AddKeyEvent", ret="void", signature="(ImGuiKey,bool)", @@ -5276,7 +5276,7 @@ local t={ cimguiname="ImGuiIO_AddMouseButtonEvent", defaults={}, funcname="AddMouseButtonEvent", - location="imgui:2623", + location="imgui:2629", ov_cimguiname="ImGuiIO_AddMouseButtonEvent", ret="void", signature="(int,bool)", @@ -5301,7 +5301,7 @@ local t={ cimguiname="ImGuiIO_AddMousePosEvent", defaults={}, funcname="AddMousePosEvent", - location="imgui:2622", + location="imgui:2628", ov_cimguiname="ImGuiIO_AddMousePosEvent", ret="void", signature="(float,float)", @@ -5323,7 +5323,7 @@ local t={ cimguiname="ImGuiIO_AddMouseSourceEvent", defaults={}, funcname="AddMouseSourceEvent", - location="imgui:2625", + location="imgui:2631", ov_cimguiname="ImGuiIO_AddMouseSourceEvent", ret="void", signature="(ImGuiMouseSource)", @@ -5345,7 +5345,7 @@ local t={ cimguiname="ImGuiIO_AddMouseViewportEvent", defaults={}, funcname="AddMouseViewportEvent", - location="imgui:2626", + location="imgui:2632", ov_cimguiname="ImGuiIO_AddMouseViewportEvent", ret="void", signature="(ImGuiID)", @@ -5370,7 +5370,7 @@ local t={ cimguiname="ImGuiIO_AddMouseWheelEvent", defaults={}, funcname="AddMouseWheelEvent", - location="imgui:2624", + location="imgui:2630", ov_cimguiname="ImGuiIO_AddMouseWheelEvent", ret="void", signature="(float,float)", @@ -5389,7 +5389,7 @@ local t={ cimguiname="ImGuiIO_ClearEventsQueue", defaults={}, funcname="ClearEventsQueue", - location="imgui:2634", + location="imgui:2640", ov_cimguiname="ImGuiIO_ClearEventsQueue", ret="void", signature="()", @@ -5408,7 +5408,7 @@ local t={ cimguiname="ImGuiIO_ClearInputKeys", defaults={}, funcname="ClearInputKeys", - location="imgui:2635", + location="imgui:2641", ov_cimguiname="ImGuiIO_ClearInputKeys", ret="void", signature="()", @@ -5427,7 +5427,7 @@ local t={ cimguiname="ImGuiIO_ClearInputMouse", defaults={}, funcname="ClearInputMouse", - location="imgui:2636", + location="imgui:2642", ov_cimguiname="ImGuiIO_ClearInputMouse", ret="void", signature="()", @@ -5444,7 +5444,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiIO", - location="imgui:2727", + location="imgui:2733", ov_cimguiname="ImGuiIO_ImGuiIO", signature="()", stname="ImGuiIO"}, @@ -5465,7 +5465,7 @@ local t={ cimguiname="ImGuiIO_SetAppAcceptingEvents", defaults={}, funcname="SetAppAcceptingEvents", - location="imgui:2633", + location="imgui:2639", ov_cimguiname="ImGuiIO_SetAppAcceptingEvents", ret="void", signature="(bool)", @@ -5497,7 +5497,7 @@ local t={ defaults={ native_legacy_index="-1"}, funcname="SetKeyEventNativeData", - location="imgui:2632", + location="imgui:2638", ov_cimguiname="ImGuiIO_SetKeyEventNativeData", ret="void", signature="(ImGuiKey,int,int,int)", @@ -5514,7 +5514,7 @@ local t={ cimguiname="ImGuiIO_destroy", defaults={}, destructor=true, - location="imgui:2727", + location="imgui:2733", ov_cimguiname="ImGuiIO_destroy", ret="void", signature="(ImGuiIO*)", @@ -5531,7 +5531,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiInputEvent", - location="imgui_internal:1582", + location="imgui_internal:1583", ov_cimguiname="ImGuiInputEvent_ImGuiInputEvent", signature="()", stname="ImGuiInputEvent"}, @@ -5547,7 +5547,7 @@ local t={ cimguiname="ImGuiInputEvent_destroy", defaults={}, destructor=true, - location="imgui_internal:1582", + location="imgui_internal:1583", ov_cimguiname="ImGuiInputEvent_destroy", ret="void", signature="(ImGuiInputEvent*)", @@ -5566,7 +5566,7 @@ local t={ cimguiname="ImGuiInputTextCallbackData_ClearSelection", defaults={}, funcname="ClearSelection", - location="imgui:2774", + location="imgui:2780", ov_cimguiname="ImGuiInputTextCallbackData_ClearSelection", ret="void", signature="()", @@ -5591,7 +5591,7 @@ local t={ cimguiname="ImGuiInputTextCallbackData_DeleteChars", defaults={}, funcname="DeleteChars", - location="imgui:2770", + location="imgui:2776", ov_cimguiname="ImGuiInputTextCallbackData_DeleteChars", ret="void", signature="(int,int)", @@ -5610,7 +5610,7 @@ local t={ cimguiname="ImGuiInputTextCallbackData_HasSelection", defaults={}, funcname="HasSelection", - location="imgui:2775", + location="imgui:2781", ov_cimguiname="ImGuiInputTextCallbackData_HasSelection", ret="bool", signature="()const", @@ -5627,7 +5627,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiInputTextCallbackData", - location="imgui:2769", + location="imgui:2775", ov_cimguiname="ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", signature="()", stname="ImGuiInputTextCallbackData"}, @@ -5655,7 +5655,7 @@ local t={ defaults={ text_end="NULL"}, funcname="InsertChars", - location="imgui:2771", + location="imgui:2777", ov_cimguiname="ImGuiInputTextCallbackData_InsertChars", ret="void", signature="(int,const char*,const char*)", @@ -5674,7 +5674,7 @@ local t={ cimguiname="ImGuiInputTextCallbackData_SelectAll", defaults={}, funcname="SelectAll", - location="imgui:2772", + location="imgui:2778", ov_cimguiname="ImGuiInputTextCallbackData_SelectAll", ret="void", signature="()", @@ -5699,7 +5699,7 @@ local t={ cimguiname="ImGuiInputTextCallbackData_SetSelection", defaults={}, funcname="SetSelection", - location="imgui:2773", + location="imgui:2779", ov_cimguiname="ImGuiInputTextCallbackData_SetSelection", ret="void", signature="(int,int)", @@ -5716,7 +5716,7 @@ local t={ cimguiname="ImGuiInputTextCallbackData_destroy", defaults={}, destructor=true, - location="imgui:2769", + location="imgui:2775", ov_cimguiname="ImGuiInputTextCallbackData_destroy", ret="void", signature="(ImGuiInputTextCallbackData*)", @@ -5735,7 +5735,7 @@ local t={ cimguiname="ImGuiInputTextDeactivatedState_ClearFreeMemory", defaults={}, funcname="ClearFreeMemory", - location="imgui_internal:1225", + location="imgui_internal:1224", ov_cimguiname="ImGuiInputTextDeactivatedState_ClearFreeMemory", ret="void", signature="()", @@ -5752,7 +5752,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiInputTextDeactivatedState", - location="imgui_internal:1224", + location="imgui_internal:1223", ov_cimguiname="ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState", signature="()", stname="ImGuiInputTextDeactivatedState"}, @@ -5768,7 +5768,7 @@ local t={ cimguiname="ImGuiInputTextDeactivatedState_destroy", defaults={}, destructor=true, - location="imgui_internal:1224", + location="imgui_internal:1223", ov_cimguiname="ImGuiInputTextDeactivatedState_destroy", ret="void", signature="(ImGuiInputTextDeactivatedState*)", @@ -5806,7 +5806,7 @@ local t={ cimguiname="ImGuiInputTextState_ClearSelection", defaults={}, funcname="ClearSelection", - location="imgui_internal:1278", + location="imgui_internal:1279", ov_cimguiname="ImGuiInputTextState_ClearSelection", ret="void", signature="()", @@ -5844,7 +5844,7 @@ local t={ cimguiname="ImGuiInputTextState_CursorAnimReset", defaults={}, funcname="CursorAnimReset", - location="imgui_internal:1275", + location="imgui_internal:1276", ov_cimguiname="ImGuiInputTextState_CursorAnimReset", ret="void", signature="()", @@ -5863,7 +5863,7 @@ local t={ cimguiname="ImGuiInputTextState_CursorClamp", defaults={}, funcname="CursorClamp", - location="imgui_internal:1276", + location="imgui_internal:1277", ov_cimguiname="ImGuiInputTextState_CursorClamp", ret="void", signature="()", @@ -5882,7 +5882,7 @@ local t={ cimguiname="ImGuiInputTextState_GetCursorPos", defaults={}, funcname="GetCursorPos", - location="imgui_internal:1279", + location="imgui_internal:1280", ov_cimguiname="ImGuiInputTextState_GetCursorPos", ret="int", signature="()const", @@ -5920,7 +5920,7 @@ local t={ cimguiname="ImGuiInputTextState_GetSelectionEnd", defaults={}, funcname="GetSelectionEnd", - location="imgui_internal:1281", + location="imgui_internal:1282", ov_cimguiname="ImGuiInputTextState_GetSelectionEnd", ret="int", signature="()const", @@ -5939,12 +5939,31 @@ local t={ cimguiname="ImGuiInputTextState_GetSelectionStart", defaults={}, funcname="GetSelectionStart", - location="imgui_internal:1280", + location="imgui_internal:1281", ov_cimguiname="ImGuiInputTextState_GetSelectionStart", ret="int", signature="()const", stname="ImGuiInputTextState"}, ["()const"]=nil}, + ImGuiInputTextState_GetText={ + [1]={ + args="(ImGuiInputTextState* self)", + argsT={ + [1]={ + name="self", + type="ImGuiInputTextState*"}}, + argsoriginal="()", + call_args="()", + call_args_old="()", + cimguiname="ImGuiInputTextState_GetText", + defaults={}, + funcname="GetText", + location="imgui_internal:1273", + ov_cimguiname="ImGuiInputTextState_GetText", + ret="const char*", + signature="()", + stname="ImGuiInputTextState"}, + ["()"]=nil}, ImGuiInputTextState_HasSelection={ [1]={ args="(ImGuiInputTextState* self)", @@ -5958,7 +5977,7 @@ local t={ cimguiname="ImGuiInputTextState_HasSelection", defaults={}, funcname="HasSelection", - location="imgui_internal:1277", + location="imgui_internal:1278", ov_cimguiname="ImGuiInputTextState_HasSelection", ret="bool", signature="()const", @@ -6037,7 +6056,7 @@ local t={ cimguiname="ImGuiInputTextState_ReloadUserBufAndKeepSelection", defaults={}, funcname="ReloadUserBufAndKeepSelection", - location="imgui_internal:1291", + location="imgui_internal:1292", ov_cimguiname="ImGuiInputTextState_ReloadUserBufAndKeepSelection", ret="void", signature="()", @@ -6056,7 +6075,7 @@ local t={ cimguiname="ImGuiInputTextState_ReloadUserBufAndMoveToEnd", defaults={}, funcname="ReloadUserBufAndMoveToEnd", - location="imgui_internal:1292", + location="imgui_internal:1293", ov_cimguiname="ImGuiInputTextState_ReloadUserBufAndMoveToEnd", ret="void", signature="()", @@ -6075,7 +6094,7 @@ local t={ cimguiname="ImGuiInputTextState_ReloadUserBufAndSelectAll", defaults={}, funcname="ReloadUserBufAndSelectAll", - location="imgui_internal:1290", + location="imgui_internal:1291", ov_cimguiname="ImGuiInputTextState_ReloadUserBufAndSelectAll", ret="void", signature="()", @@ -6094,7 +6113,7 @@ local t={ cimguiname="ImGuiInputTextState_SelectAll", defaults={}, funcname="SelectAll", - location="imgui_internal:1283", + location="imgui_internal:1284", ov_cimguiname="ImGuiInputTextState_SelectAll", ret="void", signature="()", @@ -6119,7 +6138,7 @@ local t={ cimguiname="ImGuiInputTextState_SetSelection", defaults={}, funcname="SetSelection", - location="imgui_internal:1282", + location="imgui_internal:1283", ov_cimguiname="ImGuiInputTextState_SetSelection", ret="void", signature="(int,int)", @@ -6154,7 +6173,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiKeyOwnerData", - location="imgui_internal:1626", + location="imgui_internal:1627", ov_cimguiname="ImGuiKeyOwnerData_ImGuiKeyOwnerData", signature="()", stname="ImGuiKeyOwnerData"}, @@ -6170,7 +6189,7 @@ local t={ cimguiname="ImGuiKeyOwnerData_destroy", defaults={}, destructor=true, - location="imgui_internal:1626", + location="imgui_internal:1627", ov_cimguiname="ImGuiKeyOwnerData_destroy", ret="void", signature="(ImGuiKeyOwnerData*)", @@ -6187,7 +6206,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiKeyRoutingData", - location="imgui_internal:1602", + location="imgui_internal:1603", ov_cimguiname="ImGuiKeyRoutingData_ImGuiKeyRoutingData", signature="()", stname="ImGuiKeyRoutingData"}, @@ -6203,7 +6222,7 @@ local t={ cimguiname="ImGuiKeyRoutingData_destroy", defaults={}, destructor=true, - location="imgui_internal:1602", + location="imgui_internal:1603", ov_cimguiname="ImGuiKeyRoutingData_destroy", ret="void", signature="(ImGuiKeyRoutingData*)", @@ -6222,7 +6241,7 @@ local t={ cimguiname="ImGuiKeyRoutingTable_Clear", defaults={}, funcname="Clear", - location="imgui_internal:1614", + location="imgui_internal:1615", ov_cimguiname="ImGuiKeyRoutingTable_Clear", ret="void", signature="()", @@ -6239,7 +6258,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiKeyRoutingTable", - location="imgui_internal:1613", + location="imgui_internal:1614", ov_cimguiname="ImGuiKeyRoutingTable_ImGuiKeyRoutingTable", signature="()", stname="ImGuiKeyRoutingTable"}, @@ -6255,7 +6274,7 @@ local t={ cimguiname="ImGuiKeyRoutingTable_destroy", defaults={}, destructor=true, - location="imgui_internal:1613", + location="imgui_internal:1614", ov_cimguiname="ImGuiKeyRoutingTable_destroy", ret="void", signature="(ImGuiKeyRoutingTable*)", @@ -6272,7 +6291,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiLastItemData", - location="imgui_internal:1407", + location="imgui_internal:1408", ov_cimguiname="ImGuiLastItemData_ImGuiLastItemData", signature="()", stname="ImGuiLastItemData"}, @@ -6288,7 +6307,7 @@ local t={ cimguiname="ImGuiLastItemData_destroy", defaults={}, destructor=true, - location="imgui_internal:1407", + location="imgui_internal:1408", ov_cimguiname="ImGuiLastItemData_destroy", ret="void", signature="(ImGuiLastItemData*)", @@ -6305,7 +6324,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiListClipperData", - location="imgui_internal:1697", + location="imgui_internal:1698", ov_cimguiname="ImGuiListClipperData_ImGuiListClipperData", signature="()", stname="ImGuiListClipperData"}, @@ -6326,7 +6345,7 @@ local t={ cimguiname="ImGuiListClipperData_Reset", defaults={}, funcname="Reset", - location="imgui_internal:1698", + location="imgui_internal:1699", ov_cimguiname="ImGuiListClipperData_Reset", ret="void", signature="(ImGuiListClipper*)", @@ -6343,7 +6362,7 @@ local t={ cimguiname="ImGuiListClipperData_destroy", defaults={}, destructor=true, - location="imgui_internal:1697", + location="imgui_internal:1698", ov_cimguiname="ImGuiListClipperData_destroy", ret="void", signature="(ImGuiListClipperData*)", @@ -6366,7 +6385,7 @@ local t={ defaults={}, funcname="FromIndices", is_static_function=true, - location="imgui_internal:1684", + location="imgui_internal:1685", ov_cimguiname="ImGuiListClipperRange_FromIndices", ret="ImGuiListClipperRange", signature="(int,int)", @@ -6395,7 +6414,7 @@ local t={ defaults={}, funcname="FromPositions", is_static_function=true, - location="imgui_internal:1685", + location="imgui_internal:1686", ov_cimguiname="ImGuiListClipperRange_FromPositions", ret="ImGuiListClipperRange", signature="(float,float,int,int)", @@ -6421,7 +6440,7 @@ local t={ defaults={ items_height="-1.0f"}, funcname="Begin", - location="imgui:2999", + location="imgui:3006", ov_cimguiname="ImGuiListClipper_Begin", ret="void", signature="(int,float)", @@ -6440,7 +6459,7 @@ local t={ cimguiname="ImGuiListClipper_End", defaults={}, funcname="End", - location="imgui:3000", + location="imgui:3007", ov_cimguiname="ImGuiListClipper_End", ret="void", signature="()", @@ -6457,7 +6476,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiListClipper", - location="imgui:2997", + location="imgui:3004", ov_cimguiname="ImGuiListClipper_ImGuiListClipper", signature="()", stname="ImGuiListClipper"}, @@ -6478,7 +6497,7 @@ local t={ cimguiname="ImGuiListClipper_IncludeItemByIndex", defaults={}, funcname="IncludeItemByIndex", - location="imgui:3005", + location="imgui:3012", ov_cimguiname="ImGuiListClipper_IncludeItemByIndex", ret="void", signature="(int)", @@ -6503,7 +6522,7 @@ local t={ cimguiname="ImGuiListClipper_IncludeItemsByIndex", defaults={}, funcname="IncludeItemsByIndex", - location="imgui:3006", + location="imgui:3013", ov_cimguiname="ImGuiListClipper_IncludeItemsByIndex", ret="void", signature="(int,int)", @@ -6525,7 +6544,7 @@ local t={ cimguiname="ImGuiListClipper_SeekCursorForItem", defaults={}, funcname="SeekCursorForItem", - location="imgui:3011", + location="imgui:3018", ov_cimguiname="ImGuiListClipper_SeekCursorForItem", ret="void", signature="(int)", @@ -6544,7 +6563,7 @@ local t={ cimguiname="ImGuiListClipper_Step", defaults={}, funcname="Step", - location="imgui:3001", + location="imgui:3008", ov_cimguiname="ImGuiListClipper_Step", ret="bool", signature="()", @@ -6561,7 +6580,7 @@ local t={ cimguiname="ImGuiListClipper_destroy", defaults={}, destructor=true, - location="imgui:2998", + location="imgui:3005", ov_cimguiname="ImGuiListClipper_destroy", realdestructor=true, ret="void", @@ -6584,7 +6603,7 @@ local t={ cimguiname="ImGuiMenuColumns_CalcNextTotalWidth", defaults={}, funcname="CalcNextTotalWidth", - location="imgui_internal:1215", + location="imgui_internal:1214", ov_cimguiname="ImGuiMenuColumns_CalcNextTotalWidth", ret="void", signature="(bool)", @@ -6615,7 +6634,7 @@ local t={ cimguiname="ImGuiMenuColumns_DeclColumns", defaults={}, funcname="DeclColumns", - location="imgui_internal:1214", + location="imgui_internal:1213", ov_cimguiname="ImGuiMenuColumns_DeclColumns", ret="float", signature="(float,float,float,float)", @@ -6632,7 +6651,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiMenuColumns", - location="imgui_internal:1212", + location="imgui_internal:1211", ov_cimguiname="ImGuiMenuColumns_ImGuiMenuColumns", signature="()", stname="ImGuiMenuColumns"}, @@ -6656,7 +6675,7 @@ local t={ cimguiname="ImGuiMenuColumns_Update", defaults={}, funcname="Update", - location="imgui_internal:1213", + location="imgui_internal:1212", ov_cimguiname="ImGuiMenuColumns_Update", ret="void", signature="(float,bool)", @@ -6673,7 +6692,7 @@ local t={ cimguiname="ImGuiMenuColumns_destroy", defaults={}, destructor=true, - location="imgui_internal:1212", + location="imgui_internal:1211", ov_cimguiname="ImGuiMenuColumns_destroy", ret="void", signature="(ImGuiMenuColumns*)", @@ -6690,7 +6709,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiMultiSelectState", - location="imgui_internal:1964", + location="imgui_internal:1965", ov_cimguiname="ImGuiMultiSelectState_ImGuiMultiSelectState", signature="()", stname="ImGuiMultiSelectState"}, @@ -6706,7 +6725,7 @@ local t={ cimguiname="ImGuiMultiSelectState_destroy", defaults={}, destructor=true, - location="imgui_internal:1964", + location="imgui_internal:1965", ov_cimguiname="ImGuiMultiSelectState_destroy", ret="void", signature="(ImGuiMultiSelectState*)", @@ -6725,7 +6744,7 @@ local t={ cimguiname="ImGuiMultiSelectTempData_Clear", defaults={}, funcname="Clear", - location="imgui_internal:1948", + location="imgui_internal:1949", ov_cimguiname="ImGuiMultiSelectTempData_Clear", ret="void", signature="()", @@ -6744,7 +6763,7 @@ local t={ cimguiname="ImGuiMultiSelectTempData_ClearIO", defaults={}, funcname="ClearIO", - location="imgui_internal:1949", + location="imgui_internal:1950", ov_cimguiname="ImGuiMultiSelectTempData_ClearIO", ret="void", signature="()", @@ -6761,7 +6780,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiMultiSelectTempData", - location="imgui_internal:1947", + location="imgui_internal:1948", ov_cimguiname="ImGuiMultiSelectTempData_ImGuiMultiSelectTempData", signature="()", stname="ImGuiMultiSelectTempData"}, @@ -6777,7 +6796,7 @@ local t={ cimguiname="ImGuiMultiSelectTempData_destroy", defaults={}, destructor=true, - location="imgui_internal:1947", + location="imgui_internal:1948", ov_cimguiname="ImGuiMultiSelectTempData_destroy", ret="void", signature="(ImGuiMultiSelectTempData*)", @@ -6796,7 +6815,7 @@ local t={ cimguiname="ImGuiNavItemData_Clear", defaults={}, funcname="Clear", - location="imgui_internal:1789", + location="imgui_internal:1790", ov_cimguiname="ImGuiNavItemData_Clear", ret="void", signature="()", @@ -6813,7 +6832,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiNavItemData", - location="imgui_internal:1788", + location="imgui_internal:1789", ov_cimguiname="ImGuiNavItemData_ImGuiNavItemData", signature="()", stname="ImGuiNavItemData"}, @@ -6829,7 +6848,7 @@ local t={ cimguiname="ImGuiNavItemData_destroy", defaults={}, destructor=true, - location="imgui_internal:1788", + location="imgui_internal:1789", ov_cimguiname="ImGuiNavItemData_destroy", ret="void", signature="(ImGuiNavItemData*)", @@ -6848,7 +6867,7 @@ local t={ cimguiname="ImGuiNextItemData_ClearFlags", defaults={}, funcname="ClearFlags", - location="imgui_internal:1391", + location="imgui_internal:1392", ov_cimguiname="ImGuiNextItemData_ClearFlags", ret="void", signature="()", @@ -6865,7 +6884,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiNextItemData", - location="imgui_internal:1390", + location="imgui_internal:1391", ov_cimguiname="ImGuiNextItemData_ImGuiNextItemData", signature="()", stname="ImGuiNextItemData"}, @@ -6881,7 +6900,7 @@ local t={ cimguiname="ImGuiNextItemData_destroy", defaults={}, destructor=true, - location="imgui_internal:1390", + location="imgui_internal:1391", ov_cimguiname="ImGuiNextItemData_destroy", ret="void", signature="(ImGuiNextItemData*)", @@ -6900,7 +6919,7 @@ local t={ cimguiname="ImGuiNextWindowData_ClearFlags", defaults={}, funcname="ClearFlags", - location="imgui_internal:1359", + location="imgui_internal:1360", ov_cimguiname="ImGuiNextWindowData_ClearFlags", ret="void", signature="()", @@ -6917,7 +6936,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiNextWindowData", - location="imgui_internal:1358", + location="imgui_internal:1359", ov_cimguiname="ImGuiNextWindowData_ImGuiNextWindowData", signature="()", stname="ImGuiNextWindowData"}, @@ -6933,7 +6952,7 @@ local t={ cimguiname="ImGuiNextWindowData_destroy", defaults={}, destructor=true, - location="imgui_internal:1358", + location="imgui_internal:1359", ov_cimguiname="ImGuiNextWindowData_destroy", ret="void", signature="(ImGuiNextWindowData*)", @@ -6950,7 +6969,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiOldColumnData", - location="imgui_internal:1868", + location="imgui_internal:1869", ov_cimguiname="ImGuiOldColumnData_ImGuiOldColumnData", signature="()", stname="ImGuiOldColumnData"}, @@ -6966,7 +6985,7 @@ local t={ cimguiname="ImGuiOldColumnData_destroy", defaults={}, destructor=true, - location="imgui_internal:1868", + location="imgui_internal:1869", ov_cimguiname="ImGuiOldColumnData_destroy", ret="void", signature="(ImGuiOldColumnData*)", @@ -6983,7 +7002,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiOldColumns", - location="imgui_internal:1889", + location="imgui_internal:1890", ov_cimguiname="ImGuiOldColumns_ImGuiOldColumns", signature="()", stname="ImGuiOldColumns"}, @@ -6999,7 +7018,7 @@ local t={ cimguiname="ImGuiOldColumns_destroy", defaults={}, destructor=true, - location="imgui_internal:1889", + location="imgui_internal:1890", ov_cimguiname="ImGuiOldColumns_destroy", ret="void", signature="(ImGuiOldColumns*)", @@ -7016,7 +7035,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiOnceUponAFrame", - location="imgui:2848", + location="imgui:2854", ov_cimguiname="ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", signature="()", stname="ImGuiOnceUponAFrame"}, @@ -7032,7 +7051,7 @@ local t={ cimguiname="ImGuiOnceUponAFrame_destroy", defaults={}, destructor=true, - location="imgui:2848", + location="imgui:2854", ov_cimguiname="ImGuiOnceUponAFrame_destroy", ret="void", signature="(ImGuiOnceUponAFrame*)", @@ -7051,7 +7070,7 @@ local t={ cimguiname="ImGuiPayload_Clear", defaults={}, funcname="Clear", - location="imgui:2826", + location="imgui:2832", ov_cimguiname="ImGuiPayload_Clear", ret="void", signature="()", @@ -7068,7 +7087,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiPayload", - location="imgui:2825", + location="imgui:2831", ov_cimguiname="ImGuiPayload_ImGuiPayload", signature="()", stname="ImGuiPayload"}, @@ -7089,7 +7108,7 @@ local t={ cimguiname="ImGuiPayload_IsDataType", defaults={}, funcname="IsDataType", - location="imgui:2827", + location="imgui:2833", ov_cimguiname="ImGuiPayload_IsDataType", ret="bool", signature="(const char*)const", @@ -7108,7 +7127,7 @@ local t={ cimguiname="ImGuiPayload_IsDelivery", defaults={}, funcname="IsDelivery", - location="imgui:2829", + location="imgui:2835", ov_cimguiname="ImGuiPayload_IsDelivery", ret="bool", signature="()const", @@ -7127,7 +7146,7 @@ local t={ cimguiname="ImGuiPayload_IsPreview", defaults={}, funcname="IsPreview", - location="imgui:2828", + location="imgui:2834", ov_cimguiname="ImGuiPayload_IsPreview", ret="bool", signature="()const", @@ -7144,7 +7163,7 @@ local t={ cimguiname="ImGuiPayload_destroy", defaults={}, destructor=true, - location="imgui:2825", + location="imgui:2831", ov_cimguiname="ImGuiPayload_destroy", ret="void", signature="(ImGuiPayload*)", @@ -7163,7 +7182,7 @@ local t={ cimguiname="ImGuiPlatformIO_ClearPlatformHandlers", defaults={}, funcname="ClearPlatformHandlers", - location="imgui:4271", + location="imgui:4297", ov_cimguiname="ImGuiPlatformIO_ClearPlatformHandlers", ret="void", signature="()", @@ -7182,7 +7201,7 @@ local t={ cimguiname="ImGuiPlatformIO_ClearRendererHandlers", defaults={}, funcname="ClearRendererHandlers", - location="imgui:4272", + location="imgui:4298", ov_cimguiname="ImGuiPlatformIO_ClearRendererHandlers", ret="void", signature="()", @@ -7199,7 +7218,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiPlatformIO", - location="imgui:4167", + location="imgui:4193", ov_cimguiname="ImGuiPlatformIO_ImGuiPlatformIO", signature="()", stname="ImGuiPlatformIO"}, @@ -7215,7 +7234,7 @@ local t={ cimguiname="ImGuiPlatformIO_destroy", defaults={}, destructor=true, - location="imgui:4167", + location="imgui:4193", ov_cimguiname="ImGuiPlatformIO_destroy", ret="void", signature="(ImGuiPlatformIO*)", @@ -7232,7 +7251,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiPlatformImeData", - location="imgui:4295", + location="imgui:4321", ov_cimguiname="ImGuiPlatformImeData_ImGuiPlatformImeData", signature="()", stname="ImGuiPlatformImeData"}, @@ -7248,7 +7267,7 @@ local t={ cimguiname="ImGuiPlatformImeData_destroy", defaults={}, destructor=true, - location="imgui:4295", + location="imgui:4321", ov_cimguiname="ImGuiPlatformImeData_destroy", ret="void", signature="(ImGuiPlatformImeData*)", @@ -7265,7 +7284,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiPlatformMonitor", - location="imgui:4283", + location="imgui:4309", ov_cimguiname="ImGuiPlatformMonitor_ImGuiPlatformMonitor", signature="()", stname="ImGuiPlatformMonitor"}, @@ -7281,7 +7300,7 @@ local t={ cimguiname="ImGuiPlatformMonitor_destroy", defaults={}, destructor=true, - location="imgui:4283", + location="imgui:4309", ov_cimguiname="ImGuiPlatformMonitor_destroy", ret="void", signature="(ImGuiPlatformMonitor*)", @@ -7298,7 +7317,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiPopupData", - location="imgui_internal:1501", + location="imgui_internal:1502", ov_cimguiname="ImGuiPopupData_ImGuiPopupData", signature="()", stname="ImGuiPopupData"}, @@ -7314,7 +7333,7 @@ local t={ cimguiname="ImGuiPopupData_destroy", defaults={}, destructor=true, - location="imgui_internal:1501", + location="imgui_internal:1502", ov_cimguiname="ImGuiPopupData_destroy", ret="void", signature="(ImGuiPopupData*)", @@ -7334,7 +7353,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiPtrOrIndex", - location="imgui_internal:1465", + location="imgui_internal:1466", ov_cimguiname="ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr", signature="(void*)", stname="ImGuiPtrOrIndex"}, @@ -7351,7 +7370,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiPtrOrIndex", - location="imgui_internal:1466", + location="imgui_internal:1467", ov_cimguiname="ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int", signature="(int)", stname="ImGuiPtrOrIndex"}, @@ -7368,7 +7387,7 @@ local t={ cimguiname="ImGuiPtrOrIndex_destroy", defaults={}, destructor=true, - location="imgui_internal:1465", + location="imgui_internal:1466", ov_cimguiname="ImGuiPtrOrIndex_destroy", ret="void", signature="(ImGuiPtrOrIndex*)", @@ -7390,7 +7409,7 @@ local t={ cimguiname="ImGuiSelectionBasicStorage_ApplyRequests", defaults={}, funcname="ApplyRequests", - location="imgui:3228", + location="imgui:3251", ov_cimguiname="ImGuiSelectionBasicStorage_ApplyRequests", ret="void", signature="(ImGuiMultiSelectIO*)", @@ -7409,7 +7428,7 @@ local t={ cimguiname="ImGuiSelectionBasicStorage_Clear", defaults={}, funcname="Clear", - location="imgui:3230", + location="imgui:3253", ov_cimguiname="ImGuiSelectionBasicStorage_Clear", ret="void", signature="()", @@ -7431,7 +7450,7 @@ local t={ cimguiname="ImGuiSelectionBasicStorage_Contains", defaults={}, funcname="Contains", - location="imgui:3229", + location="imgui:3252", ov_cimguiname="ImGuiSelectionBasicStorage_Contains", ret="bool", signature="(ImGuiID)const", @@ -7456,7 +7475,7 @@ local t={ cimguiname="ImGuiSelectionBasicStorage_GetNextSelectedItem", defaults={}, funcname="GetNextSelectedItem", - location="imgui:3233", + location="imgui:3256", ov_cimguiname="ImGuiSelectionBasicStorage_GetNextSelectedItem", ret="bool", signature="(void**,ImGuiID*)", @@ -7478,7 +7497,7 @@ local t={ cimguiname="ImGuiSelectionBasicStorage_GetStorageIdFromIndex", defaults={}, funcname="GetStorageIdFromIndex", - location="imgui:3234", + location="imgui:3257", ov_cimguiname="ImGuiSelectionBasicStorage_GetStorageIdFromIndex", ret="ImGuiID", signature="(int)", @@ -7495,7 +7514,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiSelectionBasicStorage", - location="imgui:3227", + location="imgui:3250", ov_cimguiname="ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage", signature="()", stname="ImGuiSelectionBasicStorage"}, @@ -7519,7 +7538,7 @@ local t={ cimguiname="ImGuiSelectionBasicStorage_SetItemSelected", defaults={}, funcname="SetItemSelected", - location="imgui:3232", + location="imgui:3255", ov_cimguiname="ImGuiSelectionBasicStorage_SetItemSelected", ret="void", signature="(ImGuiID,bool)", @@ -7542,7 +7561,7 @@ local t={ cimguiname="ImGuiSelectionBasicStorage_Swap", defaults={}, funcname="Swap", - location="imgui:3231", + location="imgui:3254", ov_cimguiname="ImGuiSelectionBasicStorage_Swap", ret="void", signature="(ImGuiSelectionBasicStorage*)", @@ -7559,7 +7578,7 @@ local t={ cimguiname="ImGuiSelectionBasicStorage_destroy", defaults={}, destructor=true, - location="imgui:3227", + location="imgui:3250", ov_cimguiname="ImGuiSelectionBasicStorage_destroy", ret="void", signature="(ImGuiSelectionBasicStorage*)", @@ -7581,7 +7600,7 @@ local t={ cimguiname="ImGuiSelectionExternalStorage_ApplyRequests", defaults={}, funcname="ApplyRequests", - location="imgui:3247", + location="imgui:3270", ov_cimguiname="ImGuiSelectionExternalStorage_ApplyRequests", ret="void", signature="(ImGuiMultiSelectIO*)", @@ -7598,7 +7617,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiSelectionExternalStorage", - location="imgui:3246", + location="imgui:3269", ov_cimguiname="ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage", signature="()", stname="ImGuiSelectionExternalStorage"}, @@ -7614,7 +7633,7 @@ local t={ cimguiname="ImGuiSelectionExternalStorage_destroy", defaults={}, destructor=true, - location="imgui:3246", + location="imgui:3269", ov_cimguiname="ImGuiSelectionExternalStorage_destroy", ret="void", signature="(ImGuiSelectionExternalStorage*)", @@ -7631,7 +7650,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiSettingsHandler", - location="imgui_internal:2212", + location="imgui_internal:2213", ov_cimguiname="ImGuiSettingsHandler_ImGuiSettingsHandler", signature="()", stname="ImGuiSettingsHandler"}, @@ -7647,7 +7666,7 @@ local t={ cimguiname="ImGuiSettingsHandler_destroy", defaults={}, destructor=true, - location="imgui_internal:2212", + location="imgui_internal:2213", ov_cimguiname="ImGuiSettingsHandler_destroy", ret="void", signature="(ImGuiSettingsHandler*)", @@ -7664,7 +7683,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiStackLevelInfo", - location="imgui_internal:2334", + location="imgui_internal:2335", ov_cimguiname="ImGuiStackLevelInfo_ImGuiStackLevelInfo", signature="()", stname="ImGuiStackLevelInfo"}, @@ -7680,7 +7699,7 @@ local t={ cimguiname="ImGuiStackLevelInfo_destroy", defaults={}, destructor=true, - location="imgui_internal:2334", + location="imgui_internal:2335", ov_cimguiname="ImGuiStackLevelInfo_destroy", ret="void", signature="(ImGuiStackLevelInfo*)", @@ -7703,7 +7722,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiStoragePair", - location="imgui:2906", + location="imgui:2912", ov_cimguiname="ImGuiStoragePair_ImGuiStoragePair_Int", signature="(ImGuiID,int)", stname="ImGuiStoragePair"}, @@ -7723,7 +7742,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiStoragePair", - location="imgui:2907", + location="imgui:2913", ov_cimguiname="ImGuiStoragePair_ImGuiStoragePair_Float", signature="(ImGuiID,float)", stname="ImGuiStoragePair"}, @@ -7743,7 +7762,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiStoragePair", - location="imgui:2908", + location="imgui:2914", ov_cimguiname="ImGuiStoragePair_ImGuiStoragePair_Ptr", signature="(ImGuiID,void*)", stname="ImGuiStoragePair"}, @@ -7761,7 +7780,7 @@ local t={ cimguiname="ImGuiStoragePair_destroy", defaults={}, destructor=true, - location="imgui:2906", + location="imgui:2912", ov_cimguiname="ImGuiStoragePair_destroy", ret="void", signature="(ImGuiStoragePair*)", @@ -7780,7 +7799,7 @@ local t={ cimguiname="ImGuiStorage_BuildSortByKey", defaults={}, funcname="BuildSortByKey", - location="imgui:2947", + location="imgui:2953", ov_cimguiname="ImGuiStorage_BuildSortByKey", ret="void", signature="()", @@ -7799,7 +7818,7 @@ local t={ cimguiname="ImGuiStorage_Clear", defaults={}, funcname="Clear", - location="imgui:2927", + location="imgui:2933", ov_cimguiname="ImGuiStorage_Clear", ret="void", signature="()", @@ -7825,7 +7844,7 @@ local t={ defaults={ default_val="false"}, funcname="GetBool", - location="imgui:2930", + location="imgui:2936", ov_cimguiname="ImGuiStorage_GetBool", ret="bool", signature="(ImGuiID,bool)const", @@ -7851,7 +7870,7 @@ local t={ defaults={ default_val="false"}, funcname="GetBoolRef", - location="imgui:2942", + location="imgui:2948", ov_cimguiname="ImGuiStorage_GetBoolRef", ret="bool*", signature="(ImGuiID,bool)", @@ -7877,7 +7896,7 @@ local t={ defaults={ default_val="0.0f"}, funcname="GetFloat", - location="imgui:2932", + location="imgui:2938", ov_cimguiname="ImGuiStorage_GetFloat", ret="float", signature="(ImGuiID,float)const", @@ -7903,7 +7922,7 @@ local t={ defaults={ default_val="0.0f"}, funcname="GetFloatRef", - location="imgui:2943", + location="imgui:2949", ov_cimguiname="ImGuiStorage_GetFloatRef", ret="float*", signature="(ImGuiID,float)", @@ -7929,7 +7948,7 @@ local t={ defaults={ default_val="0"}, funcname="GetInt", - location="imgui:2928", + location="imgui:2934", ov_cimguiname="ImGuiStorage_GetInt", ret="int", signature="(ImGuiID,int)const", @@ -7955,7 +7974,7 @@ local t={ defaults={ default_val="0"}, funcname="GetIntRef", - location="imgui:2941", + location="imgui:2947", ov_cimguiname="ImGuiStorage_GetIntRef", ret="int*", signature="(ImGuiID,int)", @@ -7977,7 +7996,7 @@ local t={ cimguiname="ImGuiStorage_GetVoidPtr", defaults={}, funcname="GetVoidPtr", - location="imgui:2934", + location="imgui:2940", ov_cimguiname="ImGuiStorage_GetVoidPtr", ret="void*", signature="(ImGuiID)const", @@ -8003,7 +8022,7 @@ local t={ defaults={ default_val="NULL"}, funcname="GetVoidPtrRef", - location="imgui:2944", + location="imgui:2950", ov_cimguiname="ImGuiStorage_GetVoidPtrRef", ret="void**", signature="(ImGuiID,void*)", @@ -8025,7 +8044,7 @@ local t={ cimguiname="ImGuiStorage_SetAllInt", defaults={}, funcname="SetAllInt", - location="imgui:2949", + location="imgui:2955", ov_cimguiname="ImGuiStorage_SetAllInt", ret="void", signature="(int)", @@ -8050,7 +8069,7 @@ local t={ cimguiname="ImGuiStorage_SetBool", defaults={}, funcname="SetBool", - location="imgui:2931", + location="imgui:2937", ov_cimguiname="ImGuiStorage_SetBool", ret="void", signature="(ImGuiID,bool)", @@ -8075,7 +8094,7 @@ local t={ cimguiname="ImGuiStorage_SetFloat", defaults={}, funcname="SetFloat", - location="imgui:2933", + location="imgui:2939", ov_cimguiname="ImGuiStorage_SetFloat", ret="void", signature="(ImGuiID,float)", @@ -8100,7 +8119,7 @@ local t={ cimguiname="ImGuiStorage_SetInt", defaults={}, funcname="SetInt", - location="imgui:2929", + location="imgui:2935", ov_cimguiname="ImGuiStorage_SetInt", ret="void", signature="(ImGuiID,int)", @@ -8125,7 +8144,7 @@ local t={ cimguiname="ImGuiStorage_SetVoidPtr", defaults={}, funcname="SetVoidPtr", - location="imgui:2935", + location="imgui:2941", ov_cimguiname="ImGuiStorage_SetVoidPtr", ret="void", signature="(ImGuiID,void*)", @@ -8245,7 +8264,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiStyle", - location="imgui:2449", + location="imgui:2455", ov_cimguiname="ImGuiStyle_ImGuiStyle", signature="()", stname="ImGuiStyle"}, @@ -8266,7 +8285,7 @@ local t={ cimguiname="ImGuiStyle_ScaleAllSizes", defaults={}, funcname="ScaleAllSizes", - location="imgui:2450", + location="imgui:2456", ov_cimguiname="ImGuiStyle_ScaleAllSizes", ret="void", signature="(float)", @@ -8283,7 +8302,7 @@ local t={ cimguiname="ImGuiStyle_destroy", defaults={}, destructor=true, - location="imgui:2449", + location="imgui:2455", ov_cimguiname="ImGuiStyle_destroy", ret="void", signature="(ImGuiStyle*)", @@ -8300,7 +8319,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTabBar", - location="imgui_internal:3087", + location="imgui_internal:3097", ov_cimguiname="ImGuiTabBar_ImGuiTabBar", signature="()", stname="ImGuiTabBar"}, @@ -8316,7 +8335,7 @@ local t={ cimguiname="ImGuiTabBar_destroy", defaults={}, destructor=true, - location="imgui_internal:3087", + location="imgui_internal:3097", ov_cimguiname="ImGuiTabBar_destroy", ret="void", signature="(ImGuiTabBar*)", @@ -8333,7 +8352,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTabItem", - location="imgui_internal:3043", + location="imgui_internal:3053", ov_cimguiname="ImGuiTabItem_ImGuiTabItem", signature="()", stname="ImGuiTabItem"}, @@ -8349,7 +8368,7 @@ local t={ cimguiname="ImGuiTabItem_destroy", defaults={}, destructor=true, - location="imgui_internal:3043", + location="imgui_internal:3053", ov_cimguiname="ImGuiTabItem_destroy", ret="void", signature="(ImGuiTabItem*)", @@ -8366,7 +8385,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTableColumnSettings", - location="imgui_internal:3353", + location="imgui_internal:3364", ov_cimguiname="ImGuiTableColumnSettings_ImGuiTableColumnSettings", signature="()", stname="ImGuiTableColumnSettings"}, @@ -8382,7 +8401,7 @@ local t={ cimguiname="ImGuiTableColumnSettings_destroy", defaults={}, destructor=true, - location="imgui_internal:3353", + location="imgui_internal:3364", ov_cimguiname="ImGuiTableColumnSettings_destroy", ret="void", signature="(ImGuiTableColumnSettings*)", @@ -8399,7 +8418,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTableColumnSortSpecs", - location="imgui:2244", + location="imgui:2249", ov_cimguiname="ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs", signature="()", stname="ImGuiTableColumnSortSpecs"}, @@ -8415,7 +8434,7 @@ local t={ cimguiname="ImGuiTableColumnSortSpecs_destroy", defaults={}, destructor=true, - location="imgui:2244", + location="imgui:2249", ov_cimguiname="ImGuiTableColumnSortSpecs_destroy", ret="void", signature="(ImGuiTableColumnSortSpecs*)", @@ -8432,7 +8451,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTableColumn", - location="imgui_internal:3146", + location="imgui_internal:3156", ov_cimguiname="ImGuiTableColumn_ImGuiTableColumn", signature="()", stname="ImGuiTableColumn"}, @@ -8448,7 +8467,7 @@ local t={ cimguiname="ImGuiTableColumn_destroy", defaults={}, destructor=true, - location="imgui_internal:3146", + location="imgui_internal:3156", ov_cimguiname="ImGuiTableColumn_destroy", ret="void", signature="(ImGuiTableColumn*)", @@ -8465,7 +8484,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTableInstanceData", - location="imgui_internal:3189", + location="imgui_internal:3199", ov_cimguiname="ImGuiTableInstanceData_ImGuiTableInstanceData", signature="()", stname="ImGuiTableInstanceData"}, @@ -8481,7 +8500,7 @@ local t={ cimguiname="ImGuiTableInstanceData_destroy", defaults={}, destructor=true, - location="imgui_internal:3189", + location="imgui_internal:3199", ov_cimguiname="ImGuiTableInstanceData_destroy", ret="void", signature="(ImGuiTableInstanceData*)", @@ -8500,7 +8519,7 @@ local t={ cimguiname="ImGuiTableSettings_GetColumnSettings", defaults={}, funcname="GetColumnSettings", - location="imgui_internal:3376", + location="imgui_internal:3387", ov_cimguiname="ImGuiTableSettings_GetColumnSettings", ret="ImGuiTableColumnSettings*", signature="()", @@ -8517,7 +8536,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTableSettings", - location="imgui_internal:3375", + location="imgui_internal:3386", ov_cimguiname="ImGuiTableSettings_ImGuiTableSettings", signature="()", stname="ImGuiTableSettings"}, @@ -8533,7 +8552,7 @@ local t={ cimguiname="ImGuiTableSettings_destroy", defaults={}, destructor=true, - location="imgui_internal:3375", + location="imgui_internal:3386", ov_cimguiname="ImGuiTableSettings_destroy", ret="void", signature="(ImGuiTableSettings*)", @@ -8550,7 +8569,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTableSortSpecs", - location="imgui:2233", + location="imgui:2238", ov_cimguiname="ImGuiTableSortSpecs_ImGuiTableSortSpecs", signature="()", stname="ImGuiTableSortSpecs"}, @@ -8566,7 +8585,7 @@ local t={ cimguiname="ImGuiTableSortSpecs_destroy", defaults={}, destructor=true, - location="imgui:2233", + location="imgui:2238", ov_cimguiname="ImGuiTableSortSpecs_destroy", ret="void", signature="(ImGuiTableSortSpecs*)", @@ -8583,7 +8602,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTableTempData", - location="imgui_internal:3338", + location="imgui_internal:3349", ov_cimguiname="ImGuiTableTempData_ImGuiTableTempData", signature="()", stname="ImGuiTableTempData"}, @@ -8599,7 +8618,7 @@ local t={ cimguiname="ImGuiTableTempData_destroy", defaults={}, destructor=true, - location="imgui_internal:3338", + location="imgui_internal:3349", ov_cimguiname="ImGuiTableTempData_destroy", ret="void", signature="(ImGuiTableTempData*)", @@ -8616,7 +8635,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTable", - location="imgui_internal:3309", + location="imgui_internal:3320", ov_cimguiname="ImGuiTable_ImGuiTable", signature="()", stname="ImGuiTable"}, @@ -8632,7 +8651,7 @@ local t={ cimguiname="ImGuiTable_destroy", defaults={}, destructor=true, - location="imgui_internal:3310", + location="imgui_internal:3321", ov_cimguiname="ImGuiTable_destroy", realdestructor=true, ret="void", @@ -8650,7 +8669,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTextBuffer", - location="imgui:2886", + location="imgui:2892", ov_cimguiname="ImGuiTextBuffer_ImGuiTextBuffer", signature="()", stname="ImGuiTextBuffer"}, @@ -8675,7 +8694,7 @@ local t={ defaults={ str_end="NULL"}, funcname="append", - location="imgui:2896", + location="imgui:2902", ov_cimguiname="ImGuiTextBuffer_append", ret="void", signature="(const char*,const char*)", @@ -8701,7 +8720,7 @@ local t={ defaults={}, funcname="appendf", isvararg="...)", - location="imgui:2897", + location="imgui:2903", manual=true, ov_cimguiname="ImGuiTextBuffer_appendf", ret="void", @@ -8727,7 +8746,7 @@ local t={ cimguiname="ImGuiTextBuffer_appendfv", defaults={}, funcname="appendfv", - location="imgui:2898", + location="imgui:2904", ov_cimguiname="ImGuiTextBuffer_appendfv", ret="void", signature="(const char*,va_list)", @@ -8746,7 +8765,7 @@ local t={ cimguiname="ImGuiTextBuffer_begin", defaults={}, funcname="begin", - location="imgui:2888", + location="imgui:2894", ov_cimguiname="ImGuiTextBuffer_begin", ret="const char*", signature="()const", @@ -8765,7 +8784,7 @@ local t={ cimguiname="ImGuiTextBuffer_c_str", defaults={}, funcname="c_str", - location="imgui:2895", + location="imgui:2901", ov_cimguiname="ImGuiTextBuffer_c_str", ret="const char*", signature="()const", @@ -8784,7 +8803,7 @@ local t={ cimguiname="ImGuiTextBuffer_clear", defaults={}, funcname="clear", - location="imgui:2892", + location="imgui:2898", ov_cimguiname="ImGuiTextBuffer_clear", ret="void", signature="()", @@ -8801,7 +8820,7 @@ local t={ cimguiname="ImGuiTextBuffer_destroy", defaults={}, destructor=true, - location="imgui:2886", + location="imgui:2892", ov_cimguiname="ImGuiTextBuffer_destroy", ret="void", signature="(ImGuiTextBuffer*)", @@ -8820,7 +8839,7 @@ local t={ cimguiname="ImGuiTextBuffer_empty", defaults={}, funcname="empty", - location="imgui:2891", + location="imgui:2897", ov_cimguiname="ImGuiTextBuffer_empty", ret="bool", signature="()const", @@ -8839,7 +8858,7 @@ local t={ cimguiname="ImGuiTextBuffer_end", defaults={}, funcname="end", - location="imgui:2889", + location="imgui:2895", ov_cimguiname="ImGuiTextBuffer_end", ret="const char*", signature="()const", @@ -8861,7 +8880,7 @@ local t={ cimguiname="ImGuiTextBuffer_reserve", defaults={}, funcname="reserve", - location="imgui:2894", + location="imgui:2900", ov_cimguiname="ImGuiTextBuffer_reserve", ret="void", signature="(int)", @@ -8883,7 +8902,7 @@ local t={ cimguiname="ImGuiTextBuffer_resize", defaults={}, funcname="resize", - location="imgui:2893", + location="imgui:2899", ov_cimguiname="ImGuiTextBuffer_resize", ret="void", signature="(int)", @@ -8902,7 +8921,7 @@ local t={ cimguiname="ImGuiTextBuffer_size", defaults={}, funcname="size", - location="imgui:2890", + location="imgui:2896", ov_cimguiname="ImGuiTextBuffer_size", ret="int", signature="()const", @@ -8921,7 +8940,7 @@ local t={ cimguiname="ImGuiTextFilter_Build", defaults={}, funcname="Build", - location="imgui:2859", + location="imgui:2865", ov_cimguiname="ImGuiTextFilter_Build", ret="void", signature="()", @@ -8940,7 +8959,7 @@ local t={ cimguiname="ImGuiTextFilter_Clear", defaults={}, funcname="Clear", - location="imgui:2860", + location="imgui:2866", ov_cimguiname="ImGuiTextFilter_Clear", ret="void", signature="()", @@ -8967,7 +8986,7 @@ local t={ label="\"Filter(inc,-exc)\"", width="0.0f"}, funcname="Draw", - location="imgui:2857", + location="imgui:2863", ov_cimguiname="ImGuiTextFilter_Draw", ret="bool", signature="(const char*,float)", @@ -8988,7 +9007,7 @@ local t={ defaults={ default_filter="\"\""}, funcname="ImGuiTextFilter", - location="imgui:2856", + location="imgui:2862", ov_cimguiname="ImGuiTextFilter_ImGuiTextFilter", signature="(const char*)", stname="ImGuiTextFilter"}, @@ -9006,7 +9025,7 @@ local t={ cimguiname="ImGuiTextFilter_IsActive", defaults={}, funcname="IsActive", - location="imgui:2861", + location="imgui:2867", ov_cimguiname="ImGuiTextFilter_IsActive", ret="bool", signature="()const", @@ -9032,7 +9051,7 @@ local t={ defaults={ text_end="NULL"}, funcname="PassFilter", - location="imgui:2858", + location="imgui:2864", ov_cimguiname="ImGuiTextFilter_PassFilter", ret="bool", signature="(const char*,const char*)const", @@ -9049,7 +9068,7 @@ local t={ cimguiname="ImGuiTextFilter_destroy", defaults={}, destructor=true, - location="imgui:2856", + location="imgui:2862", ov_cimguiname="ImGuiTextFilter_destroy", ret="void", signature="(ImGuiTextFilter*)", @@ -9182,7 +9201,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTextRange", - location="imgui:2869", + location="imgui:2875", ov_cimguiname="ImGuiTextRange_ImGuiTextRange_Nil", signature="()", stname="ImGuiTextRange"}, @@ -9202,7 +9221,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTextRange", - location="imgui:2870", + location="imgui:2876", ov_cimguiname="ImGuiTextRange_ImGuiTextRange_Str", signature="(const char*,const char*)", stname="ImGuiTextRange"}, @@ -9219,7 +9238,7 @@ local t={ cimguiname="ImGuiTextRange_destroy", defaults={}, destructor=true, - location="imgui:2869", + location="imgui:2875", ov_cimguiname="ImGuiTextRange_destroy", ret="void", signature="(ImGuiTextRange*)", @@ -9238,7 +9257,7 @@ local t={ cimguiname="ImGuiTextRange_empty", defaults={}, funcname="empty", - location="imgui:2871", + location="imgui:2877", ov_cimguiname="ImGuiTextRange_empty", ret="bool", signature="()const", @@ -9263,7 +9282,7 @@ local t={ cimguiname="ImGuiTextRange_split", defaults={}, funcname="split", - location="imgui:2872", + location="imgui:2878", ov_cimguiname="ImGuiTextRange_split", ret="void", signature="(char,ImVector_ImGuiTextRange*)const", @@ -9282,7 +9301,7 @@ local t={ cimguiname="ImGuiTypingSelectState_Clear", defaults={}, funcname="Clear", - location="imgui_internal:1833", + location="imgui_internal:1834", ov_cimguiname="ImGuiTypingSelectState_Clear", ret="void", signature="()", @@ -9299,7 +9318,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTypingSelectState", - location="imgui_internal:1832", + location="imgui_internal:1833", ov_cimguiname="ImGuiTypingSelectState_ImGuiTypingSelectState", signature="()", stname="ImGuiTypingSelectState"}, @@ -9315,7 +9334,7 @@ local t={ cimguiname="ImGuiTypingSelectState_destroy", defaults={}, destructor=true, - location="imgui_internal:1832", + location="imgui_internal:1833", ov_cimguiname="ImGuiTypingSelectState_destroy", ret="void", signature="(ImGuiTypingSelectState*)", @@ -9338,7 +9357,7 @@ local t={ conv="ImVec2", defaults={}, funcname="CalcWorkRectPos", - location="imgui_internal:2164", + location="imgui_internal:2165", nonUDT=1, ov_cimguiname="ImGuiViewportP_CalcWorkRectPos", ret="ImVec2_c", @@ -9365,7 +9384,7 @@ local t={ conv="ImVec2", defaults={}, funcname="CalcWorkRectSize", - location="imgui_internal:2165", + location="imgui_internal:2166", nonUDT=1, ov_cimguiname="ImGuiViewportP_CalcWorkRectSize", ret="ImVec2_c", @@ -9385,7 +9404,7 @@ local t={ cimguiname="ImGuiViewportP_ClearRequestFlags", defaults={}, funcname="ClearRequestFlags", - location="imgui_internal:2161", + location="imgui_internal:2162", ov_cimguiname="ImGuiViewportP_ClearRequestFlags", ret="void", signature="()", @@ -9405,7 +9424,7 @@ local t={ conv="ImRect", defaults={}, funcname="GetBuildWorkRect", - location="imgui_internal:2171", + location="imgui_internal:2172", nonUDT=1, ov_cimguiname="ImGuiViewportP_GetBuildWorkRect", ret="ImRect_c", @@ -9426,7 +9445,7 @@ local t={ conv="ImRect", defaults={}, funcname="GetMainRect", - location="imgui_internal:2169", + location="imgui_internal:2170", nonUDT=1, ov_cimguiname="ImGuiViewportP_GetMainRect", ret="ImRect_c", @@ -9447,7 +9466,7 @@ local t={ conv="ImRect", defaults={}, funcname="GetWorkRect", - location="imgui_internal:2170", + location="imgui_internal:2171", nonUDT=1, ov_cimguiname="ImGuiViewportP_GetWorkRect", ret="ImRect_c", @@ -9465,7 +9484,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiViewportP", - location="imgui_internal:2159", + location="imgui_internal:2160", ov_cimguiname="ImGuiViewportP_ImGuiViewportP", signature="()", stname="ImGuiViewportP"}, @@ -9483,7 +9502,7 @@ local t={ cimguiname="ImGuiViewportP_UpdateWorkRect", defaults={}, funcname="UpdateWorkRect", - location="imgui_internal:2166", + location="imgui_internal:2167", ov_cimguiname="ImGuiViewportP_UpdateWorkRect", ret="void", signature="()", @@ -9500,7 +9519,7 @@ local t={ cimguiname="ImGuiViewportP_destroy", defaults={}, destructor=true, - location="imgui_internal:2160", + location="imgui_internal:2161", ov_cimguiname="ImGuiViewportP_destroy", realdestructor=true, ret="void", @@ -9521,13 +9540,32 @@ local t={ conv="ImVec2", defaults={}, funcname="GetCenter", - location="imgui:4110", + location="imgui:4135", nonUDT=1, ov_cimguiname="ImGuiViewport_GetCenter", ret="ImVec2_c", signature="()const", stname="ImGuiViewport"}, ["()const"]=nil}, + ImGuiViewport_GetDebugName={ + [1]={ + args="(ImGuiViewport* self)", + argsT={ + [1]={ + name="self", + type="ImGuiViewport*"}}, + argsoriginal="()", + call_args="()", + call_args_old="()", + cimguiname="ImGuiViewport_GetDebugName", + defaults={}, + funcname="GetDebugName", + location="imgui:4137", + ov_cimguiname="ImGuiViewport_GetDebugName", + ret="const char*", + signature="()const", + stname="ImGuiViewport"}, + ["()const"]=nil}, ImGuiViewport_GetWorkCenter={ [1]={ args="(ImGuiViewport* self)", @@ -9542,7 +9580,7 @@ local t={ conv="ImVec2", defaults={}, funcname="GetWorkCenter", - location="imgui:4111", + location="imgui:4136", nonUDT=1, ov_cimguiname="ImGuiViewport_GetWorkCenter", ret="ImVec2_c", @@ -9560,7 +9598,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiViewport", - location="imgui:4106", + location="imgui:4131", ov_cimguiname="ImGuiViewport_ImGuiViewport", signature="()", stname="ImGuiViewport"}, @@ -9576,7 +9614,7 @@ local t={ cimguiname="ImGuiViewport_destroy", defaults={}, destructor=true, - location="imgui:4107", + location="imgui:4132", ov_cimguiname="ImGuiViewport_destroy", realdestructor=true, ret="void", @@ -9594,7 +9632,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiWindowClass", - location="imgui:2807", + location="imgui:2813", ov_cimguiname="ImGuiWindowClass_ImGuiWindowClass", signature="()", stname="ImGuiWindowClass"}, @@ -9610,7 +9648,7 @@ local t={ cimguiname="ImGuiWindowClass_destroy", defaults={}, destructor=true, - location="imgui:2807", + location="imgui:2813", ov_cimguiname="ImGuiWindowClass_destroy", ret="void", signature="(ImGuiWindowClass*)", @@ -9629,7 +9667,7 @@ local t={ cimguiname="ImGuiWindowSettings_GetName", defaults={}, funcname="GetName", - location="imgui_internal:2197", + location="imgui_internal:2198", ov_cimguiname="ImGuiWindowSettings_GetName", ret="char*", signature="()", @@ -9646,7 +9684,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiWindowSettings", - location="imgui_internal:2196", + location="imgui_internal:2197", ov_cimguiname="ImGuiWindowSettings_ImGuiWindowSettings", signature="()", stname="ImGuiWindowSettings"}, @@ -9662,7 +9700,7 @@ local t={ cimguiname="ImGuiWindowSettings_destroy", defaults={}, destructor=true, - location="imgui_internal:2196", + location="imgui_internal:2197", ov_cimguiname="ImGuiWindowSettings_destroy", ret="void", signature="(ImGuiWindowSettings*)", @@ -9688,7 +9726,7 @@ local t={ defaults={ str_end="NULL"}, funcname="GetID", - location="imgui_internal:2989", + location="imgui_internal:2999", ov_cimguiname="ImGuiWindow_GetID_Str", ret="ImGuiID", signature="(const char*,const char*)", @@ -9708,7 +9746,7 @@ local t={ cimguiname="ImGuiWindow_GetID", defaults={}, funcname="GetID", - location="imgui_internal:2990", + location="imgui_internal:3000", ov_cimguiname="ImGuiWindow_GetID_Ptr", ret="ImGuiID", signature="(const void*)", @@ -9728,7 +9766,7 @@ local t={ cimguiname="ImGuiWindow_GetID", defaults={}, funcname="GetID", - location="imgui_internal:2991", + location="imgui_internal:3001", ov_cimguiname="ImGuiWindow_GetID_Int", ret="ImGuiID", signature="(int)", @@ -9752,7 +9790,7 @@ local t={ cimguiname="ImGuiWindow_GetIDFromPos", defaults={}, funcname="GetIDFromPos", - location="imgui_internal:2992", + location="imgui_internal:3002", ov_cimguiname="ImGuiWindow_GetIDFromPos", ret="ImGuiID", signature="(const ImVec2)", @@ -9774,7 +9812,7 @@ local t={ cimguiname="ImGuiWindow_GetIDFromRectangle", defaults={}, funcname="GetIDFromRectangle", - location="imgui_internal:2993", + location="imgui_internal:3003", ov_cimguiname="ImGuiWindow_GetIDFromRectangle", ret="ImGuiID", signature="(const ImRect)", @@ -9797,7 +9835,7 @@ local t={ constructor=true, defaults={}, funcname="ImGuiWindow", - location="imgui_internal:2985", + location="imgui_internal:2995", ov_cimguiname="ImGuiWindow_ImGuiWindow", signature="(ImGuiContext*,const char*)", stname="ImGuiWindow"}, @@ -9816,7 +9854,7 @@ local t={ conv="ImRect", defaults={}, funcname="MenuBarRect", - location="imgui_internal:2998", + location="imgui_internal:3008", nonUDT=1, ov_cimguiname="ImGuiWindow_MenuBarRect", ret="ImRect_c", @@ -9837,7 +9875,7 @@ local t={ conv="ImRect", defaults={}, funcname="Rect", - location="imgui_internal:2996", + location="imgui_internal:3006", nonUDT=1, ov_cimguiname="ImGuiWindow_Rect", ret="ImRect_c", @@ -9858,7 +9896,7 @@ local t={ conv="ImRect", defaults={}, funcname="TitleBarRect", - location="imgui_internal:2997", + location="imgui_internal:3007", nonUDT=1, ov_cimguiname="ImGuiWindow_TitleBarRect", ret="ImRect_c", @@ -9876,7 +9914,7 @@ local t={ cimguiname="ImGuiWindow_destroy", defaults={}, destructor=true, - location="imgui_internal:2987", + location="imgui_internal:2997", ov_cimguiname="ImGuiWindow_destroy", realdestructor=true, ret="void", @@ -11396,7 +11434,7 @@ local t={ cimguiname="ImTextureData_Create", defaults={}, funcname="Create", - location="imgui:3642", + location="imgui:3665", ov_cimguiname="ImTextureData_Create", ret="void", signature="(ImTextureFormat,int,int)", @@ -11415,7 +11453,7 @@ local t={ cimguiname="ImTextureData_DestroyPixels", defaults={}, funcname="DestroyPixels", - location="imgui:3643", + location="imgui:3666", ov_cimguiname="ImTextureData_DestroyPixels", ret="void", signature="()", @@ -11434,7 +11472,7 @@ local t={ cimguiname="ImTextureData_GetPitch", defaults={}, funcname="GetPitch", - location="imgui:3647", + location="imgui:3670", ov_cimguiname="ImTextureData_GetPitch", ret="int", signature="()const", @@ -11453,7 +11491,7 @@ local t={ cimguiname="ImTextureData_GetPixels", defaults={}, funcname="GetPixels", - location="imgui:3644", + location="imgui:3667", ov_cimguiname="ImTextureData_GetPixels", ret="void*", signature="()", @@ -11478,7 +11516,7 @@ local t={ cimguiname="ImTextureData_GetPixelsAt", defaults={}, funcname="GetPixelsAt", - location="imgui:3645", + location="imgui:3668", ov_cimguiname="ImTextureData_GetPixelsAt", ret="void*", signature="(int,int)", @@ -11497,7 +11535,7 @@ local t={ cimguiname="ImTextureData_GetSizeInBytes", defaults={}, funcname="GetSizeInBytes", - location="imgui:3646", + location="imgui:3669", ov_cimguiname="ImTextureData_GetSizeInBytes", ret="int", signature="()const", @@ -11516,7 +11554,7 @@ local t={ cimguiname="ImTextureData_GetTexID", defaults={}, funcname="GetTexID", - location="imgui:3649", + location="imgui:3672", ov_cimguiname="ImTextureData_GetTexID", ret="ImTextureID", signature="()const", @@ -11536,7 +11574,7 @@ local t={ conv="ImTextureRef", defaults={}, funcname="GetTexRef", - location="imgui:3648", + location="imgui:3671", nonUDT=1, ov_cimguiname="ImTextureData_GetTexRef", ret="ImTextureRef_c", @@ -11554,7 +11592,7 @@ local t={ constructor=true, defaults={}, funcname="ImTextureData", - location="imgui:3640", + location="imgui:3663", ov_cimguiname="ImTextureData_ImTextureData", signature="()", stname="ImTextureData"}, @@ -11575,7 +11613,7 @@ local t={ cimguiname="ImTextureData_SetStatus", defaults={}, funcname="SetStatus", - location="imgui:3655", + location="imgui:3678", ov_cimguiname="ImTextureData_SetStatus", ret="void", signature="(ImTextureStatus)", @@ -11597,7 +11635,7 @@ local t={ cimguiname="ImTextureData_SetTexID", defaults={}, funcname="SetTexID", - location="imgui:3654", + location="imgui:3677", ov_cimguiname="ImTextureData_SetTexID", ret="void", signature="(ImTextureID)", @@ -11614,7 +11652,7 @@ local t={ cimguiname="ImTextureData_destroy", defaults={}, destructor=true, - location="imgui:3641", + location="imgui:3664", ov_cimguiname="ImTextureData_destroy", realdestructor=true, ret="void", @@ -11634,7 +11672,7 @@ local t={ cimguiname="ImTextureRef_GetTexID", defaults={}, funcname="GetTexID", - location="imgui:378", + location="imgui:380", ov_cimguiname="ImTextureRef_GetTexID", ret="ImTextureID", signature="()const", @@ -11651,7 +11689,7 @@ local t={ constructor=true, defaults={}, funcname="ImTextureRef", - location="imgui:372", + location="imgui:374", ov_cimguiname="ImTextureRef_ImTextureRef_Nil", signature="()", stname="ImTextureRef"}, @@ -11668,7 +11706,7 @@ local t={ constructor=true, defaults={}, funcname="ImTextureRef", - location="imgui:373", + location="imgui:375", ov_cimguiname="ImTextureRef_ImTextureRef_TextureID", signature="(ImTextureID)", stname="ImTextureRef"}, @@ -11685,7 +11723,7 @@ local t={ cimguiname="ImTextureRef_destroy", defaults={}, destructor=true, - location="imgui:372", + location="imgui:374", ov_cimguiname="ImTextureRef_destroy", ret="void", signature="(ImTextureRef*)", @@ -11993,7 +12031,7 @@ local t={ constructor=true, defaults={}, funcname="ImVector", - location="imgui:2301", + location="imgui:2306", ov_cimguiname="ImVector_ImVector_Nil", signature="()", stname="ImVector", @@ -12011,7 +12049,7 @@ local t={ constructor=true, defaults={}, funcname="ImVector", - location="imgui:2302", + location="imgui:2307", ov_cimguiname="ImVector_ImVector_Vector_T_", signature="(const ImVector_T )", stname="ImVector", @@ -12034,7 +12072,7 @@ local t={ cimguiname="ImVector__grow_capacity", defaults={}, funcname="_grow_capacity", - location="imgui:2328", + location="imgui:2333", ov_cimguiname="ImVector__grow_capacity", ret="int", signature="(int)const", @@ -12054,7 +12092,7 @@ local t={ cimguiname="ImVector_back", defaults={}, funcname="back", - location="imgui:2324", + location="imgui:2329", ov_cimguiname="ImVector_back_Nil", ret="T*", retref="&", @@ -12073,7 +12111,7 @@ local t={ cimguiname="ImVector_back", defaults={}, funcname="back", - location="imgui:2325", + location="imgui:2330", ov_cimguiname="ImVector_back__const", ret="const T*", retref="&", @@ -12095,7 +12133,7 @@ local t={ cimguiname="ImVector_begin", defaults={}, funcname="begin", - location="imgui:2318", + location="imgui:2323", ov_cimguiname="ImVector_begin_Nil", ret="T*", signature="()", @@ -12113,7 +12151,7 @@ local t={ cimguiname="ImVector_begin", defaults={}, funcname="begin", - location="imgui:2319", + location="imgui:2324", ov_cimguiname="ImVector_begin__const", ret="const T*", signature="()const", @@ -12134,7 +12172,7 @@ local t={ cimguiname="ImVector_capacity", defaults={}, funcname="capacity", - location="imgui:2314", + location="imgui:2319", ov_cimguiname="ImVector_capacity", ret="int", signature="()const", @@ -12154,7 +12192,7 @@ local t={ cimguiname="ImVector_clear", defaults={}, funcname="clear", - location="imgui:2306", + location="imgui:2311", ov_cimguiname="ImVector_clear", ret="void", signature="()", @@ -12174,7 +12212,7 @@ local t={ cimguiname="ImVector_clear_delete", defaults={}, funcname="clear_delete", - location="imgui:2307", + location="imgui:2312", ov_cimguiname="ImVector_clear_delete", ret="void", signature="()", @@ -12194,7 +12232,7 @@ local t={ cimguiname="ImVector_clear_destruct", defaults={}, funcname="clear_destruct", - location="imgui:2308", + location="imgui:2313", ov_cimguiname="ImVector_clear_destruct", ret="void", signature="()", @@ -12217,7 +12255,7 @@ local t={ cimguiname="ImVector_contains", defaults={}, funcname="contains", - location="imgui:2343", + location="imgui:2348", ov_cimguiname="ImVector_contains", ret="bool", signature="(const T)const", @@ -12235,7 +12273,7 @@ local t={ cimguiname="ImVector_destroy", defaults={}, destructor=true, - location="imgui:2304", + location="imgui:2309", ov_cimguiname="ImVector_destroy", realdestructor=true, ret="void", @@ -12256,7 +12294,7 @@ local t={ cimguiname="ImVector_empty", defaults={}, funcname="empty", - location="imgui:2310", + location="imgui:2315", ov_cimguiname="ImVector_empty", ret="bool", signature="()const", @@ -12276,7 +12314,7 @@ local t={ cimguiname="ImVector_end", defaults={}, funcname="end", - location="imgui:2320", + location="imgui:2325", ov_cimguiname="ImVector_end_Nil", ret="T*", signature="()", @@ -12294,7 +12332,7 @@ local t={ cimguiname="ImVector_end", defaults={}, funcname="end", - location="imgui:2321", + location="imgui:2326", ov_cimguiname="ImVector_end__const", ret="const T*", signature="()const", @@ -12318,7 +12356,7 @@ local t={ cimguiname="ImVector_erase", defaults={}, funcname="erase", - location="imgui:2339", + location="imgui:2344", ov_cimguiname="ImVector_erase_Nil", ret="T*", signature="(const T*)", @@ -12342,7 +12380,7 @@ local t={ cimguiname="ImVector_erase", defaults={}, funcname="erase", - location="imgui:2340", + location="imgui:2345", ov_cimguiname="ImVector_erase_TPtr", ret="T*", signature="(const T*,const T*)", @@ -12366,7 +12404,7 @@ local t={ cimguiname="ImVector_erase_unsorted", defaults={}, funcname="erase_unsorted", - location="imgui:2341", + location="imgui:2346", ov_cimguiname="ImVector_erase_unsorted", ret="T*", signature="(const T*)", @@ -12389,7 +12427,7 @@ local t={ cimguiname="ImVector_find", defaults={}, funcname="find", - location="imgui:2344", + location="imgui:2349", ov_cimguiname="ImVector_find_Nil", ret="T*", signature="(const T)", @@ -12410,7 +12448,7 @@ local t={ cimguiname="ImVector_find", defaults={}, funcname="find", - location="imgui:2345", + location="imgui:2350", ov_cimguiname="ImVector_find__const", ret="const T*", signature="(const T)const", @@ -12434,7 +12472,7 @@ local t={ cimguiname="ImVector_find_erase", defaults={}, funcname="find_erase", - location="imgui:2347", + location="imgui:2352", ov_cimguiname="ImVector_find_erase", ret="bool", signature="(const T)", @@ -12457,7 +12495,7 @@ local t={ cimguiname="ImVector_find_erase_unsorted", defaults={}, funcname="find_erase_unsorted", - location="imgui:2348", + location="imgui:2353", ov_cimguiname="ImVector_find_erase_unsorted", ret="bool", signature="(const T)", @@ -12480,7 +12518,7 @@ local t={ cimguiname="ImVector_find_index", defaults={}, funcname="find_index", - location="imgui:2346", + location="imgui:2351", ov_cimguiname="ImVector_find_index", ret="int", signature="(const T)const", @@ -12500,7 +12538,7 @@ local t={ cimguiname="ImVector_front", defaults={}, funcname="front", - location="imgui:2322", + location="imgui:2327", ov_cimguiname="ImVector_front_Nil", ret="T*", retref="&", @@ -12519,7 +12557,7 @@ local t={ cimguiname="ImVector_front", defaults={}, funcname="front", - location="imgui:2323", + location="imgui:2328", ov_cimguiname="ImVector_front__const", ret="const T*", retref="&", @@ -12544,7 +12582,7 @@ local t={ cimguiname="ImVector_index_from_ptr", defaults={}, funcname="index_from_ptr", - location="imgui:2349", + location="imgui:2354", ov_cimguiname="ImVector_index_from_ptr", ret="int", signature="(const T*)const", @@ -12570,7 +12608,7 @@ local t={ cimguiname="ImVector_insert", defaults={}, funcname="insert", - location="imgui:2342", + location="imgui:2347", ov_cimguiname="ImVector_insert", ret="T*", signature="(const T*,const T)", @@ -12590,7 +12628,7 @@ local t={ cimguiname="ImVector_max_size", defaults={}, funcname="max_size", - location="imgui:2313", + location="imgui:2318", ov_cimguiname="ImVector_max_size", ret="int", signature="()const", @@ -12610,7 +12648,7 @@ local t={ cimguiname="ImVector_pop_back", defaults={}, funcname="pop_back", - location="imgui:2337", + location="imgui:2342", ov_cimguiname="ImVector_pop_back", ret="void", signature="()", @@ -12633,7 +12671,7 @@ local t={ cimguiname="ImVector_push_back", defaults={}, funcname="push_back", - location="imgui:2336", + location="imgui:2341", ov_cimguiname="ImVector_push_back", ret="void", signature="(const T)", @@ -12656,7 +12694,7 @@ local t={ cimguiname="ImVector_push_front", defaults={}, funcname="push_front", - location="imgui:2338", + location="imgui:2343", ov_cimguiname="ImVector_push_front", ret="void", signature="(const T)", @@ -12679,7 +12717,7 @@ local t={ cimguiname="ImVector_reserve", defaults={}, funcname="reserve", - location="imgui:2332", + location="imgui:2337", ov_cimguiname="ImVector_reserve", ret="void", signature="(int)", @@ -12702,7 +12740,7 @@ local t={ cimguiname="ImVector_reserve_discard", defaults={}, funcname="reserve_discard", - location="imgui:2333", + location="imgui:2338", ov_cimguiname="ImVector_reserve_discard", ret="void", signature="(int)", @@ -12725,7 +12763,7 @@ local t={ cimguiname="ImVector_resize", defaults={}, funcname="resize", - location="imgui:2329", + location="imgui:2334", ov_cimguiname="ImVector_resize_Nil", ret="void", signature="(int)", @@ -12749,7 +12787,7 @@ local t={ cimguiname="ImVector_resize", defaults={}, funcname="resize", - location="imgui:2330", + location="imgui:2335", ov_cimguiname="ImVector_resize_T", ret="void", signature="(int,const T)", @@ -12773,7 +12811,7 @@ local t={ cimguiname="ImVector_shrink", defaults={}, funcname="shrink", - location="imgui:2331", + location="imgui:2336", ov_cimguiname="ImVector_shrink", ret="void", signature="(int)", @@ -12793,7 +12831,7 @@ local t={ cimguiname="ImVector_size", defaults={}, funcname="size", - location="imgui:2311", + location="imgui:2316", ov_cimguiname="ImVector_size", ret="int", signature="()const", @@ -12813,7 +12851,7 @@ local t={ cimguiname="ImVector_size_in_bytes", defaults={}, funcname="size_in_bytes", - location="imgui:2312", + location="imgui:2317", ov_cimguiname="ImVector_size_in_bytes", ret="int", signature="()const", @@ -12837,7 +12875,7 @@ local t={ cimguiname="ImVector_swap", defaults={}, funcname="swap", - location="imgui:2326", + location="imgui:2331", ov_cimguiname="ImVector_swap", ret="void", signature="(ImVector_T *)", @@ -12861,7 +12899,7 @@ local t={ defaults={ flags="0"}, funcname="AcceptDragDropPayload", - location="imgui:1012", + location="imgui:1015", namespace="ImGui", ov_cimguiname="igAcceptDragDropPayload", ret="const ImGuiPayload*", @@ -12881,7 +12919,7 @@ local t={ cimguiname="igActivateItemByID", defaults={}, funcname="ActivateItemByID", - location="imgui_internal:3603", + location="imgui_internal:3616", namespace="ImGui", ov_cimguiname="igActivateItemByID", ret="void", @@ -12904,7 +12942,7 @@ local t={ cimguiname="igAddContextHook", defaults={}, funcname="AddContextHook", - location="imgui_internal:3452", + location="imgui_internal:3463", namespace="ImGui", ov_cimguiname="igAddContextHook", ret="ImGuiID", @@ -12930,7 +12968,7 @@ local t={ cimguiname="igAddDrawListToDrawDataEx", defaults={}, funcname="AddDrawListToDrawDataEx", - location="imgui_internal:3444", + location="imgui_internal:3455", namespace="ImGui", ov_cimguiname="igAddDrawListToDrawDataEx", ret="void", @@ -12950,7 +12988,7 @@ local t={ cimguiname="igAddSettingsHandler", defaults={}, funcname="AddSettingsHandler", - location="imgui_internal:3479", + location="imgui_internal:3490", namespace="ImGui", ov_cimguiname="igAddSettingsHandler", ret="void", @@ -12967,7 +13005,7 @@ local t={ cimguiname="igAlignTextToFramePadding", defaults={}, funcname="AlignTextToFramePadding", - location="imgui:594", + location="imgui:596", namespace="ImGui", ov_cimguiname="igAlignTextToFramePadding", ret="void", @@ -12990,7 +13028,7 @@ local t={ cimguiname="igArrowButton", defaults={}, funcname="ArrowButton", - location="imgui:643", + location="imgui:645", namespace="ImGui", ov_cimguiname="igArrowButton", ret="bool", @@ -13020,7 +13058,7 @@ local t={ defaults={ flags="0"}, funcname="ArrowButtonEx", - location="imgui_internal:3920", + location="imgui_internal:3934", namespace="ImGui", ov_cimguiname="igArrowButtonEx", ret="bool", @@ -13048,7 +13086,7 @@ local t={ flags="0", p_open="NULL"}, funcname="Begin", - location="imgui:440", + location="imgui:442", namespace="ImGui", ov_cimguiname="igBegin", ret="bool", @@ -13077,7 +13115,7 @@ local t={ cimguiname="igBeginBoxSelect", defaults={}, funcname="BeginBoxSelect", - location="imgui_internal:3775", + location="imgui_internal:3788", namespace="ImGui", ov_cimguiname="igBeginBoxSelect", ret="bool", @@ -13109,7 +13147,7 @@ local t={ size="ImVec2(0,0)", window_flags="0"}, funcname="BeginChild", - location="imgui:461", + location="imgui:463", namespace="ImGui", ov_cimguiname="igBeginChild_Str", ret="bool", @@ -13139,7 +13177,7 @@ local t={ size="ImVec2(0,0)", window_flags="0"}, funcname="BeginChild", - location="imgui:462", + location="imgui:464", namespace="ImGui", ov_cimguiname="igBeginChild_ID", ret="bool", @@ -13172,7 +13210,7 @@ local t={ cimguiname="igBeginChildEx", defaults={}, funcname="BeginChildEx", - location="imgui_internal:3548", + location="imgui_internal:3559", namespace="ImGui", ov_cimguiname="igBeginChildEx", ret="bool", @@ -13199,7 +13237,7 @@ local t={ defaults={ flags="0"}, funcname="BeginColumns", - location="imgui_internal:3788", + location="imgui_internal:3801", namespace="ImGui", ov_cimguiname="igBeginColumns", ret="void", @@ -13226,7 +13264,7 @@ local t={ defaults={ flags="0"}, funcname="BeginCombo", - location="imgui:667", + location="imgui:669", namespace="ImGui", ov_cimguiname="igBeginCombo", ret="bool", @@ -13252,7 +13290,7 @@ local t={ cimguiname="igBeginComboPopup", defaults={}, funcname="BeginComboPopup", - location="imgui_internal:3576", + location="imgui_internal:3589", namespace="ImGui", ov_cimguiname="igBeginComboPopup", ret="bool", @@ -13269,7 +13307,7 @@ local t={ cimguiname="igBeginComboPreview", defaults={}, funcname="BeginComboPreview", - location="imgui_internal:3577", + location="imgui_internal:3590", namespace="ImGui", ov_cimguiname="igBeginComboPreview", ret="bool", @@ -13290,7 +13328,7 @@ local t={ defaults={ disabled="true"}, funcname="BeginDisabled", - location="imgui:1021", + location="imgui:1024", namespace="ImGui", ov_cimguiname="igBeginDisabled", ret="void", @@ -13307,7 +13345,7 @@ local t={ cimguiname="igBeginDisabledOverrideReenable", defaults={}, funcname="BeginDisabledOverrideReenable", - location="imgui_internal:3538", + location="imgui_internal:3549", namespace="ImGui", ov_cimguiname="igBeginDisabledOverrideReenable", ret="void", @@ -13327,7 +13365,7 @@ local t={ cimguiname="igBeginDockableDragDropSource", defaults={}, funcname="BeginDockableDragDropSource", - location="imgui_internal:3717", + location="imgui_internal:3730", namespace="ImGui", ov_cimguiname="igBeginDockableDragDropSource", ret="void", @@ -13347,7 +13385,7 @@ local t={ cimguiname="igBeginDockableDragDropTarget", defaults={}, funcname="BeginDockableDragDropTarget", - location="imgui_internal:3718", + location="imgui_internal:3731", namespace="ImGui", ov_cimguiname="igBeginDockableDragDropTarget", ret="void", @@ -13370,7 +13408,7 @@ local t={ cimguiname="igBeginDocked", defaults={}, funcname="BeginDocked", - location="imgui_internal:3716", + location="imgui_internal:3729", namespace="ImGui", ov_cimguiname="igBeginDocked", ret="void", @@ -13391,7 +13429,7 @@ local t={ defaults={ flags="0"}, funcname="BeginDragDropSource", - location="imgui:1008", + location="imgui:1011", namespace="ImGui", ov_cimguiname="igBeginDragDropSource", ret="bool", @@ -13408,7 +13446,7 @@ local t={ cimguiname="igBeginDragDropTarget", defaults={}, funcname="BeginDragDropTarget", - location="imgui:1011", + location="imgui:1014", namespace="ImGui", ov_cimguiname="igBeginDragDropTarget", ret="bool", @@ -13431,7 +13469,7 @@ local t={ cimguiname="igBeginDragDropTargetCustom", defaults={}, funcname="BeginDragDropTargetCustom", - location="imgui_internal:3759", + location="imgui_internal:3772", namespace="ImGui", ov_cimguiname="igBeginDragDropTargetCustom", ret="bool", @@ -13455,7 +13493,7 @@ local t={ defaults={ p_bb="NULL"}, funcname="BeginDragDropTargetViewport", - location="imgui_internal:3760", + location="imgui_internal:3773", namespace="ImGui", ov_cimguiname="igBeginDragDropTargetViewport", ret="bool", @@ -13472,7 +13510,7 @@ local t={ cimguiname="igBeginErrorTooltip", defaults={}, funcname="BeginErrorTooltip", - location="imgui_internal:4007", + location="imgui_internal:4021", namespace="ImGui", ov_cimguiname="igBeginErrorTooltip", ret="bool", @@ -13489,7 +13527,7 @@ local t={ cimguiname="igBeginGroup", defaults={}, funcname="BeginGroup", - location="imgui:592", + location="imgui:594", namespace="ImGui", ov_cimguiname="igBeginGroup", ret="void", @@ -13506,7 +13544,7 @@ local t={ cimguiname="igBeginItemTooltip", defaults={}, funcname="BeginItemTooltip", - location="imgui:839", + location="imgui:842", namespace="ImGui", ov_cimguiname="igBeginItemTooltip", ret="bool", @@ -13530,7 +13568,7 @@ local t={ defaults={ size="ImVec2(0,0)"}, funcname="BeginListBox", - location="imgui:793", + location="imgui:796", namespace="ImGui", ov_cimguiname="igBeginListBox", ret="bool", @@ -13547,7 +13585,7 @@ local t={ cimguiname="igBeginMainMenuBar", defaults={}, funcname="BeginMainMenuBar", - location="imgui:819", + location="imgui:822", namespace="ImGui", ov_cimguiname="igBeginMainMenuBar", ret="bool", @@ -13571,7 +13609,7 @@ local t={ defaults={ enabled="true"}, funcname="BeginMenu", - location="imgui:821", + location="imgui:824", namespace="ImGui", ov_cimguiname="igBeginMenu", ret="bool", @@ -13588,7 +13626,7 @@ local t={ cimguiname="igBeginMenuBar", defaults={}, funcname="BeginMenuBar", - location="imgui:817", + location="imgui:820", namespace="ImGui", ov_cimguiname="igBeginMenuBar", ret="bool", @@ -13615,7 +13653,7 @@ local t={ defaults={ enabled="true"}, funcname="BeginMenuEx", - location="imgui_internal:3572", + location="imgui_internal:3585", namespace="ImGui", ov_cimguiname="igBeginMenuEx", ret="bool", @@ -13643,7 +13681,7 @@ local t={ items_count="-1", selection_size="-1"}, funcname="BeginMultiSelect", - location="imgui:781", + location="imgui:784", namespace="ImGui", ov_cimguiname="igBeginMultiSelect", ret="ImGuiMultiSelectIO*", @@ -13667,7 +13705,7 @@ local t={ defaults={ flags="0"}, funcname="BeginPopup", - location="imgui:853", + location="imgui:856", namespace="ImGui", ov_cimguiname="igBeginPopup", ret="bool", @@ -13692,7 +13730,7 @@ local t={ popup_flags="0", str_id="NULL"}, funcname="BeginPopupContextItem", - location="imgui:878", + location="imgui:881", namespace="ImGui", ov_cimguiname="igBeginPopupContextItem", ret="bool", @@ -13717,7 +13755,7 @@ local t={ popup_flags="0", str_id="NULL"}, funcname="BeginPopupContextVoid", - location="imgui:880", + location="imgui:883", namespace="ImGui", ov_cimguiname="igBeginPopupContextVoid", ret="bool", @@ -13742,7 +13780,7 @@ local t={ popup_flags="0", str_id="NULL"}, funcname="BeginPopupContextWindow", - location="imgui:879", + location="imgui:882", namespace="ImGui", ov_cimguiname="igBeginPopupContextWindow", ret="bool", @@ -13765,7 +13803,7 @@ local t={ cimguiname="igBeginPopupEx", defaults={}, funcname="BeginPopupEx", - location="imgui_internal:3551", + location="imgui_internal:3562", namespace="ImGui", ov_cimguiname="igBeginPopupEx", ret="bool", @@ -13791,7 +13829,7 @@ local t={ cimguiname="igBeginPopupMenuEx", defaults={}, funcname="BeginPopupMenuEx", - location="imgui_internal:3552", + location="imgui_internal:3563", namespace="ImGui", ov_cimguiname="igBeginPopupMenuEx", ret="bool", @@ -13819,7 +13857,7 @@ local t={ flags="0", p_open="NULL"}, funcname="BeginPopupModal", - location="imgui:854", + location="imgui:857", namespace="ImGui", ov_cimguiname="igBeginPopupModal", ret="bool", @@ -13843,7 +13881,7 @@ local t={ defaults={ flags="0"}, funcname="BeginTabBar", - location="imgui:958", + location="imgui:961", namespace="ImGui", ov_cimguiname="igBeginTabBar", ret="bool", @@ -13869,7 +13907,7 @@ local t={ cimguiname="igBeginTabBarEx", defaults={}, funcname="BeginTabBarEx", - location="imgui_internal:3862", + location="imgui_internal:3876", namespace="ImGui", ov_cimguiname="igBeginTabBarEx", ret="bool", @@ -13897,7 +13935,7 @@ local t={ flags="0", p_open="NULL"}, funcname="BeginTabItem", - location="imgui:960", + location="imgui:963", namespace="ImGui", ov_cimguiname="igBeginTabItem", ret="bool", @@ -13932,7 +13970,7 @@ local t={ inner_width="0.0f", outer_size="ImVec2(0.0f,0.0f)"}, funcname="BeginTable", - location="imgui:909", + location="imgui:912", namespace="ImGui", ov_cimguiname="igBeginTable", ret="bool", @@ -13970,7 +14008,7 @@ local t={ inner_width="0.0f", outer_size="ImVec2(0,0)"}, funcname="BeginTableEx", - location="imgui_internal:3814", + location="imgui_internal:3827", namespace="ImGui", ov_cimguiname="igBeginTableEx", ret="bool", @@ -13987,7 +14025,7 @@ local t={ cimguiname="igBeginTooltip", defaults={}, funcname="BeginTooltip", - location="imgui:830", + location="imgui:833", namespace="ImGui", ov_cimguiname="igBeginTooltip", ret="bool", @@ -14010,7 +14048,7 @@ local t={ cimguiname="igBeginTooltipEx", defaults={}, funcname="BeginTooltipEx", - location="imgui_internal:3567", + location="imgui_internal:3580", namespace="ImGui", ov_cimguiname="igBeginTooltipEx", ret="bool", @@ -14027,7 +14065,7 @@ local t={ cimguiname="igBeginTooltipHidden", defaults={}, funcname="BeginTooltipHidden", - location="imgui_internal:3568", + location="imgui_internal:3581", namespace="ImGui", ov_cimguiname="igBeginTooltipHidden", ret="bool", @@ -14059,7 +14097,7 @@ local t={ cimguiname="igBeginViewportSideBar", defaults={}, funcname="BeginViewportSideBar", - location="imgui_internal:3571", + location="imgui_internal:3584", namespace="ImGui", ov_cimguiname="igBeginViewportSideBar", ret="bool", @@ -14079,7 +14117,7 @@ local t={ cimguiname="igBringWindowToDisplayBack", defaults={}, funcname="BringWindowToDisplayBack", - location="imgui_internal:3422", + location="imgui_internal:3433", namespace="ImGui", ov_cimguiname="igBringWindowToDisplayBack", ret="void", @@ -14102,7 +14140,7 @@ local t={ cimguiname="igBringWindowToDisplayBehind", defaults={}, funcname="BringWindowToDisplayBehind", - location="imgui_internal:3423", + location="imgui_internal:3434", namespace="ImGui", ov_cimguiname="igBringWindowToDisplayBehind", ret="void", @@ -14122,7 +14160,7 @@ local t={ cimguiname="igBringWindowToDisplayFront", defaults={}, funcname="BringWindowToDisplayFront", - location="imgui_internal:3421", + location="imgui_internal:3432", namespace="ImGui", ov_cimguiname="igBringWindowToDisplayFront", ret="void", @@ -14142,7 +14180,7 @@ local t={ cimguiname="igBringWindowToFocusFront", defaults={}, funcname="BringWindowToFocusFront", - location="imgui_internal:3420", + location="imgui_internal:3431", namespace="ImGui", ov_cimguiname="igBringWindowToFocusFront", ret="void", @@ -14159,7 +14197,7 @@ local t={ cimguiname="igBullet", defaults={}, funcname="Bullet", - location="imgui:650", + location="imgui:652", namespace="ImGui", ov_cimguiname="igBullet", ret="void", @@ -14183,7 +14221,7 @@ local t={ defaults={}, funcname="BulletText", isvararg="...)", - location="imgui:633", + location="imgui:635", namespace="ImGui", ov_cimguiname="igBulletText", ret="void", @@ -14206,7 +14244,7 @@ local t={ cimguiname="igBulletTextV", defaults={}, funcname="BulletTextV", - location="imgui:634", + location="imgui:636", namespace="ImGui", ov_cimguiname="igBulletTextV", ret="void", @@ -14230,7 +14268,7 @@ local t={ defaults={ size="ImVec2(0,0)"}, funcname="Button", - location="imgui:640", + location="imgui:642", namespace="ImGui", ov_cimguiname="igButton", ret="bool", @@ -14263,7 +14301,7 @@ local t={ defaults={ flags="0"}, funcname="ButtonBehavior", - location="imgui_internal:3938", + location="imgui_internal:3953", namespace="ImGui", ov_cimguiname="igButtonBehavior", ret="bool", @@ -14291,7 +14329,7 @@ local t={ flags="0", size_arg="ImVec2(0,0)"}, funcname="ButtonEx", - location="imgui_internal:3919", + location="imgui_internal:3933", namespace="ImGui", ov_cimguiname="igButtonEx", ret="bool", @@ -14323,7 +14361,7 @@ local t={ cimguiname="igCalcClipRectVisibleItemsY", defaults={}, funcname="CalcClipRectVisibleItemsY", - location="imgui_internal:3534", + location="imgui_internal:3545", namespace="ImGui", ov_cimguiname="igCalcClipRectVisibleItemsY", ret="void", @@ -14350,7 +14388,7 @@ local t={ conv="ImVec2", defaults={}, funcname="CalcItemSize", - location="imgui_internal:3530", + location="imgui_internal:3541", namespace="ImGui", nonUDT=1, ov_cimguiname="igCalcItemSize", @@ -14368,7 +14406,7 @@ local t={ cimguiname="igCalcItemWidth", defaults={}, funcname="CalcItemWidth", - location="imgui:551", + location="imgui:553", namespace="ImGui", ov_cimguiname="igCalcItemWidth", ret="float", @@ -14394,7 +14432,7 @@ local t={ cimguiname="igCalcRoundingFlagsForRectInRect", defaults={}, funcname="CalcRoundingFlagsForRectInRect", - location="imgui_internal:3911", + location="imgui_internal:3925", namespace="ImGui", ov_cimguiname="igCalcRoundingFlagsForRectInRect", ret="ImDrawFlags", @@ -14427,7 +14465,7 @@ local t={ text_end="NULL", wrap_width="-1.0f"}, funcname="CalcTextSize", - location="imgui:1082", + location="imgui:1085", namespace="ImGui", nonUDT=1, ov_cimguiname="igCalcTextSize", @@ -14457,7 +14495,7 @@ local t={ cimguiname="igCalcTypematicRepeatAmount", defaults={}, funcname="CalcTypematicRepeatAmount", - location="imgui_internal:3632", + location="imgui_internal:3645", namespace="ImGui", ov_cimguiname="igCalcTypematicRepeatAmount", ret="int", @@ -14478,7 +14516,7 @@ local t={ conv="ImVec2", defaults={}, funcname="CalcWindowNextAutoFitSize", - location="imgui_internal:3400", + location="imgui_internal:3411", namespace="ImGui", nonUDT=1, ov_cimguiname="igCalcWindowNextAutoFitSize", @@ -14502,7 +14540,7 @@ local t={ cimguiname="igCalcWrapWidthForPos", defaults={}, funcname="CalcWrapWidthForPos", - location="imgui_internal:3531", + location="imgui_internal:3542", namespace="ImGui", ov_cimguiname="igCalcWrapWidthForPos", ret="float", @@ -14525,7 +14563,7 @@ local t={ cimguiname="igCallContextHooks", defaults={}, funcname="CallContextHooks", - location="imgui_internal:3454", + location="imgui_internal:3465", namespace="ImGui", ov_cimguiname="igCallContextHooks", ret="void", @@ -14548,7 +14586,7 @@ local t={ cimguiname="igCheckbox", defaults={}, funcname="Checkbox", - location="imgui:644", + location="imgui:646", namespace="ImGui", ov_cimguiname="igCheckbox", ret="bool", @@ -14574,7 +14612,7 @@ local t={ cimguiname="igCheckboxFlags", defaults={}, funcname="CheckboxFlags", - location="imgui:645", + location="imgui:647", namespace="ImGui", ov_cimguiname="igCheckboxFlags_IntPtr", ret="bool", @@ -14598,7 +14636,7 @@ local t={ cimguiname="igCheckboxFlags", defaults={}, funcname="CheckboxFlags", - location="imgui:646", + location="imgui:648", namespace="ImGui", ov_cimguiname="igCheckboxFlags_UintPtr", ret="bool", @@ -14622,7 +14660,7 @@ local t={ cimguiname="igCheckboxFlags", defaults={}, funcname="CheckboxFlags", - location="imgui_internal:3924", + location="imgui_internal:3938", namespace="ImGui", ov_cimguiname="igCheckboxFlags_S64Ptr", ret="bool", @@ -14646,7 +14684,7 @@ local t={ cimguiname="igCheckboxFlags", defaults={}, funcname="CheckboxFlags", - location="imgui_internal:3925", + location="imgui_internal:3939", namespace="ImGui", ov_cimguiname="igCheckboxFlags_U64Ptr", ret="bool", @@ -14666,7 +14704,7 @@ local t={ cimguiname="igClearActiveID", defaults={}, funcname="ClearActiveID", - location="imgui_internal:3513", + location="imgui_internal:3524", namespace="ImGui", ov_cimguiname="igClearActiveID", ret="void", @@ -14683,7 +14721,7 @@ local t={ cimguiname="igClearDragDrop", defaults={}, funcname="ClearDragDrop", - location="imgui_internal:3761", + location="imgui_internal:3774", namespace="ImGui", ov_cimguiname="igClearDragDrop", ret="void", @@ -14700,7 +14738,7 @@ local t={ cimguiname="igClearIniSettings", defaults={}, funcname="ClearIniSettings", - location="imgui_internal:3478", + location="imgui_internal:3489", namespace="ImGui", ov_cimguiname="igClearIniSettings", ret="void", @@ -14720,7 +14758,7 @@ local t={ cimguiname="igClearWindowSettings", defaults={}, funcname="ClearWindowSettings", - location="imgui_internal:3487", + location="imgui_internal:3498", namespace="ImGui", ov_cimguiname="igClearWindowSettings", ret="void", @@ -14743,7 +14781,7 @@ local t={ cimguiname="igCloseButton", defaults={}, funcname="CloseButton", - location="imgui_internal:3928", + location="imgui_internal:3942", namespace="ImGui", ov_cimguiname="igCloseButton", ret="bool", @@ -14760,7 +14798,7 @@ local t={ cimguiname="igCloseCurrentPopup", defaults={}, funcname="CloseCurrentPopup", - location="imgui:867", + location="imgui:870", namespace="ImGui", ov_cimguiname="igCloseCurrentPopup", ret="void", @@ -14783,7 +14821,7 @@ local t={ cimguiname="igClosePopupToLevel", defaults={}, funcname="ClosePopupToLevel", - location="imgui_internal:3554", + location="imgui_internal:3565", namespace="ImGui", ov_cimguiname="igClosePopupToLevel", ret="void", @@ -14800,7 +14838,7 @@ local t={ cimguiname="igClosePopupsExceptModals", defaults={}, funcname="ClosePopupsExceptModals", - location="imgui_internal:3556", + location="imgui_internal:3567", namespace="ImGui", ov_cimguiname="igClosePopupsExceptModals", ret="void", @@ -14823,7 +14861,7 @@ local t={ cimguiname="igClosePopupsOverWindow", defaults={}, funcname="ClosePopupsOverWindow", - location="imgui_internal:3555", + location="imgui_internal:3566", namespace="ImGui", ov_cimguiname="igClosePopupsOverWindow", ret="void", @@ -14849,7 +14887,7 @@ local t={ cimguiname="igCollapseButton", defaults={}, funcname="CollapseButton", - location="imgui_internal:3929", + location="imgui_internal:3943", namespace="ImGui", ov_cimguiname="igCollapseButton", ret="bool", @@ -14873,7 +14911,7 @@ local t={ defaults={ flags="0"}, funcname="CollapsingHeader", - location="imgui:763", + location="imgui:765", namespace="ImGui", ov_cimguiname="igCollapsingHeader_TreeNodeFlags", ret="bool", @@ -14898,7 +14936,7 @@ local t={ defaults={ flags="0"}, funcname="CollapsingHeader", - location="imgui:764", + location="imgui:766", namespace="ImGui", ov_cimguiname="igCollapsingHeader_BoolPtr", ret="bool", @@ -14930,7 +14968,7 @@ local t={ flags="0", size="ImVec2(0,0)"}, funcname="ColorButton", - location="imgui:744", + location="imgui:746", namespace="ImGui", ov_cimguiname="igColorButton", ret="bool", @@ -14950,7 +14988,7 @@ local t={ cimguiname="igColorConvertFloat4ToU32", defaults={}, funcname="ColorConvertFloat4ToU32", - location="imgui:1086", + location="imgui:1089", namespace="ImGui", ov_cimguiname="igColorConvertFloat4ToU32", ret="ImU32", @@ -14988,7 +15026,7 @@ local t={ cimguiname="igColorConvertHSVtoRGB", defaults={}, funcname="ColorConvertHSVtoRGB", - location="imgui:1088", + location="imgui:1091", namespace="ImGui", ov_cimguiname="igColorConvertHSVtoRGB", ret="void", @@ -15026,7 +15064,7 @@ local t={ cimguiname="igColorConvertRGBtoHSV", defaults={}, funcname="ColorConvertRGBtoHSV", - location="imgui:1087", + location="imgui:1090", namespace="ImGui", ov_cimguiname="igColorConvertRGBtoHSV", ret="void", @@ -15047,7 +15085,7 @@ local t={ conv="ImVec4", defaults={}, funcname="ColorConvertU32ToFloat4", - location="imgui:1085", + location="imgui:1088", namespace="ImGui", nonUDT=1, ov_cimguiname="igColorConvertU32ToFloat4", @@ -15075,7 +15113,7 @@ local t={ defaults={ flags="0"}, funcname="ColorEdit3", - location="imgui:740", + location="imgui:742", namespace="ImGui", ov_cimguiname="igColorEdit3", ret="bool", @@ -15102,7 +15140,7 @@ local t={ defaults={ flags="0"}, funcname="ColorEdit4", - location="imgui:741", + location="imgui:743", namespace="ImGui", ov_cimguiname="igColorEdit4", ret="bool", @@ -15125,7 +15163,7 @@ local t={ cimguiname="igColorEditOptionsPopup", defaults={}, funcname="ColorEditOptionsPopup", - location="imgui_internal:3983", + location="imgui_internal:3997", namespace="ImGui", ov_cimguiname="igColorEditOptionsPopup", ret="void", @@ -15152,7 +15190,7 @@ local t={ defaults={ flags="0"}, funcname="ColorPicker3", - location="imgui:742", + location="imgui:744", namespace="ImGui", ov_cimguiname="igColorPicker3", ret="bool", @@ -15183,7 +15221,7 @@ local t={ flags="0", ref_col="NULL"}, funcname="ColorPicker4", - location="imgui:743", + location="imgui:745", namespace="ImGui", ov_cimguiname="igColorPicker4", ret="bool", @@ -15206,7 +15244,7 @@ local t={ cimguiname="igColorPickerOptionsPopup", defaults={}, funcname="ColorPickerOptionsPopup", - location="imgui_internal:3984", + location="imgui_internal:3998", namespace="ImGui", ov_cimguiname="igColorPickerOptionsPopup", ret="void", @@ -15232,7 +15270,7 @@ local t={ cimguiname="igColorTooltip", defaults={}, funcname="ColorTooltip", - location="imgui_internal:3982", + location="imgui_internal:3996", namespace="ImGui", ov_cimguiname="igColorTooltip", ret="void", @@ -15261,7 +15299,7 @@ local t={ count="1", id="NULL"}, funcname="Columns", - location="imgui:947", + location="imgui:950", namespace="ImGui", ov_cimguiname="igColumns", ret="void", @@ -15294,7 +15332,7 @@ local t={ defaults={ popup_max_height_in_items="-1"}, funcname="Combo", - location="imgui:669", + location="imgui:671", namespace="ImGui", ov_cimguiname="igCombo_Str_arr", ret="bool", @@ -15322,7 +15360,7 @@ local t={ defaults={ popup_max_height_in_items="-1"}, funcname="Combo", - location="imgui:670", + location="imgui:672", namespace="ImGui", ov_cimguiname="igCombo_Str", ret="bool", @@ -15358,7 +15396,7 @@ local t={ defaults={ popup_max_height_in_items="-1"}, funcname="Combo", - location="imgui:671", + location="imgui:673", namespace="ImGui", ov_cimguiname="igCombo_FnStrPtr", ret="bool", @@ -15380,7 +15418,7 @@ local t={ cimguiname="igConvertSingleModFlagToKey", defaults={}, funcname="ConvertSingleModFlagToKey", - location="imgui_internal:3616", + location="imgui_internal:3629", namespace="ImGui", ov_cimguiname="igConvertSingleModFlagToKey", ret="ImGuiKey", @@ -15401,7 +15439,7 @@ local t={ defaults={ shared_font_atlas="NULL"}, funcname="CreateContext", - location="imgui:397", + location="imgui:399", namespace="ImGui", ov_cimguiname="igCreateContext", ret="ImGuiContext*", @@ -15421,7 +15459,7 @@ local t={ cimguiname="igCreateNewWindowSettings", defaults={}, funcname="CreateNewWindowSettings", - location="imgui_internal:3484", + location="imgui_internal:3495", namespace="ImGui", ov_cimguiname="igCreateNewWindowSettings", ret="ImGuiWindowSettings*", @@ -15454,7 +15492,7 @@ local t={ defaults={ p_data_when_empty="NULL"}, funcname="DataTypeApplyFromText", - location="imgui_internal:3966", + location="imgui_internal:3980", namespace="ImGui", ov_cimguiname="igDataTypeApplyFromText", ret="bool", @@ -15486,7 +15524,7 @@ local t={ cimguiname="igDataTypeApplyOp", defaults={}, funcname="DataTypeApplyOp", - location="imgui_internal:3965", + location="imgui_internal:3979", namespace="ImGui", ov_cimguiname="igDataTypeApplyOp", ret="void", @@ -15515,7 +15553,7 @@ local t={ cimguiname="igDataTypeClamp", defaults={}, funcname="DataTypeClamp", - location="imgui_internal:3968", + location="imgui_internal:3982", namespace="ImGui", ov_cimguiname="igDataTypeClamp", ret="bool", @@ -15541,7 +15579,7 @@ local t={ cimguiname="igDataTypeCompare", defaults={}, funcname="DataTypeCompare", - location="imgui_internal:3967", + location="imgui_internal:3981", namespace="ImGui", ov_cimguiname="igDataTypeCompare", ret="int", @@ -15573,7 +15611,7 @@ local t={ cimguiname="igDataTypeFormatString", defaults={}, funcname="DataTypeFormatString", - location="imgui_internal:3964", + location="imgui_internal:3978", namespace="ImGui", ov_cimguiname="igDataTypeFormatString", ret="int", @@ -15593,7 +15631,7 @@ local t={ cimguiname="igDataTypeGetInfo", defaults={}, funcname="DataTypeGetInfo", - location="imgui_internal:3963", + location="imgui_internal:3977", namespace="ImGui", ov_cimguiname="igDataTypeGetInfo", ret="const ImGuiDataTypeInfo*", @@ -15616,7 +15654,7 @@ local t={ cimguiname="igDataTypeIsZero", defaults={}, funcname="DataTypeIsZero", - location="imgui_internal:3969", + location="imgui_internal:3983", namespace="ImGui", ov_cimguiname="igDataTypeIsZero", ret="bool", @@ -15645,7 +15683,7 @@ local t={ cimguiname="igDebugAllocHook", defaults={}, funcname="DebugAllocHook", - location="imgui_internal:4011", + location="imgui_internal:4028", namespace="ImGui", ov_cimguiname="igDebugAllocHook", ret="void", @@ -15668,7 +15706,7 @@ local t={ cimguiname="igDebugBreakButton", defaults={}, funcname="DebugBreakButton", - location="imgui_internal:4020", + location="imgui_internal:4037", namespace="ImGui", ov_cimguiname="igDebugBreakButton", ret="bool", @@ -15691,7 +15729,7 @@ local t={ cimguiname="igDebugBreakButtonTooltip", defaults={}, funcname="DebugBreakButtonTooltip", - location="imgui_internal:4021", + location="imgui_internal:4038", namespace="ImGui", ov_cimguiname="igDebugBreakButtonTooltip", ret="void", @@ -15708,7 +15746,7 @@ local t={ cimguiname="igDebugBreakClearData", defaults={}, funcname="DebugBreakClearData", - location="imgui_internal:4019", + location="imgui_internal:4036", namespace="ImGui", ov_cimguiname="igDebugBreakClearData", ret="void", @@ -15746,7 +15784,7 @@ local t={ cimguiname="igDebugCheckVersionAndDataLayout", defaults={}, funcname="DebugCheckVersionAndDataLayout", - location="imgui:1176", + location="imgui:1179", namespace="ImGui", ov_cimguiname="igDebugCheckVersionAndDataLayout", ret="bool", @@ -15767,7 +15805,7 @@ local t={ defaults={ col="4278190335"}, funcname="DebugDrawCursorPos", - location="imgui_internal:4012", + location="imgui_internal:4029", namespace="ImGui", ov_cimguiname="igDebugDrawCursorPos", ret="void", @@ -15788,7 +15826,7 @@ local t={ defaults={ col="4278190335"}, funcname="DebugDrawItemRect", - location="imgui_internal:4014", + location="imgui_internal:4031", namespace="ImGui", ov_cimguiname="igDebugDrawItemRect", ret="void", @@ -15809,7 +15847,7 @@ local t={ defaults={ col="4278190335"}, funcname="DebugDrawLineExtents", - location="imgui_internal:4013", + location="imgui_internal:4030", namespace="ImGui", ov_cimguiname="igDebugDrawLineExtents", ret="void", @@ -15829,7 +15867,7 @@ local t={ cimguiname="igDebugFlashStyleColor", defaults={}, funcname="DebugFlashStyleColor", - location="imgui:1174", + location="imgui:1177", namespace="ImGui", ov_cimguiname="igDebugFlashStyleColor", ret="void", @@ -15858,7 +15896,7 @@ local t={ cimguiname="igDebugHookIdInfo", defaults={}, funcname="DebugHookIdInfo", - location="imgui_internal:4024", + location="imgui_internal:4041", namespace="ImGui", ov_cimguiname="igDebugHookIdInfo", ret="void", @@ -15878,7 +15916,7 @@ local t={ cimguiname="igDebugLocateItem", defaults={}, funcname="DebugLocateItem", - location="imgui_internal:4016", + location="imgui_internal:4033", namespace="ImGui", ov_cimguiname="igDebugLocateItem", ret="void", @@ -15898,7 +15936,7 @@ local t={ cimguiname="igDebugLocateItemOnHover", defaults={}, funcname="DebugLocateItemOnHover", - location="imgui_internal:4017", + location="imgui_internal:4034", namespace="ImGui", ov_cimguiname="igDebugLocateItemOnHover", ret="void", @@ -15915,7 +15953,7 @@ local t={ cimguiname="igDebugLocateItemResolveWithLastItem", defaults={}, funcname="DebugLocateItemResolveWithLastItem", - location="imgui_internal:4018", + location="imgui_internal:4035", namespace="ImGui", ov_cimguiname="igDebugLocateItemResolveWithLastItem", ret="void", @@ -15939,7 +15977,7 @@ local t={ defaults={}, funcname="DebugLog", isvararg="...)", - location="imgui:1178", + location="imgui:1181", namespace="ImGui", ov_cimguiname="igDebugLog", ret="void", @@ -15962,7 +16000,7 @@ local t={ cimguiname="igDebugLogV", defaults={}, funcname="DebugLogV", - location="imgui:1179", + location="imgui:1182", namespace="ImGui", ov_cimguiname="igDebugLogV", ret="void", @@ -15982,7 +16020,7 @@ local t={ cimguiname="igDebugNodeColumns", defaults={}, funcname="DebugNodeColumns", - location="imgui_internal:4025", + location="imgui_internal:4042", namespace="ImGui", ov_cimguiname="igDebugNodeColumns", ret="void", @@ -16005,7 +16043,7 @@ local t={ cimguiname="igDebugNodeDockNode", defaults={}, funcname="DebugNodeDockNode", - location="imgui_internal:4026", + location="imgui_internal:4043", namespace="ImGui", ov_cimguiname="igDebugNodeDockNode", ret="void", @@ -16037,7 +16075,7 @@ local t={ cimguiname="igDebugNodeDrawCmdShowMeshAndBoundingBox", defaults={}, funcname="DebugNodeDrawCmdShowMeshAndBoundingBox", - location="imgui_internal:4028", + location="imgui_internal:4045", namespace="ImGui", ov_cimguiname="igDebugNodeDrawCmdShowMeshAndBoundingBox", ret="void", @@ -16066,7 +16104,7 @@ local t={ cimguiname="igDebugNodeDrawList", defaults={}, funcname="DebugNodeDrawList", - location="imgui_internal:4027", + location="imgui_internal:4044", namespace="ImGui", ov_cimguiname="igDebugNodeDrawList", ret="void", @@ -16086,7 +16124,7 @@ local t={ cimguiname="igDebugNodeFont", defaults={}, funcname="DebugNodeFont", - location="imgui_internal:4029", + location="imgui_internal:4046", namespace="ImGui", ov_cimguiname="igDebugNodeFont", ret="void", @@ -16109,14 +16147,14 @@ local t={ cimguiname="igDebugNodeFontGlyph", defaults={}, funcname="DebugNodeFontGlyph", - location="imgui_internal:4031", + location="imgui_internal:4048", namespace="ImGui", ov_cimguiname="igDebugNodeFontGlyph", ret="void", signature="(ImFont*,const ImFontGlyph*)", stname=""}, ["(ImFont*,const ImFontGlyph*)"]=nil}, - igDebugNodeFontGlyphesForSrcMask={ + igDebugNodeFontGlyphsForSrcMask={ [1]={ args="(ImFont* font,ImFontBaked* baked,int src_mask)", argsT={ @@ -16132,12 +16170,12 @@ local t={ argsoriginal="(ImFont* font,ImFontBaked* baked,int src_mask)", call_args="(font,baked,src_mask)", call_args_old="(font,baked,src_mask)", - cimguiname="igDebugNodeFontGlyphesForSrcMask", + cimguiname="igDebugNodeFontGlyphsForSrcMask", defaults={}, - funcname="DebugNodeFontGlyphesForSrcMask", - location="imgui_internal:4030", + funcname="DebugNodeFontGlyphsForSrcMask", + location="imgui_internal:4047", namespace="ImGui", - ov_cimguiname="igDebugNodeFontGlyphesForSrcMask", + ov_cimguiname="igDebugNodeFontGlyphsForSrcMask", ret="void", signature="(ImFont*,ImFontBaked*,int)", stname=""}, @@ -16155,7 +16193,7 @@ local t={ cimguiname="igDebugNodeInputTextState", defaults={}, funcname="DebugNodeInputTextState", - location="imgui_internal:4037", + location="imgui_internal:4054", namespace="ImGui", ov_cimguiname="igDebugNodeInputTextState", ret="void", @@ -16175,7 +16213,7 @@ local t={ cimguiname="igDebugNodeMultiSelectState", defaults={}, funcname="DebugNodeMultiSelectState", - location="imgui_internal:4039", + location="imgui_internal:4056", namespace="ImGui", ov_cimguiname="igDebugNodeMultiSelectState", ret="void", @@ -16201,7 +16239,7 @@ local t={ cimguiname="igDebugNodePlatformMonitor", defaults={}, funcname="DebugNodePlatformMonitor", - location="imgui_internal:4045", + location="imgui_internal:4062", namespace="ImGui", ov_cimguiname="igDebugNodePlatformMonitor", ret="void", @@ -16224,7 +16262,7 @@ local t={ cimguiname="igDebugNodeStorage", defaults={}, funcname="DebugNodeStorage", - location="imgui_internal:4033", + location="imgui_internal:4050", namespace="ImGui", ov_cimguiname="igDebugNodeStorage", ret="void", @@ -16247,7 +16285,7 @@ local t={ cimguiname="igDebugNodeTabBar", defaults={}, funcname="DebugNodeTabBar", - location="imgui_internal:4034", + location="imgui_internal:4051", namespace="ImGui", ov_cimguiname="igDebugNodeTabBar", ret="void", @@ -16267,7 +16305,7 @@ local t={ cimguiname="igDebugNodeTable", defaults={}, funcname="DebugNodeTable", - location="imgui_internal:4035", + location="imgui_internal:4052", namespace="ImGui", ov_cimguiname="igDebugNodeTable", ret="void", @@ -16287,7 +16325,7 @@ local t={ cimguiname="igDebugNodeTableSettings", defaults={}, funcname="DebugNodeTableSettings", - location="imgui_internal:4036", + location="imgui_internal:4053", namespace="ImGui", ov_cimguiname="igDebugNodeTableSettings", ret="void", @@ -16314,7 +16352,7 @@ local t={ defaults={ highlight_rect="NULL"}, funcname="DebugNodeTexture", - location="imgui_internal:4032", + location="imgui_internal:4049", namespace="ImGui", ov_cimguiname="igDebugNodeTexture", ret="void", @@ -16334,7 +16372,7 @@ local t={ cimguiname="igDebugNodeTypingSelectState", defaults={}, funcname="DebugNodeTypingSelectState", - location="imgui_internal:4038", + location="imgui_internal:4055", namespace="ImGui", ov_cimguiname="igDebugNodeTypingSelectState", ret="void", @@ -16354,7 +16392,7 @@ local t={ cimguiname="igDebugNodeViewport", defaults={}, funcname="DebugNodeViewport", - location="imgui_internal:4044", + location="imgui_internal:4061", namespace="ImGui", ov_cimguiname="igDebugNodeViewport", ret="void", @@ -16377,7 +16415,7 @@ local t={ cimguiname="igDebugNodeWindow", defaults={}, funcname="DebugNodeWindow", - location="imgui_internal:4040", + location="imgui_internal:4057", namespace="ImGui", ov_cimguiname="igDebugNodeWindow", ret="void", @@ -16397,7 +16435,7 @@ local t={ cimguiname="igDebugNodeWindowSettings", defaults={}, funcname="DebugNodeWindowSettings", - location="imgui_internal:4041", + location="imgui_internal:4058", namespace="ImGui", ov_cimguiname="igDebugNodeWindowSettings", ret="void", @@ -16420,7 +16458,7 @@ local t={ cimguiname="igDebugNodeWindowsList", defaults={}, funcname="DebugNodeWindowsList", - location="imgui_internal:4042", + location="imgui_internal:4059", namespace="ImGui", ov_cimguiname="igDebugNodeWindowsList", ret="void", @@ -16446,7 +16484,7 @@ local t={ cimguiname="igDebugNodeWindowsListByBeginStackParent", defaults={}, funcname="DebugNodeWindowsListByBeginStackParent", - location="imgui_internal:4043", + location="imgui_internal:4060", namespace="ImGui", ov_cimguiname="igDebugNodeWindowsListByBeginStackParent", ret="void", @@ -16466,7 +16504,7 @@ local t={ cimguiname="igDebugRenderKeyboardPreview", defaults={}, funcname="DebugRenderKeyboardPreview", - location="imgui_internal:4046", + location="imgui_internal:4063", namespace="ImGui", ov_cimguiname="igDebugRenderKeyboardPreview", ret="void", @@ -16492,7 +16530,7 @@ local t={ cimguiname="igDebugRenderViewportThumbnail", defaults={}, funcname="DebugRenderViewportThumbnail", - location="imgui_internal:4047", + location="imgui_internal:4064", namespace="ImGui", ov_cimguiname="igDebugRenderViewportThumbnail", ret="void", @@ -16509,7 +16547,7 @@ local t={ cimguiname="igDebugStartItemPicker", defaults={}, funcname="DebugStartItemPicker", - location="imgui:1175", + location="imgui:1178", namespace="ImGui", ov_cimguiname="igDebugStartItemPicker", ret="void", @@ -16529,7 +16567,7 @@ local t={ cimguiname="igDebugTextEncoding", defaults={}, funcname="DebugTextEncoding", - location="imgui:1173", + location="imgui:1176", namespace="ImGui", ov_cimguiname="igDebugTextEncoding", ret="void", @@ -16552,7 +16590,7 @@ local t={ cimguiname="igDebugTextUnformattedWithLocateItem", defaults={}, funcname="DebugTextUnformattedWithLocateItem", - location="imgui_internal:4015", + location="imgui_internal:4032", namespace="ImGui", ov_cimguiname="igDebugTextUnformattedWithLocateItem", ret="void", @@ -16572,13 +16610,39 @@ local t={ cimguiname="igDebugTextureIDToU64", defaults={}, funcname="DebugTextureIDToU64", - location="imgui_internal:4023", + location="imgui_internal:4040", namespace="ImGui", ov_cimguiname="igDebugTextureIDToU64", ret="ImU64", signature="(ImTextureID)", stname=""}, ["(ImTextureID)"]=nil}, + igDemoMarker={ + [1]={ + args="(const char* file,int line,const char* section)", + argsT={ + [1]={ + name="file", + type="const char*"}, + [2]={ + name="line", + type="int"}, + [3]={ + name="section", + type="const char*"}}, + argsoriginal="(const char* file,int line,const char* section)", + call_args="(file,line,section)", + call_args_old="(file,line,section)", + cimguiname="igDemoMarker", + defaults={}, + funcname="DemoMarker", + location="imgui_internal:4025", + namespace="ImGui", + ov_cimguiname="igDemoMarker", + ret="void", + signature="(const char*,int,const char*)", + stname=""}, + ["(const char*,int,const char*)"]=nil}, igDestroyContext={ [1]={ args="(ImGuiContext* ctx)", @@ -16593,7 +16657,7 @@ local t={ defaults={ ctx="NULL"}, funcname="DestroyContext", - location="imgui:398", + location="imgui:400", namespace="ImGui", ov_cimguiname="igDestroyContext", ret="void", @@ -16613,7 +16677,7 @@ local t={ cimguiname="igDestroyPlatformWindow", defaults={}, funcname="DestroyPlatformWindow", - location="imgui_internal:3469", + location="imgui_internal:3480", namespace="ImGui", ov_cimguiname="igDestroyPlatformWindow", ret="void", @@ -16630,7 +16694,7 @@ local t={ cimguiname="igDestroyPlatformWindows", defaults={}, funcname="DestroyPlatformWindows", - location="imgui:1196", + location="imgui:1199", namespace="ImGui", ov_cimguiname="igDestroyPlatformWindows", ret="void", @@ -16655,7 +16719,7 @@ local t={ flags="0", node_id="0"}, funcname="DockBuilderAddNode", - location="imgui_internal:3733", + location="imgui_internal:3746", namespace="ImGui", ov_cimguiname="igDockBuilderAddNode", ret="ImGuiID", @@ -16681,7 +16745,7 @@ local t={ cimguiname="igDockBuilderCopyDockSpace", defaults={}, funcname="DockBuilderCopyDockSpace", - location="imgui_internal:3740", + location="imgui_internal:3753", namespace="ImGui", ov_cimguiname="igDockBuilderCopyDockSpace", ret="void", @@ -16707,7 +16771,7 @@ local t={ cimguiname="igDockBuilderCopyNode", defaults={}, funcname="DockBuilderCopyNode", - location="imgui_internal:3741", + location="imgui_internal:3754", namespace="ImGui", ov_cimguiname="igDockBuilderCopyNode", ret="void", @@ -16730,7 +16794,7 @@ local t={ cimguiname="igDockBuilderCopyWindowSettings", defaults={}, funcname="DockBuilderCopyWindowSettings", - location="imgui_internal:3742", + location="imgui_internal:3755", namespace="ImGui", ov_cimguiname="igDockBuilderCopyWindowSettings", ret="void", @@ -16753,7 +16817,7 @@ local t={ cimguiname="igDockBuilderDockWindow", defaults={}, funcname="DockBuilderDockWindow", - location="imgui_internal:3730", + location="imgui_internal:3743", namespace="ImGui", ov_cimguiname="igDockBuilderDockWindow", ret="void", @@ -16773,7 +16837,7 @@ local t={ cimguiname="igDockBuilderFinish", defaults={}, funcname="DockBuilderFinish", - location="imgui_internal:3743", + location="imgui_internal:3756", namespace="ImGui", ov_cimguiname="igDockBuilderFinish", ret="void", @@ -16793,7 +16857,7 @@ local t={ cimguiname="igDockBuilderGetCentralNode", defaults={}, funcname="DockBuilderGetCentralNode", - location="imgui_internal:3732", + location="imgui_internal:3745", namespace="ImGui", ov_cimguiname="igDockBuilderGetCentralNode", ret="ImGuiDockNode*", @@ -16813,7 +16877,7 @@ local t={ cimguiname="igDockBuilderGetNode", defaults={}, funcname="DockBuilderGetNode", - location="imgui_internal:3731", + location="imgui_internal:3744", namespace="ImGui", ov_cimguiname="igDockBuilderGetNode", ret="ImGuiDockNode*", @@ -16833,7 +16897,7 @@ local t={ cimguiname="igDockBuilderRemoveNode", defaults={}, funcname="DockBuilderRemoveNode", - location="imgui_internal:3734", + location="imgui_internal:3747", namespace="ImGui", ov_cimguiname="igDockBuilderRemoveNode", ret="void", @@ -16853,7 +16917,7 @@ local t={ cimguiname="igDockBuilderRemoveNodeChildNodes", defaults={}, funcname="DockBuilderRemoveNodeChildNodes", - location="imgui_internal:3736", + location="imgui_internal:3749", namespace="ImGui", ov_cimguiname="igDockBuilderRemoveNodeChildNodes", ret="void", @@ -16877,7 +16941,7 @@ local t={ defaults={ clear_settings_refs="true"}, funcname="DockBuilderRemoveNodeDockedWindows", - location="imgui_internal:3735", + location="imgui_internal:3748", namespace="ImGui", ov_cimguiname="igDockBuilderRemoveNodeDockedWindows", ret="void", @@ -16900,7 +16964,7 @@ local t={ cimguiname="igDockBuilderSetNodePos", defaults={}, funcname="DockBuilderSetNodePos", - location="imgui_internal:3737", + location="imgui_internal:3750", namespace="ImGui", ov_cimguiname="igDockBuilderSetNodePos", ret="void", @@ -16923,7 +16987,7 @@ local t={ cimguiname="igDockBuilderSetNodeSize", defaults={}, funcname="DockBuilderSetNodeSize", - location="imgui_internal:3738", + location="imgui_internal:3751", namespace="ImGui", ov_cimguiname="igDockBuilderSetNodeSize", ret="void", @@ -16955,7 +17019,7 @@ local t={ cimguiname="igDockBuilderSplitNode", defaults={}, funcname="DockBuilderSplitNode", - location="imgui_internal:3739", + location="imgui_internal:3752", namespace="ImGui", ov_cimguiname="igDockBuilderSplitNode", ret="ImGuiID", @@ -16993,7 +17057,7 @@ local t={ cimguiname="igDockContextCalcDropPosForDocking", defaults={}, funcname="DockContextCalcDropPosForDocking", - location="imgui_internal:3705", + location="imgui_internal:3718", namespace="ImGui", ov_cimguiname="igDockContextCalcDropPosForDocking", ret="bool", @@ -17019,7 +17083,7 @@ local t={ cimguiname="igDockContextClearNodes", defaults={}, funcname="DockContextClearNodes", - location="imgui_internal:3694", + location="imgui_internal:3707", namespace="ImGui", ov_cimguiname="igDockContextClearNodes", ret="void", @@ -17039,7 +17103,7 @@ local t={ cimguiname="igDockContextEndFrame", defaults={}, funcname="DockContextEndFrame", - location="imgui_internal:3698", + location="imgui_internal:3711", namespace="ImGui", ov_cimguiname="igDockContextEndFrame", ret="void", @@ -17062,7 +17126,7 @@ local t={ cimguiname="igDockContextFindNodeByID", defaults={}, funcname="DockContextFindNodeByID", - location="imgui_internal:3706", + location="imgui_internal:3719", namespace="ImGui", ov_cimguiname="igDockContextFindNodeByID", ret="ImGuiDockNode*", @@ -17082,7 +17146,7 @@ local t={ cimguiname="igDockContextGenNodeID", defaults={}, funcname="DockContextGenNodeID", - location="imgui_internal:3699", + location="imgui_internal:3712", namespace="ImGui", ov_cimguiname="igDockContextGenNodeID", ret="ImGuiID", @@ -17102,7 +17166,7 @@ local t={ cimguiname="igDockContextInitialize", defaults={}, funcname="DockContextInitialize", - location="imgui_internal:3692", + location="imgui_internal:3705", namespace="ImGui", ov_cimguiname="igDockContextInitialize", ret="void", @@ -17122,7 +17186,7 @@ local t={ cimguiname="igDockContextNewFrameUpdateDocking", defaults={}, funcname="DockContextNewFrameUpdateDocking", - location="imgui_internal:3697", + location="imgui_internal:3710", namespace="ImGui", ov_cimguiname="igDockContextNewFrameUpdateDocking", ret="void", @@ -17142,7 +17206,7 @@ local t={ cimguiname="igDockContextNewFrameUpdateUndocking", defaults={}, funcname="DockContextNewFrameUpdateUndocking", - location="imgui_internal:3696", + location="imgui_internal:3709", namespace="ImGui", ov_cimguiname="igDockContextNewFrameUpdateUndocking", ret="void", @@ -17165,7 +17229,7 @@ local t={ cimguiname="igDockContextProcessUndockNode", defaults={}, funcname="DockContextProcessUndockNode", - location="imgui_internal:3704", + location="imgui_internal:3717", namespace="ImGui", ov_cimguiname="igDockContextProcessUndockNode", ret="void", @@ -17192,7 +17256,7 @@ local t={ defaults={ clear_persistent_docking_ref="true"}, funcname="DockContextProcessUndockWindow", - location="imgui_internal:3703", + location="imgui_internal:3716", namespace="ImGui", ov_cimguiname="igDockContextProcessUndockWindow", ret="void", @@ -17230,7 +17294,7 @@ local t={ cimguiname="igDockContextQueueDock", defaults={}, funcname="DockContextQueueDock", - location="imgui_internal:3700", + location="imgui_internal:3713", namespace="ImGui", ov_cimguiname="igDockContextQueueDock", ret="void", @@ -17253,7 +17317,7 @@ local t={ cimguiname="igDockContextQueueUndockNode", defaults={}, funcname="DockContextQueueUndockNode", - location="imgui_internal:3702", + location="imgui_internal:3715", namespace="ImGui", ov_cimguiname="igDockContextQueueUndockNode", ret="void", @@ -17276,7 +17340,7 @@ local t={ cimguiname="igDockContextQueueUndockWindow", defaults={}, funcname="DockContextQueueUndockWindow", - location="imgui_internal:3701", + location="imgui_internal:3714", namespace="ImGui", ov_cimguiname="igDockContextQueueUndockWindow", ret="void", @@ -17296,7 +17360,7 @@ local t={ cimguiname="igDockContextRebuildNodes", defaults={}, funcname="DockContextRebuildNodes", - location="imgui_internal:3695", + location="imgui_internal:3708", namespace="ImGui", ov_cimguiname="igDockContextRebuildNodes", ret="void", @@ -17316,7 +17380,7 @@ local t={ cimguiname="igDockContextShutdown", defaults={}, funcname="DockContextShutdown", - location="imgui_internal:3693", + location="imgui_internal:3706", namespace="ImGui", ov_cimguiname="igDockContextShutdown", ret="void", @@ -17336,7 +17400,7 @@ local t={ cimguiname="igDockNodeBeginAmendTabBar", defaults={}, funcname="DockNodeBeginAmendTabBar", - location="imgui_internal:3708", + location="imgui_internal:3721", namespace="ImGui", ov_cimguiname="igDockNodeBeginAmendTabBar", ret="bool", @@ -17353,7 +17417,7 @@ local t={ cimguiname="igDockNodeEndAmendTabBar", defaults={}, funcname="DockNodeEndAmendTabBar", - location="imgui_internal:3709", + location="imgui_internal:3722", namespace="ImGui", ov_cimguiname="igDockNodeEndAmendTabBar", ret="void", @@ -17373,7 +17437,7 @@ local t={ cimguiname="igDockNodeGetDepth", defaults={}, funcname="DockNodeGetDepth", - location="imgui_internal:3712", + location="imgui_internal:3725", namespace="ImGui", ov_cimguiname="igDockNodeGetDepth", ret="int", @@ -17393,7 +17457,7 @@ local t={ cimguiname="igDockNodeGetRootNode", defaults={}, funcname="DockNodeGetRootNode", - location="imgui_internal:3710", + location="imgui_internal:3723", namespace="ImGui", ov_cimguiname="igDockNodeGetRootNode", ret="ImGuiDockNode*", @@ -17413,7 +17477,7 @@ local t={ cimguiname="igDockNodeGetWindowMenuButtonId", defaults={}, funcname="DockNodeGetWindowMenuButtonId", - location="imgui_internal:3713", + location="imgui_internal:3726", namespace="ImGui", ov_cimguiname="igDockNodeGetWindowMenuButtonId", ret="ImGuiID", @@ -17436,7 +17500,7 @@ local t={ cimguiname="igDockNodeIsInHierarchyOf", defaults={}, funcname="DockNodeIsInHierarchyOf", - location="imgui_internal:3711", + location="imgui_internal:3724", namespace="ImGui", ov_cimguiname="igDockNodeIsInHierarchyOf", ret="bool", @@ -17462,7 +17526,7 @@ local t={ cimguiname="igDockNodeWindowMenuHandler_Default", defaults={}, funcname="DockNodeWindowMenuHandler_Default", - location="imgui_internal:3707", + location="imgui_internal:3720", namespace="ImGui", ov_cimguiname="igDockNodeWindowMenuHandler_Default", ret="void", @@ -17494,7 +17558,7 @@ local t={ size="ImVec2(0,0)", window_class="NULL"}, funcname="DockSpace", - location="imgui:986", + location="imgui:989", namespace="ImGui", ov_cimguiname="igDockSpace", ret="ImGuiID", @@ -17527,7 +17591,7 @@ local t={ viewport="NULL", window_class="NULL"}, funcname="DockSpaceOverViewport", - location="imgui:987", + location="imgui:990", namespace="ImGui", ov_cimguiname="igDockSpaceOverViewport", ret="ImGuiID", @@ -17568,7 +17632,7 @@ local t={ cimguiname="igDragBehavior", defaults={}, funcname="DragBehavior", - location="imgui_internal:3939", + location="imgui_internal:3954", namespace="ImGui", ov_cimguiname="igDragBehavior", ret="bool", @@ -17611,7 +17675,7 @@ local t={ v_min="0.0f", v_speed="1.0f"}, funcname="DragFloat", - location="imgui:685", + location="imgui:687", namespace="ImGui", ov_cimguiname="igDragFloat", ret="bool", @@ -17654,7 +17718,7 @@ local t={ v_min="0.0f", v_speed="1.0f"}, funcname="DragFloat2", - location="imgui:686", + location="imgui:688", namespace="ImGui", ov_cimguiname="igDragFloat2", ret="bool", @@ -17697,7 +17761,7 @@ local t={ v_min="0.0f", v_speed="1.0f"}, funcname="DragFloat3", - location="imgui:687", + location="imgui:689", namespace="ImGui", ov_cimguiname="igDragFloat3", ret="bool", @@ -17740,7 +17804,7 @@ local t={ v_min="0.0f", v_speed="1.0f"}, funcname="DragFloat4", - location="imgui:688", + location="imgui:690", namespace="ImGui", ov_cimguiname="igDragFloat4", ret="bool", @@ -17790,7 +17854,7 @@ local t={ v_min="0.0f", v_speed="1.0f"}, funcname="DragFloatRange2", - location="imgui:689", + location="imgui:691", namespace="ImGui", ov_cimguiname="igDragFloatRange2", ret="bool", @@ -17833,7 +17897,7 @@ local t={ v_min="0", v_speed="1.0f"}, funcname="DragInt", - location="imgui:690", + location="imgui:692", namespace="ImGui", ov_cimguiname="igDragInt", ret="bool", @@ -17876,7 +17940,7 @@ local t={ v_min="0", v_speed="1.0f"}, funcname="DragInt2", - location="imgui:691", + location="imgui:693", namespace="ImGui", ov_cimguiname="igDragInt2", ret="bool", @@ -17919,7 +17983,7 @@ local t={ v_min="0", v_speed="1.0f"}, funcname="DragInt3", - location="imgui:692", + location="imgui:694", namespace="ImGui", ov_cimguiname="igDragInt3", ret="bool", @@ -17962,7 +18026,7 @@ local t={ v_min="0", v_speed="1.0f"}, funcname="DragInt4", - location="imgui:693", + location="imgui:695", namespace="ImGui", ov_cimguiname="igDragInt4", ret="bool", @@ -18012,7 +18076,7 @@ local t={ v_min="0", v_speed="1.0f"}, funcname="DragIntRange2", - location="imgui:694", + location="imgui:696", namespace="ImGui", ov_cimguiname="igDragIntRange2", ret="bool", @@ -18058,7 +18122,7 @@ local t={ p_min="NULL", v_speed="1.0f"}, funcname="DragScalar", - location="imgui:695", + location="imgui:697", namespace="ImGui", ov_cimguiname="igDragScalar", ret="bool", @@ -18107,7 +18171,7 @@ local t={ p_min="NULL", v_speed="1.0f"}, funcname="DragScalarN", - location="imgui:696", + location="imgui:698", namespace="ImGui", ov_cimguiname="igDragScalarN", ret="bool", @@ -18127,7 +18191,7 @@ local t={ cimguiname="igDummy", defaults={}, funcname="Dummy", - location="imgui:589", + location="imgui:591", namespace="ImGui", ov_cimguiname="igDummy", ret="void", @@ -18144,7 +18208,7 @@ local t={ cimguiname="igEnd", defaults={}, funcname="End", - location="imgui:441", + location="imgui:443", namespace="ImGui", ov_cimguiname="igEnd", ret="void", @@ -18167,7 +18231,7 @@ local t={ cimguiname="igEndBoxSelect", defaults={}, funcname="EndBoxSelect", - location="imgui_internal:3776", + location="imgui_internal:3789", namespace="ImGui", ov_cimguiname="igEndBoxSelect", ret="void", @@ -18184,7 +18248,7 @@ local t={ cimguiname="igEndChild", defaults={}, funcname="EndChild", - location="imgui:463", + location="imgui:465", namespace="ImGui", ov_cimguiname="igEndChild", ret="void", @@ -18201,7 +18265,7 @@ local t={ cimguiname="igEndColumns", defaults={}, funcname="EndColumns", - location="imgui_internal:3789", + location="imgui_internal:3802", namespace="ImGui", ov_cimguiname="igEndColumns", ret="void", @@ -18218,7 +18282,7 @@ local t={ cimguiname="igEndCombo", defaults={}, funcname="EndCombo", - location="imgui:668", + location="imgui:670", namespace="ImGui", ov_cimguiname="igEndCombo", ret="void", @@ -18235,7 +18299,7 @@ local t={ cimguiname="igEndComboPreview", defaults={}, funcname="EndComboPreview", - location="imgui_internal:3578", + location="imgui_internal:3591", namespace="ImGui", ov_cimguiname="igEndComboPreview", ret="void", @@ -18252,7 +18316,7 @@ local t={ cimguiname="igEndDisabled", defaults={}, funcname="EndDisabled", - location="imgui:1022", + location="imgui:1025", namespace="ImGui", ov_cimguiname="igEndDisabled", ret="void", @@ -18269,7 +18333,7 @@ local t={ cimguiname="igEndDisabledOverrideReenable", defaults={}, funcname="EndDisabledOverrideReenable", - location="imgui_internal:3539", + location="imgui_internal:3550", namespace="ImGui", ov_cimguiname="igEndDisabledOverrideReenable", ret="void", @@ -18286,7 +18350,7 @@ local t={ cimguiname="igEndDragDropSource", defaults={}, funcname="EndDragDropSource", - location="imgui:1010", + location="imgui:1013", namespace="ImGui", ov_cimguiname="igEndDragDropSource", ret="void", @@ -18303,7 +18367,7 @@ local t={ cimguiname="igEndDragDropTarget", defaults={}, funcname="EndDragDropTarget", - location="imgui:1013", + location="imgui:1016", namespace="ImGui", ov_cimguiname="igEndDragDropTarget", ret="void", @@ -18320,7 +18384,7 @@ local t={ cimguiname="igEndErrorTooltip", defaults={}, funcname="EndErrorTooltip", - location="imgui_internal:4008", + location="imgui_internal:4022", namespace="ImGui", ov_cimguiname="igEndErrorTooltip", ret="void", @@ -18337,7 +18401,7 @@ local t={ cimguiname="igEndFrame", defaults={}, funcname="EndFrame", - location="imgui:407", + location="imgui:409", namespace="ImGui", ov_cimguiname="igEndFrame", ret="void", @@ -18354,7 +18418,7 @@ local t={ cimguiname="igEndGroup", defaults={}, funcname="EndGroup", - location="imgui:593", + location="imgui:595", namespace="ImGui", ov_cimguiname="igEndGroup", ret="void", @@ -18371,7 +18435,7 @@ local t={ cimguiname="igEndListBox", defaults={}, funcname="EndListBox", - location="imgui:794", + location="imgui:797", namespace="ImGui", ov_cimguiname="igEndListBox", ret="void", @@ -18388,7 +18452,7 @@ local t={ cimguiname="igEndMainMenuBar", defaults={}, funcname="EndMainMenuBar", - location="imgui:820", + location="imgui:823", namespace="ImGui", ov_cimguiname="igEndMainMenuBar", ret="void", @@ -18405,7 +18469,7 @@ local t={ cimguiname="igEndMenu", defaults={}, funcname="EndMenu", - location="imgui:822", + location="imgui:825", namespace="ImGui", ov_cimguiname="igEndMenu", ret="void", @@ -18422,7 +18486,7 @@ local t={ cimguiname="igEndMenuBar", defaults={}, funcname="EndMenuBar", - location="imgui:818", + location="imgui:821", namespace="ImGui", ov_cimguiname="igEndMenuBar", ret="void", @@ -18439,7 +18503,7 @@ local t={ cimguiname="igEndMultiSelect", defaults={}, funcname="EndMultiSelect", - location="imgui:782", + location="imgui:785", namespace="ImGui", ov_cimguiname="igEndMultiSelect", ret="ImGuiMultiSelectIO*", @@ -18456,7 +18520,7 @@ local t={ cimguiname="igEndPopup", defaults={}, funcname="EndPopup", - location="imgui:855", + location="imgui:858", namespace="ImGui", ov_cimguiname="igEndPopup", ret="void", @@ -18473,7 +18537,7 @@ local t={ cimguiname="igEndTabBar", defaults={}, funcname="EndTabBar", - location="imgui:959", + location="imgui:962", namespace="ImGui", ov_cimguiname="igEndTabBar", ret="void", @@ -18490,7 +18554,7 @@ local t={ cimguiname="igEndTabItem", defaults={}, funcname="EndTabItem", - location="imgui:961", + location="imgui:964", namespace="ImGui", ov_cimguiname="igEndTabItem", ret="void", @@ -18507,7 +18571,7 @@ local t={ cimguiname="igEndTable", defaults={}, funcname="EndTable", - location="imgui:910", + location="imgui:913", namespace="ImGui", ov_cimguiname="igEndTable", ret="void", @@ -18524,7 +18588,7 @@ local t={ cimguiname="igEndTooltip", defaults={}, funcname="EndTooltip", - location="imgui:831", + location="imgui:834", namespace="ImGui", ov_cimguiname="igEndTooltip", ret="void", @@ -18541,7 +18605,7 @@ local t={ cimguiname="igErrorCheckEndFrameFinalizeErrorTooltip", defaults={}, funcname="ErrorCheckEndFrameFinalizeErrorTooltip", - location="imgui_internal:4006", + location="imgui_internal:4020", namespace="ImGui", ov_cimguiname="igErrorCheckEndFrameFinalizeErrorTooltip", ret="void", @@ -18558,7 +18622,7 @@ local t={ cimguiname="igErrorCheckUsingSetCursorPosToExtendParentBoundaries", defaults={}, funcname="ErrorCheckUsingSetCursorPosToExtendParentBoundaries", - location="imgui_internal:4005", + location="imgui_internal:4019", namespace="ImGui", ov_cimguiname="igErrorCheckUsingSetCursorPosToExtendParentBoundaries", ret="void", @@ -18578,7 +18642,7 @@ local t={ cimguiname="igErrorLog", defaults={}, funcname="ErrorLog", - location="imgui_internal:4001", + location="imgui_internal:4015", namespace="ImGui", ov_cimguiname="igErrorLog", ret="bool", @@ -18598,7 +18662,7 @@ local t={ cimguiname="igErrorRecoveryStoreState", defaults={}, funcname="ErrorRecoveryStoreState", - location="imgui_internal:4002", + location="imgui_internal:4016", namespace="ImGui", ov_cimguiname="igErrorRecoveryStoreState", ret="void", @@ -18618,7 +18682,7 @@ local t={ cimguiname="igErrorRecoveryTryToRecoverState", defaults={}, funcname="ErrorRecoveryTryToRecoverState", - location="imgui_internal:4003", + location="imgui_internal:4017", namespace="ImGui", ov_cimguiname="igErrorRecoveryTryToRecoverState", ret="void", @@ -18638,13 +18702,42 @@ local t={ cimguiname="igErrorRecoveryTryToRecoverWindowState", defaults={}, funcname="ErrorRecoveryTryToRecoverWindowState", - location="imgui_internal:4004", + location="imgui_internal:4018", namespace="ImGui", ov_cimguiname="igErrorRecoveryTryToRecoverWindowState", ret="void", signature="(const ImGuiErrorRecoveryState*)", stname=""}, ["(const ImGuiErrorRecoveryState*)"]=nil}, + igExtendHitBoxWhenNearViewportEdge={ + [1]={ + args="(ImGuiWindow* window,ImRect* bb,float threshold,ImGuiAxis axis)", + argsT={ + [1]={ + name="window", + type="ImGuiWindow*"}, + [2]={ + name="bb", + type="ImRect*"}, + [3]={ + name="threshold", + type="float"}, + [4]={ + name="axis", + type="ImGuiAxis"}}, + argsoriginal="(ImGuiWindow* window,ImRect* bb,float threshold,ImGuiAxis axis)", + call_args="(window,bb,threshold,axis)", + call_args_old="(window,bb,threshold,axis)", + cimguiname="igExtendHitBoxWhenNearViewportEdge", + defaults={}, + funcname="ExtendHitBoxWhenNearViewportEdge", + location="imgui_internal:3950", + namespace="ImGui", + ov_cimguiname="igExtendHitBoxWhenNearViewportEdge", + ret="void", + signature="(ImGuiWindow*,ImRect*,float,ImGuiAxis)", + stname=""}, + ["(ImGuiWindow*,ImRect*,float,ImGuiAxis)"]=nil}, igFindBestWindowPosForPopup={ [1]={ args="(ImGuiWindow* window)", @@ -18659,7 +18752,7 @@ local t={ conv="ImVec2", defaults={}, funcname="FindBestWindowPosForPopup", - location="imgui_internal:3562", + location="imgui_internal:3573", namespace="ImGui", nonUDT=1, ov_cimguiname="igFindBestWindowPosForPopup", @@ -18696,7 +18789,7 @@ local t={ conv="ImVec2", defaults={}, funcname="FindBestWindowPosForPopupEx", - location="imgui_internal:3563", + location="imgui_internal:3574", namespace="ImGui", nonUDT=1, ov_cimguiname="igFindBestWindowPosForPopupEx", @@ -18717,7 +18810,7 @@ local t={ cimguiname="igFindBlockingModal", defaults={}, funcname="FindBlockingModal", - location="imgui_internal:3561", + location="imgui_internal:3572", namespace="ImGui", ov_cimguiname="igFindBlockingModal", ret="ImGuiWindow*", @@ -18737,7 +18830,7 @@ local t={ cimguiname="igFindBottomMostVisibleWindowWithinBeginStack", defaults={}, funcname="FindBottomMostVisibleWindowWithinBeginStack", - location="imgui_internal:3425", + location="imgui_internal:3436", namespace="ImGui", ov_cimguiname="igFindBottomMostVisibleWindowWithinBeginStack", ret="ImGuiWindow*", @@ -18757,7 +18850,7 @@ local t={ cimguiname="igFindHoveredViewportFromPlatformWindowStack", defaults={}, funcname="FindHoveredViewportFromPlatformWindowStack", - location="imgui_internal:3473", + location="imgui_internal:3484", namespace="ImGui", ov_cimguiname="igFindHoveredViewportFromPlatformWindowStack", ret="ImGuiViewportP*", @@ -18786,7 +18879,7 @@ local t={ cimguiname="igFindHoveredWindowEx", defaults={}, funcname="FindHoveredWindowEx", - location="imgui_internal:3459", + location="imgui_internal:3470", namespace="ImGui", ov_cimguiname="igFindHoveredWindowEx", ret="void", @@ -18809,7 +18902,7 @@ local t={ cimguiname="igFindOrCreateColumns", defaults={}, funcname="FindOrCreateColumns", - location="imgui_internal:3794", + location="imgui_internal:3807", namespace="ImGui", ov_cimguiname="igFindOrCreateColumns", ret="ImGuiOldColumns*", @@ -18833,7 +18926,7 @@ local t={ defaults={ text_end="NULL"}, funcname="FindRenderedTextEnd", - location="imgui_internal:3900", + location="imgui_internal:3914", namespace="ImGui", ov_cimguiname="igFindRenderedTextEnd", ret="const char*", @@ -18853,7 +18946,7 @@ local t={ cimguiname="igFindSettingsHandler", defaults={}, funcname="FindSettingsHandler", - location="imgui_internal:3481", + location="imgui_internal:3492", namespace="ImGui", ov_cimguiname="igFindSettingsHandler", ret="ImGuiSettingsHandler*", @@ -18873,7 +18966,7 @@ local t={ cimguiname="igFindViewportByID", defaults={}, funcname="FindViewportByID", - location="imgui:1197", + location="imgui:1200", namespace="ImGui", ov_cimguiname="igFindViewportByID", ret="ImGuiViewport*", @@ -18893,7 +18986,7 @@ local t={ cimguiname="igFindViewportByPlatformHandle", defaults={}, funcname="FindViewportByPlatformHandle", - location="imgui:1198", + location="imgui:1201", namespace="ImGui", ov_cimguiname="igFindViewportByPlatformHandle", ret="ImGuiViewport*", @@ -18913,7 +19006,7 @@ local t={ cimguiname="igFindWindowByID", defaults={}, funcname="FindWindowByID", - location="imgui_internal:3396", + location="imgui_internal:3407", namespace="ImGui", ov_cimguiname="igFindWindowByID", ret="ImGuiWindow*", @@ -18933,7 +19026,7 @@ local t={ cimguiname="igFindWindowByName", defaults={}, funcname="FindWindowByName", - location="imgui_internal:3397", + location="imgui_internal:3408", namespace="ImGui", ov_cimguiname="igFindWindowByName", ret="ImGuiWindow*", @@ -18953,7 +19046,7 @@ local t={ cimguiname="igFindWindowDisplayIndex", defaults={}, funcname="FindWindowDisplayIndex", - location="imgui_internal:3424", + location="imgui_internal:3435", namespace="ImGui", ov_cimguiname="igFindWindowDisplayIndex", ret="int", @@ -18973,7 +19066,7 @@ local t={ cimguiname="igFindWindowSettingsByID", defaults={}, funcname="FindWindowSettingsByID", - location="imgui_internal:3485", + location="imgui_internal:3496", namespace="ImGui", ov_cimguiname="igFindWindowSettingsByID", ret="ImGuiWindowSettings*", @@ -18993,7 +19086,7 @@ local t={ cimguiname="igFindWindowSettingsByWindow", defaults={}, funcname="FindWindowSettingsByWindow", - location="imgui_internal:3486", + location="imgui_internal:3497", namespace="ImGui", ov_cimguiname="igFindWindowSettingsByWindow", ret="ImGuiWindowSettings*", @@ -19013,7 +19106,7 @@ local t={ cimguiname="igFixupKeyChord", defaults={}, funcname="FixupKeyChord", - location="imgui_internal:3615", + location="imgui_internal:3628", namespace="ImGui", ov_cimguiname="igFixupKeyChord", ret="ImGuiKeyChord", @@ -19030,7 +19123,7 @@ local t={ cimguiname="igFocusItem", defaults={}, funcname="FocusItem", - location="imgui_internal:3602", + location="imgui_internal:3615", namespace="ImGui", ov_cimguiname="igFocusItem", ret="void", @@ -19059,7 +19152,7 @@ local t={ cimguiname="igFocusTopMostWindowUnderOne", defaults={}, funcname="FocusTopMostWindowUnderOne", - location="imgui_internal:3419", + location="imgui_internal:3430", namespace="ImGui", ov_cimguiname="igFocusTopMostWindowUnderOne", ret="void", @@ -19083,7 +19176,7 @@ local t={ defaults={ flags="0"}, funcname="FocusWindow", - location="imgui_internal:3418", + location="imgui_internal:3429", namespace="ImGui", ov_cimguiname="igFocusWindow", ret="void", @@ -19103,7 +19196,7 @@ local t={ cimguiname="igGcAwakeTransientWindowBuffers", defaults={}, funcname="GcAwakeTransientWindowBuffers", - location="imgui_internal:3998", + location="imgui_internal:4012", namespace="ImGui", ov_cimguiname="igGcAwakeTransientWindowBuffers", ret="void", @@ -19120,7 +19213,7 @@ local t={ cimguiname="igGcCompactTransientMiscBuffers", defaults={}, funcname="GcCompactTransientMiscBuffers", - location="imgui_internal:3996", + location="imgui_internal:4010", namespace="ImGui", ov_cimguiname="igGcCompactTransientMiscBuffers", ret="void", @@ -19140,7 +19233,7 @@ local t={ cimguiname="igGcCompactTransientWindowBuffers", defaults={}, funcname="GcCompactTransientWindowBuffers", - location="imgui_internal:3997", + location="imgui_internal:4011", namespace="ImGui", ov_cimguiname="igGcCompactTransientWindowBuffers", ret="void", @@ -19157,7 +19250,7 @@ local t={ cimguiname="igGetActiveID", defaults={}, funcname="GetActiveID", - location="imgui_internal:3509", + location="imgui_internal:3520", namespace="ImGui", ov_cimguiname="igGetActiveID", ret="ImGuiID", @@ -19183,7 +19276,7 @@ local t={ cimguiname="igGetAllocatorFunctions", defaults={}, funcname="GetAllocatorFunctions", - location="imgui:1187", + location="imgui:1190", namespace="ImGui", ov_cimguiname="igGetAllocatorFunctions", ret="void", @@ -19204,7 +19297,7 @@ local t={ defaults={ viewport="NULL"}, funcname="GetBackgroundDrawList", - location="imgui:1068", + location="imgui:1071", namespace="ImGui", ov_cimguiname="igGetBackgroundDrawList", ret="ImDrawList*", @@ -19224,7 +19317,7 @@ local t={ cimguiname="igGetBoxSelectState", defaults={}, funcname="GetBoxSelectState", - location="imgui_internal:3783", + location="imgui_internal:3796", namespace="ImGui", ov_cimguiname="igGetBoxSelectState", ret="ImGuiBoxSelectState*", @@ -19241,7 +19334,7 @@ local t={ cimguiname="igGetClipboardText", defaults={}, funcname="GetClipboardText", - location="imgui:1157", + location="imgui:1160", namespace="ImGui", ov_cimguiname="igGetClipboardText", ret="const char*", @@ -19265,7 +19358,7 @@ local t={ defaults={ alpha_mul="1.0f"}, funcname="GetColorU32", - location="imgui:558", + location="imgui:560", namespace="ImGui", ov_cimguiname="igGetColorU32_Col", ret="ImU32", @@ -19283,7 +19376,7 @@ local t={ cimguiname="igGetColorU32", defaults={}, funcname="GetColorU32", - location="imgui:559", + location="imgui:561", namespace="ImGui", ov_cimguiname="igGetColorU32_Vec4", ret="ImU32", @@ -19305,7 +19398,7 @@ local t={ defaults={ alpha_mul="1.0f"}, funcname="GetColorU32", - location="imgui:560", + location="imgui:562", namespace="ImGui", ov_cimguiname="igGetColorU32_U32", ret="ImU32", @@ -19324,7 +19417,7 @@ local t={ cimguiname="igGetColumnIndex", defaults={}, funcname="GetColumnIndex", - location="imgui:949", + location="imgui:952", namespace="ImGui", ov_cimguiname="igGetColumnIndex", ret="int", @@ -19347,7 +19440,7 @@ local t={ cimguiname="igGetColumnNormFromOffset", defaults={}, funcname="GetColumnNormFromOffset", - location="imgui_internal:3796", + location="imgui_internal:3809", namespace="ImGui", ov_cimguiname="igGetColumnNormFromOffset", ret="float", @@ -19368,7 +19461,7 @@ local t={ defaults={ column_index="-1"}, funcname="GetColumnOffset", - location="imgui:952", + location="imgui:955", namespace="ImGui", ov_cimguiname="igGetColumnOffset", ret="float", @@ -19391,7 +19484,7 @@ local t={ cimguiname="igGetColumnOffsetFromNorm", defaults={}, funcname="GetColumnOffsetFromNorm", - location="imgui_internal:3795", + location="imgui_internal:3808", namespace="ImGui", ov_cimguiname="igGetColumnOffsetFromNorm", ret="float", @@ -19412,7 +19505,7 @@ local t={ defaults={ column_index="-1"}, funcname="GetColumnWidth", - location="imgui:950", + location="imgui:953", namespace="ImGui", ov_cimguiname="igGetColumnWidth", ret="float", @@ -19429,7 +19522,7 @@ local t={ cimguiname="igGetColumnsCount", defaults={}, funcname="GetColumnsCount", - location="imgui:954", + location="imgui:957", namespace="ImGui", ov_cimguiname="igGetColumnsCount", ret="int", @@ -19452,7 +19545,7 @@ local t={ cimguiname="igGetColumnsID", defaults={}, funcname="GetColumnsID", - location="imgui_internal:3793", + location="imgui_internal:3806", namespace="ImGui", ov_cimguiname="igGetColumnsID", ret="ImGuiID", @@ -19470,7 +19563,7 @@ local t={ conv="ImVec2", defaults={}, funcname="GetContentRegionAvail", - location="imgui:575", + location="imgui:577", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetContentRegionAvail", @@ -19488,7 +19581,7 @@ local t={ cimguiname="igGetCurrentContext", defaults={}, funcname="GetCurrentContext", - location="imgui:399", + location="imgui:401", namespace="ImGui", ov_cimguiname="igGetCurrentContext", ret="ImGuiContext*", @@ -19505,7 +19598,7 @@ local t={ cimguiname="igGetCurrentFocusScope", defaults={}, funcname="GetCurrentFocusScope", - location="imgui_internal:3755", + location="imgui_internal:3768", namespace="ImGui", ov_cimguiname="igGetCurrentFocusScope", ret="ImGuiID", @@ -19522,7 +19615,7 @@ local t={ cimguiname="igGetCurrentTabBar", defaults={}, funcname="GetCurrentTabBar", - location="imgui_internal:3859", + location="imgui_internal:3873", namespace="ImGui", ov_cimguiname="igGetCurrentTabBar", ret="ImGuiTabBar*", @@ -19539,7 +19632,7 @@ local t={ cimguiname="igGetCurrentTable", defaults={}, funcname="GetCurrentTable", - location="imgui_internal:3812", + location="imgui_internal:3825", namespace="ImGui", ov_cimguiname="igGetCurrentTable", ret="ImGuiTable*", @@ -19556,7 +19649,7 @@ local t={ cimguiname="igGetCurrentWindow", defaults={}, funcname="GetCurrentWindow", - location="imgui_internal:3395", + location="imgui_internal:3406", namespace="ImGui", ov_cimguiname="igGetCurrentWindow", ret="ImGuiWindow*", @@ -19573,7 +19666,7 @@ local t={ cimguiname="igGetCurrentWindowRead", defaults={}, funcname="GetCurrentWindowRead", - location="imgui_internal:3394", + location="imgui_internal:3405", namespace="ImGui", ov_cimguiname="igGetCurrentWindowRead", ret="ImGuiWindow*", @@ -19591,7 +19684,7 @@ local t={ conv="ImVec2", defaults={}, funcname="GetCursorPos", - location="imgui:576", + location="imgui:578", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetCursorPos", @@ -19609,7 +19702,7 @@ local t={ cimguiname="igGetCursorPosX", defaults={}, funcname="GetCursorPosX", - location="imgui:577", + location="imgui:579", namespace="ImGui", ov_cimguiname="igGetCursorPosX", ret="float", @@ -19626,7 +19719,7 @@ local t={ cimguiname="igGetCursorPosY", defaults={}, funcname="GetCursorPosY", - location="imgui:578", + location="imgui:580", namespace="ImGui", ov_cimguiname="igGetCursorPosY", ret="float", @@ -19644,7 +19737,7 @@ local t={ conv="ImVec2", defaults={}, funcname="GetCursorScreenPos", - location="imgui:573", + location="imgui:575", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetCursorScreenPos", @@ -19663,7 +19756,7 @@ local t={ conv="ImVec2", defaults={}, funcname="GetCursorStartPos", - location="imgui:582", + location="imgui:584", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetCursorStartPos", @@ -19681,7 +19774,7 @@ local t={ cimguiname="igGetDefaultFont", defaults={}, funcname="GetDefaultFont", - location="imgui_internal:3440", + location="imgui_internal:3451", namespace="ImGui", ov_cimguiname="igGetDefaultFont", ret="ImFont*", @@ -19698,7 +19791,7 @@ local t={ cimguiname="igGetDragDropPayload", defaults={}, funcname="GetDragDropPayload", - location="imgui:1014", + location="imgui:1017", namespace="ImGui", ov_cimguiname="igGetDragDropPayload", ret="const ImGuiPayload*", @@ -19715,7 +19808,7 @@ local t={ cimguiname="igGetDrawData", defaults={}, funcname="GetDrawData", - location="imgui:409", + location="imgui:411", namespace="ImGui", ov_cimguiname="igGetDrawData", ret="ImDrawData*", @@ -19732,7 +19825,7 @@ local t={ cimguiname="igGetDrawListSharedData", defaults={}, funcname="GetDrawListSharedData", - location="imgui:1076", + location="imgui:1079", namespace="ImGui", ov_cimguiname="igGetDrawListSharedData", ret="ImDrawListSharedData*", @@ -19749,7 +19842,7 @@ local t={ cimguiname="igGetFocusID", defaults={}, funcname="GetFocusID", - location="imgui_internal:3510", + location="imgui_internal:3521", namespace="ImGui", ov_cimguiname="igGetFocusID", ret="ImGuiID", @@ -19766,7 +19859,7 @@ local t={ cimguiname="igGetFont", defaults={}, funcname="GetFont", - location="imgui:531", + location="imgui:533", namespace="ImGui", ov_cimguiname="igGetFont", ret="ImFont*", @@ -19783,7 +19876,7 @@ local t={ cimguiname="igGetFontBaked", defaults={}, funcname="GetFontBaked", - location="imgui:533", + location="imgui:535", namespace="ImGui", ov_cimguiname="igGetFontBaked", ret="ImFontBaked*", @@ -19800,7 +19893,7 @@ local t={ cimguiname="igGetFontRasterizerDensity", defaults={}, funcname="GetFontRasterizerDensity", - location="imgui_internal:3438", + location="imgui_internal:3449", namespace="ImGui", ov_cimguiname="igGetFontRasterizerDensity", ret="float", @@ -19817,7 +19910,7 @@ local t={ cimguiname="igGetFontSize", defaults={}, funcname="GetFontSize", - location="imgui:532", + location="imgui:534", namespace="ImGui", ov_cimguiname="igGetFontSize", ret="float", @@ -19835,7 +19928,7 @@ local t={ conv="ImVec2", defaults={}, funcname="GetFontTexUvWhitePixel", - location="imgui:557", + location="imgui:559", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetFontTexUvWhitePixel", @@ -19857,7 +19950,7 @@ local t={ defaults={ viewport="NULL"}, funcname="GetForegroundDrawList", - location="imgui:1069", + location="imgui:1072", namespace="ImGui", ov_cimguiname="igGetForegroundDrawList_ViewportPtr", ret="ImDrawList*", @@ -19875,7 +19968,7 @@ local t={ cimguiname="igGetForegroundDrawList", defaults={}, funcname="GetForegroundDrawList", - location="imgui_internal:3443", + location="imgui_internal:3454", namespace="ImGui", ov_cimguiname="igGetForegroundDrawList_WindowPtr", ret="ImDrawList*", @@ -19893,7 +19986,7 @@ local t={ cimguiname="igGetFrameCount", defaults={}, funcname="GetFrameCount", - location="imgui:1075", + location="imgui:1078", namespace="ImGui", ov_cimguiname="igGetFrameCount", ret="int", @@ -19910,7 +20003,7 @@ local t={ cimguiname="igGetFrameHeight", defaults={}, funcname="GetFrameHeight", - location="imgui:597", + location="imgui:599", namespace="ImGui", ov_cimguiname="igGetFrameHeight", ret="float", @@ -19927,7 +20020,7 @@ local t={ cimguiname="igGetFrameHeightWithSpacing", defaults={}, funcname="GetFrameHeightWithSpacing", - location="imgui:598", + location="imgui:600", namespace="ImGui", ov_cimguiname="igGetFrameHeightWithSpacing", ret="float", @@ -19944,7 +20037,7 @@ local t={ cimguiname="igGetHoveredID", defaults={}, funcname="GetHoveredID", - location="imgui_internal:3514", + location="imgui_internal:3525", namespace="ImGui", ov_cimguiname="igGetHoveredID", ret="ImGuiID", @@ -19964,7 +20057,7 @@ local t={ cimguiname="igGetID", defaults={}, funcname="GetID", - location="imgui:616", + location="imgui:618", namespace="ImGui", ov_cimguiname="igGetID_Str", ret="ImGuiID", @@ -19985,7 +20078,7 @@ local t={ cimguiname="igGetID", defaults={}, funcname="GetID", - location="imgui:617", + location="imgui:619", namespace="ImGui", ov_cimguiname="igGetID_StrStr", ret="ImGuiID", @@ -20003,7 +20096,7 @@ local t={ cimguiname="igGetID", defaults={}, funcname="GetID", - location="imgui:618", + location="imgui:620", namespace="ImGui", ov_cimguiname="igGetID_Ptr", ret="ImGuiID", @@ -20021,7 +20114,7 @@ local t={ cimguiname="igGetID", defaults={}, funcname="GetID", - location="imgui:619", + location="imgui:621", namespace="ImGui", ov_cimguiname="igGetID_Int", ret="ImGuiID", @@ -20050,7 +20143,7 @@ local t={ cimguiname="igGetIDWithSeed", defaults={}, funcname="GetIDWithSeed", - location="imgui_internal:3519", + location="imgui_internal:3530", namespace="ImGui", ov_cimguiname="igGetIDWithSeed_Str", ret="ImGuiID", @@ -20071,7 +20164,7 @@ local t={ cimguiname="igGetIDWithSeed", defaults={}, funcname="GetIDWithSeed", - location="imgui_internal:3520", + location="imgui_internal:3531", namespace="ImGui", ov_cimguiname="igGetIDWithSeed_Int", ret="ImGuiID", @@ -20089,7 +20182,7 @@ local t={ cimguiname="igGetIO", defaults={}, funcname="GetIO", - location="imgui:403", + location="imgui:405", namespace="ImGui", ov_cimguiname="igGetIO_Nil", ret="ImGuiIO*", @@ -20108,7 +20201,7 @@ local t={ cimguiname="igGetIO", defaults={}, funcname="GetIO", - location="imgui_internal:3391", + location="imgui_internal:3402", namespace="ImGui", ov_cimguiname="igGetIO_ContextPtr", ret="ImGuiIO*", @@ -20130,7 +20223,7 @@ local t={ cimguiname="igGetInputTextState", defaults={}, funcname="GetInputTextState", - location="imgui_internal:3977", + location="imgui_internal:3991", namespace="ImGui", ov_cimguiname="igGetInputTextState", ret="ImGuiInputTextState*", @@ -20147,7 +20240,7 @@ local t={ cimguiname="igGetItemFlags", defaults={}, funcname="GetItemFlags", - location="imgui:1059", + location="imgui:1062", namespace="ImGui", ov_cimguiname="igGetItemFlags", ret="ImGuiItemFlags", @@ -20164,7 +20257,7 @@ local t={ cimguiname="igGetItemID", defaults={}, funcname="GetItemID", - location="imgui:1055", + location="imgui:1058", namespace="ImGui", ov_cimguiname="igGetItemID", ret="ImGuiID", @@ -20182,7 +20275,7 @@ local t={ conv="ImVec2", defaults={}, funcname="GetItemRectMax", - location="imgui:1057", + location="imgui:1060", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetItemRectMax", @@ -20201,7 +20294,7 @@ local t={ conv="ImVec2", defaults={}, funcname="GetItemRectMin", - location="imgui:1056", + location="imgui:1059", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetItemRectMin", @@ -20220,7 +20313,7 @@ local t={ conv="ImVec2", defaults={}, funcname="GetItemRectSize", - location="imgui:1058", + location="imgui:1061", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetItemRectSize", @@ -20238,7 +20331,7 @@ local t={ cimguiname="igGetItemStatusFlags", defaults={}, funcname="GetItemStatusFlags", - location="imgui_internal:3508", + location="imgui_internal:3519", namespace="ImGui", ov_cimguiname="igGetItemStatusFlags", ret="ImGuiItemStatusFlags", @@ -20258,7 +20351,7 @@ local t={ cimguiname="igGetKeyChordName", defaults={}, funcname="GetKeyChordName", - location="imgui_internal:3627", + location="imgui_internal:3640", namespace="ImGui", ov_cimguiname="igGetKeyChordName", ret="const char*", @@ -20281,7 +20374,7 @@ local t={ cimguiname="igGetKeyData", defaults={}, funcname="GetKeyData", - location="imgui_internal:3625", + location="imgui_internal:3638", namespace="ImGui", ov_cimguiname="igGetKeyData_ContextPtr", ret="ImGuiKeyData*", @@ -20299,7 +20392,7 @@ local t={ cimguiname="igGetKeyData", defaults={}, funcname="GetKeyData", - location="imgui_internal:3626", + location="imgui_internal:3639", namespace="ImGui", ov_cimguiname="igGetKeyData_Key", ret="ImGuiKeyData*", @@ -20330,7 +20423,7 @@ local t={ conv="ImVec2", defaults={}, funcname="GetKeyMagnitude2d", - location="imgui_internal:3630", + location="imgui_internal:3643", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetKeyMagnitude2d", @@ -20351,7 +20444,7 @@ local t={ cimguiname="igGetKeyName", defaults={}, funcname="GetKeyName", - location="imgui:1099", + location="imgui:1102", namespace="ImGui", ov_cimguiname="igGetKeyName", ret="const char*", @@ -20371,7 +20464,7 @@ local t={ cimguiname="igGetKeyOwner", defaults={}, funcname="GetKeyOwner", - location="imgui_internal:3649", + location="imgui_internal:3662", namespace="ImGui", ov_cimguiname="igGetKeyOwner", ret="ImGuiID", @@ -20394,7 +20487,7 @@ local t={ cimguiname="igGetKeyOwnerData", defaults={}, funcname="GetKeyOwnerData", - location="imgui_internal:3654", + location="imgui_internal:3667", namespace="ImGui", ov_cimguiname="igGetKeyOwnerData", ret="ImGuiKeyOwnerData*", @@ -20420,7 +20513,7 @@ local t={ cimguiname="igGetKeyPressedAmount", defaults={}, funcname="GetKeyPressedAmount", - location="imgui:1098", + location="imgui:1101", namespace="ImGui", ov_cimguiname="igGetKeyPressedAmount", ret="int", @@ -20437,7 +20530,7 @@ local t={ cimguiname="igGetMainViewport", defaults={}, funcname="GetMainViewport", - location="imgui:1065", + location="imgui:1068", namespace="ImGui", ov_cimguiname="igGetMainViewport", ret="ImGuiViewport*", @@ -20457,7 +20550,7 @@ local t={ cimguiname="igGetMouseButtonFromPopupFlags", defaults={}, funcname="GetMouseButtonFromPopupFlags", - location="imgui_internal:3564", + location="imgui_internal:3575", namespace="ImGui", ov_cimguiname="igGetMouseButtonFromPopupFlags", ret="ImGuiMouseButton", @@ -20477,7 +20570,7 @@ local t={ cimguiname="igGetMouseClickedCount", defaults={}, funcname="GetMouseClickedCount", - location="imgui:1142", + location="imgui:1145", namespace="ImGui", ov_cimguiname="igGetMouseClickedCount", ret="int", @@ -20494,7 +20587,7 @@ local t={ cimguiname="igGetMouseCursor", defaults={}, funcname="GetMouseCursor", - location="imgui:1151", + location="imgui:1154", namespace="ImGui", ov_cimguiname="igGetMouseCursor", ret="ImGuiMouseCursor", @@ -20520,7 +20613,7 @@ local t={ button="0", lock_threshold="-1.0f"}, funcname="GetMouseDragDelta", - location="imgui:1149", + location="imgui:1152", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetMouseDragDelta", @@ -20539,7 +20632,7 @@ local t={ conv="ImVec2", defaults={}, funcname="GetMousePos", - location="imgui:1146", + location="imgui:1149", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetMousePos", @@ -20558,7 +20651,7 @@ local t={ conv="ImVec2", defaults={}, funcname="GetMousePosOnOpeningCurrentPopup", - location="imgui:1147", + location="imgui:1150", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetMousePosOnOpeningCurrentPopup", @@ -20579,7 +20672,7 @@ local t={ cimguiname="igGetMultiSelectState", defaults={}, funcname="GetMultiSelectState", - location="imgui_internal:3784", + location="imgui_internal:3797", namespace="ImGui", ov_cimguiname="igGetMultiSelectState", ret="ImGuiMultiSelectState*", @@ -20599,7 +20692,7 @@ local t={ cimguiname="igGetNavTweakPressedAmount", defaults={}, funcname="GetNavTweakPressedAmount", - location="imgui_internal:3631", + location="imgui_internal:3644", namespace="ImGui", ov_cimguiname="igGetNavTweakPressedAmount", ret="float", @@ -20616,7 +20709,7 @@ local t={ cimguiname="igGetPlatformIO", defaults={}, funcname="GetPlatformIO", - location="imgui:404", + location="imgui:406", namespace="ImGui", ov_cimguiname="igGetPlatformIO_Nil", ret="ImGuiPlatformIO*", @@ -20635,7 +20728,7 @@ local t={ cimguiname="igGetPlatformIO", defaults={}, funcname="GetPlatformIO", - location="imgui_internal:3392", + location="imgui_internal:3403", namespace="ImGui", ov_cimguiname="igGetPlatformIO_ContextPtr", ret="ImGuiPlatformIO*", @@ -20658,7 +20751,7 @@ local t={ conv="ImRect", defaults={}, funcname="GetPopupAllowedExtentRect", - location="imgui_internal:3558", + location="imgui_internal:3569", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetPopupAllowedExtentRect", @@ -20679,7 +20772,7 @@ local t={ cimguiname="igGetRoundedFontSize", defaults={}, funcname="GetRoundedFontSize", - location="imgui_internal:3439", + location="imgui_internal:3450", namespace="ImGui", ov_cimguiname="igGetRoundedFontSize", ret="float", @@ -20696,7 +20789,7 @@ local t={ cimguiname="igGetScale", defaults={}, funcname="GetScale", - location="imgui_internal:3393", + location="imgui_internal:3404", namespace="ImGui", ov_cimguiname="igGetScale", ret="float", @@ -20713,7 +20806,7 @@ local t={ cimguiname="igGetScrollMaxX", defaults={}, funcname="GetScrollMaxX", - location="imgui:506", + location="imgui:508", namespace="ImGui", ov_cimguiname="igGetScrollMaxX", ret="float", @@ -20730,7 +20823,7 @@ local t={ cimguiname="igGetScrollMaxY", defaults={}, funcname="GetScrollMaxY", - location="imgui:507", + location="imgui:509", namespace="ImGui", ov_cimguiname="igGetScrollMaxY", ret="float", @@ -20747,7 +20840,7 @@ local t={ cimguiname="igGetScrollX", defaults={}, funcname="GetScrollX", - location="imgui:502", + location="imgui:504", namespace="ImGui", ov_cimguiname="igGetScrollX", ret="float", @@ -20764,7 +20857,7 @@ local t={ cimguiname="igGetScrollY", defaults={}, funcname="GetScrollY", - location="imgui:503", + location="imgui:505", namespace="ImGui", ov_cimguiname="igGetScrollY", ret="float", @@ -20784,7 +20877,7 @@ local t={ cimguiname="igGetShortcutRoutingData", defaults={}, funcname="GetShortcutRoutingData", - location="imgui_internal:3688", + location="imgui_internal:3701", namespace="ImGui", ov_cimguiname="igGetShortcutRoutingData", ret="ImGuiKeyRoutingData*", @@ -20801,7 +20894,7 @@ local t={ cimguiname="igGetStateStorage", defaults={}, funcname="GetStateStorage", - location="imgui:1079", + location="imgui:1082", namespace="ImGui", ov_cimguiname="igGetStateStorage", ret="ImGuiStorage*", @@ -20818,7 +20911,7 @@ local t={ cimguiname="igGetStyle", defaults={}, funcname="GetStyle", - location="imgui:405", + location="imgui:407", namespace="ImGui", ov_cimguiname="igGetStyle", ret="ImGuiStyle*", @@ -20839,7 +20932,7 @@ local t={ cimguiname="igGetStyleColorName", defaults={}, funcname="GetStyleColorName", - location="imgui:1077", + location="imgui:1080", namespace="ImGui", ov_cimguiname="igGetStyleColorName", ret="const char*", @@ -20859,7 +20952,7 @@ local t={ cimguiname="igGetStyleColorVec4", defaults={}, funcname="GetStyleColorVec4", - location="imgui:561", + location="imgui:563", namespace="ImGui", nonUDT=2, ov_cimguiname="igGetStyleColorVec4", @@ -20881,7 +20974,7 @@ local t={ cimguiname="igGetStyleVarInfo", defaults={}, funcname="GetStyleVarInfo", - location="imgui_internal:3537", + location="imgui_internal:3548", namespace="ImGui", ov_cimguiname="igGetStyleVarInfo", ret="const ImGuiStyleVarInfo*", @@ -20898,7 +20991,7 @@ local t={ cimguiname="igGetTextLineHeight", defaults={}, funcname="GetTextLineHeight", - location="imgui:595", + location="imgui:597", namespace="ImGui", ov_cimguiname="igGetTextLineHeight", ret="float", @@ -20915,7 +21008,7 @@ local t={ cimguiname="igGetTextLineHeightWithSpacing", defaults={}, funcname="GetTextLineHeightWithSpacing", - location="imgui:596", + location="imgui:598", namespace="ImGui", ov_cimguiname="igGetTextLineHeightWithSpacing", ret="float", @@ -20932,7 +21025,7 @@ local t={ cimguiname="igGetTime", defaults={}, funcname="GetTime", - location="imgui:1074", + location="imgui:1077", namespace="ImGui", ov_cimguiname="igGetTime", ret="double", @@ -20949,7 +21042,7 @@ local t={ cimguiname="igGetTopMostAndVisiblePopupModal", defaults={}, funcname="GetTopMostAndVisiblePopupModal", - location="imgui_internal:3560", + location="imgui_internal:3571", namespace="ImGui", ov_cimguiname="igGetTopMostAndVisiblePopupModal", ret="ImGuiWindow*", @@ -20966,7 +21059,7 @@ local t={ cimguiname="igGetTopMostPopupModal", defaults={}, funcname="GetTopMostPopupModal", - location="imgui_internal:3559", + location="imgui_internal:3570", namespace="ImGui", ov_cimguiname="igGetTopMostPopupModal", ret="ImGuiWindow*", @@ -20983,7 +21076,7 @@ local t={ cimguiname="igGetTreeNodeToLabelSpacing", defaults={}, funcname="GetTreeNodeToLabelSpacing", - location="imgui:762", + location="imgui:764", namespace="ImGui", ov_cimguiname="igGetTreeNodeToLabelSpacing", ret="float", @@ -21009,7 +21102,7 @@ local t={ cimguiname="igGetTypematicRepeatRate", defaults={}, funcname="GetTypematicRepeatRate", - location="imgui_internal:3633", + location="imgui_internal:3646", namespace="ImGui", ov_cimguiname="igGetTypematicRepeatRate", ret="void", @@ -21030,7 +21123,7 @@ local t={ defaults={ flags="ImGuiTypingSelectFlags_None"}, funcname="GetTypingSelectRequest", - location="imgui_internal:3769", + location="imgui_internal:3782", namespace="ImGui", ov_cimguiname="igGetTypingSelectRequest", ret="ImGuiTypingSelectRequest*", @@ -21047,7 +21140,7 @@ local t={ cimguiname="igGetVersion", defaults={}, funcname="GetVersion", - location="imgui:421", + location="imgui:423", namespace="ImGui", ov_cimguiname="igGetVersion", ret="const char*", @@ -21067,7 +21160,7 @@ local t={ cimguiname="igGetViewportPlatformMonitor", defaults={}, funcname="GetViewportPlatformMonitor", - location="imgui_internal:3472", + location="imgui_internal:3483", namespace="ImGui", ov_cimguiname="igGetViewportPlatformMonitor", ret="const ImGuiPlatformMonitor*", @@ -21087,7 +21180,7 @@ local t={ cimguiname="igGetWindowAlwaysWantOwnTabBar", defaults={}, funcname="GetWindowAlwaysWantOwnTabBar", - location="imgui_internal:3715", + location="imgui_internal:3728", namespace="ImGui", ov_cimguiname="igGetWindowAlwaysWantOwnTabBar", ret="bool", @@ -21104,7 +21197,7 @@ local t={ cimguiname="igGetWindowDockID", defaults={}, funcname="GetWindowDockID", - location="imgui:990", + location="imgui:993", namespace="ImGui", ov_cimguiname="igGetWindowDockID", ret="ImGuiID", @@ -21121,7 +21214,7 @@ local t={ cimguiname="igGetWindowDockNode", defaults={}, funcname="GetWindowDockNode", - location="imgui_internal:3714", + location="imgui_internal:3727", namespace="ImGui", ov_cimguiname="igGetWindowDockNode", ret="ImGuiDockNode*", @@ -21138,7 +21231,7 @@ local t={ cimguiname="igGetWindowDpiScale", defaults={}, funcname="GetWindowDpiScale", - location="imgui:472", + location="imgui:474", namespace="ImGui", ov_cimguiname="igGetWindowDpiScale", ret="float", @@ -21155,7 +21248,7 @@ local t={ cimguiname="igGetWindowDrawList", defaults={}, funcname="GetWindowDrawList", - location="imgui:471", + location="imgui:473", namespace="ImGui", ov_cimguiname="igGetWindowDrawList", ret="ImDrawList*", @@ -21172,7 +21265,7 @@ local t={ cimguiname="igGetWindowHeight", defaults={}, funcname="GetWindowHeight", - location="imgui:476", + location="imgui:478", namespace="ImGui", ov_cimguiname="igGetWindowHeight", ret="float", @@ -21190,7 +21283,7 @@ local t={ conv="ImVec2", defaults={}, funcname="GetWindowPos", - location="imgui:473", + location="imgui:475", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetWindowPos", @@ -21214,7 +21307,7 @@ local t={ cimguiname="igGetWindowResizeBorderID", defaults={}, funcname="GetWindowResizeBorderID", - location="imgui_internal:3935", + location="imgui_internal:3949", namespace="ImGui", ov_cimguiname="igGetWindowResizeBorderID", ret="ImGuiID", @@ -21237,7 +21330,7 @@ local t={ cimguiname="igGetWindowResizeCornerID", defaults={}, funcname="GetWindowResizeCornerID", - location="imgui_internal:3934", + location="imgui_internal:3948", namespace="ImGui", ov_cimguiname="igGetWindowResizeCornerID", ret="ImGuiID", @@ -21260,7 +21353,7 @@ local t={ cimguiname="igGetWindowScrollbarID", defaults={}, funcname="GetWindowScrollbarID", - location="imgui_internal:3933", + location="imgui_internal:3947", namespace="ImGui", ov_cimguiname="igGetWindowScrollbarID", ret="ImGuiID", @@ -21284,7 +21377,7 @@ local t={ conv="ImRect", defaults={}, funcname="GetWindowScrollbarRect", - location="imgui_internal:3932", + location="imgui_internal:3946", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetWindowScrollbarRect", @@ -21303,7 +21396,7 @@ local t={ conv="ImVec2", defaults={}, funcname="GetWindowSize", - location="imgui:474", + location="imgui:476", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetWindowSize", @@ -21321,7 +21414,7 @@ local t={ cimguiname="igGetWindowViewport", defaults={}, funcname="GetWindowViewport", - location="imgui:477", + location="imgui:479", namespace="ImGui", ov_cimguiname="igGetWindowViewport", ret="ImGuiViewport*", @@ -21338,7 +21431,7 @@ local t={ cimguiname="igGetWindowWidth", defaults={}, funcname="GetWindowWidth", - location="imgui:475", + location="imgui:477", namespace="ImGui", ov_cimguiname="igGetWindowWidth", ret="float", @@ -22040,7 +22133,7 @@ local t={ cimguiname="igImFontAtlasAddDrawListSharedData", defaults={}, funcname="ImFontAtlasAddDrawListSharedData", - location="imgui_internal:4235", + location="imgui_internal:4252", ov_cimguiname="igImFontAtlasAddDrawListSharedData", ret="void", signature="(ImFontAtlas*,ImDrawListSharedData*)", @@ -22071,7 +22164,7 @@ local t={ cimguiname="igImFontAtlasBakedAdd", defaults={}, funcname="ImFontAtlasBakedAdd", - location="imgui_internal:4221", + location="imgui_internal:4238", ov_cimguiname="igImFontAtlasBakedAdd", ret="ImFontBaked*", signature="(ImFontAtlas*,ImFont*,float,float,ImGuiID)", @@ -22099,7 +22192,7 @@ local t={ cimguiname="igImFontAtlasBakedAddFontGlyph", defaults={}, funcname="ImFontAtlasBakedAddFontGlyph", - location="imgui_internal:4223", + location="imgui_internal:4240", ov_cimguiname="igImFontAtlasBakedAddFontGlyph", ret="ImFontGlyph*", signature="(ImFontAtlas*,ImFontBaked*,ImFontConfig*,const ImFontGlyph*)", @@ -22130,7 +22223,7 @@ local t={ cimguiname="igImFontAtlasBakedAddFontGlyphAdvancedX", defaults={}, funcname="ImFontAtlasBakedAddFontGlyphAdvancedX", - location="imgui_internal:4224", + location="imgui_internal:4241", ov_cimguiname="igImFontAtlasBakedAddFontGlyphAdvancedX", ret="void", signature="(ImFontAtlas*,ImFontBaked*,ImFontConfig*,ImWchar,float)", @@ -22155,7 +22248,7 @@ local t={ cimguiname="igImFontAtlasBakedDiscard", defaults={}, funcname="ImFontAtlasBakedDiscard", - location="imgui_internal:4222", + location="imgui_internal:4239", ov_cimguiname="igImFontAtlasBakedDiscard", ret="void", signature="(ImFontAtlas*,ImFont*,ImFontBaked*)", @@ -22183,7 +22276,7 @@ local t={ cimguiname="igImFontAtlasBakedDiscardFontGlyph", defaults={}, funcname="ImFontAtlasBakedDiscardFontGlyph", - location="imgui_internal:4225", + location="imgui_internal:4242", ov_cimguiname="igImFontAtlasBakedDiscardFontGlyph", ret="void", signature="(ImFontAtlas*,ImFont*,ImFontBaked*,ImFontGlyph*)", @@ -22211,7 +22304,7 @@ local t={ cimguiname="igImFontAtlasBakedGetClosestMatch", defaults={}, funcname="ImFontAtlasBakedGetClosestMatch", - location="imgui_internal:4220", + location="imgui_internal:4237", ov_cimguiname="igImFontAtlasBakedGetClosestMatch", ret="ImFontBaked*", signature="(ImFontAtlas*,ImFont*,float,float)", @@ -22236,7 +22329,7 @@ local t={ cimguiname="igImFontAtlasBakedGetId", defaults={}, funcname="ImFontAtlasBakedGetId", - location="imgui_internal:4218", + location="imgui_internal:4235", ov_cimguiname="igImFontAtlasBakedGetId", ret="ImGuiID", signature="(ImGuiID,float,float)", @@ -22264,7 +22357,7 @@ local t={ cimguiname="igImFontAtlasBakedGetOrAdd", defaults={}, funcname="ImFontAtlasBakedGetOrAdd", - location="imgui_internal:4219", + location="imgui_internal:4236", ov_cimguiname="igImFontAtlasBakedGetOrAdd", ret="ImFontBaked*", signature="(ImFontAtlas*,ImFont*,float,float)", @@ -22304,7 +22397,7 @@ local t={ cimguiname="igImFontAtlasBakedSetFontGlyphBitmap", defaults={}, funcname="ImFontAtlasBakedSetFontGlyphBitmap", - location="imgui_internal:4226", + location="imgui_internal:4243", ov_cimguiname="igImFontAtlasBakedSetFontGlyphBitmap", ret="void", signature="(ImFontAtlas*,ImFontBaked*,ImFontConfig*,ImFontGlyph*,ImTextureRect*,const unsigned char*,ImTextureFormat,int)", @@ -22323,7 +22416,7 @@ local t={ cimguiname="igImFontAtlasBuildClear", defaults={}, funcname="ImFontAtlasBuildClear", - location="imgui_internal:4196", + location="imgui_internal:4213", ov_cimguiname="igImFontAtlasBuildClear", ret="void", signature="(ImFontAtlas*)", @@ -22342,7 +22435,7 @@ local t={ cimguiname="igImFontAtlasBuildDestroy", defaults={}, funcname="ImFontAtlasBuildDestroy", - location="imgui_internal:4190", + location="imgui_internal:4207", ov_cimguiname="igImFontAtlasBuildDestroy", ret="void", signature="(ImFontAtlas*)", @@ -22364,7 +22457,7 @@ local t={ cimguiname="igImFontAtlasBuildDiscardBakes", defaults={}, funcname="ImFontAtlasBuildDiscardBakes", - location="imgui_internal:4208", + location="imgui_internal:4225", ov_cimguiname="igImFontAtlasBuildDiscardBakes", ret="void", signature="(ImFontAtlas*,int)", @@ -22392,7 +22485,7 @@ local t={ cimguiname="igImFontAtlasBuildGetOversampleFactors", defaults={}, funcname="ImFontAtlasBuildGetOversampleFactors", - location="imgui_internal:4207", + location="imgui_internal:4224", ov_cimguiname="igImFontAtlasBuildGetOversampleFactors", ret="void", signature="(ImFontConfig*,ImFontBaked*,int*,int*)", @@ -22411,7 +22504,7 @@ local t={ cimguiname="igImFontAtlasBuildInit", defaults={}, funcname="ImFontAtlasBuildInit", - location="imgui_internal:4189", + location="imgui_internal:4206", ov_cimguiname="igImFontAtlasBuildInit", ret="void", signature="(ImFontAtlas*)", @@ -22430,7 +22523,7 @@ local t={ cimguiname="igImFontAtlasBuildLegacyPreloadAllGlyphRanges", defaults={}, funcname="ImFontAtlasBuildLegacyPreloadAllGlyphRanges", - location="imgui_internal:4206", + location="imgui_internal:4223", ov_cimguiname="igImFontAtlasBuildLegacyPreloadAllGlyphRanges", ret="void", signature="(ImFontAtlas*)", @@ -22449,7 +22542,7 @@ local t={ cimguiname="igImFontAtlasBuildMain", defaults={}, funcname="ImFontAtlasBuildMain", - location="imgui_internal:4191", + location="imgui_internal:4208", ov_cimguiname="igImFontAtlasBuildMain", ret="void", signature="(ImFontAtlas*)", @@ -22474,7 +22567,7 @@ local t={ cimguiname="igImFontAtlasBuildNotifySetFont", defaults={}, funcname="ImFontAtlasBuildNotifySetFont", - location="imgui_internal:4193", + location="imgui_internal:4210", ov_cimguiname="igImFontAtlasBuildNotifySetFont", ret="void", signature="(ImFontAtlas*,ImFont*,ImFont*)", @@ -22511,7 +22604,7 @@ local t={ cimguiname="igImFontAtlasBuildRenderBitmapFromString", defaults={}, funcname="ImFontAtlasBuildRenderBitmapFromString", - location="imgui_internal:4195", + location="imgui_internal:4212", ov_cimguiname="igImFontAtlasBuildRenderBitmapFromString", ret="void", signature="(ImFontAtlas*,int,int,int,int,const char*,char)", @@ -22533,7 +22626,7 @@ local t={ cimguiname="igImFontAtlasBuildSetupFontLoader", defaults={}, funcname="ImFontAtlasBuildSetupFontLoader", - location="imgui_internal:4192", + location="imgui_internal:4209", ov_cimguiname="igImFontAtlasBuildSetupFontLoader", ret="void", signature="(ImFontAtlas*,const ImFontLoader*)", @@ -22558,7 +22651,7 @@ local t={ cimguiname="igImFontAtlasBuildSetupFontSpecialGlyphs", defaults={}, funcname="ImFontAtlasBuildSetupFontSpecialGlyphs", - location="imgui_internal:4205", + location="imgui_internal:4222", ov_cimguiname="igImFontAtlasBuildSetupFontSpecialGlyphs", ret="void", signature="(ImFontAtlas*,ImFont*,ImFontConfig*)", @@ -22577,7 +22670,7 @@ local t={ cimguiname="igImFontAtlasBuildUpdatePointers", defaults={}, funcname="ImFontAtlasBuildUpdatePointers", - location="imgui_internal:4194", + location="imgui_internal:4211", ov_cimguiname="igImFontAtlasBuildUpdatePointers", ret="void", signature="(ImFontAtlas*)", @@ -22596,7 +22689,7 @@ local t={ cimguiname="igImFontAtlasDebugLogTextureRequests", defaults={}, funcname="ImFontAtlasDebugLogTextureRequests", - location="imgui_internal:4252", + location="imgui_internal:4269", ov_cimguiname="igImFontAtlasDebugLogTextureRequests", ret="void", signature="(ImFontAtlas*)", @@ -22618,7 +22711,7 @@ local t={ cimguiname="igImFontAtlasFontDestroyOutput", defaults={}, funcname="ImFontAtlasFontDestroyOutput", - location="imgui_internal:4214", + location="imgui_internal:4231", ov_cimguiname="igImFontAtlasFontDestroyOutput", ret="void", signature="(ImFontAtlas*,ImFont*)", @@ -22640,7 +22733,7 @@ local t={ cimguiname="igImFontAtlasFontDestroySourceData", defaults={}, funcname="ImFontAtlasFontDestroySourceData", - location="imgui_internal:4212", + location="imgui_internal:4229", ov_cimguiname="igImFontAtlasFontDestroySourceData", ret="void", signature="(ImFontAtlas*,ImFontConfig*)", @@ -22665,7 +22758,7 @@ local t={ cimguiname="igImFontAtlasFontDiscardBakes", defaults={}, funcname="ImFontAtlasFontDiscardBakes", - location="imgui_internal:4216", + location="imgui_internal:4233", ov_cimguiname="igImFontAtlasFontDiscardBakes", ret="void", signature="(ImFontAtlas*,ImFont*,int)", @@ -22687,7 +22780,7 @@ local t={ cimguiname="igImFontAtlasFontInitOutput", defaults={}, funcname="ImFontAtlasFontInitOutput", - location="imgui_internal:4213", + location="imgui_internal:4230", ov_cimguiname="igImFontAtlasFontInitOutput", ret="bool", signature="(ImFontAtlas*,ImFont*)", @@ -22709,7 +22802,7 @@ local t={ cimguiname="igImFontAtlasFontRebuildOutput", defaults={}, funcname="ImFontAtlasFontRebuildOutput", - location="imgui_internal:4215", + location="imgui_internal:4232", ov_cimguiname="igImFontAtlasFontRebuildOutput", ret="void", signature="(ImFontAtlas*,ImFont*)", @@ -22734,7 +22827,7 @@ local t={ cimguiname="igImFontAtlasFontSourceAddToFont", defaults={}, funcname="ImFontAtlasFontSourceAddToFont", - location="imgui_internal:4211", + location="imgui_internal:4228", ov_cimguiname="igImFontAtlasFontSourceAddToFont", ret="void", signature="(ImFontAtlas*,ImFont*,ImFontConfig*)", @@ -22756,7 +22849,7 @@ local t={ cimguiname="igImFontAtlasFontSourceInit", defaults={}, funcname="ImFontAtlasFontSourceInit", - location="imgui_internal:4210", + location="imgui_internal:4227", ov_cimguiname="igImFontAtlasFontSourceInit", ret="bool", signature="(ImFontAtlas*,ImFontConfig*)", @@ -22772,7 +22865,7 @@ local t={ cimguiname="igImFontAtlasGetFontLoaderForStbTruetype", defaults={}, funcname="ImFontAtlasGetFontLoaderForStbTruetype", - location="imgui_internal:4093", + location="imgui_internal:4110", ov_cimguiname="igImFontAtlasGetFontLoaderForStbTruetype", ret="const ImFontLoader*", signature="()", @@ -22806,7 +22899,7 @@ local t={ cimguiname="igImFontAtlasGetMouseCursorTexData", defaults={}, funcname="ImFontAtlasGetMouseCursorTexData", - location="imgui_internal:4255", + location="imgui_internal:4272", ov_cimguiname="igImFontAtlasGetMouseCursorTexData", ret="bool", signature="(ImFontAtlas*,ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])", @@ -22835,7 +22928,7 @@ local t={ defaults={ overwrite_entry="NULL"}, funcname="ImFontAtlasPackAddRect", - location="imgui_internal:4229", + location="imgui_internal:4246", ov_cimguiname="igImFontAtlasPackAddRect", ret="ImFontAtlasRectId", signature="(ImFontAtlas*,int,int,ImFontAtlasRectEntry*)", @@ -22857,7 +22950,7 @@ local t={ cimguiname="igImFontAtlasPackDiscardRect", defaults={}, funcname="ImFontAtlasPackDiscardRect", - location="imgui_internal:4232", + location="imgui_internal:4249", ov_cimguiname="igImFontAtlasPackDiscardRect", ret="void", signature="(ImFontAtlas*,ImFontAtlasRectId)", @@ -22879,7 +22972,7 @@ local t={ cimguiname="igImFontAtlasPackGetRect", defaults={}, funcname="ImFontAtlasPackGetRect", - location="imgui_internal:4230", + location="imgui_internal:4247", ov_cimguiname="igImFontAtlasPackGetRect", ret="ImTextureRect*", signature="(ImFontAtlas*,ImFontAtlasRectId)", @@ -22901,7 +22994,7 @@ local t={ cimguiname="igImFontAtlasPackGetRectSafe", defaults={}, funcname="ImFontAtlasPackGetRectSafe", - location="imgui_internal:4231", + location="imgui_internal:4248", ov_cimguiname="igImFontAtlasPackGetRectSafe", ret="ImTextureRect*", signature="(ImFontAtlas*,ImFontAtlasRectId)", @@ -22920,7 +23013,7 @@ local t={ cimguiname="igImFontAtlasPackInit", defaults={}, funcname="ImFontAtlasPackInit", - location="imgui_internal:4228", + location="imgui_internal:4245", ov_cimguiname="igImFontAtlasPackInit", ret="void", signature="(ImFontAtlas*)", @@ -22939,7 +23032,7 @@ local t={ cimguiname="igImFontAtlasRectId_GetGeneration", defaults={}, funcname="ImFontAtlasRectId_GetGeneration", - location="imgui_internal:4116", + location="imgui_internal:4133", ov_cimguiname="igImFontAtlasRectId_GetGeneration", ret="unsigned int", signature="(ImFontAtlasRectId)", @@ -22958,7 +23051,7 @@ local t={ cimguiname="igImFontAtlasRectId_GetIndex", defaults={}, funcname="ImFontAtlasRectId_GetIndex", - location="imgui_internal:4115", + location="imgui_internal:4132", ov_cimguiname="igImFontAtlasRectId_GetIndex", ret="int", signature="(ImFontAtlasRectId)", @@ -22980,7 +23073,7 @@ local t={ cimguiname="igImFontAtlasRectId_Make", defaults={}, funcname="ImFontAtlasRectId_Make", - location="imgui_internal:4117", + location="imgui_internal:4134", ov_cimguiname="igImFontAtlasRectId_Make", ret="ImFontAtlasRectId", signature="(int,int)", @@ -23002,7 +23095,7 @@ local t={ cimguiname="igImFontAtlasRemoveDrawListSharedData", defaults={}, funcname="ImFontAtlasRemoveDrawListSharedData", - location="imgui_internal:4236", + location="imgui_internal:4253", ov_cimguiname="igImFontAtlasRemoveDrawListSharedData", ret="void", signature="(ImFontAtlas*,ImDrawListSharedData*)", @@ -23027,7 +23120,7 @@ local t={ cimguiname="igImFontAtlasTextureAdd", defaults={}, funcname="ImFontAtlasTextureAdd", - location="imgui_internal:4198", + location="imgui_internal:4215", ov_cimguiname="igImFontAtlasTextureAdd", ret="ImTextureData*", signature="(ImFontAtlas*,int,int)", @@ -23067,7 +23160,7 @@ local t={ cimguiname="igImFontAtlasTextureBlockConvert", defaults={}, funcname="ImFontAtlasTextureBlockConvert", - location="imgui_internal:4240", + location="imgui_internal:4257", ov_cimguiname="igImFontAtlasTextureBlockConvert", ret="void", signature="(const unsigned char*,ImTextureFormat,int,unsigned char*,ImTextureFormat,int,int,int)", @@ -23107,7 +23200,7 @@ local t={ cimguiname="igImFontAtlasTextureBlockCopy", defaults={}, funcname="ImFontAtlasTextureBlockCopy", - location="imgui_internal:4244", + location="imgui_internal:4261", ov_cimguiname="igImFontAtlasTextureBlockCopy", ret="void", signature="(ImTextureData*,int,int,ImTextureData*,int,int,int,int)", @@ -23141,7 +23234,7 @@ local t={ cimguiname="igImFontAtlasTextureBlockFill", defaults={}, funcname="ImFontAtlasTextureBlockFill", - location="imgui_internal:4243", + location="imgui_internal:4260", ov_cimguiname="igImFontAtlasTextureBlockFill", ret="void", signature="(ImTextureData*,int,int,int,int,ImU32)", @@ -23160,7 +23253,7 @@ local t={ cimguiname="igImFontAtlasTextureBlockPostProcess", defaults={}, funcname="ImFontAtlasTextureBlockPostProcess", - location="imgui_internal:4241", + location="imgui_internal:4258", ov_cimguiname="igImFontAtlasTextureBlockPostProcess", ret="void", signature="(ImFontAtlasPostProcessData*)", @@ -23182,7 +23275,7 @@ local t={ cimguiname="igImFontAtlasTextureBlockPostProcessMultiply", defaults={}, funcname="ImFontAtlasTextureBlockPostProcessMultiply", - location="imgui_internal:4242", + location="imgui_internal:4259", ov_cimguiname="igImFontAtlasTextureBlockPostProcessMultiply", ret="void", signature="(ImFontAtlasPostProcessData*,float)", @@ -23216,7 +23309,7 @@ local t={ cimguiname="igImFontAtlasTextureBlockQueueUpload", defaults={}, funcname="ImFontAtlasTextureBlockQueueUpload", - location="imgui_internal:4245", + location="imgui_internal:4262", ov_cimguiname="igImFontAtlasTextureBlockQueueUpload", ret="void", signature="(ImFontAtlas*,ImTextureData*,int,int,int,int)", @@ -23235,7 +23328,7 @@ local t={ cimguiname="igImFontAtlasTextureCompact", defaults={}, funcname="ImFontAtlasTextureCompact", - location="imgui_internal:4202", + location="imgui_internal:4219", ov_cimguiname="igImFontAtlasTextureCompact", ret="void", signature="(ImFontAtlas*)", @@ -23255,7 +23348,7 @@ local t={ conv="ImVec2i", defaults={}, funcname="ImFontAtlasTextureGetSizeEstimate", - location="imgui_internal:4203", + location="imgui_internal:4220", nonUDT=1, ov_cimguiname="igImFontAtlasTextureGetSizeEstimate", ret="ImVec2i_c", @@ -23283,7 +23376,7 @@ local t={ old_h="-1", old_w="-1"}, funcname="ImFontAtlasTextureGrow", - location="imgui_internal:4201", + location="imgui_internal:4218", ov_cimguiname="igImFontAtlasTextureGrow", ret="void", signature="(ImFontAtlas*,int,int)", @@ -23302,7 +23395,7 @@ local t={ cimguiname="igImFontAtlasTextureMakeSpace", defaults={}, funcname="ImFontAtlasTextureMakeSpace", - location="imgui_internal:4199", + location="imgui_internal:4216", ov_cimguiname="igImFontAtlasTextureMakeSpace", ret="void", signature="(ImFontAtlas*)", @@ -23327,7 +23420,7 @@ local t={ cimguiname="igImFontAtlasTextureRepack", defaults={}, funcname="ImFontAtlasTextureRepack", - location="imgui_internal:4200", + location="imgui_internal:4217", ov_cimguiname="igImFontAtlasTextureRepack", ret="void", signature="(ImFontAtlas*,int,int)", @@ -23346,7 +23439,7 @@ local t={ cimguiname="igImFontAtlasUpdateDrawListsSharedData", defaults={}, funcname="ImFontAtlasUpdateDrawListsSharedData", - location="imgui_internal:4238", + location="imgui_internal:4255", ov_cimguiname="igImFontAtlasUpdateDrawListsSharedData", ret="void", signature="(ImFontAtlas*)", @@ -23371,7 +23464,7 @@ local t={ cimguiname="igImFontAtlasUpdateDrawListsTextures", defaults={}, funcname="ImFontAtlasUpdateDrawListsTextures", - location="imgui_internal:4237", + location="imgui_internal:4254", ov_cimguiname="igImFontAtlasUpdateDrawListsTextures", ret="void", signature="(ImFontAtlas*,ImTextureRef,ImTextureRef)", @@ -23396,7 +23489,7 @@ local t={ cimguiname="igImFontAtlasUpdateNewFrame", defaults={}, funcname="ImFontAtlasUpdateNewFrame", - location="imgui_internal:4234", + location="imgui_internal:4251", ov_cimguiname="igImFontAtlasUpdateNewFrame", ret="void", signature="(ImFontAtlas*,int,bool)", @@ -25130,7 +25223,7 @@ local t={ cimguiname="igImTextureDataGetFormatBytesPerPixel", defaults={}, funcname="ImTextureDataGetFormatBytesPerPixel", - location="imgui_internal:4247", + location="imgui_internal:4264", ov_cimguiname="igImTextureDataGetFormatBytesPerPixel", ret="int", signature="(ImTextureFormat)", @@ -25149,7 +25242,7 @@ local t={ cimguiname="igImTextureDataGetFormatName", defaults={}, funcname="ImTextureDataGetFormatName", - location="imgui_internal:4249", + location="imgui_internal:4266", ov_cimguiname="igImTextureDataGetFormatName", ret="const char*", signature="(ImTextureFormat)", @@ -25168,7 +25261,7 @@ local t={ cimguiname="igImTextureDataGetStatusName", defaults={}, funcname="ImTextureDataGetStatusName", - location="imgui_internal:4248", + location="imgui_internal:4265", ov_cimguiname="igImTextureDataGetStatusName", ret="const char*", signature="(ImTextureStatus)", @@ -25442,7 +25535,7 @@ local t={ uv0="ImVec2(0,0)", uv1="ImVec2(1,1)"}, funcname="Image", - location="imgui:660", + location="imgui:662", namespace="ImGui", ov_cimguiname="igImage", ret="void", @@ -25484,7 +25577,7 @@ local t={ uv0="ImVec2(0,0)", uv1="ImVec2(1,1)"}, funcname="ImageButton", - location="imgui:662", + location="imgui:664", namespace="ImGui", ov_cimguiname="igImageButton", ret="bool", @@ -25526,7 +25619,7 @@ local t={ defaults={ flags="0"}, funcname="ImageButtonEx", - location="imgui_internal:3921", + location="imgui_internal:3935", namespace="ImGui", ov_cimguiname="igImageButtonEx", ret="bool", @@ -25565,7 +25658,7 @@ local t={ uv0="ImVec2(0,0)", uv1="ImVec2(1,1)"}, funcname="ImageWithBg", - location="imgui:661", + location="imgui:663", namespace="ImGui", ov_cimguiname="igImageWithBg", ret="void", @@ -25586,7 +25679,7 @@ local t={ defaults={ indent_w="0.0f"}, funcname="Indent", - location="imgui:590", + location="imgui:592", namespace="ImGui", ov_cimguiname="igIndent", ret="void", @@ -25603,7 +25696,7 @@ local t={ cimguiname="igInitialize", defaults={}, funcname="Initialize", - location="imgui_internal:3447", + location="imgui_internal:3458", namespace="ImGui", ov_cimguiname="igInitialize", ret="void", @@ -25642,7 +25735,7 @@ local t={ step="0.0", step_fast="0.0"}, funcname="InputDouble", - location="imgui:733", + location="imgui:735", namespace="ImGui", ov_cimguiname="igInputDouble", ret="bool", @@ -25681,7 +25774,7 @@ local t={ step="0.0f", step_fast="0.0f"}, funcname="InputFloat", - location="imgui:725", + location="imgui:727", namespace="ImGui", ov_cimguiname="igInputFloat", ret="bool", @@ -25712,7 +25805,7 @@ local t={ flags="0", format="\"%.3f\""}, funcname="InputFloat2", - location="imgui:726", + location="imgui:728", namespace="ImGui", ov_cimguiname="igInputFloat2", ret="bool", @@ -25743,7 +25836,7 @@ local t={ flags="0", format="\"%.3f\""}, funcname="InputFloat3", - location="imgui:727", + location="imgui:729", namespace="ImGui", ov_cimguiname="igInputFloat3", ret="bool", @@ -25774,7 +25867,7 @@ local t={ flags="0", format="\"%.3f\""}, funcname="InputFloat4", - location="imgui:728", + location="imgui:730", namespace="ImGui", ov_cimguiname="igInputFloat4", ret="bool", @@ -25809,7 +25902,7 @@ local t={ step="1", step_fast="100"}, funcname="InputInt", - location="imgui:729", + location="imgui:731", namespace="ImGui", ov_cimguiname="igInputInt", ret="bool", @@ -25836,7 +25929,7 @@ local t={ defaults={ flags="0"}, funcname="InputInt2", - location="imgui:730", + location="imgui:732", namespace="ImGui", ov_cimguiname="igInputInt2", ret="bool", @@ -25863,7 +25956,7 @@ local t={ defaults={ flags="0"}, funcname="InputInt3", - location="imgui:731", + location="imgui:733", namespace="ImGui", ov_cimguiname="igInputInt3", ret="bool", @@ -25890,7 +25983,7 @@ local t={ defaults={ flags="0"}, funcname="InputInt4", - location="imgui:732", + location="imgui:734", namespace="ImGui", ov_cimguiname="igInputInt4", ret="bool", @@ -25932,7 +26025,7 @@ local t={ p_step="NULL", p_step_fast="NULL"}, funcname="InputScalar", - location="imgui:734", + location="imgui:736", namespace="ImGui", ov_cimguiname="igInputScalar", ret="bool", @@ -25977,7 +26070,7 @@ local t={ p_step="NULL", p_step_fast="NULL"}, funcname="InputScalarN", - location="imgui:735", + location="imgui:737", namespace="ImGui", ov_cimguiname="igInputScalarN", ret="bool", @@ -26015,7 +26108,7 @@ local t={ flags="0", user_data="NULL"}, funcname="InputText", - location="imgui:722", + location="imgui:724", namespace="ImGui", ov_cimguiname="igInputText", ret="bool", @@ -26035,7 +26128,7 @@ local t={ cimguiname="igInputTextDeactivateHook", defaults={}, funcname="InputTextDeactivateHook", - location="imgui_internal:3973", + location="imgui_internal:3987", namespace="ImGui", ov_cimguiname="igInputTextDeactivateHook", ret="void", @@ -26078,7 +26171,7 @@ local t={ callback="NULL", user_data="NULL"}, funcname="InputTextEx", - location="imgui_internal:3972", + location="imgui_internal:3986", namespace="ImGui", ov_cimguiname="igInputTextEx", ret="bool", @@ -26120,7 +26213,7 @@ local t={ size="ImVec2(0,0)", user_data="NULL"}, funcname="InputTextMultiline", - location="imgui:723", + location="imgui:725", namespace="ImGui", ov_cimguiname="igInputTextMultiline", ret="bool", @@ -26161,7 +26254,7 @@ local t={ flags="0", user_data="NULL"}, funcname="InputTextWithHint", - location="imgui:724", + location="imgui:726", namespace="ImGui", ov_cimguiname="igInputTextWithHint", ret="bool", @@ -26188,7 +26281,7 @@ local t={ defaults={ flags="0"}, funcname="InvisibleButton", - location="imgui:642", + location="imgui:644", namespace="ImGui", ov_cimguiname="igInvisibleButton", ret="bool", @@ -26208,7 +26301,7 @@ local t={ cimguiname="igIsActiveIdUsingNavDir", defaults={}, funcname="IsActiveIdUsingNavDir", - location="imgui_internal:3636", + location="imgui_internal:3649", namespace="ImGui", ov_cimguiname="igIsActiveIdUsingNavDir", ret="bool", @@ -26228,7 +26321,7 @@ local t={ cimguiname="igIsAliasKey", defaults={}, funcname="IsAliasKey", - location="imgui_internal:3613", + location="imgui_internal:3626", namespace="ImGui", ov_cimguiname="igIsAliasKey", ret="bool", @@ -26245,7 +26338,7 @@ local t={ cimguiname="igIsAnyItemActive", defaults={}, funcname="IsAnyItemActive", - location="imgui:1053", + location="imgui:1056", namespace="ImGui", ov_cimguiname="igIsAnyItemActive", ret="bool", @@ -26262,7 +26355,7 @@ local t={ cimguiname="igIsAnyItemFocused", defaults={}, funcname="IsAnyItemFocused", - location="imgui:1054", + location="imgui:1057", namespace="ImGui", ov_cimguiname="igIsAnyItemFocused", ret="bool", @@ -26279,7 +26372,7 @@ local t={ cimguiname="igIsAnyItemHovered", defaults={}, funcname="IsAnyItemHovered", - location="imgui:1052", + location="imgui:1055", namespace="ImGui", ov_cimguiname="igIsAnyItemHovered", ret="bool", @@ -26296,7 +26389,7 @@ local t={ cimguiname="igIsAnyMouseDown", defaults={}, funcname="IsAnyMouseDown", - location="imgui:1145", + location="imgui:1148", namespace="ImGui", ov_cimguiname="igIsAnyMouseDown", ret="bool", @@ -26319,7 +26412,7 @@ local t={ cimguiname="igIsClippedEx", defaults={}, funcname="IsClippedEx", - location="imgui_internal:3528", + location="imgui_internal:3539", namespace="ImGui", ov_cimguiname="igIsClippedEx", ret="bool", @@ -26336,7 +26429,7 @@ local t={ cimguiname="igIsDragDropActive", defaults={}, funcname="IsDragDropActive", - location="imgui_internal:3758", + location="imgui_internal:3771", namespace="ImGui", ov_cimguiname="igIsDragDropActive", ret="bool", @@ -26353,7 +26446,7 @@ local t={ cimguiname="igIsDragDropPayloadBeingAccepted", defaults={}, funcname="IsDragDropPayloadBeingAccepted", - location="imgui_internal:3762", + location="imgui_internal:3775", namespace="ImGui", ov_cimguiname="igIsDragDropPayloadBeingAccepted", ret="bool", @@ -26373,7 +26466,7 @@ local t={ cimguiname="igIsGamepadKey", defaults={}, funcname="IsGamepadKey", - location="imgui_internal:3611", + location="imgui_internal:3624", namespace="ImGui", ov_cimguiname="igIsGamepadKey", ret="bool", @@ -26390,7 +26483,7 @@ local t={ cimguiname="igIsItemActivated", defaults={}, funcname="IsItemActivated", - location="imgui:1048", + location="imgui:1051", namespace="ImGui", ov_cimguiname="igIsItemActivated", ret="bool", @@ -26407,7 +26500,7 @@ local t={ cimguiname="igIsItemActive", defaults={}, funcname="IsItemActive", - location="imgui:1043", + location="imgui:1046", namespace="ImGui", ov_cimguiname="igIsItemActive", ret="bool", @@ -26424,7 +26517,7 @@ local t={ cimguiname="igIsItemActiveAsInputText", defaults={}, funcname="IsItemActiveAsInputText", - location="imgui_internal:3979", + location="imgui_internal:3993", namespace="ImGui", ov_cimguiname="igIsItemActiveAsInputText", ret="bool", @@ -26445,7 +26538,7 @@ local t={ defaults={ mouse_button="0"}, funcname="IsItemClicked", - location="imgui:1045", + location="imgui:1048", namespace="ImGui", ov_cimguiname="igIsItemClicked", ret="bool", @@ -26462,7 +26555,7 @@ local t={ cimguiname="igIsItemDeactivated", defaults={}, funcname="IsItemDeactivated", - location="imgui:1049", + location="imgui:1052", namespace="ImGui", ov_cimguiname="igIsItemDeactivated", ret="bool", @@ -26479,7 +26572,7 @@ local t={ cimguiname="igIsItemDeactivatedAfterEdit", defaults={}, funcname="IsItemDeactivatedAfterEdit", - location="imgui:1050", + location="imgui:1053", namespace="ImGui", ov_cimguiname="igIsItemDeactivatedAfterEdit", ret="bool", @@ -26496,7 +26589,7 @@ local t={ cimguiname="igIsItemEdited", defaults={}, funcname="IsItemEdited", - location="imgui:1047", + location="imgui:1050", namespace="ImGui", ov_cimguiname="igIsItemEdited", ret="bool", @@ -26513,7 +26606,7 @@ local t={ cimguiname="igIsItemFocused", defaults={}, funcname="IsItemFocused", - location="imgui:1044", + location="imgui:1047", namespace="ImGui", ov_cimguiname="igIsItemFocused", ret="bool", @@ -26534,7 +26627,7 @@ local t={ defaults={ flags="0"}, funcname="IsItemHovered", - location="imgui:1042", + location="imgui:1045", namespace="ImGui", ov_cimguiname="igIsItemHovered", ret="bool", @@ -26551,7 +26644,7 @@ local t={ cimguiname="igIsItemToggledOpen", defaults={}, funcname="IsItemToggledOpen", - location="imgui:1051", + location="imgui:1054", namespace="ImGui", ov_cimguiname="igIsItemToggledOpen", ret="bool", @@ -26568,7 +26661,7 @@ local t={ cimguiname="igIsItemToggledSelection", defaults={}, funcname="IsItemToggledSelection", - location="imgui:784", + location="imgui:787", namespace="ImGui", ov_cimguiname="igIsItemToggledSelection", ret="bool", @@ -26585,7 +26678,7 @@ local t={ cimguiname="igIsItemVisible", defaults={}, funcname="IsItemVisible", - location="imgui:1046", + location="imgui:1049", namespace="ImGui", ov_cimguiname="igIsItemVisible", ret="bool", @@ -26605,7 +26698,7 @@ local t={ cimguiname="igIsKeyChordPressed", defaults={}, funcname="IsKeyChordPressed", - location="imgui:1097", + location="imgui:1100", namespace="ImGui", ov_cimguiname="igIsKeyChordPressed_Nil", ret="bool", @@ -26630,7 +26723,7 @@ local t={ defaults={ owner_id="0"}, funcname="IsKeyChordPressed", - location="imgui_internal:3665", + location="imgui_internal:3678", namespace="ImGui", ov_cimguiname="igIsKeyChordPressed_InputFlags", ret="bool", @@ -26651,7 +26744,7 @@ local t={ cimguiname="igIsKeyDown", defaults={}, funcname="IsKeyDown", - location="imgui:1094", + location="imgui:1097", namespace="ImGui", ov_cimguiname="igIsKeyDown_Nil", ret="bool", @@ -26672,7 +26765,7 @@ local t={ cimguiname="igIsKeyDown", defaults={}, funcname="IsKeyDown", - location="imgui_internal:3662", + location="imgui_internal:3675", namespace="ImGui", ov_cimguiname="igIsKeyDown_ID", ret="bool", @@ -26697,7 +26790,7 @@ local t={ defaults={ ["repeat"]="true"}, funcname="IsKeyPressed", - location="imgui:1095", + location="imgui:1098", namespace="ImGui", ov_cimguiname="igIsKeyPressed_Bool", ret="bool", @@ -26722,7 +26815,7 @@ local t={ defaults={ owner_id="0"}, funcname="IsKeyPressed", - location="imgui_internal:3663", + location="imgui_internal:3676", namespace="ImGui", ov_cimguiname="igIsKeyPressed_InputFlags", ret="bool", @@ -26743,7 +26836,7 @@ local t={ cimguiname="igIsKeyReleased", defaults={}, funcname="IsKeyReleased", - location="imgui:1096", + location="imgui:1099", namespace="ImGui", ov_cimguiname="igIsKeyReleased_Nil", ret="bool", @@ -26764,7 +26857,7 @@ local t={ cimguiname="igIsKeyReleased", defaults={}, funcname="IsKeyReleased", - location="imgui_internal:3664", + location="imgui_internal:3677", namespace="ImGui", ov_cimguiname="igIsKeyReleased_ID", ret="bool", @@ -26785,7 +26878,7 @@ local t={ cimguiname="igIsKeyboardKey", defaults={}, funcname="IsKeyboardKey", - location="imgui_internal:3610", + location="imgui_internal:3623", namespace="ImGui", ov_cimguiname="igIsKeyboardKey", ret="bool", @@ -26805,7 +26898,7 @@ local t={ cimguiname="igIsLRModKey", defaults={}, funcname="IsLRModKey", - location="imgui_internal:3614", + location="imgui_internal:3627", namespace="ImGui", ov_cimguiname="igIsLRModKey", ret="bool", @@ -26825,7 +26918,7 @@ local t={ cimguiname="igIsLegacyKey", defaults={}, funcname="IsLegacyKey", - location="imgui_internal:3609", + location="imgui_internal:3622", namespace="ImGui", ov_cimguiname="igIsLegacyKey", ret="bool", @@ -26849,7 +26942,7 @@ local t={ defaults={ ["repeat"]="false"}, funcname="IsMouseClicked", - location="imgui:1138", + location="imgui:1141", namespace="ImGui", ov_cimguiname="igIsMouseClicked_Bool", ret="bool", @@ -26874,7 +26967,7 @@ local t={ defaults={ owner_id="0"}, funcname="IsMouseClicked", - location="imgui_internal:3667", + location="imgui_internal:3680", namespace="ImGui", ov_cimguiname="igIsMouseClicked_InputFlags", ret="bool", @@ -26895,7 +26988,7 @@ local t={ cimguiname="igIsMouseDoubleClicked", defaults={}, funcname="IsMouseDoubleClicked", - location="imgui:1140", + location="imgui:1143", namespace="ImGui", ov_cimguiname="igIsMouseDoubleClicked_Nil", ret="bool", @@ -26916,7 +27009,7 @@ local t={ cimguiname="igIsMouseDoubleClicked", defaults={}, funcname="IsMouseDoubleClicked", - location="imgui_internal:3669", + location="imgui_internal:3682", namespace="ImGui", ov_cimguiname="igIsMouseDoubleClicked_ID", ret="bool", @@ -26937,7 +27030,7 @@ local t={ cimguiname="igIsMouseDown", defaults={}, funcname="IsMouseDown", - location="imgui:1137", + location="imgui:1140", namespace="ImGui", ov_cimguiname="igIsMouseDown_Nil", ret="bool", @@ -26958,7 +27051,7 @@ local t={ cimguiname="igIsMouseDown", defaults={}, funcname="IsMouseDown", - location="imgui_internal:3666", + location="imgui_internal:3679", namespace="ImGui", ov_cimguiname="igIsMouseDown_ID", ret="bool", @@ -26983,7 +27076,7 @@ local t={ defaults={ lock_threshold="-1.0f"}, funcname="IsMouseDragPastThreshold", - location="imgui_internal:3629", + location="imgui_internal:3642", namespace="ImGui", ov_cimguiname="igIsMouseDragPastThreshold", ret="bool", @@ -27007,7 +27100,7 @@ local t={ defaults={ lock_threshold="-1.0f"}, funcname="IsMouseDragging", - location="imgui:1148", + location="imgui:1151", namespace="ImGui", ov_cimguiname="igIsMouseDragging", ret="bool", @@ -27034,7 +27127,7 @@ local t={ defaults={ clip="true"}, funcname="IsMouseHoveringRect", - location="imgui:1143", + location="imgui:1146", namespace="ImGui", ov_cimguiname="igIsMouseHoveringRect", ret="bool", @@ -27054,7 +27147,7 @@ local t={ cimguiname="igIsMouseKey", defaults={}, funcname="IsMouseKey", - location="imgui_internal:3612", + location="imgui_internal:3625", namespace="ImGui", ov_cimguiname="igIsMouseKey", ret="bool", @@ -27075,7 +27168,7 @@ local t={ defaults={ mouse_pos="NULL"}, funcname="IsMousePosValid", - location="imgui:1144", + location="imgui:1147", namespace="ImGui", ov_cimguiname="igIsMousePosValid", ret="bool", @@ -27095,7 +27188,7 @@ local t={ cimguiname="igIsMouseReleased", defaults={}, funcname="IsMouseReleased", - location="imgui:1139", + location="imgui:1142", namespace="ImGui", ov_cimguiname="igIsMouseReleased_Nil", ret="bool", @@ -27116,7 +27209,7 @@ local t={ cimguiname="igIsMouseReleased", defaults={}, funcname="IsMouseReleased", - location="imgui_internal:3668", + location="imgui_internal:3681", namespace="ImGui", ov_cimguiname="igIsMouseReleased_ID", ret="bool", @@ -27140,7 +27233,7 @@ local t={ cimguiname="igIsMouseReleasedWithDelay", defaults={}, funcname="IsMouseReleasedWithDelay", - location="imgui:1141", + location="imgui:1144", namespace="ImGui", ov_cimguiname="igIsMouseReleasedWithDelay", ret="bool", @@ -27160,7 +27253,7 @@ local t={ cimguiname="igIsNamedKey", defaults={}, funcname="IsNamedKey", - location="imgui_internal:3607", + location="imgui_internal:3620", namespace="ImGui", ov_cimguiname="igIsNamedKey", ret="bool", @@ -27180,7 +27273,7 @@ local t={ cimguiname="igIsNamedKeyOrMod", defaults={}, funcname="IsNamedKeyOrMod", - location="imgui_internal:3608", + location="imgui_internal:3621", namespace="ImGui", ov_cimguiname="igIsNamedKeyOrMod", ret="bool", @@ -27204,7 +27297,7 @@ local t={ defaults={ flags="0"}, funcname="IsPopupOpen", - location="imgui:886", + location="imgui:889", namespace="ImGui", ov_cimguiname="igIsPopupOpen_Str", ret="bool", @@ -27225,7 +27318,7 @@ local t={ cimguiname="igIsPopupOpen", defaults={}, funcname="IsPopupOpen", - location="imgui_internal:3557", + location="imgui_internal:3568", namespace="ImGui", ov_cimguiname="igIsPopupOpen_ID", ret="bool", @@ -27233,6 +27326,49 @@ local t={ stname=""}, ["(ImGuiID,ImGuiPopupFlags)"]=nil, ["(const char*,ImGuiPopupFlags)"]=nil}, + igIsPopupOpenRequestForItem={ + [1]={ + args="(ImGuiPopupFlags flags,ImGuiID id)", + argsT={ + [1]={ + name="flags", + type="ImGuiPopupFlags"}, + [2]={ + name="id", + type="ImGuiID"}}, + argsoriginal="(ImGuiPopupFlags flags,ImGuiID id)", + call_args="(flags,id)", + call_args_old="(flags,id)", + cimguiname="igIsPopupOpenRequestForItem", + defaults={}, + funcname="IsPopupOpenRequestForItem", + location="imgui_internal:3576", + namespace="ImGui", + ov_cimguiname="igIsPopupOpenRequestForItem", + ret="bool", + signature="(ImGuiPopupFlags,ImGuiID)", + stname=""}, + ["(ImGuiPopupFlags,ImGuiID)"]=nil}, + igIsPopupOpenRequestForWindow={ + [1]={ + args="(ImGuiPopupFlags flags)", + argsT={ + [1]={ + name="flags", + type="ImGuiPopupFlags"}}, + argsoriginal="(ImGuiPopupFlags flags)", + call_args="(flags)", + call_args_old="(flags)", + cimguiname="igIsPopupOpenRequestForWindow", + defaults={}, + funcname="IsPopupOpenRequestForWindow", + location="imgui_internal:3577", + namespace="ImGui", + ov_cimguiname="igIsPopupOpenRequestForWindow", + ret="bool", + signature="(ImGuiPopupFlags)", + stname=""}, + ["(ImGuiPopupFlags)"]=nil}, igIsRectVisible={ [1]={ args="(const ImVec2_c size)", @@ -27246,7 +27382,7 @@ local t={ cimguiname="igIsRectVisible", defaults={}, funcname="IsRectVisible", - location="imgui:1072", + location="imgui:1075", namespace="ImGui", ov_cimguiname="igIsRectVisible_Nil", ret="bool", @@ -27267,7 +27403,7 @@ local t={ cimguiname="igIsRectVisible", defaults={}, funcname="IsRectVisible", - location="imgui:1073", + location="imgui:1076", namespace="ImGui", ov_cimguiname="igIsRectVisible_Vec2", ret="bool", @@ -27291,7 +27427,7 @@ local t={ cimguiname="igIsWindowAbove", defaults={}, funcname="IsWindowAbove", - location="imgui_internal:3404", + location="imgui_internal:3415", namespace="ImGui", ov_cimguiname="igIsWindowAbove", ret="bool", @@ -27308,7 +27444,7 @@ local t={ cimguiname="igIsWindowAppearing", defaults={}, funcname="IsWindowAppearing", - location="imgui:467", + location="imgui:469", namespace="ImGui", ov_cimguiname="igIsWindowAppearing", ret="bool", @@ -27337,7 +27473,7 @@ local t={ cimguiname="igIsWindowChildOf", defaults={}, funcname="IsWindowChildOf", - location="imgui_internal:3401", + location="imgui_internal:3412", namespace="ImGui", ov_cimguiname="igIsWindowChildOf", ret="bool", @@ -27354,7 +27490,7 @@ local t={ cimguiname="igIsWindowCollapsed", defaults={}, funcname="IsWindowCollapsed", - location="imgui:468", + location="imgui:470", namespace="ImGui", ov_cimguiname="igIsWindowCollapsed", ret="bool", @@ -27378,7 +27514,7 @@ local t={ defaults={ flags="0"}, funcname="IsWindowContentHoverable", - location="imgui_internal:3527", + location="imgui_internal:3538", namespace="ImGui", ov_cimguiname="igIsWindowContentHoverable", ret="bool", @@ -27395,7 +27531,7 @@ local t={ cimguiname="igIsWindowDocked", defaults={}, funcname="IsWindowDocked", - location="imgui:991", + location="imgui:994", namespace="ImGui", ov_cimguiname="igIsWindowDocked", ret="bool", @@ -27416,7 +27552,7 @@ local t={ defaults={ flags="0"}, funcname="IsWindowFocused", - location="imgui:469", + location="imgui:471", namespace="ImGui", ov_cimguiname="igIsWindowFocused", ret="bool", @@ -27437,7 +27573,7 @@ local t={ defaults={ flags="0"}, funcname="IsWindowHovered", - location="imgui:470", + location="imgui:472", namespace="ImGui", ov_cimguiname="igIsWindowHovered", ret="bool", @@ -27457,7 +27593,7 @@ local t={ cimguiname="igIsWindowInBeginStack", defaults={}, funcname="IsWindowInBeginStack", - location="imgui_internal:3402", + location="imgui_internal:3413", namespace="ImGui", ov_cimguiname="igIsWindowInBeginStack", ret="bool", @@ -27477,7 +27613,7 @@ local t={ cimguiname="igIsWindowNavFocusable", defaults={}, funcname="IsWindowNavFocusable", - location="imgui_internal:3405", + location="imgui_internal:3416", namespace="ImGui", ov_cimguiname="igIsWindowNavFocusable", ret="bool", @@ -27500,7 +27636,7 @@ local t={ cimguiname="igIsWindowWithinBeginStackOf", defaults={}, funcname="IsWindowWithinBeginStackOf", - location="imgui_internal:3403", + location="imgui_internal:3414", namespace="ImGui", ov_cimguiname="igIsWindowWithinBeginStackOf", ret="bool", @@ -27531,7 +27667,7 @@ local t={ extra_flags="0", nav_bb="NULL"}, funcname="ItemAdd", - location="imgui_internal:3525", + location="imgui_internal:3536", namespace="ImGui", ov_cimguiname="igItemAdd", ret="bool", @@ -27557,7 +27693,7 @@ local t={ cimguiname="igItemHoverable", defaults={}, funcname="ItemHoverable", - location="imgui_internal:3526", + location="imgui_internal:3537", namespace="ImGui", ov_cimguiname="igItemHoverable", ret="bool", @@ -27581,7 +27717,7 @@ local t={ defaults={ text_baseline_y="-1.0f"}, funcname="ItemSize", - location="imgui_internal:3523", + location="imgui_internal:3534", namespace="ImGui", ov_cimguiname="igItemSize_Vec2", ret="void", @@ -27603,7 +27739,7 @@ local t={ defaults={ text_baseline_y="-1.0f"}, funcname="ItemSize", - location="imgui_internal:3524", + location="imgui_internal:3535", namespace="ImGui", ov_cimguiname="igItemSize_Rect", ret="void", @@ -27624,7 +27760,7 @@ local t={ cimguiname="igKeepAliveID", defaults={}, funcname="KeepAliveID", - location="imgui_internal:3516", + location="imgui_internal:3527", namespace="ImGui", ov_cimguiname="igKeepAliveID", ret="void", @@ -27651,7 +27787,7 @@ local t={ defaults={}, funcname="LabelText", isvararg="...)", - location="imgui:631", + location="imgui:633", namespace="ImGui", ov_cimguiname="igLabelText", ret="void", @@ -27677,7 +27813,7 @@ local t={ cimguiname="igLabelTextV", defaults={}, funcname="LabelTextV", - location="imgui:632", + location="imgui:634", namespace="ImGui", ov_cimguiname="igLabelTextV", ret="void", @@ -27710,7 +27846,7 @@ local t={ defaults={ height_in_items="-1"}, funcname="ListBox", - location="imgui:795", + location="imgui:798", namespace="ImGui", ov_cimguiname="igListBox_Str_arr", ret="bool", @@ -27746,7 +27882,7 @@ local t={ defaults={ height_in_items="-1"}, funcname="ListBox", - location="imgui:796", + location="imgui:799", namespace="ImGui", ov_cimguiname="igListBox_FnStrPtr", ret="bool", @@ -27767,7 +27903,7 @@ local t={ cimguiname="igLoadIniSettingsFromDisk", defaults={}, funcname="LoadIniSettingsFromDisk", - location="imgui:1164", + location="imgui:1167", namespace="ImGui", ov_cimguiname="igLoadIniSettingsFromDisk", ret="void", @@ -27791,7 +27927,7 @@ local t={ defaults={ ini_size="0"}, funcname="LoadIniSettingsFromMemory", - location="imgui:1165", + location="imgui:1168", namespace="ImGui", ov_cimguiname="igLoadIniSettingsFromMemory", ret="void", @@ -27811,7 +27947,7 @@ local t={ cimguiname="igLocalizeGetMsg", defaults={}, funcname="LocalizeGetMsg", - location="imgui_internal:3491", + location="imgui_internal:3502", namespace="ImGui", ov_cimguiname="igLocalizeGetMsg", ret="const char*", @@ -27834,7 +27970,7 @@ local t={ cimguiname="igLocalizeRegisterEntries", defaults={}, funcname="LocalizeRegisterEntries", - location="imgui_internal:3490", + location="imgui_internal:3501", namespace="ImGui", ov_cimguiname="igLocalizeRegisterEntries", ret="void", @@ -27857,7 +27993,7 @@ local t={ cimguiname="igLogBegin", defaults={}, funcname="LogBegin", - location="imgui_internal:3542", + location="imgui_internal:3553", namespace="ImGui", ov_cimguiname="igLogBegin", ret="void", @@ -27874,7 +28010,7 @@ local t={ cimguiname="igLogButtons", defaults={}, funcname="LogButtons", - location="imgui:999", + location="imgui:1002", namespace="ImGui", ov_cimguiname="igLogButtons", ret="void", @@ -27891,7 +28027,7 @@ local t={ cimguiname="igLogFinish", defaults={}, funcname="LogFinish", - location="imgui:998", + location="imgui:1001", namespace="ImGui", ov_cimguiname="igLogFinish", ret="void", @@ -27918,7 +28054,7 @@ local t={ defaults={ text_end="NULL"}, funcname="LogRenderedText", - location="imgui_internal:3544", + location="imgui_internal:3555", namespace="ImGui", ov_cimguiname="igLogRenderedText", ret="void", @@ -27941,7 +28077,7 @@ local t={ cimguiname="igLogSetNextTextDecoration", defaults={}, funcname="LogSetNextTextDecoration", - location="imgui_internal:3545", + location="imgui_internal:3556", namespace="ImGui", ov_cimguiname="igLogSetNextTextDecoration", ret="void", @@ -27965,7 +28101,7 @@ local t={ defaults={}, funcname="LogText", isvararg="...)", - location="imgui:1000", + location="imgui:1003", namespace="ImGui", ov_cimguiname="igLogText", ret="void", @@ -27988,7 +28124,7 @@ local t={ cimguiname="igLogTextV", defaults={}, funcname="LogTextV", - location="imgui:1001", + location="imgui:1004", namespace="ImGui", ov_cimguiname="igLogTextV", ret="void", @@ -28009,7 +28145,7 @@ local t={ defaults={ auto_open_depth="-1"}, funcname="LogToBuffer", - location="imgui_internal:3543", + location="imgui_internal:3554", namespace="ImGui", ov_cimguiname="igLogToBuffer", ret="void", @@ -28030,7 +28166,7 @@ local t={ defaults={ auto_open_depth="-1"}, funcname="LogToClipboard", - location="imgui:997", + location="imgui:1000", namespace="ImGui", ov_cimguiname="igLogToClipboard", ret="void", @@ -28055,7 +28191,7 @@ local t={ auto_open_depth="-1", filename="NULL"}, funcname="LogToFile", - location="imgui:996", + location="imgui:999", namespace="ImGui", ov_cimguiname="igLogToFile", ret="void", @@ -28076,7 +28212,7 @@ local t={ defaults={ auto_open_depth="-1"}, funcname="LogToTTY", - location="imgui:995", + location="imgui:998", namespace="ImGui", ov_cimguiname="igLogToTTY", ret="void", @@ -28093,7 +28229,7 @@ local t={ cimguiname="igMarkIniSettingsDirty", defaults={}, funcname="MarkIniSettingsDirty", - location="imgui_internal:3476", + location="imgui_internal:3487", namespace="ImGui", ov_cimguiname="igMarkIniSettingsDirty_Nil", ret="void", @@ -28111,7 +28247,7 @@ local t={ cimguiname="igMarkIniSettingsDirty", defaults={}, funcname="MarkIniSettingsDirty", - location="imgui_internal:3477", + location="imgui_internal:3488", namespace="ImGui", ov_cimguiname="igMarkIniSettingsDirty_WindowPtr", ret="void", @@ -28132,7 +28268,7 @@ local t={ cimguiname="igMarkItemEdited", defaults={}, funcname="MarkItemEdited", - location="imgui_internal:3517", + location="imgui_internal:3528", namespace="ImGui", ov_cimguiname="igMarkItemEdited", ret="void", @@ -28152,7 +28288,7 @@ local t={ cimguiname="igMemAlloc", defaults={}, funcname="MemAlloc", - location="imgui:1188", + location="imgui:1191", namespace="ImGui", ov_cimguiname="igMemAlloc", ret="void*", @@ -28172,7 +28308,7 @@ local t={ cimguiname="igMemFree", defaults={}, funcname="MemFree", - location="imgui:1189", + location="imgui:1192", namespace="ImGui", ov_cimguiname="igMemFree", ret="void", @@ -28204,7 +28340,7 @@ local t={ selected="false", shortcut="NULL"}, funcname="MenuItem", - location="imgui:823", + location="imgui:826", namespace="ImGui", ov_cimguiname="igMenuItem_Bool", ret="bool", @@ -28232,7 +28368,7 @@ local t={ defaults={ enabled="true"}, funcname="MenuItem", - location="imgui:824", + location="imgui:827", namespace="ImGui", ov_cimguiname="igMenuItem_BoolPtr", ret="bool", @@ -28268,7 +28404,7 @@ local t={ selected="false", shortcut="NULL"}, funcname="MenuItemEx", - location="imgui_internal:3573", + location="imgui_internal:3586", namespace="ImGui", ov_cimguiname="igMenuItemEx", ret="bool", @@ -28288,7 +28424,7 @@ local t={ cimguiname="igMouseButtonToKey", defaults={}, funcname="MouseButtonToKey", - location="imgui_internal:3628", + location="imgui_internal:3641", namespace="ImGui", ov_cimguiname="igMouseButtonToKey", ret="ImGuiKey", @@ -28311,7 +28447,7 @@ local t={ cimguiname="igMultiSelectAddSetAll", defaults={}, funcname="MultiSelectAddSetAll", - location="imgui_internal:3781", + location="imgui_internal:3794", namespace="ImGui", ov_cimguiname="igMultiSelectAddSetAll", ret="void", @@ -28343,7 +28479,7 @@ local t={ cimguiname="igMultiSelectAddSetRange", defaults={}, funcname="MultiSelectAddSetRange", - location="imgui_internal:3782", + location="imgui_internal:3795", namespace="ImGui", ov_cimguiname="igMultiSelectAddSetRange", ret="void", @@ -28369,7 +28505,7 @@ local t={ cimguiname="igMultiSelectItemFooter", defaults={}, funcname="MultiSelectItemFooter", - location="imgui_internal:3780", + location="imgui_internal:3793", namespace="ImGui", ov_cimguiname="igMultiSelectItemFooter", ret="void", @@ -28395,7 +28531,7 @@ local t={ cimguiname="igMultiSelectItemHeader", defaults={}, funcname="MultiSelectItemHeader", - location="imgui_internal:3779", + location="imgui_internal:3792", namespace="ImGui", ov_cimguiname="igMultiSelectItemHeader", ret="void", @@ -28415,7 +28551,7 @@ local t={ cimguiname="igNavClearPreferredPosForAxis", defaults={}, funcname="NavClearPreferredPosForAxis", - location="imgui_internal:3592", + location="imgui_internal:3605", namespace="ImGui", ov_cimguiname="igNavClearPreferredPosForAxis", ret="void", @@ -28435,7 +28571,7 @@ local t={ cimguiname="igNavHighlightActivated", defaults={}, funcname="NavHighlightActivated", - location="imgui_internal:3591", + location="imgui_internal:3604", namespace="ImGui", ov_cimguiname="igNavHighlightActivated", ret="void", @@ -28452,7 +28588,7 @@ local t={ cimguiname="igNavInitRequestApplyResult", defaults={}, funcname="NavInitRequestApplyResult", - location="imgui_internal:3582", + location="imgui_internal:3595", namespace="ImGui", ov_cimguiname="igNavInitRequestApplyResult", ret="void", @@ -28475,7 +28611,7 @@ local t={ cimguiname="igNavInitWindow", defaults={}, funcname="NavInitWindow", - location="imgui_internal:3581", + location="imgui_internal:3594", namespace="ImGui", ov_cimguiname="igNavInitWindow", ret="void", @@ -28492,7 +28628,7 @@ local t={ cimguiname="igNavMoveRequestApplyResult", defaults={}, funcname="NavMoveRequestApplyResult", - location="imgui_internal:3589", + location="imgui_internal:3602", namespace="ImGui", ov_cimguiname="igNavMoveRequestApplyResult", ret="void", @@ -28509,7 +28645,7 @@ local t={ cimguiname="igNavMoveRequestButNoResultYet", defaults={}, funcname="NavMoveRequestButNoResultYet", - location="imgui_internal:3583", + location="imgui_internal:3596", namespace="ImGui", ov_cimguiname="igNavMoveRequestButNoResultYet", ret="bool", @@ -28526,7 +28662,7 @@ local t={ cimguiname="igNavMoveRequestCancel", defaults={}, funcname="NavMoveRequestCancel", - location="imgui_internal:3588", + location="imgui_internal:3601", namespace="ImGui", ov_cimguiname="igNavMoveRequestCancel", ret="void", @@ -28555,7 +28691,7 @@ local t={ cimguiname="igNavMoveRequestForward", defaults={}, funcname="NavMoveRequestForward", - location="imgui_internal:3585", + location="imgui_internal:3598", namespace="ImGui", ov_cimguiname="igNavMoveRequestForward", ret="void", @@ -28575,7 +28711,7 @@ local t={ cimguiname="igNavMoveRequestResolveWithLastItem", defaults={}, funcname="NavMoveRequestResolveWithLastItem", - location="imgui_internal:3586", + location="imgui_internal:3599", namespace="ImGui", ov_cimguiname="igNavMoveRequestResolveWithLastItem", ret="void", @@ -28598,7 +28734,7 @@ local t={ cimguiname="igNavMoveRequestResolveWithPastTreeNode", defaults={}, funcname="NavMoveRequestResolveWithPastTreeNode", - location="imgui_internal:3587", + location="imgui_internal:3600", namespace="ImGui", ov_cimguiname="igNavMoveRequestResolveWithPastTreeNode", ret="void", @@ -28627,7 +28763,7 @@ local t={ cimguiname="igNavMoveRequestSubmit", defaults={}, funcname="NavMoveRequestSubmit", - location="imgui_internal:3584", + location="imgui_internal:3597", namespace="ImGui", ov_cimguiname="igNavMoveRequestSubmit", ret="void", @@ -28650,7 +28786,7 @@ local t={ cimguiname="igNavMoveRequestTryWrapping", defaults={}, funcname="NavMoveRequestTryWrapping", - location="imgui_internal:3590", + location="imgui_internal:3603", namespace="ImGui", ov_cimguiname="igNavMoveRequestTryWrapping", ret="void", @@ -28667,7 +28803,7 @@ local t={ cimguiname="igNavUpdateCurrentWindowIsScrollPushableX", defaults={}, funcname="NavUpdateCurrentWindowIsScrollPushableX", - location="imgui_internal:3594", + location="imgui_internal:3607", namespace="ImGui", ov_cimguiname="igNavUpdateCurrentWindowIsScrollPushableX", ret="void", @@ -28684,7 +28820,7 @@ local t={ cimguiname="igNewFrame", defaults={}, funcname="NewFrame", - location="imgui:406", + location="imgui:408", namespace="ImGui", ov_cimguiname="igNewFrame", ret="void", @@ -28701,7 +28837,7 @@ local t={ cimguiname="igNewLine", defaults={}, funcname="NewLine", - location="imgui:587", + location="imgui:589", namespace="ImGui", ov_cimguiname="igNewLine", ret="void", @@ -28718,7 +28854,7 @@ local t={ cimguiname="igNextColumn", defaults={}, funcname="NextColumn", - location="imgui:948", + location="imgui:951", namespace="ImGui", ov_cimguiname="igNextColumn", ret="void", @@ -28742,7 +28878,7 @@ local t={ defaults={ popup_flags="0"}, funcname="OpenPopup", - location="imgui:864", + location="imgui:867", namespace="ImGui", ov_cimguiname="igOpenPopup_Str", ret="void", @@ -28764,7 +28900,7 @@ local t={ defaults={ popup_flags="0"}, funcname="OpenPopup", - location="imgui:865", + location="imgui:868", namespace="ImGui", ov_cimguiname="igOpenPopup_ID", ret="void", @@ -28789,7 +28925,7 @@ local t={ defaults={ popup_flags="ImGuiPopupFlags_None"}, funcname="OpenPopupEx", - location="imgui_internal:3553", + location="imgui_internal:3564", namespace="ImGui", ov_cimguiname="igOpenPopupEx", ret="void", @@ -28814,7 +28950,7 @@ local t={ popup_flags="0", str_id="NULL"}, funcname="OpenPopupOnItemClick", - location="imgui:866", + location="imgui:869", namespace="ImGui", ov_cimguiname="igOpenPopupOnItemClick", ret="void", @@ -28863,7 +28999,7 @@ local t={ cimguiname="igPlotEx", defaults={}, funcname="PlotEx", - location="imgui_internal:3988", + location="imgui_internal:4002", namespace="ImGui", ov_cimguiname="igPlotEx", ret="int", @@ -28913,7 +29049,7 @@ local t={ stride="sizeof(float)", values_offset="0"}, funcname="PlotHistogram", - location="imgui:802", + location="imgui:805", namespace="ImGui", ov_cimguiname="igPlotHistogram_FloatPtr", ret="void", @@ -28962,7 +29098,7 @@ local t={ scale_min="FLT_MAX", values_offset="0"}, funcname="PlotHistogram", - location="imgui:803", + location="imgui:806", namespace="ImGui", ov_cimguiname="igPlotHistogram_FnFloatPtr", ret="void", @@ -29013,7 +29149,7 @@ local t={ stride="sizeof(float)", values_offset="0"}, funcname="PlotLines", - location="imgui:800", + location="imgui:803", namespace="ImGui", ov_cimguiname="igPlotLines_FloatPtr", ret="void", @@ -29062,7 +29198,7 @@ local t={ scale_min="FLT_MAX", values_offset="0"}, funcname="PlotLines", - location="imgui:801", + location="imgui:804", namespace="ImGui", ov_cimguiname="igPlotLines_FnFloatPtr", ret="void", @@ -29080,7 +29216,7 @@ local t={ cimguiname="igPopClipRect", defaults={}, funcname="PopClipRect", - location="imgui:1027", + location="imgui:1030", namespace="ImGui", ov_cimguiname="igPopClipRect", ret="void", @@ -29097,7 +29233,7 @@ local t={ cimguiname="igPopColumnsBackground", defaults={}, funcname="PopColumnsBackground", - location="imgui_internal:3792", + location="imgui_internal:3805", namespace="ImGui", ov_cimguiname="igPopColumnsBackground", ret="void", @@ -29114,7 +29250,7 @@ local t={ cimguiname="igPopFocusScope", defaults={}, funcname="PopFocusScope", - location="imgui_internal:3754", + location="imgui_internal:3767", namespace="ImGui", ov_cimguiname="igPopFocusScope", ret="void", @@ -29131,7 +29267,7 @@ local t={ cimguiname="igPopFont", defaults={}, funcname="PopFont", - location="imgui:530", + location="imgui:532", namespace="ImGui", ov_cimguiname="igPopFont", ret="void", @@ -29148,7 +29284,7 @@ local t={ cimguiname="igPopID", defaults={}, funcname="PopID", - location="imgui:615", + location="imgui:617", namespace="ImGui", ov_cimguiname="igPopID", ret="void", @@ -29165,7 +29301,7 @@ local t={ cimguiname="igPopItemFlag", defaults={}, funcname="PopItemFlag", - location="imgui:545", + location="imgui:547", namespace="ImGui", ov_cimguiname="igPopItemFlag", ret="void", @@ -29182,7 +29318,7 @@ local t={ cimguiname="igPopItemWidth", defaults={}, funcname="PopItemWidth", - location="imgui:549", + location="imgui:551", namespace="ImGui", ov_cimguiname="igPopItemWidth", ret="void", @@ -29199,7 +29335,7 @@ local t={ cimguiname="igPopPasswordFont", defaults={}, funcname="PopPasswordFont", - location="imgui_internal:3442", + location="imgui_internal:3453", namespace="ImGui", ov_cimguiname="igPopPasswordFont", ret="void", @@ -29220,7 +29356,7 @@ local t={ defaults={ count="1"}, funcname="PopStyleColor", - location="imgui:538", + location="imgui:540", namespace="ImGui", ov_cimguiname="igPopStyleColor", ret="void", @@ -29241,7 +29377,7 @@ local t={ defaults={ count="1"}, funcname="PopStyleVar", - location="imgui:543", + location="imgui:545", namespace="ImGui", ov_cimguiname="igPopStyleVar", ret="void", @@ -29258,7 +29394,7 @@ local t={ cimguiname="igPopTextWrapPos", defaults={}, funcname="PopTextWrapPos", - location="imgui:553", + location="imgui:555", namespace="ImGui", ov_cimguiname="igPopTextWrapPos", ret="void", @@ -29286,7 +29422,7 @@ local t={ overlay="NULL", size_arg="ImVec2(-FLT_MIN,0)"}, funcname="ProgressBar", - location="imgui:649", + location="imgui:651", namespace="ImGui", ov_cimguiname="igProgressBar", ret="void", @@ -29312,7 +29448,7 @@ local t={ cimguiname="igPushClipRect", defaults={}, funcname="PushClipRect", - location="imgui:1026", + location="imgui:1029", namespace="ImGui", ov_cimguiname="igPushClipRect", ret="void", @@ -29332,7 +29468,7 @@ local t={ cimguiname="igPushColumnClipRect", defaults={}, funcname="PushColumnClipRect", - location="imgui_internal:3790", + location="imgui_internal:3803", namespace="ImGui", ov_cimguiname="igPushColumnClipRect", ret="void", @@ -29349,7 +29485,7 @@ local t={ cimguiname="igPushColumnsBackground", defaults={}, funcname="PushColumnsBackground", - location="imgui_internal:3791", + location="imgui_internal:3804", namespace="ImGui", ov_cimguiname="igPushColumnsBackground", ret="void", @@ -29369,7 +29505,7 @@ local t={ cimguiname="igPushFocusScope", defaults={}, funcname="PushFocusScope", - location="imgui_internal:3753", + location="imgui_internal:3766", namespace="ImGui", ov_cimguiname="igPushFocusScope", ret="void", @@ -29392,7 +29528,7 @@ local t={ cimguiname="igPushFont", defaults={}, funcname="PushFont", - location="imgui:529", + location="imgui:531", namespace="ImGui", ov_cimguiname="igPushFont", ret="void", @@ -29412,7 +29548,7 @@ local t={ cimguiname="igPushID", defaults={}, funcname="PushID", - location="imgui:611", + location="imgui:613", namespace="ImGui", ov_cimguiname="igPushID_Str", ret="void", @@ -29433,7 +29569,7 @@ local t={ cimguiname="igPushID", defaults={}, funcname="PushID", - location="imgui:612", + location="imgui:614", namespace="ImGui", ov_cimguiname="igPushID_StrStr", ret="void", @@ -29451,7 +29587,7 @@ local t={ cimguiname="igPushID", defaults={}, funcname="PushID", - location="imgui:613", + location="imgui:615", namespace="ImGui", ov_cimguiname="igPushID_Ptr", ret="void", @@ -29469,7 +29605,7 @@ local t={ cimguiname="igPushID", defaults={}, funcname="PushID", - location="imgui:614", + location="imgui:616", namespace="ImGui", ov_cimguiname="igPushID_Int", ret="void", @@ -29495,7 +29631,7 @@ local t={ cimguiname="igPushItemFlag", defaults={}, funcname="PushItemFlag", - location="imgui:544", + location="imgui:546", namespace="ImGui", ov_cimguiname="igPushItemFlag", ret="void", @@ -29515,7 +29651,7 @@ local t={ cimguiname="igPushItemWidth", defaults={}, funcname="PushItemWidth", - location="imgui:548", + location="imgui:550", namespace="ImGui", ov_cimguiname="igPushItemWidth", ret="void", @@ -29538,7 +29674,7 @@ local t={ cimguiname="igPushMultiItemsWidths", defaults={}, funcname="PushMultiItemsWidths", - location="imgui_internal:3532", + location="imgui_internal:3543", namespace="ImGui", ov_cimguiname="igPushMultiItemsWidths", ret="void", @@ -29558,7 +29694,7 @@ local t={ cimguiname="igPushOverrideID", defaults={}, funcname="PushOverrideID", - location="imgui_internal:3518", + location="imgui_internal:3529", namespace="ImGui", ov_cimguiname="igPushOverrideID", ret="void", @@ -29575,7 +29711,7 @@ local t={ cimguiname="igPushPasswordFont", defaults={}, funcname="PushPasswordFont", - location="imgui_internal:3441", + location="imgui_internal:3452", namespace="ImGui", ov_cimguiname="igPushPasswordFont", ret="void", @@ -29598,7 +29734,7 @@ local t={ cimguiname="igPushStyleColor", defaults={}, funcname="PushStyleColor", - location="imgui:536", + location="imgui:538", namespace="ImGui", ov_cimguiname="igPushStyleColor_U32", ret="void", @@ -29619,7 +29755,7 @@ local t={ cimguiname="igPushStyleColor", defaults={}, funcname="PushStyleColor", - location="imgui:537", + location="imgui:539", namespace="ImGui", ov_cimguiname="igPushStyleColor_Vec4", ret="void", @@ -29643,7 +29779,7 @@ local t={ cimguiname="igPushStyleVar", defaults={}, funcname="PushStyleVar", - location="imgui:539", + location="imgui:541", namespace="ImGui", ov_cimguiname="igPushStyleVar_Float", ret="void", @@ -29664,7 +29800,7 @@ local t={ cimguiname="igPushStyleVar", defaults={}, funcname="PushStyleVar", - location="imgui:540", + location="imgui:542", namespace="ImGui", ov_cimguiname="igPushStyleVar_Vec2", ret="void", @@ -29688,7 +29824,7 @@ local t={ cimguiname="igPushStyleVarX", defaults={}, funcname="PushStyleVarX", - location="imgui:541", + location="imgui:543", namespace="ImGui", ov_cimguiname="igPushStyleVarX", ret="void", @@ -29711,7 +29847,7 @@ local t={ cimguiname="igPushStyleVarY", defaults={}, funcname="PushStyleVarY", - location="imgui:542", + location="imgui:544", namespace="ImGui", ov_cimguiname="igPushStyleVarY", ret="void", @@ -29732,7 +29868,7 @@ local t={ defaults={ wrap_local_pos_x="0.0f"}, funcname="PushTextWrapPos", - location="imgui:552", + location="imgui:554", namespace="ImGui", ov_cimguiname="igPushTextWrapPos", ret="void", @@ -29755,7 +29891,7 @@ local t={ cimguiname="igRadioButton", defaults={}, funcname="RadioButton", - location="imgui:647", + location="imgui:649", namespace="ImGui", ov_cimguiname="igRadioButton_Bool", ret="bool", @@ -29779,7 +29915,7 @@ local t={ cimguiname="igRadioButton", defaults={}, funcname="RadioButton", - location="imgui:648", + location="imgui:650", namespace="ImGui", ov_cimguiname="igRadioButton_IntPtr", ret="bool", @@ -29800,7 +29936,7 @@ local t={ cimguiname="igRegisterFontAtlas", defaults={}, funcname="RegisterFontAtlas", - location="imgui_internal:3433", + location="imgui_internal:3444", namespace="ImGui", ov_cimguiname="igRegisterFontAtlas", ret="void", @@ -29820,7 +29956,7 @@ local t={ cimguiname="igRegisterUserTexture", defaults={}, funcname="RegisterUserTexture", - location="imgui_internal:3431", + location="imgui_internal:3442", namespace="ImGui", ov_cimguiname="igRegisterUserTexture", ret="void", @@ -29843,7 +29979,7 @@ local t={ cimguiname="igRemoveContextHook", defaults={}, funcname="RemoveContextHook", - location="imgui_internal:3453", + location="imgui_internal:3464", namespace="ImGui", ov_cimguiname="igRemoveContextHook", ret="void", @@ -29863,7 +29999,7 @@ local t={ cimguiname="igRemoveSettingsHandler", defaults={}, funcname="RemoveSettingsHandler", - location="imgui_internal:3480", + location="imgui_internal:3491", namespace="ImGui", ov_cimguiname="igRemoveSettingsHandler", ret="void", @@ -29880,7 +30016,7 @@ local t={ cimguiname="igRender", defaults={}, funcname="Render", - location="imgui:408", + location="imgui:410", namespace="ImGui", ov_cimguiname="igRender", ret="void", @@ -29913,7 +30049,7 @@ local t={ defaults={ scale="1.0f"}, funcname="RenderArrow", - location="imgui_internal:3904", + location="imgui_internal:3918", namespace="ImGui", ov_cimguiname="igRenderArrow", ret="void", @@ -29942,7 +30078,7 @@ local t={ cimguiname="igRenderArrowDockMenu", defaults={}, funcname="RenderArrowDockMenu", - location="imgui_internal:3908", + location="imgui_internal:3922", namespace="ImGui", ov_cimguiname="igRenderArrowDockMenu", ret="void", @@ -29974,7 +30110,7 @@ local t={ cimguiname="igRenderArrowPointingAt", defaults={}, funcname="RenderArrowPointingAt", - location="imgui_internal:3907", + location="imgui_internal:3921", namespace="ImGui", ov_cimguiname="igRenderArrowPointingAt", ret="void", @@ -30000,7 +30136,7 @@ local t={ cimguiname="igRenderBullet", defaults={}, funcname="RenderBullet", - location="imgui_internal:3905", + location="imgui_internal:3919", namespace="ImGui", ov_cimguiname="igRenderBullet", ret="void", @@ -30029,7 +30165,7 @@ local t={ cimguiname="igRenderCheckMark", defaults={}, funcname="RenderCheckMark", - location="imgui_internal:3906", + location="imgui_internal:3920", namespace="ImGui", ov_cimguiname="igRenderCheckMark", ret="void", @@ -30055,7 +30191,7 @@ local t={ cimguiname="igRenderColorComponentMarker", defaults={}, funcname="RenderColorComponentMarker", - location="imgui_internal:3894", + location="imgui_internal:3908", namespace="ImGui", ov_cimguiname="igRenderColorComponentMarker", ret="void", @@ -30098,7 +30234,7 @@ local t={ flags="0", rounding="0.0f"}, funcname="RenderColorRectWithAlphaCheckerboard", - location="imgui_internal:3895", + location="imgui_internal:3909", namespace="ImGui", ov_cimguiname="igRenderColorRectWithAlphaCheckerboard", ret="void", @@ -30121,7 +30257,7 @@ local t={ cimguiname="igRenderDragDropTargetRectEx", defaults={}, funcname="RenderDragDropTargetRectEx", - location="imgui_internal:3764", + location="imgui_internal:3777", namespace="ImGui", ov_cimguiname="igRenderDragDropTargetRectEx", ret="void", @@ -30141,7 +30277,7 @@ local t={ cimguiname="igRenderDragDropTargetRectForItem", defaults={}, funcname="RenderDragDropTargetRectForItem", - location="imgui_internal:3763", + location="imgui_internal:3776", namespace="ImGui", ov_cimguiname="igRenderDragDropTargetRectForItem", ret="void", @@ -30175,7 +30311,7 @@ local t={ borders="true", rounding="0.0f"}, funcname="RenderFrame", - location="imgui_internal:3892", + location="imgui_internal:3906", namespace="ImGui", ov_cimguiname="igRenderFrame", ret="void", @@ -30202,7 +30338,7 @@ local t={ defaults={ rounding="0.0f"}, funcname="RenderFrameBorder", - location="imgui_internal:3893", + location="imgui_internal:3907", namespace="ImGui", ov_cimguiname="igRenderFrameBorder", ret="void", @@ -30237,7 +30373,7 @@ local t={ cimguiname="igRenderMouseCursor", defaults={}, funcname="RenderMouseCursor", - location="imgui_internal:3901", + location="imgui_internal:3915", namespace="ImGui", ov_cimguiname="igRenderMouseCursor", ret="void", @@ -30264,7 +30400,7 @@ local t={ defaults={ flags="ImGuiNavRenderCursorFlags_None"}, funcname="RenderNavCursor", - location="imgui_internal:3896", + location="imgui_internal:3910", namespace="ImGui", ov_cimguiname="igRenderNavCursor", ret="void", @@ -30289,7 +30425,7 @@ local t={ platform_render_arg="NULL", renderer_render_arg="NULL"}, funcname="RenderPlatformWindowsDefault", - location="imgui:1195", + location="imgui:1198", namespace="ImGui", ov_cimguiname="igRenderPlatformWindowsDefault", ret="void", @@ -30324,7 +30460,7 @@ local t={ cimguiname="igRenderRectFilledInRangeH", defaults={}, funcname="RenderRectFilledInRangeH", - location="imgui_internal:3909", + location="imgui_internal:3923", namespace="ImGui", ov_cimguiname="igRenderRectFilledInRangeH", ret="void", @@ -30356,7 +30492,7 @@ local t={ cimguiname="igRenderRectFilledWithHole", defaults={}, funcname="RenderRectFilledWithHole", - location="imgui_internal:3910", + location="imgui_internal:3924", namespace="ImGui", ov_cimguiname="igRenderRectFilledWithHole", ret="void", @@ -30387,7 +30523,7 @@ local t={ hide_text_after_hash="true", text_end="NULL"}, funcname="RenderText", - location="imgui_internal:3887", + location="imgui_internal:3901", namespace="ImGui", ov_cimguiname="igRenderText", ret="void", @@ -30427,7 +30563,7 @@ local t={ align="ImVec2(0,0)", clip_rect="NULL"}, funcname="RenderTextClipped", - location="imgui_internal:3889", + location="imgui_internal:3903", namespace="ImGui", ov_cimguiname="igRenderTextClipped", ret="void", @@ -30470,7 +30606,7 @@ local t={ align="ImVec2(0,0)", clip_rect="NULL"}, funcname="RenderTextClippedEx", - location="imgui_internal:3890", + location="imgui_internal:3904", namespace="ImGui", ov_cimguiname="igRenderTextClippedEx", ret="void", @@ -30508,7 +30644,7 @@ local t={ cimguiname="igRenderTextEllipsis", defaults={}, funcname="RenderTextEllipsis", - location="imgui_internal:3891", + location="imgui_internal:3905", namespace="ImGui", ov_cimguiname="igRenderTextEllipsis", ret="void", @@ -30537,7 +30673,7 @@ local t={ cimguiname="igRenderTextWrapped", defaults={}, funcname="RenderTextWrapped", - location="imgui_internal:3888", + location="imgui_internal:3902", namespace="ImGui", ov_cimguiname="igRenderTextWrapped", ret="void", @@ -30558,7 +30694,7 @@ local t={ defaults={ button="0"}, funcname="ResetMouseDragDelta", - location="imgui:1150", + location="imgui:1153", namespace="ImGui", ov_cimguiname="igResetMouseDragDelta", ret="void", @@ -30583,7 +30719,7 @@ local t={ offset_from_start_x="0.0f", spacing="-1.0f"}, funcname="SameLine", - location="imgui:586", + location="imgui:588", namespace="ImGui", ov_cimguiname="igSameLine", ret="void", @@ -30603,7 +30739,7 @@ local t={ cimguiname="igSaveIniSettingsToDisk", defaults={}, funcname="SaveIniSettingsToDisk", - location="imgui:1166", + location="imgui:1169", namespace="ImGui", ov_cimguiname="igSaveIniSettingsToDisk", ret="void", @@ -30624,7 +30760,7 @@ local t={ defaults={ out_ini_size="NULL"}, funcname="SaveIniSettingsToMemory", - location="imgui:1167", + location="imgui:1170", namespace="ImGui", ov_cimguiname="igSaveIniSettingsToMemory", ret="const char*", @@ -30647,7 +30783,7 @@ local t={ cimguiname="igScaleWindowsInViewport", defaults={}, funcname="ScaleWindowsInViewport", - location="imgui_internal:3468", + location="imgui_internal:3479", namespace="ImGui", ov_cimguiname="igScaleWindowsInViewport", ret="void", @@ -30670,7 +30806,7 @@ local t={ cimguiname="igScrollToBringRectIntoView", defaults={}, funcname="ScrollToBringRectIntoView", - location="imgui_internal:3504", + location="imgui_internal:3515", namespace="ImGui", ov_cimguiname="igScrollToBringRectIntoView", ret="void", @@ -30691,7 +30827,7 @@ local t={ defaults={ flags="0"}, funcname="ScrollToItem", - location="imgui_internal:3500", + location="imgui_internal:3511", namespace="ImGui", ov_cimguiname="igScrollToItem", ret="void", @@ -30718,7 +30854,7 @@ local t={ defaults={ flags="0"}, funcname="ScrollToRect", - location="imgui_internal:3501", + location="imgui_internal:3512", namespace="ImGui", ov_cimguiname="igScrollToRect", ret="void", @@ -30746,7 +30882,7 @@ local t={ defaults={ flags="0"}, funcname="ScrollToRectEx", - location="imgui_internal:3502", + location="imgui_internal:3513", namespace="ImGui", nonUDT=1, ov_cimguiname="igScrollToRectEx", @@ -30767,7 +30903,7 @@ local t={ cimguiname="igScrollbar", defaults={}, funcname="Scrollbar", - location="imgui_internal:3930", + location="imgui_internal:3944", namespace="ImGui", ov_cimguiname="igScrollbar", ret="void", @@ -30806,7 +30942,7 @@ local t={ defaults={ draw_rounding_flags="0"}, funcname="ScrollbarEx", - location="imgui_internal:3931", + location="imgui_internal:3945", namespace="ImGui", ov_cimguiname="igScrollbarEx", ret="bool", @@ -30838,7 +30974,7 @@ local t={ selected="false", size="ImVec2(0,0)"}, funcname="Selectable", - location="imgui:771", + location="imgui:774", namespace="ImGui", ov_cimguiname="igSelectable_Bool", ret="bool", @@ -30867,7 +31003,7 @@ local t={ flags="0", size="ImVec2(0,0)"}, funcname="Selectable", - location="imgui:772", + location="imgui:775", namespace="ImGui", ov_cimguiname="igSelectable_BoolPtr", ret="bool", @@ -30885,7 +31021,7 @@ local t={ cimguiname="igSeparator", defaults={}, funcname="Separator", - location="imgui:585", + location="imgui:587", namespace="ImGui", ov_cimguiname="igSeparator", ret="void", @@ -30909,7 +31045,7 @@ local t={ defaults={ thickness="1.0f"}, funcname="SeparatorEx", - location="imgui_internal:3922", + location="imgui_internal:3936", namespace="ImGui", ov_cimguiname="igSeparatorEx", ret="void", @@ -30929,7 +31065,7 @@ local t={ cimguiname="igSeparatorText", defaults={}, funcname="SeparatorText", - location="imgui:635", + location="imgui:637", namespace="ImGui", ov_cimguiname="igSeparatorText", ret="void", @@ -30958,7 +31094,7 @@ local t={ cimguiname="igSeparatorTextEx", defaults={}, funcname="SeparatorTextEx", - location="imgui_internal:3923", + location="imgui_internal:3937", namespace="ImGui", ov_cimguiname="igSeparatorTextEx", ret="void", @@ -30981,7 +31117,7 @@ local t={ cimguiname="igSetActiveID", defaults={}, funcname="SetActiveID", - location="imgui_internal:3511", + location="imgui_internal:3522", namespace="ImGui", ov_cimguiname="igSetActiveID", ret="void", @@ -30998,7 +31134,7 @@ local t={ cimguiname="igSetActiveIdUsingAllKeyboardKeys", defaults={}, funcname="SetActiveIdUsingAllKeyboardKeys", - location="imgui_internal:3635", + location="imgui_internal:3648", namespace="ImGui", ov_cimguiname="igSetActiveIdUsingAllKeyboardKeys", ret="void", @@ -31025,7 +31161,7 @@ local t={ defaults={ user_data="NULL"}, funcname="SetAllocatorFunctions", - location="imgui:1186", + location="imgui:1189", namespace="ImGui", ov_cimguiname="igSetAllocatorFunctions", ret="void", @@ -31045,7 +31181,7 @@ local t={ cimguiname="igSetClipboardText", defaults={}, funcname="SetClipboardText", - location="imgui:1158", + location="imgui:1161", namespace="ImGui", ov_cimguiname="igSetClipboardText", ret="void", @@ -31065,7 +31201,7 @@ local t={ cimguiname="igSetColorEditOptions", defaults={}, funcname="SetColorEditOptions", - location="imgui:745", + location="imgui:747", namespace="ImGui", ov_cimguiname="igSetColorEditOptions", ret="void", @@ -31088,7 +31224,7 @@ local t={ cimguiname="igSetColumnOffset", defaults={}, funcname="SetColumnOffset", - location="imgui:953", + location="imgui:956", namespace="ImGui", ov_cimguiname="igSetColumnOffset", ret="void", @@ -31111,7 +31247,7 @@ local t={ cimguiname="igSetColumnWidth", defaults={}, funcname="SetColumnWidth", - location="imgui:951", + location="imgui:954", namespace="ImGui", ov_cimguiname="igSetColumnWidth", ret="void", @@ -31134,7 +31270,7 @@ local t={ cimguiname="igSetContextName", defaults={}, funcname="SetContextName", - location="imgui_internal:3451", + location="imgui_internal:3462", namespace="ImGui", ov_cimguiname="igSetContextName", ret="void", @@ -31154,7 +31290,7 @@ local t={ cimguiname="igSetCurrentContext", defaults={}, funcname="SetCurrentContext", - location="imgui:400", + location="imgui:402", namespace="ImGui", ov_cimguiname="igSetCurrentContext", ret="void", @@ -31180,7 +31316,7 @@ local t={ cimguiname="igSetCurrentFont", defaults={}, funcname="SetCurrentFont", - location="imgui_internal:3435", + location="imgui_internal:3446", namespace="ImGui", ov_cimguiname="igSetCurrentFont", ret="void", @@ -31203,7 +31339,7 @@ local t={ cimguiname="igSetCurrentViewport", defaults={}, funcname="SetCurrentViewport", - location="imgui_internal:3471", + location="imgui_internal:3482", namespace="ImGui", ov_cimguiname="igSetCurrentViewport", ret="void", @@ -31223,7 +31359,7 @@ local t={ cimguiname="igSetCursorPos", defaults={}, funcname="SetCursorPos", - location="imgui:579", + location="imgui:581", namespace="ImGui", ov_cimguiname="igSetCursorPos", ret="void", @@ -31243,7 +31379,7 @@ local t={ cimguiname="igSetCursorPosX", defaults={}, funcname="SetCursorPosX", - location="imgui:580", + location="imgui:582", namespace="ImGui", ov_cimguiname="igSetCursorPosX", ret="void", @@ -31263,7 +31399,7 @@ local t={ cimguiname="igSetCursorPosY", defaults={}, funcname="SetCursorPosY", - location="imgui:581", + location="imgui:583", namespace="ImGui", ov_cimguiname="igSetCursorPosY", ret="void", @@ -31283,7 +31419,7 @@ local t={ cimguiname="igSetCursorScreenPos", defaults={}, funcname="SetCursorScreenPos", - location="imgui:574", + location="imgui:576", namespace="ImGui", ov_cimguiname="igSetCursorScreenPos", ret="void", @@ -31313,7 +31449,7 @@ local t={ defaults={ cond="0"}, funcname="SetDragDropPayload", - location="imgui:1009", + location="imgui:1012", namespace="ImGui", ov_cimguiname="igSetDragDropPayload", ret="bool", @@ -31336,7 +31472,7 @@ local t={ cimguiname="igSetFocusID", defaults={}, funcname="SetFocusID", - location="imgui_internal:3512", + location="imgui_internal:3523", namespace="ImGui", ov_cimguiname="igSetFocusID", ret="void", @@ -31356,7 +31492,7 @@ local t={ cimguiname="igSetFontRasterizerDensity", defaults={}, funcname="SetFontRasterizerDensity", - location="imgui_internal:3437", + location="imgui_internal:3448", namespace="ImGui", ov_cimguiname="igSetFontRasterizerDensity", ret="void", @@ -31376,7 +31512,7 @@ local t={ cimguiname="igSetHoveredID", defaults={}, funcname="SetHoveredID", - location="imgui_internal:3515", + location="imgui_internal:3526", namespace="ImGui", ov_cimguiname="igSetHoveredID", ret="void", @@ -31393,7 +31529,7 @@ local t={ cimguiname="igSetItemDefaultFocus", defaults={}, funcname="SetItemDefaultFocus", - location="imgui:1030", + location="imgui:1033", namespace="ImGui", ov_cimguiname="igSetItemDefaultFocus", ret="void", @@ -31413,7 +31549,7 @@ local t={ cimguiname="igSetItemKeyOwner", defaults={}, funcname="SetItemKeyOwner", - location="imgui:1131", + location="imgui:1134", namespace="ImGui", ov_cimguiname="igSetItemKeyOwner_Nil", ret="void", @@ -31434,7 +31570,7 @@ local t={ cimguiname="igSetItemKeyOwner", defaults={}, funcname="SetItemKeyOwner", - location="imgui_internal:3652", + location="imgui_internal:3665", namespace="ImGui", ov_cimguiname="igSetItemKeyOwner_InputFlags", ret="void", @@ -31459,7 +31595,7 @@ local t={ defaults={}, funcname="SetItemTooltip", isvararg="...)", - location="imgui:840", + location="imgui:843", namespace="ImGui", ov_cimguiname="igSetItemTooltip", ret="void", @@ -31482,7 +31618,7 @@ local t={ cimguiname="igSetItemTooltipV", defaults={}, funcname="SetItemTooltipV", - location="imgui:841", + location="imgui:844", namespace="ImGui", ov_cimguiname="igSetItemTooltipV", ret="void", @@ -31509,7 +31645,7 @@ local t={ defaults={ flags="0"}, funcname="SetKeyOwner", - location="imgui_internal:3650", + location="imgui_internal:3663", namespace="ImGui", ov_cimguiname="igSetKeyOwner", ret="void", @@ -31536,7 +31672,7 @@ local t={ defaults={ flags="0"}, funcname="SetKeyOwnersForKeyChord", - location="imgui_internal:3651", + location="imgui_internal:3664", namespace="ImGui", ov_cimguiname="igSetKeyOwnersForKeyChord", ret="void", @@ -31557,7 +31693,7 @@ local t={ defaults={ offset="0"}, funcname="SetKeyboardFocusHere", - location="imgui:1031", + location="imgui:1034", namespace="ImGui", ov_cimguiname="igSetKeyboardFocusHere", ret="void", @@ -31586,7 +31722,7 @@ local t={ cimguiname="igSetLastItemData", defaults={}, funcname="SetLastItemData", - location="imgui_internal:3529", + location="imgui_internal:3540", namespace="ImGui", ov_cimguiname="igSetLastItemData", ret="void", @@ -31606,7 +31742,7 @@ local t={ cimguiname="igSetMouseCursor", defaults={}, funcname="SetMouseCursor", - location="imgui:1152", + location="imgui:1155", namespace="ImGui", ov_cimguiname="igSetMouseCursor", ret="void", @@ -31626,7 +31762,7 @@ local t={ cimguiname="igSetNavCursorVisible", defaults={}, funcname="SetNavCursorVisible", - location="imgui:1034", + location="imgui:1037", namespace="ImGui", ov_cimguiname="igSetNavCursorVisible", ret="void", @@ -31643,7 +31779,7 @@ local t={ cimguiname="igSetNavCursorVisibleAfterMove", defaults={}, funcname="SetNavCursorVisibleAfterMove", - location="imgui_internal:3593", + location="imgui_internal:3606", namespace="ImGui", ov_cimguiname="igSetNavCursorVisibleAfterMove", ret="void", @@ -31663,7 +31799,7 @@ local t={ cimguiname="igSetNavFocusScope", defaults={}, funcname="SetNavFocusScope", - location="imgui_internal:3597", + location="imgui_internal:3610", namespace="ImGui", ov_cimguiname="igSetNavFocusScope", ret="void", @@ -31692,7 +31828,7 @@ local t={ cimguiname="igSetNavID", defaults={}, funcname="SetNavID", - location="imgui_internal:3596", + location="imgui_internal:3609", namespace="ImGui", ov_cimguiname="igSetNavID", ret="void", @@ -31712,7 +31848,7 @@ local t={ cimguiname="igSetNavWindow", defaults={}, funcname="SetNavWindow", - location="imgui_internal:3595", + location="imgui_internal:3608", namespace="ImGui", ov_cimguiname="igSetNavWindow", ret="void", @@ -31732,7 +31868,7 @@ local t={ cimguiname="igSetNextFrameWantCaptureKeyboard", defaults={}, funcname="SetNextFrameWantCaptureKeyboard", - location="imgui:1100", + location="imgui:1103", namespace="ImGui", ov_cimguiname="igSetNextFrameWantCaptureKeyboard", ret="void", @@ -31752,7 +31888,7 @@ local t={ cimguiname="igSetNextFrameWantCaptureMouse", defaults={}, funcname="SetNextFrameWantCaptureMouse", - location="imgui:1153", + location="imgui:1156", namespace="ImGui", ov_cimguiname="igSetNextFrameWantCaptureMouse", ret="void", @@ -31769,7 +31905,7 @@ local t={ cimguiname="igSetNextItemAllowOverlap", defaults={}, funcname="SetNextItemAllowOverlap", - location="imgui:1037", + location="imgui:1040", namespace="ImGui", ov_cimguiname="igSetNextItemAllowOverlap", ret="void", @@ -31789,7 +31925,7 @@ local t={ cimguiname="igSetNextItemColorMarker", defaults={}, funcname="SetNextItemColorMarker", - location="imgui_internal:3985", + location="imgui_internal:3999", namespace="ImGui", ov_cimguiname="igSetNextItemColorMarker", ret="void", @@ -31813,7 +31949,7 @@ local t={ defaults={ cond="0"}, funcname="SetNextItemOpen", - location="imgui:765", + location="imgui:767", namespace="ImGui", ov_cimguiname="igSetNextItemOpen", ret="void", @@ -31836,7 +31972,7 @@ local t={ cimguiname="igSetNextItemRefVal", defaults={}, funcname="SetNextItemRefVal", - location="imgui_internal:3978", + location="imgui_internal:3992", namespace="ImGui", ov_cimguiname="igSetNextItemRefVal", ret="void", @@ -31856,7 +31992,7 @@ local t={ cimguiname="igSetNextItemSelectionUserData", defaults={}, funcname="SetNextItemSelectionUserData", - location="imgui:783", + location="imgui:786", namespace="ImGui", ov_cimguiname="igSetNextItemSelectionUserData", ret="void", @@ -31880,7 +32016,7 @@ local t={ defaults={ flags="0"}, funcname="SetNextItemShortcut", - location="imgui:1123", + location="imgui:1126", namespace="ImGui", ov_cimguiname="igSetNextItemShortcut", ret="void", @@ -31900,7 +32036,7 @@ local t={ cimguiname="igSetNextItemStorageID", defaults={}, funcname="SetNextItemStorageID", - location="imgui:766", + location="imgui:768", namespace="ImGui", ov_cimguiname="igSetNextItemStorageID", ret="void", @@ -31920,7 +32056,7 @@ local t={ cimguiname="igSetNextItemWidth", defaults={}, funcname="SetNextItemWidth", - location="imgui:550", + location="imgui:552", namespace="ImGui", ov_cimguiname="igSetNextItemWidth", ret="void", @@ -31940,7 +32076,7 @@ local t={ cimguiname="igSetNextWindowBgAlpha", defaults={}, funcname="SetNextWindowBgAlpha", - location="imgui:488", + location="imgui:490", namespace="ImGui", ov_cimguiname="igSetNextWindowBgAlpha", ret="void", @@ -31960,7 +32096,7 @@ local t={ cimguiname="igSetNextWindowClass", defaults={}, funcname="SetNextWindowClass", - location="imgui:989", + location="imgui:992", namespace="ImGui", ov_cimguiname="igSetNextWindowClass", ret="void", @@ -31984,7 +32120,7 @@ local t={ defaults={ cond="0"}, funcname="SetNextWindowCollapsed", - location="imgui:485", + location="imgui:487", namespace="ImGui", ov_cimguiname="igSetNextWindowCollapsed", ret="void", @@ -32004,7 +32140,7 @@ local t={ cimguiname="igSetNextWindowContentSize", defaults={}, funcname="SetNextWindowContentSize", - location="imgui:484", + location="imgui:486", namespace="ImGui", ov_cimguiname="igSetNextWindowContentSize", ret="void", @@ -32028,7 +32164,7 @@ local t={ defaults={ cond="0"}, funcname="SetNextWindowDockID", - location="imgui:988", + location="imgui:991", namespace="ImGui", ov_cimguiname="igSetNextWindowDockID", ret="void", @@ -32045,7 +32181,7 @@ local t={ cimguiname="igSetNextWindowFocus", defaults={}, funcname="SetNextWindowFocus", - location="imgui:486", + location="imgui:488", namespace="ImGui", ov_cimguiname="igSetNextWindowFocus", ret="void", @@ -32073,7 +32209,7 @@ local t={ cond="0", pivot="ImVec2(0,0)"}, funcname="SetNextWindowPos", - location="imgui:481", + location="imgui:483", namespace="ImGui", ov_cimguiname="igSetNextWindowPos", ret="void", @@ -32093,7 +32229,7 @@ local t={ cimguiname="igSetNextWindowRefreshPolicy", defaults={}, funcname="SetNextWindowRefreshPolicy", - location="imgui_internal:3428", + location="imgui_internal:3439", namespace="ImGui", ov_cimguiname="igSetNextWindowRefreshPolicy", ret="void", @@ -32113,7 +32249,7 @@ local t={ cimguiname="igSetNextWindowScroll", defaults={}, funcname="SetNextWindowScroll", - location="imgui:487", + location="imgui:489", namespace="ImGui", ov_cimguiname="igSetNextWindowScroll", ret="void", @@ -32137,7 +32273,7 @@ local t={ defaults={ cond="0"}, funcname="SetNextWindowSize", - location="imgui:482", + location="imgui:484", namespace="ImGui", ov_cimguiname="igSetNextWindowSize", ret="void", @@ -32168,7 +32304,7 @@ local t={ custom_callback="NULL", custom_callback_data="NULL"}, funcname="SetNextWindowSizeConstraints", - location="imgui:483", + location="imgui:485", namespace="ImGui", ov_cimguiname="igSetNextWindowSizeConstraints", ret="void", @@ -32188,7 +32324,7 @@ local t={ cimguiname="igSetNextWindowViewport", defaults={}, funcname="SetNextWindowViewport", - location="imgui:489", + location="imgui:491", namespace="ImGui", ov_cimguiname="igSetNextWindowViewport", ret="void", @@ -32212,7 +32348,7 @@ local t={ defaults={ center_x_ratio="0.5f"}, funcname="SetScrollFromPosX", - location="imgui:510", + location="imgui:512", namespace="ImGui", ov_cimguiname="igSetScrollFromPosX_Float", ret="void", @@ -32236,7 +32372,7 @@ local t={ cimguiname="igSetScrollFromPosX", defaults={}, funcname="SetScrollFromPosX", - location="imgui_internal:3496", + location="imgui_internal:3507", namespace="ImGui", ov_cimguiname="igSetScrollFromPosX_WindowPtr", ret="void", @@ -32261,7 +32397,7 @@ local t={ defaults={ center_y_ratio="0.5f"}, funcname="SetScrollFromPosY", - location="imgui:511", + location="imgui:513", namespace="ImGui", ov_cimguiname="igSetScrollFromPosY_Float", ret="void", @@ -32285,7 +32421,7 @@ local t={ cimguiname="igSetScrollFromPosY", defaults={}, funcname="SetScrollFromPosY", - location="imgui_internal:3497", + location="imgui_internal:3508", namespace="ImGui", ov_cimguiname="igSetScrollFromPosY_WindowPtr", ret="void", @@ -32307,7 +32443,7 @@ local t={ defaults={ center_x_ratio="0.5f"}, funcname="SetScrollHereX", - location="imgui:508", + location="imgui:510", namespace="ImGui", ov_cimguiname="igSetScrollHereX", ret="void", @@ -32328,7 +32464,7 @@ local t={ defaults={ center_y_ratio="0.5f"}, funcname="SetScrollHereY", - location="imgui:509", + location="imgui:511", namespace="ImGui", ov_cimguiname="igSetScrollHereY", ret="void", @@ -32348,7 +32484,7 @@ local t={ cimguiname="igSetScrollX", defaults={}, funcname="SetScrollX", - location="imgui:504", + location="imgui:506", namespace="ImGui", ov_cimguiname="igSetScrollX_Float", ret="void", @@ -32369,7 +32505,7 @@ local t={ cimguiname="igSetScrollX", defaults={}, funcname="SetScrollX", - location="imgui_internal:3494", + location="imgui_internal:3505", namespace="ImGui", ov_cimguiname="igSetScrollX_WindowPtr", ret="void", @@ -32390,7 +32526,7 @@ local t={ cimguiname="igSetScrollY", defaults={}, funcname="SetScrollY", - location="imgui:505", + location="imgui:507", namespace="ImGui", ov_cimguiname="igSetScrollY_Float", ret="void", @@ -32411,7 +32547,7 @@ local t={ cimguiname="igSetScrollY", defaults={}, funcname="SetScrollY", - location="imgui_internal:3495", + location="imgui_internal:3506", namespace="ImGui", ov_cimguiname="igSetScrollY_WindowPtr", ret="void", @@ -32438,7 +32574,7 @@ local t={ cimguiname="igSetShortcutRouting", defaults={}, funcname="SetShortcutRouting", - location="imgui_internal:3686", + location="imgui_internal:3699", namespace="ImGui", ov_cimguiname="igSetShortcutRouting", ret="bool", @@ -32458,7 +32594,7 @@ local t={ cimguiname="igSetStateStorage", defaults={}, funcname="SetStateStorage", - location="imgui:1078", + location="imgui:1081", namespace="ImGui", ov_cimguiname="igSetStateStorage", ret="void", @@ -32478,7 +32614,7 @@ local t={ cimguiname="igSetTabItemClosed", defaults={}, funcname="SetTabItemClosed", - location="imgui:963", + location="imgui:966", namespace="ImGui", ov_cimguiname="igSetTabItemClosed", ret="void", @@ -32502,7 +32638,7 @@ local t={ defaults={}, funcname="SetTooltip", isvararg="...)", - location="imgui:832", + location="imgui:835", namespace="ImGui", ov_cimguiname="igSetTooltip", ret="void", @@ -32525,7 +32661,7 @@ local t={ cimguiname="igSetTooltipV", defaults={}, funcname="SetTooltipV", - location="imgui:833", + location="imgui:836", namespace="ImGui", ov_cimguiname="igSetTooltipV", ret="void", @@ -32548,7 +32684,7 @@ local t={ cimguiname="igSetWindowClipRectBeforeSetChannel", defaults={}, funcname="SetWindowClipRectBeforeSetChannel", - location="imgui_internal:3787", + location="imgui_internal:3800", namespace="ImGui", ov_cimguiname="igSetWindowClipRectBeforeSetChannel", ret="void", @@ -32572,7 +32708,7 @@ local t={ defaults={ cond="0"}, funcname="SetWindowCollapsed", - location="imgui:492", + location="imgui:494", namespace="ImGui", ov_cimguiname="igSetWindowCollapsed_Bool", ret="void", @@ -32597,7 +32733,7 @@ local t={ defaults={ cond="0"}, funcname="SetWindowCollapsed", - location="imgui:496", + location="imgui:498", namespace="ImGui", ov_cimguiname="igSetWindowCollapsed_Str", ret="void", @@ -32622,7 +32758,7 @@ local t={ defaults={ cond="0"}, funcname="SetWindowCollapsed", - location="imgui_internal:3408", + location="imgui_internal:3419", namespace="ImGui", ov_cimguiname="igSetWindowCollapsed_WindowPtr", ret="void", @@ -32650,7 +32786,7 @@ local t={ cimguiname="igSetWindowDock", defaults={}, funcname="SetWindowDock", - location="imgui_internal:3719", + location="imgui_internal:3732", namespace="ImGui", ov_cimguiname="igSetWindowDock", ret="void", @@ -32667,7 +32803,7 @@ local t={ cimguiname="igSetWindowFocus", defaults={}, funcname="SetWindowFocus", - location="imgui:493", + location="imgui:495", namespace="ImGui", ov_cimguiname="igSetWindowFocus_Nil", ret="void", @@ -32685,7 +32821,7 @@ local t={ cimguiname="igSetWindowFocus", defaults={}, funcname="SetWindowFocus", - location="imgui:497", + location="imgui:499", namespace="ImGui", ov_cimguiname="igSetWindowFocus_Str", ret="void", @@ -32706,7 +32842,7 @@ local t={ cimguiname="igSetWindowHiddenAndSkipItemsForCurrentFrame", defaults={}, funcname="SetWindowHiddenAndSkipItemsForCurrentFrame", - location="imgui_internal:3410", + location="imgui_internal:3421", namespace="ImGui", ov_cimguiname="igSetWindowHiddenAndSkipItemsForCurrentFrame", ret="void", @@ -32732,7 +32868,7 @@ local t={ cimguiname="igSetWindowHitTestHole", defaults={}, funcname="SetWindowHitTestHole", - location="imgui_internal:3409", + location="imgui_internal:3420", namespace="ImGui", ov_cimguiname="igSetWindowHitTestHole", ret="void", @@ -32755,7 +32891,7 @@ local t={ cimguiname="igSetWindowParentWindowForFocusRoute", defaults={}, funcname="SetWindowParentWindowForFocusRoute", - location="imgui_internal:3411", + location="imgui_internal:3422", namespace="ImGui", ov_cimguiname="igSetWindowParentWindowForFocusRoute", ret="void", @@ -32779,7 +32915,7 @@ local t={ defaults={ cond="0"}, funcname="SetWindowPos", - location="imgui:490", + location="imgui:492", namespace="ImGui", ov_cimguiname="igSetWindowPos_Vec2", ret="void", @@ -32804,7 +32940,7 @@ local t={ defaults={ cond="0"}, funcname="SetWindowPos", - location="imgui:494", + location="imgui:496", namespace="ImGui", ov_cimguiname="igSetWindowPos_Str", ret="void", @@ -32829,7 +32965,7 @@ local t={ defaults={ cond="0"}, funcname="SetWindowPos", - location="imgui_internal:3406", + location="imgui_internal:3417", namespace="ImGui", ov_cimguiname="igSetWindowPos_WindowPtr", ret="void", @@ -32855,7 +32991,7 @@ local t={ defaults={ cond="0"}, funcname="SetWindowSize", - location="imgui:491", + location="imgui:493", namespace="ImGui", ov_cimguiname="igSetWindowSize_Vec2", ret="void", @@ -32880,7 +33016,7 @@ local t={ defaults={ cond="0"}, funcname="SetWindowSize", - location="imgui:495", + location="imgui:497", namespace="ImGui", ov_cimguiname="igSetWindowSize_Str", ret="void", @@ -32905,7 +33041,7 @@ local t={ defaults={ cond="0"}, funcname="SetWindowSize", - location="imgui_internal:3407", + location="imgui_internal:3418", namespace="ImGui", ov_cimguiname="igSetWindowSize_WindowPtr", ret="void", @@ -32930,7 +33066,7 @@ local t={ cimguiname="igSetWindowViewport", defaults={}, funcname="SetWindowViewport", - location="imgui_internal:3470", + location="imgui_internal:3481", namespace="ImGui", ov_cimguiname="igSetWindowViewport", ret="void", @@ -32968,7 +33104,7 @@ local t={ cimguiname="igShadeVertsLinearColorGradientKeepAlpha", defaults={}, funcname="ShadeVertsLinearColorGradientKeepAlpha", - location="imgui_internal:3991", + location="imgui_internal:4005", namespace="ImGui", ov_cimguiname="igShadeVertsLinearColorGradientKeepAlpha", ret="void", @@ -33009,7 +33145,7 @@ local t={ cimguiname="igShadeVertsLinearUV", defaults={}, funcname="ShadeVertsLinearUV", - location="imgui_internal:3992", + location="imgui_internal:4006", namespace="ImGui", ov_cimguiname="igShadeVertsLinearUV", ret="void", @@ -33047,7 +33183,7 @@ local t={ cimguiname="igShadeVertsTransformPos", defaults={}, funcname="ShadeVertsTransformPos", - location="imgui_internal:3993", + location="imgui_internal:4007", namespace="ImGui", ov_cimguiname="igShadeVertsTransformPos", ret="void", @@ -33071,7 +33207,7 @@ local t={ defaults={ flags="0"}, funcname="Shortcut", - location="imgui:1122", + location="imgui:1125", namespace="ImGui", ov_cimguiname="igShortcut_Nil", ret="bool", @@ -33095,7 +33231,7 @@ local t={ cimguiname="igShortcut", defaults={}, funcname="Shortcut", - location="imgui_internal:3685", + location="imgui_internal:3698", namespace="ImGui", ov_cimguiname="igShortcut_ID", ret="bool", @@ -33117,7 +33253,7 @@ local t={ defaults={ p_open="NULL"}, funcname="ShowAboutWindow", - location="imgui:416", + location="imgui:418", namespace="ImGui", ov_cimguiname="igShowAboutWindow", ret="void", @@ -33138,7 +33274,7 @@ local t={ defaults={ p_open="NULL"}, funcname="ShowDebugLogWindow", - location="imgui:414", + location="imgui:416", namespace="ImGui", ov_cimguiname="igShowDebugLogWindow", ret="void", @@ -33159,7 +33295,7 @@ local t={ defaults={ p_open="NULL"}, funcname="ShowDemoWindow", - location="imgui:412", + location="imgui:414", namespace="ImGui", ov_cimguiname="igShowDemoWindow", ret="void", @@ -33179,7 +33315,7 @@ local t={ cimguiname="igShowFontAtlas", defaults={}, funcname="ShowFontAtlas", - location="imgui_internal:4022", + location="imgui_internal:4039", namespace="ImGui", ov_cimguiname="igShowFontAtlas", ret="void", @@ -33199,7 +33335,7 @@ local t={ cimguiname="igShowFontSelector", defaults={}, funcname="ShowFontSelector", - location="imgui:419", + location="imgui:421", namespace="ImGui", ov_cimguiname="igShowFontSelector", ret="void", @@ -33220,7 +33356,7 @@ local t={ defaults={ p_open="NULL"}, funcname="ShowIDStackToolWindow", - location="imgui:415", + location="imgui:417", namespace="ImGui", ov_cimguiname="igShowIDStackToolWindow", ret="void", @@ -33241,7 +33377,7 @@ local t={ defaults={ p_open="NULL"}, funcname="ShowMetricsWindow", - location="imgui:413", + location="imgui:415", namespace="ImGui", ov_cimguiname="igShowMetricsWindow", ret="void", @@ -33262,7 +33398,7 @@ local t={ defaults={ ref="NULL"}, funcname="ShowStyleEditor", - location="imgui:417", + location="imgui:419", namespace="ImGui", ov_cimguiname="igShowStyleEditor", ret="void", @@ -33282,7 +33418,7 @@ local t={ cimguiname="igShowStyleSelector", defaults={}, funcname="ShowStyleSelector", - location="imgui:418", + location="imgui:420", namespace="ImGui", ov_cimguiname="igShowStyleSelector", ret="bool", @@ -33299,7 +33435,7 @@ local t={ cimguiname="igShowUserGuide", defaults={}, funcname="ShowUserGuide", - location="imgui:420", + location="imgui:422", namespace="ImGui", ov_cimguiname="igShowUserGuide", ret="void", @@ -33328,7 +33464,7 @@ local t={ cimguiname="igShrinkWidths", defaults={}, funcname="ShrinkWidths", - location="imgui_internal:3533", + location="imgui_internal:3544", namespace="ImGui", ov_cimguiname="igShrinkWidths", ret="void", @@ -33345,7 +33481,7 @@ local t={ cimguiname="igShutdown", defaults={}, funcname="Shutdown", - location="imgui_internal:3448", + location="imgui_internal:3459", namespace="ImGui", ov_cimguiname="igShutdown", ret="void", @@ -33384,7 +33520,7 @@ local t={ v_degrees_max="+360.0f", v_degrees_min="-360.0f"}, funcname="SliderAngle", - location="imgui:708", + location="imgui:710", namespace="ImGui", ov_cimguiname="igSliderAngle", ret="bool", @@ -33428,7 +33564,7 @@ local t={ cimguiname="igSliderBehavior", defaults={}, funcname="SliderBehavior", - location="imgui_internal:3940", + location="imgui_internal:3955", namespace="ImGui", ov_cimguiname="igSliderBehavior", ret="bool", @@ -33465,7 +33601,7 @@ local t={ flags="0", format="\"%.3f\""}, funcname="SliderFloat", - location="imgui:704", + location="imgui:706", namespace="ImGui", ov_cimguiname="igSliderFloat", ret="bool", @@ -33502,7 +33638,7 @@ local t={ flags="0", format="\"%.3f\""}, funcname="SliderFloat2", - location="imgui:705", + location="imgui:707", namespace="ImGui", ov_cimguiname="igSliderFloat2", ret="bool", @@ -33539,7 +33675,7 @@ local t={ flags="0", format="\"%.3f\""}, funcname="SliderFloat3", - location="imgui:706", + location="imgui:708", namespace="ImGui", ov_cimguiname="igSliderFloat3", ret="bool", @@ -33576,7 +33712,7 @@ local t={ flags="0", format="\"%.3f\""}, funcname="SliderFloat4", - location="imgui:707", + location="imgui:709", namespace="ImGui", ov_cimguiname="igSliderFloat4", ret="bool", @@ -33613,7 +33749,7 @@ local t={ flags="0", format="\"%d\""}, funcname="SliderInt", - location="imgui:709", + location="imgui:711", namespace="ImGui", ov_cimguiname="igSliderInt", ret="bool", @@ -33650,7 +33786,7 @@ local t={ flags="0", format="\"%d\""}, funcname="SliderInt2", - location="imgui:710", + location="imgui:712", namespace="ImGui", ov_cimguiname="igSliderInt2", ret="bool", @@ -33687,7 +33823,7 @@ local t={ flags="0", format="\"%d\""}, funcname="SliderInt3", - location="imgui:711", + location="imgui:713", namespace="ImGui", ov_cimguiname="igSliderInt3", ret="bool", @@ -33724,7 +33860,7 @@ local t={ flags="0", format="\"%d\""}, funcname="SliderInt4", - location="imgui:712", + location="imgui:714", namespace="ImGui", ov_cimguiname="igSliderInt4", ret="bool", @@ -33764,7 +33900,7 @@ local t={ flags="0", format="NULL"}, funcname="SliderScalar", - location="imgui:713", + location="imgui:715", namespace="ImGui", ov_cimguiname="igSliderScalar", ret="bool", @@ -33807,7 +33943,7 @@ local t={ flags="0", format="NULL"}, funcname="SliderScalarN", - location="imgui:714", + location="imgui:716", namespace="ImGui", ov_cimguiname="igSliderScalarN", ret="bool", @@ -33827,7 +33963,7 @@ local t={ cimguiname="igSmallButton", defaults={}, funcname="SmallButton", - location="imgui:641", + location="imgui:643", namespace="ImGui", ov_cimguiname="igSmallButton", ret="bool", @@ -33844,7 +33980,7 @@ local t={ cimguiname="igSpacing", defaults={}, funcname="Spacing", - location="imgui:588", + location="imgui:590", namespace="ImGui", ov_cimguiname="igSpacing", ret="void", @@ -33894,7 +34030,7 @@ local t={ hover_extend="0.0f", hover_visibility_delay="0.0f"}, funcname="SplitterBehavior", - location="imgui_internal:3941", + location="imgui_internal:3956", namespace="ImGui", ov_cimguiname="igSplitterBehavior", ret="bool", @@ -33914,7 +34050,7 @@ local t={ cimguiname="igStartMouseMovingWindow", defaults={}, funcname="StartMouseMovingWindow", - location="imgui_internal:3460", + location="imgui_internal:3471", namespace="ImGui", ov_cimguiname="igStartMouseMovingWindow", ret="void", @@ -33940,7 +34076,7 @@ local t={ cimguiname="igStartMouseMovingWindowOrNode", defaults={}, funcname="StartMouseMovingWindowOrNode", - location="imgui_internal:3461", + location="imgui_internal:3472", namespace="ImGui", ov_cimguiname="igStartMouseMovingWindowOrNode", ret="void", @@ -33957,7 +34093,7 @@ local t={ cimguiname="igStopMouseMovingWindow", defaults={}, funcname="StopMouseMovingWindow", - location="imgui_internal:3462", + location="imgui_internal:3473", namespace="ImGui", ov_cimguiname="igStopMouseMovingWindow", ret="void", @@ -33978,7 +34114,7 @@ local t={ defaults={ dst="NULL"}, funcname="StyleColorsClassic", - location="imgui:426", + location="imgui:428", namespace="ImGui", ov_cimguiname="igStyleColorsClassic", ret="void", @@ -33999,7 +34135,7 @@ local t={ defaults={ dst="NULL"}, funcname="StyleColorsDark", - location="imgui:424", + location="imgui:426", namespace="ImGui", ov_cimguiname="igStyleColorsDark", ret="void", @@ -34020,7 +34156,7 @@ local t={ defaults={ dst="NULL"}, funcname="StyleColorsLight", - location="imgui:425", + location="imgui:427", namespace="ImGui", ov_cimguiname="igStyleColorsLight", ret="void", @@ -34046,7 +34182,7 @@ local t={ cimguiname="igTabBarAddTab", defaults={}, funcname="TabBarAddTab", - location="imgui_internal:3869", + location="imgui_internal:3883", namespace="ImGui", ov_cimguiname="igTabBarAddTab", ret="void", @@ -34069,7 +34205,7 @@ local t={ cimguiname="igTabBarCloseTab", defaults={}, funcname="TabBarCloseTab", - location="imgui_internal:3871", + location="imgui_internal:3885", namespace="ImGui", ov_cimguiname="igTabBarCloseTab", ret="void", @@ -34089,7 +34225,7 @@ local t={ cimguiname="igTabBarFindByID", defaults={}, funcname="TabBarFindByID", - location="imgui_internal:3860", + location="imgui_internal:3874", namespace="ImGui", ov_cimguiname="igTabBarFindByID", ret="ImGuiTabBar*", @@ -34109,7 +34245,7 @@ local t={ cimguiname="igTabBarFindMostRecentlySelectedTabForActiveWindow", defaults={}, funcname="TabBarFindMostRecentlySelectedTabForActiveWindow", - location="imgui_internal:3865", + location="imgui_internal:3879", namespace="ImGui", ov_cimguiname="igTabBarFindMostRecentlySelectedTabForActiveWindow", ret="ImGuiTabItem*", @@ -34132,7 +34268,7 @@ local t={ cimguiname="igTabBarFindTabByID", defaults={}, funcname="TabBarFindTabByID", - location="imgui_internal:3863", + location="imgui_internal:3877", namespace="ImGui", ov_cimguiname="igTabBarFindTabByID", ret="ImGuiTabItem*", @@ -34155,7 +34291,7 @@ local t={ cimguiname="igTabBarFindTabByOrder", defaults={}, funcname="TabBarFindTabByOrder", - location="imgui_internal:3864", + location="imgui_internal:3878", namespace="ImGui", ov_cimguiname="igTabBarFindTabByOrder", ret="ImGuiTabItem*", @@ -34175,7 +34311,7 @@ local t={ cimguiname="igTabBarGetCurrentTab", defaults={}, funcname="TabBarGetCurrentTab", - location="imgui_internal:3866", + location="imgui_internal:3880", namespace="ImGui", ov_cimguiname="igTabBarGetCurrentTab", ret="ImGuiTabItem*", @@ -34198,7 +34334,7 @@ local t={ cimguiname="igTabBarGetTabName", defaults={}, funcname="TabBarGetTabName", - location="imgui_internal:3868", + location="imgui_internal:3882", namespace="ImGui", ov_cimguiname="igTabBarGetTabName", ret="const char*", @@ -34221,7 +34357,7 @@ local t={ cimguiname="igTabBarGetTabOrder", defaults={}, funcname="TabBarGetTabOrder", - location="imgui_internal:3867", + location="imgui_internal:3881", namespace="ImGui", ov_cimguiname="igTabBarGetTabOrder", ret="int", @@ -34241,7 +34377,7 @@ local t={ cimguiname="igTabBarProcessReorder", defaults={}, funcname="TabBarProcessReorder", - location="imgui_internal:3876", + location="imgui_internal:3890", namespace="ImGui", ov_cimguiname="igTabBarProcessReorder", ret="bool", @@ -34264,7 +34400,7 @@ local t={ cimguiname="igTabBarQueueFocus", defaults={}, funcname="TabBarQueueFocus", - location="imgui_internal:3872", + location="imgui_internal:3886", namespace="ImGui", ov_cimguiname="igTabBarQueueFocus_TabItemPtr", ret="void", @@ -34285,7 +34421,7 @@ local t={ cimguiname="igTabBarQueueFocus", defaults={}, funcname="TabBarQueueFocus", - location="imgui_internal:3873", + location="imgui_internal:3887", namespace="ImGui", ov_cimguiname="igTabBarQueueFocus_Str", ret="void", @@ -34312,7 +34448,7 @@ local t={ cimguiname="igTabBarQueueReorder", defaults={}, funcname="TabBarQueueReorder", - location="imgui_internal:3874", + location="imgui_internal:3888", namespace="ImGui", ov_cimguiname="igTabBarQueueReorder", ret="void", @@ -34338,7 +34474,7 @@ local t={ cimguiname="igTabBarQueueReorderFromMousePos", defaults={}, funcname="TabBarQueueReorderFromMousePos", - location="imgui_internal:3875", + location="imgui_internal:3889", namespace="ImGui", ov_cimguiname="igTabBarQueueReorderFromMousePos", ret="void", @@ -34358,7 +34494,7 @@ local t={ cimguiname="igTabBarRemove", defaults={}, funcname="TabBarRemove", - location="imgui_internal:3861", + location="imgui_internal:3875", namespace="ImGui", ov_cimguiname="igTabBarRemove", ret="void", @@ -34381,7 +34517,7 @@ local t={ cimguiname="igTabBarRemoveTab", defaults={}, funcname="TabBarRemoveTab", - location="imgui_internal:3870", + location="imgui_internal:3884", namespace="ImGui", ov_cimguiname="igTabBarRemoveTab", ret="void", @@ -34410,7 +34546,7 @@ local t={ cimguiname="igTabItemBackground", defaults={}, funcname="TabItemBackground", - location="imgui_internal:3881", + location="imgui_internal:3895", namespace="ImGui", ov_cimguiname="igTabItemBackground", ret="void", @@ -34434,7 +34570,7 @@ local t={ defaults={ flags="0"}, funcname="TabItemButton", - location="imgui:962", + location="imgui:965", namespace="ImGui", ov_cimguiname="igTabItemButton", ret="bool", @@ -34458,7 +34594,7 @@ local t={ conv="ImVec2", defaults={}, funcname="TabItemCalcSize", - location="imgui_internal:3879", + location="imgui_internal:3893", namespace="ImGui", nonUDT=1, ov_cimguiname="igTabItemCalcSize_Str", @@ -34478,7 +34614,7 @@ local t={ conv="ImVec2", defaults={}, funcname="TabItemCalcSize", - location="imgui_internal:3880", + location="imgui_internal:3894", namespace="ImGui", nonUDT=1, ov_cimguiname="igTabItemCalcSize_WindowPtr", @@ -34512,7 +34648,7 @@ local t={ cimguiname="igTabItemEx", defaults={}, funcname="TabItemEx", - location="imgui_internal:3877", + location="imgui_internal:3891", namespace="ImGui", ov_cimguiname="igTabItemEx", ret="bool", @@ -34559,7 +34695,7 @@ local t={ cimguiname="igTabItemLabelAndCloseButton", defaults={}, funcname="TabItemLabelAndCloseButton", - location="imgui_internal:3882", + location="imgui_internal:3896", namespace="ImGui", ov_cimguiname="igTabItemLabelAndCloseButton", ret="void", @@ -34585,7 +34721,7 @@ local t={ cimguiname="igTabItemSpacing", defaults={}, funcname="TabItemSpacing", - location="imgui_internal:3878", + location="imgui_internal:3892", namespace="ImGui", ov_cimguiname="igTabItemSpacing", ret="void", @@ -34602,7 +34738,7 @@ local t={ cimguiname="igTableAngledHeadersRow", defaults={}, funcname="TableAngledHeadersRow", - location="imgui:927", + location="imgui:930", namespace="ImGui", ov_cimguiname="igTableAngledHeadersRow", ret="void", @@ -34634,7 +34770,7 @@ local t={ cimguiname="igTableAngledHeadersRowEx", defaults={}, funcname="TableAngledHeadersRowEx", - location="imgui_internal:3809", + location="imgui_internal:3822", namespace="ImGui", ov_cimguiname="igTableAngledHeadersRowEx", ret="void", @@ -34654,7 +34790,7 @@ local t={ cimguiname="igTableBeginApplyRequests", defaults={}, funcname="TableBeginApplyRequests", - location="imgui_internal:3816", + location="imgui_internal:3829", namespace="ImGui", ov_cimguiname="igTableBeginApplyRequests", ret="void", @@ -34677,7 +34813,7 @@ local t={ cimguiname="igTableBeginCell", defaults={}, funcname="TableBeginCell", - location="imgui_internal:3835", + location="imgui_internal:3848", namespace="ImGui", ov_cimguiname="igTableBeginCell", ret="void", @@ -34697,7 +34833,7 @@ local t={ cimguiname="igTableBeginContextMenuPopup", defaults={}, funcname="TableBeginContextMenuPopup", - location="imgui_internal:3823", + location="imgui_internal:3836", namespace="ImGui", ov_cimguiname="igTableBeginContextMenuPopup", ret="bool", @@ -34720,7 +34856,7 @@ local t={ cimguiname="igTableBeginInitMemory", defaults={}, funcname="TableBeginInitMemory", - location="imgui_internal:3815", + location="imgui_internal:3828", namespace="ImGui", ov_cimguiname="igTableBeginInitMemory", ret="void", @@ -34740,7 +34876,7 @@ local t={ cimguiname="igTableBeginRow", defaults={}, funcname="TableBeginRow", - location="imgui_internal:3833", + location="imgui_internal:3846", namespace="ImGui", ov_cimguiname="igTableBeginRow", ret="void", @@ -34763,7 +34899,7 @@ local t={ cimguiname="igTableCalcMaxColumnWidth", defaults={}, funcname="TableCalcMaxColumnWidth", - location="imgui_internal:3840", + location="imgui_internal:3853", namespace="ImGui", ov_cimguiname="igTableCalcMaxColumnWidth", ret="float", @@ -34783,7 +34919,7 @@ local t={ cimguiname="igTableDrawBorders", defaults={}, funcname="TableDrawBorders", - location="imgui_internal:3821", + location="imgui_internal:3834", namespace="ImGui", ov_cimguiname="igTableDrawBorders", ret="void", @@ -34806,7 +34942,7 @@ local t={ cimguiname="igTableDrawDefaultContextMenu", defaults={}, funcname="TableDrawDefaultContextMenu", - location="imgui_internal:3822", + location="imgui_internal:3835", namespace="ImGui", ov_cimguiname="igTableDrawDefaultContextMenu", ret="void", @@ -34826,7 +34962,7 @@ local t={ cimguiname="igTableEndCell", defaults={}, funcname="TableEndCell", - location="imgui_internal:3836", + location="imgui_internal:3849", namespace="ImGui", ov_cimguiname="igTableEndCell", ret="void", @@ -34846,7 +34982,7 @@ local t={ cimguiname="igTableEndRow", defaults={}, funcname="TableEndRow", - location="imgui_internal:3834", + location="imgui_internal:3847", namespace="ImGui", ov_cimguiname="igTableEndRow", ret="void", @@ -34866,7 +35002,7 @@ local t={ cimguiname="igTableFindByID", defaults={}, funcname="TableFindByID", - location="imgui_internal:3813", + location="imgui_internal:3826", namespace="ImGui", ov_cimguiname="igTableFindByID", ret="ImGuiTable*", @@ -34889,7 +35025,7 @@ local t={ cimguiname="igTableFixColumnSortDirection", defaults={}, funcname="TableFixColumnSortDirection", - location="imgui_internal:3831", + location="imgui_internal:3844", namespace="ImGui", ov_cimguiname="igTableFixColumnSortDirection", ret="void", @@ -34909,7 +35045,7 @@ local t={ cimguiname="igTableFixDisplayOrder", defaults={}, funcname="TableFixDisplayOrder", - location="imgui_internal:3827", + location="imgui_internal:3840", namespace="ImGui", ov_cimguiname="igTableFixDisplayOrder", ret="void", @@ -34926,7 +35062,7 @@ local t={ cimguiname="igTableGcCompactSettings", defaults={}, funcname="TableGcCompactSettings", - location="imgui_internal:3847", + location="imgui_internal:3861", namespace="ImGui", ov_cimguiname="igTableGcCompactSettings", ret="void", @@ -34946,7 +35082,7 @@ local t={ cimguiname="igTableGcCompactTransientBuffers", defaults={}, funcname="TableGcCompactTransientBuffers", - location="imgui_internal:3845", + location="imgui_internal:3859", namespace="ImGui", ov_cimguiname="igTableGcCompactTransientBuffers_TablePtr", ret="void", @@ -34964,7 +35100,7 @@ local t={ cimguiname="igTableGcCompactTransientBuffers", defaults={}, funcname="TableGcCompactTransientBuffers", - location="imgui_internal:3846", + location="imgui_internal:3860", namespace="ImGui", ov_cimguiname="igTableGcCompactTransientBuffers_TableTempDataPtr", ret="void", @@ -34985,7 +35121,7 @@ local t={ cimguiname="igTableGetBoundSettings", defaults={}, funcname="TableGetBoundSettings", - location="imgui_internal:3853", + location="imgui_internal:3867", namespace="ImGui", ov_cimguiname="igTableGetBoundSettings", ret="ImGuiTableSettings*", @@ -35009,7 +35145,7 @@ local t={ conv="ImRect", defaults={}, funcname="TableGetCellBgRect", - location="imgui_internal:3837", + location="imgui_internal:3850", namespace="ImGui", nonUDT=1, ov_cimguiname="igTableGetCellBgRect", @@ -35027,7 +35163,7 @@ local t={ cimguiname="igTableGetColumnCount", defaults={}, funcname="TableGetColumnCount", - location="imgui:936", + location="imgui:939", namespace="ImGui", ov_cimguiname="igTableGetColumnCount", ret="int", @@ -35048,7 +35184,7 @@ local t={ defaults={ column_n="-1"}, funcname="TableGetColumnFlags", - location="imgui:940", + location="imgui:943", namespace="ImGui", ov_cimguiname="igTableGetColumnFlags", ret="ImGuiTableColumnFlags", @@ -35065,7 +35201,7 @@ local t={ cimguiname="igTableGetColumnIndex", defaults={}, funcname="TableGetColumnIndex", - location="imgui:937", + location="imgui:940", namespace="ImGui", ov_cimguiname="igTableGetColumnIndex", ret="int", @@ -35086,7 +35222,7 @@ local t={ defaults={ column_n="-1"}, funcname="TableGetColumnName", - location="imgui:939", + location="imgui:942", namespace="ImGui", ov_cimguiname="igTableGetColumnName_Int", ret="const char*", @@ -35107,7 +35243,7 @@ local t={ cimguiname="igTableGetColumnName", defaults={}, funcname="TableGetColumnName", - location="imgui_internal:3838", + location="imgui_internal:3851", namespace="ImGui", ov_cimguiname="igTableGetColumnName_TablePtr", ret="const char*", @@ -35128,7 +35264,7 @@ local t={ cimguiname="igTableGetColumnNextSortDirection", defaults={}, funcname="TableGetColumnNextSortDirection", - location="imgui_internal:3830", + location="imgui_internal:3843", namespace="ImGui", ov_cimguiname="igTableGetColumnNextSortDirection", ret="ImGuiSortDirection", @@ -35155,7 +35291,7 @@ local t={ defaults={ instance_no="0"}, funcname="TableGetColumnResizeID", - location="imgui_internal:3839", + location="imgui_internal:3852", namespace="ImGui", ov_cimguiname="igTableGetColumnResizeID", ret="ImGuiID", @@ -35178,7 +35314,7 @@ local t={ cimguiname="igTableGetColumnWidthAuto", defaults={}, funcname="TableGetColumnWidthAuto", - location="imgui_internal:3832", + location="imgui_internal:3845", namespace="ImGui", ov_cimguiname="igTableGetColumnWidthAuto", ret="float", @@ -35195,7 +35331,7 @@ local t={ cimguiname="igTableGetHeaderAngledMaxLabelWidth", defaults={}, funcname="TableGetHeaderAngledMaxLabelWidth", - location="imgui_internal:3804", + location="imgui_internal:3817", namespace="ImGui", ov_cimguiname="igTableGetHeaderAngledMaxLabelWidth", ret="float", @@ -35212,7 +35348,7 @@ local t={ cimguiname="igTableGetHeaderRowHeight", defaults={}, funcname="TableGetHeaderRowHeight", - location="imgui_internal:3803", + location="imgui_internal:3816", namespace="ImGui", ov_cimguiname="igTableGetHeaderRowHeight", ret="float", @@ -35229,7 +35365,7 @@ local t={ cimguiname="igTableGetHoveredColumn", defaults={}, funcname="TableGetHoveredColumn", - location="imgui:942", + location="imgui:945", namespace="ImGui", ov_cimguiname="igTableGetHoveredColumn", ret="int", @@ -35246,7 +35382,7 @@ local t={ cimguiname="igTableGetHoveredRow", defaults={}, funcname="TableGetHoveredRow", - location="imgui_internal:3802", + location="imgui_internal:3815", namespace="ImGui", ov_cimguiname="igTableGetHoveredRow", ret="int", @@ -35269,7 +35405,7 @@ local t={ cimguiname="igTableGetInstanceData", defaults={}, funcname="TableGetInstanceData", - location="imgui_internal:3825", + location="imgui_internal:3838", namespace="ImGui", ov_cimguiname="igTableGetInstanceData", ret="ImGuiTableInstanceData*", @@ -35292,7 +35428,7 @@ local t={ cimguiname="igTableGetInstanceID", defaults={}, funcname="TableGetInstanceID", - location="imgui_internal:3826", + location="imgui_internal:3839", namespace="ImGui", ov_cimguiname="igTableGetInstanceID", ret="ImGuiID", @@ -35309,7 +35445,7 @@ local t={ cimguiname="igTableGetRowIndex", defaults={}, funcname="TableGetRowIndex", - location="imgui:938", + location="imgui:941", namespace="ImGui", ov_cimguiname="igTableGetRowIndex", ret="int", @@ -35326,7 +35462,7 @@ local t={ cimguiname="igTableGetSortSpecs", defaults={}, funcname="TableGetSortSpecs", - location="imgui:935", + location="imgui:938", namespace="ImGui", ov_cimguiname="igTableGetSortSpecs", ret="ImGuiTableSortSpecs*", @@ -35346,7 +35482,7 @@ local t={ cimguiname="igTableHeader", defaults={}, funcname="TableHeader", - location="imgui:925", + location="imgui:928", namespace="ImGui", ov_cimguiname="igTableHeader", ret="void", @@ -35363,7 +35499,7 @@ local t={ cimguiname="igTableHeadersRow", defaults={}, funcname="TableHeadersRow", - location="imgui:926", + location="imgui:929", namespace="ImGui", ov_cimguiname="igTableHeadersRow", ret="void", @@ -35383,7 +35519,7 @@ local t={ cimguiname="igTableLoadSettings", defaults={}, funcname="TableLoadSettings", - location="imgui_internal:3850", + location="imgui_internal:3864", namespace="ImGui", ov_cimguiname="igTableLoadSettings", ret="void", @@ -35403,7 +35539,7 @@ local t={ cimguiname="igTableMergeDrawChannels", defaults={}, funcname="TableMergeDrawChannels", - location="imgui_internal:3824", + location="imgui_internal:3837", namespace="ImGui", ov_cimguiname="igTableMergeDrawChannels", ret="void", @@ -35420,7 +35556,7 @@ local t={ cimguiname="igTableNextColumn", defaults={}, funcname="TableNextColumn", - location="imgui:912", + location="imgui:915", namespace="ImGui", ov_cimguiname="igTableNextColumn", ret="bool", @@ -35445,7 +35581,7 @@ local t={ min_row_height="0.0f", row_flags="0"}, funcname="TableNextRow", - location="imgui:911", + location="imgui:914", namespace="ImGui", ov_cimguiname="igTableNextRow", ret="void", @@ -35466,7 +35602,7 @@ local t={ defaults={ column_n="-1"}, funcname="TableOpenContextMenu", - location="imgui_internal:3799", + location="imgui_internal:3812", namespace="ImGui", ov_cimguiname="igTableOpenContextMenu", ret="void", @@ -35483,7 +35619,7 @@ local t={ cimguiname="igTablePopBackgroundChannel", defaults={}, funcname="TablePopBackgroundChannel", - location="imgui_internal:3806", + location="imgui_internal:3819", namespace="ImGui", ov_cimguiname="igTablePopBackgroundChannel", ret="void", @@ -35500,7 +35636,7 @@ local t={ cimguiname="igTablePopColumnChannel", defaults={}, funcname="TablePopColumnChannel", - location="imgui_internal:3808", + location="imgui_internal:3821", namespace="ImGui", ov_cimguiname="igTablePopColumnChannel", ret="void", @@ -35517,7 +35653,7 @@ local t={ cimguiname="igTablePushBackgroundChannel", defaults={}, funcname="TablePushBackgroundChannel", - location="imgui_internal:3805", + location="imgui_internal:3818", namespace="ImGui", ov_cimguiname="igTablePushBackgroundChannel", ret="void", @@ -35537,13 +35673,39 @@ local t={ cimguiname="igTablePushColumnChannel", defaults={}, funcname="TablePushColumnChannel", - location="imgui_internal:3807", + location="imgui_internal:3820", namespace="ImGui", ov_cimguiname="igTablePushColumnChannel", ret="void", signature="(int)", stname=""}, ["(int)"]=nil}, + igTableQueueSetColumnDisplayOrder={ + [1]={ + args="(ImGuiTable* table,int column_n,int dst_order)", + argsT={ + [1]={ + name="table", + type="ImGuiTable*"}, + [2]={ + name="column_n", + type="int"}, + [3]={ + name="dst_order", + type="int"}}, + argsoriginal="(ImGuiTable* table,int column_n,int dst_order)", + call_args="(table,column_n,dst_order)", + call_args_old="(table,column_n,dst_order)", + cimguiname="igTableQueueSetColumnDisplayOrder", + defaults={}, + funcname="TableQueueSetColumnDisplayOrder", + location="imgui_internal:3857", + namespace="ImGui", + ov_cimguiname="igTableQueueSetColumnDisplayOrder", + ret="void", + signature="(ImGuiTable*,int,int)", + stname=""}, + ["(ImGuiTable*,int,int)"]=nil}, igTableRemove={ [1]={ args="(ImGuiTable* table)", @@ -35557,7 +35719,7 @@ local t={ cimguiname="igTableRemove", defaults={}, funcname="TableRemove", - location="imgui_internal:3844", + location="imgui_internal:3858", namespace="ImGui", ov_cimguiname="igTableRemove", ret="void", @@ -35577,7 +35739,7 @@ local t={ cimguiname="igTableResetSettings", defaults={}, funcname="TableResetSettings", - location="imgui_internal:3852", + location="imgui_internal:3866", namespace="ImGui", ov_cimguiname="igTableResetSettings", ret="void", @@ -35597,7 +35759,7 @@ local t={ cimguiname="igTableSaveSettings", defaults={}, funcname="TableSaveSettings", - location="imgui_internal:3851", + location="imgui_internal:3865", namespace="ImGui", ov_cimguiname="igTableSaveSettings", ret="void", @@ -35624,7 +35786,7 @@ local t={ defaults={ column_n="-1"}, funcname="TableSetBgColor", - location="imgui:943", + location="imgui:946", namespace="ImGui", ov_cimguiname="igTableSetBgColor", ret="void", @@ -35650,7 +35812,7 @@ local t={ cimguiname="igTableSetColumnDisplayOrder", defaults={}, funcname="TableSetColumnDisplayOrder", - location="imgui_internal:3843", + location="imgui_internal:3856", namespace="ImGui", ov_cimguiname="igTableSetColumnDisplayOrder", ret="void", @@ -35673,7 +35835,7 @@ local t={ cimguiname="igTableSetColumnEnabled", defaults={}, funcname="TableSetColumnEnabled", - location="imgui:941", + location="imgui:944", namespace="ImGui", ov_cimguiname="igTableSetColumnEnabled", ret="void", @@ -35693,7 +35855,7 @@ local t={ cimguiname="igTableSetColumnIndex", defaults={}, funcname="TableSetColumnIndex", - location="imgui:913", + location="imgui:916", namespace="ImGui", ov_cimguiname="igTableSetColumnIndex", ret="bool", @@ -35719,7 +35881,7 @@ local t={ cimguiname="igTableSetColumnSortDirection", defaults={}, funcname="TableSetColumnSortDirection", - location="imgui_internal:3801", + location="imgui_internal:3814", namespace="ImGui", ov_cimguiname="igTableSetColumnSortDirection", ret="void", @@ -35742,7 +35904,7 @@ local t={ cimguiname="igTableSetColumnWidth", defaults={}, funcname="TableSetColumnWidth", - location="imgui_internal:3800", + location="imgui_internal:3813", namespace="ImGui", ov_cimguiname="igTableSetColumnWidth", ret="void", @@ -35762,7 +35924,7 @@ local t={ cimguiname="igTableSetColumnWidthAutoAll", defaults={}, funcname="TableSetColumnWidthAutoAll", - location="imgui_internal:3842", + location="imgui_internal:3855", namespace="ImGui", ov_cimguiname="igTableSetColumnWidthAutoAll", ret="void", @@ -35785,7 +35947,7 @@ local t={ cimguiname="igTableSetColumnWidthAutoSingle", defaults={}, funcname="TableSetColumnWidthAutoSingle", - location="imgui_internal:3841", + location="imgui_internal:3854", namespace="ImGui", ov_cimguiname="igTableSetColumnWidthAutoSingle", ret="void", @@ -35802,7 +35964,7 @@ local t={ cimguiname="igTableSettingsAddSettingsHandler", defaults={}, funcname="TableSettingsAddSettingsHandler", - location="imgui_internal:3854", + location="imgui_internal:3868", namespace="ImGui", ov_cimguiname="igTableSettingsAddSettingsHandler", ret="void", @@ -35825,7 +35987,7 @@ local t={ cimguiname="igTableSettingsCreate", defaults={}, funcname="TableSettingsCreate", - location="imgui_internal:3855", + location="imgui_internal:3869", namespace="ImGui", ov_cimguiname="igTableSettingsCreate", ret="ImGuiTableSettings*", @@ -35845,7 +36007,7 @@ local t={ cimguiname="igTableSettingsFindByID", defaults={}, funcname="TableSettingsFindByID", - location="imgui_internal:3856", + location="imgui_internal:3870", namespace="ImGui", ov_cimguiname="igTableSettingsFindByID", ret="ImGuiTableSettings*", @@ -35877,7 +36039,7 @@ local t={ init_width_or_weight="0.0f", user_id="0"}, funcname="TableSetupColumn", - location="imgui:923", + location="imgui:926", namespace="ImGui", ov_cimguiname="igTableSetupColumn", ret="void", @@ -35897,7 +36059,7 @@ local t={ cimguiname="igTableSetupDrawChannels", defaults={}, funcname="TableSetupDrawChannels", - location="imgui_internal:3817", + location="imgui_internal:3830", namespace="ImGui", ov_cimguiname="igTableSetupDrawChannels", ret="void", @@ -35920,7 +36082,7 @@ local t={ cimguiname="igTableSetupScrollFreeze", defaults={}, funcname="TableSetupScrollFreeze", - location="imgui:924", + location="imgui:927", namespace="ImGui", ov_cimguiname="igTableSetupScrollFreeze", ret="void", @@ -35940,7 +36102,7 @@ local t={ cimguiname="igTableSortSpecsBuild", defaults={}, funcname="TableSortSpecsBuild", - location="imgui_internal:3829", + location="imgui_internal:3842", namespace="ImGui", ov_cimguiname="igTableSortSpecsBuild", ret="void", @@ -35960,7 +36122,7 @@ local t={ cimguiname="igTableSortSpecsSanitize", defaults={}, funcname="TableSortSpecsSanitize", - location="imgui_internal:3828", + location="imgui_internal:3841", namespace="ImGui", ov_cimguiname="igTableSortSpecsSanitize", ret="void", @@ -35980,7 +36142,7 @@ local t={ cimguiname="igTableUpdateBorders", defaults={}, funcname="TableUpdateBorders", - location="imgui_internal:3819", + location="imgui_internal:3832", namespace="ImGui", ov_cimguiname="igTableUpdateBorders", ret="void", @@ -36000,7 +36162,7 @@ local t={ cimguiname="igTableUpdateColumnsWeightFromWidth", defaults={}, funcname="TableUpdateColumnsWeightFromWidth", - location="imgui_internal:3820", + location="imgui_internal:3833", namespace="ImGui", ov_cimguiname="igTableUpdateColumnsWeightFromWidth", ret="void", @@ -36020,7 +36182,7 @@ local t={ cimguiname="igTableUpdateLayout", defaults={}, funcname="TableUpdateLayout", - location="imgui_internal:3818", + location="imgui_internal:3831", namespace="ImGui", ov_cimguiname="igTableUpdateLayout", ret="void", @@ -36040,7 +36202,7 @@ local t={ cimguiname="igTeleportMousePos", defaults={}, funcname="TeleportMousePos", - location="imgui_internal:3634", + location="imgui_internal:3647", namespace="ImGui", ov_cimguiname="igTeleportMousePos", ret="void", @@ -36060,7 +36222,7 @@ local t={ cimguiname="igTempInputIsActive", defaults={}, funcname="TempInputIsActive", - location="imgui_internal:3976", + location="imgui_internal:3990", namespace="ImGui", ov_cimguiname="igTempInputIsActive", ret="bool", @@ -36103,7 +36265,7 @@ local t={ p_clamp_max="NULL", p_clamp_min="NULL"}, funcname="TempInputScalar", - location="imgui_internal:3975", + location="imgui_internal:3989", namespace="ImGui", ov_cimguiname="igTempInputScalar", ret="bool", @@ -36112,7 +36274,7 @@ local t={ ["(const ImRect,ImGuiID,const char*,ImGuiDataType,void*,const char*,const void*,const void*)"]=nil}, igTempInputText={ [1]={ - args="(const ImRect_c bb,ImGuiID id,const char* label,char* buf,int buf_size,ImGuiInputTextFlags flags)", + args="(const ImRect_c bb,ImGuiID id,const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags,ImGuiInputTextCallback callback,void* user_data)", argsT={ [1]={ name="bb", @@ -36128,23 +36290,32 @@ local t={ type="char*"}, [5]={ name="buf_size", - type="int"}, + type="size_t"}, [6]={ name="flags", - type="ImGuiInputTextFlags"}}, - argsoriginal="(const ImRect& bb,ImGuiID id,const char* label,char* buf,int buf_size,ImGuiInputTextFlags flags)", - call_args="(ConvertToCPP_ImRect(bb),id,label,buf,buf_size,flags)", - call_args_old="(bb,id,label,buf,buf_size,flags)", + type="ImGuiInputTextFlags"}, + [7]={ + name="callback", + type="ImGuiInputTextCallback"}, + [8]={ + name="user_data", + type="void*"}}, + argsoriginal="(const ImRect& bb,ImGuiID id,const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void*)0),void* user_data=((void*)0))", + call_args="(ConvertToCPP_ImRect(bb),id,label,buf,buf_size,flags,callback,user_data)", + call_args_old="(bb,id,label,buf,buf_size,flags,callback,user_data)", cimguiname="igTempInputText", - defaults={}, + defaults={ + callback="NULL", + flags="0", + user_data="NULL"}, funcname="TempInputText", - location="imgui_internal:3974", + location="imgui_internal:3988", namespace="ImGui", ov_cimguiname="igTempInputText", ret="bool", - signature="(const ImRect,ImGuiID,const char*,char*,int,ImGuiInputTextFlags)", + signature="(const ImRect,ImGuiID,const char*,char*,size_t,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)", stname=""}, - ["(const ImRect,ImGuiID,const char*,char*,int,ImGuiInputTextFlags)"]=nil}, + ["(const ImRect,ImGuiID,const char*,char*,size_t,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)"]=nil}, igTestKeyOwner={ [1]={ args="(ImGuiKey key,ImGuiID owner_id)", @@ -36161,7 +36332,7 @@ local t={ cimguiname="igTestKeyOwner", defaults={}, funcname="TestKeyOwner", - location="imgui_internal:3653", + location="imgui_internal:3666", namespace="ImGui", ov_cimguiname="igTestKeyOwner", ret="bool", @@ -36184,7 +36355,7 @@ local t={ cimguiname="igTestShortcutRouting", defaults={}, funcname="TestShortcutRouting", - location="imgui_internal:3687", + location="imgui_internal:3700", namespace="ImGui", ov_cimguiname="igTestShortcutRouting", ret="bool", @@ -36208,7 +36379,7 @@ local t={ defaults={}, funcname="Text", isvararg="...)", - location="imgui:623", + location="imgui:625", namespace="ImGui", ov_cimguiname="igText", ret="void", @@ -36238,7 +36409,7 @@ local t={ defaults={}, funcname="TextAligned", isvararg="...)", - location="imgui_internal:3915", + location="imgui_internal:3929", namespace="ImGui", ov_cimguiname="igTextAligned", ret="void", @@ -36267,7 +36438,7 @@ local t={ cimguiname="igTextAlignedV", defaults={}, funcname="TextAlignedV", - location="imgui_internal:3916", + location="imgui_internal:3930", namespace="ImGui", ov_cimguiname="igTextAlignedV", ret="void", @@ -36294,7 +36465,7 @@ local t={ defaults={}, funcname="TextColored", isvararg="...)", - location="imgui:625", + location="imgui:627", namespace="ImGui", ov_cimguiname="igTextColored", ret="void", @@ -36320,7 +36491,7 @@ local t={ cimguiname="igTextColoredV", defaults={}, funcname="TextColoredV", - location="imgui:626", + location="imgui:628", namespace="ImGui", ov_cimguiname="igTextColoredV", ret="void", @@ -36344,7 +36515,7 @@ local t={ defaults={}, funcname="TextDisabled", isvararg="...)", - location="imgui:627", + location="imgui:629", namespace="ImGui", ov_cimguiname="igTextDisabled", ret="void", @@ -36367,7 +36538,7 @@ local t={ cimguiname="igTextDisabledV", defaults={}, funcname="TextDisabledV", - location="imgui:628", + location="imgui:630", namespace="ImGui", ov_cimguiname="igTextDisabledV", ret="void", @@ -36395,7 +36566,7 @@ local t={ flags="0", text_end="NULL"}, funcname="TextEx", - location="imgui_internal:3914", + location="imgui_internal:3928", namespace="ImGui", ov_cimguiname="igTextEx", ret="void", @@ -36415,7 +36586,7 @@ local t={ cimguiname="igTextLink", defaults={}, funcname="TextLink", - location="imgui:651", + location="imgui:653", namespace="ImGui", ov_cimguiname="igTextLink", ret="bool", @@ -36439,7 +36610,7 @@ local t={ defaults={ url="NULL"}, funcname="TextLinkOpenURL", - location="imgui:652", + location="imgui:654", namespace="ImGui", ov_cimguiname="igTextLinkOpenURL", ret="bool", @@ -36463,7 +36634,7 @@ local t={ defaults={ text_end="NULL"}, funcname="TextUnformatted", - location="imgui:622", + location="imgui:624", namespace="ImGui", ov_cimguiname="igTextUnformatted", ret="void", @@ -36486,7 +36657,7 @@ local t={ cimguiname="igTextV", defaults={}, funcname="TextV", - location="imgui:624", + location="imgui:626", namespace="ImGui", ov_cimguiname="igTextV", ret="void", @@ -36510,7 +36681,7 @@ local t={ defaults={}, funcname="TextWrapped", isvararg="...)", - location="imgui:629", + location="imgui:631", namespace="ImGui", ov_cimguiname="igTextWrapped", ret="void", @@ -36533,7 +36704,7 @@ local t={ cimguiname="igTextWrappedV", defaults={}, funcname="TextWrappedV", - location="imgui:630", + location="imgui:632", namespace="ImGui", ov_cimguiname="igTextWrappedV", ret="void", @@ -36565,7 +36736,7 @@ local t={ cimguiname="igTranslateWindowsInViewport", defaults={}, funcname="TranslateWindowsInViewport", - location="imgui_internal:3467", + location="imgui_internal:3478", namespace="ImGui", ov_cimguiname="igTranslateWindowsInViewport", ret="void", @@ -36585,7 +36756,7 @@ local t={ cimguiname="igTreeNode", defaults={}, funcname="TreeNode", - location="imgui:749", + location="imgui:751", namespace="ImGui", ov_cimguiname="igTreeNode_Str", ret="bool", @@ -36610,7 +36781,7 @@ local t={ defaults={}, funcname="TreeNode", isvararg="...)", - location="imgui:750", + location="imgui:752", namespace="ImGui", ov_cimguiname="igTreeNode_StrStr", ret="bool", @@ -36635,7 +36806,7 @@ local t={ defaults={}, funcname="TreeNode", isvararg="...)", - location="imgui:751", + location="imgui:753", namespace="ImGui", ov_cimguiname="igTreeNode_Ptr", ret="bool", @@ -36667,7 +36838,7 @@ local t={ defaults={ label_end="NULL"}, funcname="TreeNodeBehavior", - location="imgui_internal:3944", + location="imgui_internal:3959", namespace="ImGui", ov_cimguiname="igTreeNodeBehavior", ret="bool", @@ -36687,7 +36858,7 @@ local t={ cimguiname="igTreeNodeDrawLineToChildNode", defaults={}, funcname="TreeNodeDrawLineToChildNode", - location="imgui_internal:3945", + location="imgui_internal:3960", namespace="ImGui", ov_cimguiname="igTreeNodeDrawLineToChildNode", ret="void", @@ -36707,7 +36878,7 @@ local t={ cimguiname="igTreeNodeDrawLineToTreePop", defaults={}, funcname="TreeNodeDrawLineToTreePop", - location="imgui_internal:3946", + location="imgui_internal:3961", namespace="ImGui", ov_cimguiname="igTreeNodeDrawLineToTreePop", ret="void", @@ -36731,7 +36902,7 @@ local t={ defaults={ flags="0"}, funcname="TreeNodeEx", - location="imgui:754", + location="imgui:756", namespace="ImGui", ov_cimguiname="igTreeNodeEx_Str", ret="bool", @@ -36759,7 +36930,7 @@ local t={ defaults={}, funcname="TreeNodeEx", isvararg="...)", - location="imgui:755", + location="imgui:757", namespace="ImGui", ov_cimguiname="igTreeNodeEx_StrStr", ret="bool", @@ -36787,7 +36958,7 @@ local t={ defaults={}, funcname="TreeNodeEx", isvararg="...)", - location="imgui:756", + location="imgui:758", namespace="ImGui", ov_cimguiname="igTreeNodeEx_Ptr", ret="bool", @@ -36818,7 +36989,7 @@ local t={ cimguiname="igTreeNodeExV", defaults={}, funcname="TreeNodeExV", - location="imgui:757", + location="imgui:759", namespace="ImGui", ov_cimguiname="igTreeNodeExV_Str", ret="bool", @@ -36845,7 +37016,7 @@ local t={ cimguiname="igTreeNodeExV", defaults={}, funcname="TreeNodeExV", - location="imgui:758", + location="imgui:760", namespace="ImGui", ov_cimguiname="igTreeNodeExV_Ptr", ret="bool", @@ -36866,7 +37037,7 @@ local t={ cimguiname="igTreeNodeGetOpen", defaults={}, funcname="TreeNodeGetOpen", - location="imgui_internal:3948", + location="imgui:769", namespace="ImGui", ov_cimguiname="igTreeNodeGetOpen", ret="bool", @@ -36889,7 +37060,7 @@ local t={ cimguiname="igTreeNodeSetOpen", defaults={}, funcname="TreeNodeSetOpen", - location="imgui_internal:3949", + location="imgui_internal:3963", namespace="ImGui", ov_cimguiname="igTreeNodeSetOpen", ret="void", @@ -36912,7 +37083,7 @@ local t={ cimguiname="igTreeNodeUpdateNextOpen", defaults={}, funcname="TreeNodeUpdateNextOpen", - location="imgui_internal:3950", + location="imgui_internal:3964", namespace="ImGui", ov_cimguiname="igTreeNodeUpdateNextOpen", ret="bool", @@ -36938,7 +37109,7 @@ local t={ cimguiname="igTreeNodeV", defaults={}, funcname="TreeNodeV", - location="imgui:752", + location="imgui:754", namespace="ImGui", ov_cimguiname="igTreeNodeV_Str", ret="bool", @@ -36962,7 +37133,7 @@ local t={ cimguiname="igTreeNodeV", defaults={}, funcname="TreeNodeV", - location="imgui:753", + location="imgui:755", namespace="ImGui", ov_cimguiname="igTreeNodeV_Ptr", ret="bool", @@ -36980,7 +37151,7 @@ local t={ cimguiname="igTreePop", defaults={}, funcname="TreePop", - location="imgui:761", + location="imgui:763", namespace="ImGui", ov_cimguiname="igTreePop", ret="void", @@ -37000,7 +37171,7 @@ local t={ cimguiname="igTreePush", defaults={}, funcname="TreePush", - location="imgui:759", + location="imgui:761", namespace="ImGui", ov_cimguiname="igTreePush_Str", ret="void", @@ -37018,7 +37189,7 @@ local t={ cimguiname="igTreePush", defaults={}, funcname="TreePush", - location="imgui:760", + location="imgui:762", namespace="ImGui", ov_cimguiname="igTreePush_Ptr", ret="void", @@ -37039,7 +37210,7 @@ local t={ cimguiname="igTreePushOverrideID", defaults={}, funcname="TreePushOverrideID", - location="imgui_internal:3947", + location="imgui_internal:3962", namespace="ImGui", ov_cimguiname="igTreePushOverrideID", ret="void", @@ -37070,7 +37241,7 @@ local t={ cimguiname="igTypingSelectFindBestLeadingMatch", defaults={}, funcname="TypingSelectFindBestLeadingMatch", - location="imgui_internal:3772", + location="imgui_internal:3785", namespace="ImGui", ov_cimguiname="igTypingSelectFindBestLeadingMatch", ret="int", @@ -37104,7 +37275,7 @@ local t={ cimguiname="igTypingSelectFindMatch", defaults={}, funcname="TypingSelectFindMatch", - location="imgui_internal:3770", + location="imgui_internal:3783", namespace="ImGui", ov_cimguiname="igTypingSelectFindMatch", ret="int", @@ -37138,7 +37309,7 @@ local t={ cimguiname="igTypingSelectFindNextSingleCharMatch", defaults={}, funcname="TypingSelectFindNextSingleCharMatch", - location="imgui_internal:3771", + location="imgui_internal:3784", namespace="ImGui", ov_cimguiname="igTypingSelectFindNextSingleCharMatch", ret="int", @@ -37159,7 +37330,7 @@ local t={ defaults={ indent_w="0.0f"}, funcname="Unindent", - location="imgui:591", + location="imgui:593", namespace="ImGui", ov_cimguiname="igUnindent", ret="void", @@ -37179,7 +37350,7 @@ local t={ cimguiname="igUnregisterFontAtlas", defaults={}, funcname="UnregisterFontAtlas", - location="imgui_internal:3434", + location="imgui_internal:3445", namespace="ImGui", ov_cimguiname="igUnregisterFontAtlas", ret="void", @@ -37199,7 +37370,7 @@ local t={ cimguiname="igUnregisterUserTexture", defaults={}, funcname="UnregisterUserTexture", - location="imgui_internal:3432", + location="imgui_internal:3443", namespace="ImGui", ov_cimguiname="igUnregisterUserTexture", ret="void", @@ -37219,7 +37390,7 @@ local t={ cimguiname="igUpdateCurrentFontSize", defaults={}, funcname="UpdateCurrentFontSize", - location="imgui_internal:3436", + location="imgui_internal:3447", namespace="ImGui", ov_cimguiname="igUpdateCurrentFontSize", ret="void", @@ -37239,7 +37410,7 @@ local t={ cimguiname="igUpdateHoveredWindowAndCaptureFlags", defaults={}, funcname="UpdateHoveredWindowAndCaptureFlags", - location="imgui_internal:3458", + location="imgui_internal:3469", namespace="ImGui", ov_cimguiname="igUpdateHoveredWindowAndCaptureFlags", ret="void", @@ -37259,7 +37430,7 @@ local t={ cimguiname="igUpdateInputEvents", defaults={}, funcname="UpdateInputEvents", - location="imgui_internal:3457", + location="imgui_internal:3468", namespace="ImGui", ov_cimguiname="igUpdateInputEvents", ret="void", @@ -37276,7 +37447,7 @@ local t={ cimguiname="igUpdateMouseMovingWindowEndFrame", defaults={}, funcname="UpdateMouseMovingWindowEndFrame", - location="imgui_internal:3464", + location="imgui_internal:3475", namespace="ImGui", ov_cimguiname="igUpdateMouseMovingWindowEndFrame", ret="void", @@ -37293,7 +37464,7 @@ local t={ cimguiname="igUpdateMouseMovingWindowNewFrame", defaults={}, funcname="UpdateMouseMovingWindowNewFrame", - location="imgui_internal:3463", + location="imgui_internal:3474", namespace="ImGui", ov_cimguiname="igUpdateMouseMovingWindowNewFrame", ret="void", @@ -37310,7 +37481,7 @@ local t={ cimguiname="igUpdatePlatformWindows", defaults={}, funcname="UpdatePlatformWindows", - location="imgui:1194", + location="imgui:1197", namespace="ImGui", ov_cimguiname="igUpdatePlatformWindows", ret="void", @@ -37336,7 +37507,7 @@ local t={ cimguiname="igUpdateWindowParentAndRootLinks", defaults={}, funcname="UpdateWindowParentAndRootLinks", - location="imgui_internal:3398", + location="imgui_internal:3409", namespace="ImGui", ov_cimguiname="igUpdateWindowParentAndRootLinks", ret="void", @@ -37356,7 +37527,7 @@ local t={ cimguiname="igUpdateWindowSkipRefresh", defaults={}, funcname="UpdateWindowSkipRefresh", - location="imgui_internal:3399", + location="imgui_internal:3410", namespace="ImGui", ov_cimguiname="igUpdateWindowSkipRefresh", ret="void", @@ -37396,7 +37567,7 @@ local t={ flags="0", format="\"%.3f\""}, funcname="VSliderFloat", - location="imgui:715", + location="imgui:717", namespace="ImGui", ov_cimguiname="igVSliderFloat", ret="bool", @@ -37436,7 +37607,7 @@ local t={ flags="0", format="\"%d\""}, funcname="VSliderInt", - location="imgui:716", + location="imgui:718", namespace="ImGui", ov_cimguiname="igVSliderInt", ret="bool", @@ -37479,7 +37650,7 @@ local t={ flags="0", format="NULL"}, funcname="VSliderScalar", - location="imgui:717", + location="imgui:719", namespace="ImGui", ov_cimguiname="igVSliderScalar", ret="bool", @@ -37502,7 +37673,7 @@ local t={ cimguiname="igValue", defaults={}, funcname="Value", - location="imgui:807", + location="imgui:810", namespace="ImGui", ov_cimguiname="igValue_Bool", ret="void", @@ -37523,7 +37694,7 @@ local t={ cimguiname="igValue", defaults={}, funcname="Value", - location="imgui:808", + location="imgui:811", namespace="ImGui", ov_cimguiname="igValue_Int", ret="void", @@ -37544,7 +37715,7 @@ local t={ cimguiname="igValue", defaults={}, funcname="Value", - location="imgui:809", + location="imgui:812", namespace="ImGui", ov_cimguiname="igValue_Uint", ret="void", @@ -37569,7 +37740,7 @@ local t={ defaults={ float_format="NULL"}, funcname="Value", - location="imgui:810", + location="imgui:813", namespace="ImGui", ov_cimguiname="igValue_Float", ret="void", @@ -37596,7 +37767,7 @@ local t={ conv="ImVec2", defaults={}, funcname="WindowPosAbsToRel", - location="imgui_internal:3414", + location="imgui_internal:3425", namespace="ImGui", nonUDT=1, ov_cimguiname="igWindowPosAbsToRel", @@ -37621,7 +37792,7 @@ local t={ conv="ImVec2", defaults={}, funcname="WindowPosRelToAbs", - location="imgui_internal:3415", + location="imgui_internal:3426", namespace="ImGui", nonUDT=1, ov_cimguiname="igWindowPosRelToAbs", @@ -37646,7 +37817,7 @@ local t={ conv="ImRect", defaults={}, funcname="WindowRectAbsToRel", - location="imgui_internal:3412", + location="imgui_internal:3423", namespace="ImGui", nonUDT=1, ov_cimguiname="igWindowRectAbsToRel", @@ -37671,7 +37842,7 @@ local t={ conv="ImRect", defaults={}, funcname="WindowRectRelToAbs", - location="imgui_internal:3413", + location="imgui_internal:3424", namespace="ImGui", nonUDT=1, ov_cimguiname="igWindowRectRelToAbs", @@ -37938,6 +38109,7 @@ t.ImGuiInputTextState_GetCursorPos["()const"]=t.ImGuiInputTextState_GetCursorPos t.ImGuiInputTextState_GetPreferredOffsetX["()const"]=t.ImGuiInputTextState_GetPreferredOffsetX[1] t.ImGuiInputTextState_GetSelectionEnd["()const"]=t.ImGuiInputTextState_GetSelectionEnd[1] t.ImGuiInputTextState_GetSelectionStart["()const"]=t.ImGuiInputTextState_GetSelectionStart[1] +t.ImGuiInputTextState_GetText["()"]=t.ImGuiInputTextState_GetText[1] t.ImGuiInputTextState_HasSelection["()const"]=t.ImGuiInputTextState_HasSelection[1] t.ImGuiInputTextState_ImGuiInputTextState["()"]=t.ImGuiInputTextState_ImGuiInputTextState[1] t.ImGuiInputTextState_OnCharPressed["(unsigned int)"]=t.ImGuiInputTextState_OnCharPressed[1] @@ -38122,6 +38294,7 @@ t.ImGuiViewportP_ImGuiViewportP["()"]=t.ImGuiViewportP_ImGuiViewportP[1] t.ImGuiViewportP_UpdateWorkRect["()"]=t.ImGuiViewportP_UpdateWorkRect[1] t.ImGuiViewportP_destroy["(ImGuiViewportP*)"]=t.ImGuiViewportP_destroy[1] t.ImGuiViewport_GetCenter["()const"]=t.ImGuiViewport_GetCenter[1] +t.ImGuiViewport_GetDebugName["()const"]=t.ImGuiViewport_GetDebugName[1] t.ImGuiViewport_GetWorkCenter["()const"]=t.ImGuiViewport_GetWorkCenter[1] t.ImGuiViewport_ImGuiViewport["()"]=t.ImGuiViewport_ImGuiViewport[1] t.ImGuiViewport_destroy["(ImGuiViewport*)"]=t.ImGuiViewport_destroy[1] @@ -38416,7 +38589,7 @@ t.igDebugNodeDrawCmdShowMeshAndBoundingBox["(ImDrawList*,const ImDrawList*,const t.igDebugNodeDrawList["(ImGuiWindow*,ImGuiViewportP*,const ImDrawList*,const char*)"]=t.igDebugNodeDrawList[1] t.igDebugNodeFont["(ImFont*)"]=t.igDebugNodeFont[1] t.igDebugNodeFontGlyph["(ImFont*,const ImFontGlyph*)"]=t.igDebugNodeFontGlyph[1] -t.igDebugNodeFontGlyphesForSrcMask["(ImFont*,ImFontBaked*,int)"]=t.igDebugNodeFontGlyphesForSrcMask[1] +t.igDebugNodeFontGlyphsForSrcMask["(ImFont*,ImFontBaked*,int)"]=t.igDebugNodeFontGlyphsForSrcMask[1] t.igDebugNodeInputTextState["(ImGuiInputTextState*)"]=t.igDebugNodeInputTextState[1] t.igDebugNodeMultiSelectState["(ImGuiMultiSelectState*)"]=t.igDebugNodeMultiSelectState[1] t.igDebugNodePlatformMonitor["(ImGuiPlatformMonitor*,const char*,int)"]=t.igDebugNodePlatformMonitor[1] @@ -38437,6 +38610,7 @@ t.igDebugStartItemPicker["()"]=t.igDebugStartItemPicker[1] t.igDebugTextEncoding["(const char*)"]=t.igDebugTextEncoding[1] t.igDebugTextUnformattedWithLocateItem["(const char*,const char*)"]=t.igDebugTextUnformattedWithLocateItem[1] t.igDebugTextureIDToU64["(ImTextureID)"]=t.igDebugTextureIDToU64[1] +t.igDemoMarker["(const char*,int,const char*)"]=t.igDemoMarker[1] t.igDestroyContext["(ImGuiContext*)"]=t.igDestroyContext[1] t.igDestroyPlatformWindow["(ImGuiViewportP*)"]=t.igDestroyPlatformWindow[1] t.igDestroyPlatformWindows["()"]=t.igDestroyPlatformWindows[1] @@ -38521,6 +38695,7 @@ t.igErrorLog["(const char*)"]=t.igErrorLog[1] t.igErrorRecoveryStoreState["(ImGuiErrorRecoveryState*)"]=t.igErrorRecoveryStoreState[1] t.igErrorRecoveryTryToRecoverState["(const ImGuiErrorRecoveryState*)"]=t.igErrorRecoveryTryToRecoverState[1] t.igErrorRecoveryTryToRecoverWindowState["(const ImGuiErrorRecoveryState*)"]=t.igErrorRecoveryTryToRecoverWindowState[1] +t.igExtendHitBoxWhenNearViewportEdge["(ImGuiWindow*,ImRect*,float,ImGuiAxis)"]=t.igExtendHitBoxWhenNearViewportEdge[1] t.igFindBestWindowPosForPopup["(ImGuiWindow*)"]=t.igFindBestWindowPosForPopup[1] t.igFindBestWindowPosForPopupEx["(const ImVec2,const ImVec2,ImGuiDir*,const ImRect,const ImRect,ImGuiPopupPositionPolicy)"]=t.igFindBestWindowPosForPopupEx[1] t.igFindBlockingModal["(ImGuiWindow*)"]=t.igFindBlockingModal[1] @@ -38902,6 +39077,8 @@ t.igIsNamedKey["(ImGuiKey)"]=t.igIsNamedKey[1] t.igIsNamedKeyOrMod["(ImGuiKey)"]=t.igIsNamedKeyOrMod[1] t.igIsPopupOpen["(ImGuiID,ImGuiPopupFlags)"]=t.igIsPopupOpen[2] t.igIsPopupOpen["(const char*,ImGuiPopupFlags)"]=t.igIsPopupOpen[1] +t.igIsPopupOpenRequestForItem["(ImGuiPopupFlags,ImGuiID)"]=t.igIsPopupOpenRequestForItem[1] +t.igIsPopupOpenRequestForWindow["(ImGuiPopupFlags)"]=t.igIsPopupOpenRequestForWindow[1] t.igIsRectVisible["(const ImVec2)"]=t.igIsRectVisible[1] t.igIsRectVisible["(const ImVec2,const ImVec2)"]=t.igIsRectVisible[2] t.igIsWindowAbove["(ImGuiWindow*,ImGuiWindow*)"]=t.igIsWindowAbove[1] @@ -39251,6 +39428,7 @@ t.igTablePopBackgroundChannel["()"]=t.igTablePopBackgroundChannel[1] t.igTablePopColumnChannel["()"]=t.igTablePopColumnChannel[1] t.igTablePushBackgroundChannel["()"]=t.igTablePushBackgroundChannel[1] t.igTablePushColumnChannel["(int)"]=t.igTablePushColumnChannel[1] +t.igTableQueueSetColumnDisplayOrder["(ImGuiTable*,int,int)"]=t.igTableQueueSetColumnDisplayOrder[1] t.igTableRemove["(ImGuiTable*)"]=t.igTableRemove[1] t.igTableResetSettings["(ImGuiTable*)"]=t.igTableResetSettings[1] t.igTableSaveSettings["(ImGuiTable*)"]=t.igTableSaveSettings[1] @@ -39276,7 +39454,7 @@ t.igTableUpdateLayout["(ImGuiTable*)"]=t.igTableUpdateLayout[1] t.igTeleportMousePos["(const ImVec2)"]=t.igTeleportMousePos[1] t.igTempInputIsActive["(ImGuiID)"]=t.igTempInputIsActive[1] t.igTempInputScalar["(const ImRect,ImGuiID,const char*,ImGuiDataType,void*,const char*,const void*,const void*)"]=t.igTempInputScalar[1] -t.igTempInputText["(const ImRect,ImGuiID,const char*,char*,int,ImGuiInputTextFlags)"]=t.igTempInputText[1] +t.igTempInputText["(const ImRect,ImGuiID,const char*,char*,size_t,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)"]=t.igTempInputText[1] t.igTestKeyOwner["(ImGuiKey,ImGuiID)"]=t.igTestKeyOwner[1] t.igTestShortcutRouting["(ImGuiKeyChord,ImGuiID)"]=t.igTestShortcutRouting[1] t.igText["(const char*,...)"]=t.igText[1] diff --git a/generator/output/impl_definitions.json b/generator/output/impl_definitions.json index 71d523f..2dc0933 100644 --- a/generator/output/impl_definitions.json +++ b/generator/output/impl_definitions.json @@ -1363,7 +1363,7 @@ "cimguiname": "ImGui_ImplVulkanH_CreateOrResizeWindow", "defaults": {}, "funcname": "ImGui_ImplVulkanH_CreateOrResizeWindow", - "location": "imgui_impl_vulkan:207", + "location": "imgui_impl_vulkan:208", "ov_cimguiname": "ImGui_ImplVulkanH_CreateOrResizeWindow", "ret": "void", "signature": "(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)", @@ -1397,7 +1397,7 @@ "cimguiname": "ImGui_ImplVulkanH_DestroyWindow", "defaults": {}, "funcname": "ImGui_ImplVulkanH_DestroyWindow", - "location": "imgui_impl_vulkan:208", + "location": "imgui_impl_vulkan:209", "ov_cimguiname": "ImGui_ImplVulkanH_DestroyWindow", "ret": "void", "signature": "(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)", @@ -1419,7 +1419,7 @@ "cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode", "defaults": {}, "funcname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode", - "location": "imgui_impl_vulkan:213", + "location": "imgui_impl_vulkan:214", "ov_cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode", "ret": "int", "signature": "(VkPresentModeKHR)", @@ -1441,7 +1441,7 @@ "cimguiname": "ImGui_ImplVulkanH_GetWindowDataFromViewport", "defaults": {}, "funcname": "ImGui_ImplVulkanH_GetWindowDataFromViewport", - "location": "imgui_impl_vulkan:214", + "location": "imgui_impl_vulkan:215", "ov_cimguiname": "ImGui_ImplVulkanH_GetWindowDataFromViewport", "ret": "ImGui_ImplVulkanH_Window*", "signature": "(ImGuiViewport*)", @@ -1463,7 +1463,7 @@ "cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice", "defaults": {}, "funcname": "ImGui_ImplVulkanH_SelectPhysicalDevice", - "location": "imgui_impl_vulkan:211", + "location": "imgui_impl_vulkan:212", "ov_cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice", "ret": "VkPhysicalDevice", "signature": "(VkInstance)", @@ -1497,7 +1497,7 @@ "cimguiname": "ImGui_ImplVulkanH_SelectPresentMode", "defaults": {}, "funcname": "ImGui_ImplVulkanH_SelectPresentMode", - "location": "imgui_impl_vulkan:210", + "location": "imgui_impl_vulkan:211", "ov_cimguiname": "ImGui_ImplVulkanH_SelectPresentMode", "ret": "VkPresentModeKHR", "signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)", @@ -1519,7 +1519,7 @@ "cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex", "defaults": {}, "funcname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex", - "location": "imgui_impl_vulkan:212", + "location": "imgui_impl_vulkan:213", "ov_cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex", "ret": "uint32_t", "signature": "(VkPhysicalDevice)", @@ -1557,7 +1557,7 @@ "cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat", "defaults": {}, "funcname": "ImGui_ImplVulkanH_SelectSurfaceFormat", - "location": "imgui_impl_vulkan:209", + "location": "imgui_impl_vulkan:210", "ov_cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat", "ret": "VkSurfaceFormatKHR", "signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)", @@ -1575,7 +1575,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGui_ImplVulkanH_Window", - "location": "imgui_impl_vulkan:259", + "location": "imgui_impl_vulkan:260", "ov_cimguiname": "ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window", "signature": "()", "stname": "ImGui_ImplVulkanH_Window" @@ -1594,7 +1594,7 @@ "cimguiname": "ImGui_ImplVulkanH_Window_destroy", "defaults": {}, "destructor": true, - "location": "imgui_impl_vulkan:259", + "location": "imgui_impl_vulkan:260", "ov_cimguiname": "ImGui_ImplVulkanH_Window_destroy", "ret": "void", "signature": "(ImGui_ImplVulkanH_Window*)", @@ -1624,7 +1624,7 @@ "cimguiname": "ImGui_ImplVulkan_AddTexture", "defaults": {}, "funcname": "ImGui_ImplVulkan_AddTexture", - "location": "imgui_impl_vulkan:165", + "location": "imgui_impl_vulkan:166", "ov_cimguiname": "ImGui_ImplVulkan_AddTexture", "ret": "VkDescriptorSet", "signature": "(VkSampler,VkImageView,VkImageLayout)", @@ -1646,7 +1646,7 @@ "cimguiname": "ImGui_ImplVulkan_CreateMainPipeline", "defaults": {}, "funcname": "ImGui_ImplVulkan_CreateMainPipeline", - "location": "imgui_impl_vulkan:157", + "location": "imgui_impl_vulkan:158", "ov_cimguiname": "ImGui_ImplVulkan_CreateMainPipeline", "ret": "void", "signature": "(const ImGui_ImplVulkan_PipelineInfo*)", @@ -1668,7 +1668,7 @@ "cimguiname": "ImGui_ImplVulkan_Init", "defaults": {}, "funcname": "ImGui_ImplVulkan_Init", - "location": "imgui_impl_vulkan:148", + "location": "imgui_impl_vulkan:149", "ov_cimguiname": "ImGui_ImplVulkan_Init", "ret": "bool", "signature": "(ImGui_ImplVulkan_InitInfo*)", @@ -1700,7 +1700,7 @@ "user_data": "nullptr" }, "funcname": "ImGui_ImplVulkan_LoadFunctions", - "location": "imgui_impl_vulkan:170", + "location": "imgui_impl_vulkan:171", "ov_cimguiname": "ImGui_ImplVulkan_LoadFunctions", "ret": "bool", "signature": "(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)", @@ -1717,7 +1717,7 @@ "cimguiname": "ImGui_ImplVulkan_NewFrame", "defaults": {}, "funcname": "ImGui_ImplVulkan_NewFrame", - "location": "imgui_impl_vulkan:150", + "location": "imgui_impl_vulkan:151", "ov_cimguiname": "ImGui_ImplVulkan_NewFrame", "ret": "void", "signature": "()", @@ -1739,7 +1739,7 @@ "cimguiname": "ImGui_ImplVulkan_RemoveTexture", "defaults": {}, "funcname": "ImGui_ImplVulkan_RemoveTexture", - "location": "imgui_impl_vulkan:166", + "location": "imgui_impl_vulkan:167", "ov_cimguiname": "ImGui_ImplVulkan_RemoveTexture", "ret": "void", "signature": "(VkDescriptorSet)", @@ -1771,7 +1771,7 @@ "pipeline": "0ULL" }, "funcname": "ImGui_ImplVulkan_RenderDrawData", - "location": "imgui_impl_vulkan:151", + "location": "imgui_impl_vulkan:152", "ov_cimguiname": "ImGui_ImplVulkan_RenderDrawData", "ret": "void", "signature": "(ImDrawData*,VkCommandBuffer,VkPipeline)", @@ -1793,7 +1793,7 @@ "cimguiname": "ImGui_ImplVulkan_SetMinImageCount", "defaults": {}, "funcname": "ImGui_ImplVulkan_SetMinImageCount", - "location": "imgui_impl_vulkan:152", + "location": "imgui_impl_vulkan:153", "ov_cimguiname": "ImGui_ImplVulkan_SetMinImageCount", "ret": "void", "signature": "(uint32_t)", @@ -1810,7 +1810,7 @@ "cimguiname": "ImGui_ImplVulkan_Shutdown", "defaults": {}, "funcname": "ImGui_ImplVulkan_Shutdown", - "location": "imgui_impl_vulkan:149", + "location": "imgui_impl_vulkan:150", "ov_cimguiname": "ImGui_ImplVulkan_Shutdown", "ret": "void", "signature": "()", @@ -1832,7 +1832,7 @@ "cimguiname": "ImGui_ImplVulkan_UpdateTexture", "defaults": {}, "funcname": "ImGui_ImplVulkan_UpdateTexture", - "location": "imgui_impl_vulkan:160", + "location": "imgui_impl_vulkan:161", "ov_cimguiname": "ImGui_ImplVulkan_UpdateTexture", "ret": "void", "signature": "(ImTextureData*)", diff --git a/generator/output/impl_definitions.lua b/generator/output/impl_definitions.lua index e85e46a..56776f2 100644 --- a/generator/output/impl_definitions.lua +++ b/generator/output/impl_definitions.lua @@ -1179,7 +1179,7 @@ local t={ cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow", defaults={}, funcname="ImGui_ImplVulkanH_CreateOrResizeWindow", - location="imgui_impl_vulkan:207", + location="imgui_impl_vulkan:208", ov_cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow", ret="void", signature="(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)", @@ -1207,7 +1207,7 @@ local t={ cimguiname="ImGui_ImplVulkanH_DestroyWindow", defaults={}, funcname="ImGui_ImplVulkanH_DestroyWindow", - location="imgui_impl_vulkan:208", + location="imgui_impl_vulkan:209", ov_cimguiname="ImGui_ImplVulkanH_DestroyWindow", ret="void", signature="(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)", @@ -1226,7 +1226,7 @@ local t={ cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode", defaults={}, funcname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode", - location="imgui_impl_vulkan:213", + location="imgui_impl_vulkan:214", ov_cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode", ret="int", signature="(VkPresentModeKHR)", @@ -1245,7 +1245,7 @@ local t={ cimguiname="ImGui_ImplVulkanH_GetWindowDataFromViewport", defaults={}, funcname="ImGui_ImplVulkanH_GetWindowDataFromViewport", - location="imgui_impl_vulkan:214", + location="imgui_impl_vulkan:215", ov_cimguiname="ImGui_ImplVulkanH_GetWindowDataFromViewport", ret="ImGui_ImplVulkanH_Window*", signature="(ImGuiViewport*)", @@ -1264,7 +1264,7 @@ local t={ cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice", defaults={}, funcname="ImGui_ImplVulkanH_SelectPhysicalDevice", - location="imgui_impl_vulkan:211", + location="imgui_impl_vulkan:212", ov_cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice", ret="VkPhysicalDevice", signature="(VkInstance)", @@ -1292,7 +1292,7 @@ local t={ cimguiname="ImGui_ImplVulkanH_SelectPresentMode", defaults={}, funcname="ImGui_ImplVulkanH_SelectPresentMode", - location="imgui_impl_vulkan:210", + location="imgui_impl_vulkan:211", ov_cimguiname="ImGui_ImplVulkanH_SelectPresentMode", ret="VkPresentModeKHR", signature="(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)", @@ -1311,7 +1311,7 @@ local t={ cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex", defaults={}, funcname="ImGui_ImplVulkanH_SelectQueueFamilyIndex", - location="imgui_impl_vulkan:212", + location="imgui_impl_vulkan:213", ov_cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex", ret="uint32_t", signature="(VkPhysicalDevice)", @@ -1342,7 +1342,7 @@ local t={ cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat", defaults={}, funcname="ImGui_ImplVulkanH_SelectSurfaceFormat", - location="imgui_impl_vulkan:209", + location="imgui_impl_vulkan:210", ov_cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat", ret="VkSurfaceFormatKHR", signature="(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)", @@ -1359,7 +1359,7 @@ local t={ constructor=true, defaults={}, funcname="ImGui_ImplVulkanH_Window", - location="imgui_impl_vulkan:259", + location="imgui_impl_vulkan:260", ov_cimguiname="ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window", signature="()", stname="ImGui_ImplVulkanH_Window"}, @@ -1375,7 +1375,7 @@ local t={ cimguiname="ImGui_ImplVulkanH_Window_destroy", defaults={}, destructor=true, - location="imgui_impl_vulkan:259", + location="imgui_impl_vulkan:260", ov_cimguiname="ImGui_ImplVulkanH_Window_destroy", ret="void", signature="(ImGui_ImplVulkanH_Window*)", @@ -1400,7 +1400,7 @@ local t={ cimguiname="ImGui_ImplVulkan_AddTexture", defaults={}, funcname="ImGui_ImplVulkan_AddTexture", - location="imgui_impl_vulkan:165", + location="imgui_impl_vulkan:166", ov_cimguiname="ImGui_ImplVulkan_AddTexture", ret="VkDescriptorSet", signature="(VkSampler,VkImageView,VkImageLayout)", @@ -1419,7 +1419,7 @@ local t={ cimguiname="ImGui_ImplVulkan_CreateMainPipeline", defaults={}, funcname="ImGui_ImplVulkan_CreateMainPipeline", - location="imgui_impl_vulkan:157", + location="imgui_impl_vulkan:158", ov_cimguiname="ImGui_ImplVulkan_CreateMainPipeline", ret="void", signature="(const ImGui_ImplVulkan_PipelineInfo*)", @@ -1438,7 +1438,7 @@ local t={ cimguiname="ImGui_ImplVulkan_Init", defaults={}, funcname="ImGui_ImplVulkan_Init", - location="imgui_impl_vulkan:148", + location="imgui_impl_vulkan:149", ov_cimguiname="ImGui_ImplVulkan_Init", ret="bool", signature="(ImGui_ImplVulkan_InitInfo*)", @@ -1464,7 +1464,7 @@ local t={ defaults={ user_data="nullptr"}, funcname="ImGui_ImplVulkan_LoadFunctions", - location="imgui_impl_vulkan:170", + location="imgui_impl_vulkan:171", ov_cimguiname="ImGui_ImplVulkan_LoadFunctions", ret="bool", signature="(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)", @@ -1480,7 +1480,7 @@ local t={ cimguiname="ImGui_ImplVulkan_NewFrame", defaults={}, funcname="ImGui_ImplVulkan_NewFrame", - location="imgui_impl_vulkan:150", + location="imgui_impl_vulkan:151", ov_cimguiname="ImGui_ImplVulkan_NewFrame", ret="void", signature="()", @@ -1499,7 +1499,7 @@ local t={ cimguiname="ImGui_ImplVulkan_RemoveTexture", defaults={}, funcname="ImGui_ImplVulkan_RemoveTexture", - location="imgui_impl_vulkan:166", + location="imgui_impl_vulkan:167", ov_cimguiname="ImGui_ImplVulkan_RemoveTexture", ret="void", signature="(VkDescriptorSet)", @@ -1525,7 +1525,7 @@ local t={ defaults={ pipeline="0ULL"}, funcname="ImGui_ImplVulkan_RenderDrawData", - location="imgui_impl_vulkan:151", + location="imgui_impl_vulkan:152", ov_cimguiname="ImGui_ImplVulkan_RenderDrawData", ret="void", signature="(ImDrawData*,VkCommandBuffer,VkPipeline)", @@ -1544,7 +1544,7 @@ local t={ cimguiname="ImGui_ImplVulkan_SetMinImageCount", defaults={}, funcname="ImGui_ImplVulkan_SetMinImageCount", - location="imgui_impl_vulkan:152", + location="imgui_impl_vulkan:153", ov_cimguiname="ImGui_ImplVulkan_SetMinImageCount", ret="void", signature="(uint32_t)", @@ -1560,7 +1560,7 @@ local t={ cimguiname="ImGui_ImplVulkan_Shutdown", defaults={}, funcname="ImGui_ImplVulkan_Shutdown", - location="imgui_impl_vulkan:149", + location="imgui_impl_vulkan:150", ov_cimguiname="ImGui_ImplVulkan_Shutdown", ret="void", signature="()", @@ -1579,7 +1579,7 @@ local t={ cimguiname="ImGui_ImplVulkan_UpdateTexture", defaults={}, funcname="ImGui_ImplVulkan_UpdateTexture", - location="imgui_impl_vulkan:160", + location="imgui_impl_vulkan:161", ov_cimguiname="ImGui_ImplVulkan_UpdateTexture", ret="void", signature="(ImTextureData*)", diff --git a/generator/output/structs_and_enums.json b/generator/output/structs_and_enums.json index efb592f..5e0b2c8 100644 --- a/generator/output/structs_and_enums.json +++ b/generator/output/structs_and_enums.json @@ -307,11 +307,6 @@ "name": "ImGuiButtonFlags_FlattenChildren", "value": "1 << 11" }, - { - "calc_value": 4096, - "name": "ImGuiButtonFlags_AllowOverlap", - "value": "1 << 12" - }, { "calc_value": 32768, "name": "ImGuiButtonFlags_AlignTextBaseLine", @@ -393,6 +388,11 @@ "calc_value": 8, "name": "ImGuiButtonFlags_EnableNav", "value": "1 << 3" + }, + { + "calc_value": 4096, + "name": "ImGuiButtonFlags_AllowOverlap", + "value": "1 << 12" } ], "ImGuiChildFlags_": [ @@ -2040,7 +2040,7 @@ }, { "calc_value": 134217728, - "name": "ImGuiInputTextFlags_MergedItem", + "name": "ImGuiInputTextFlags_TempInput", "value": "1 << 27" }, { @@ -3481,14 +3481,19 @@ }, { "calc_value": 8192, - "name": "ImGuiMultiSelectFlags_SelectOnClick", + "name": "ImGuiMultiSelectFlags_SelectOnAuto", "value": "1 << 13" }, { "calc_value": 16384, - "name": "ImGuiMultiSelectFlags_SelectOnClickRelease", + "name": "ImGuiMultiSelectFlags_SelectOnClickAlways", "value": "1 << 14" }, + { + "calc_value": 32768, + "name": "ImGuiMultiSelectFlags_SelectOnClickRelease", + "value": "1 << 15" + }, { "calc_value": 65536, "name": "ImGuiMultiSelectFlags_NavWrapX", @@ -3498,6 +3503,11 @@ "calc_value": 131072, "name": "ImGuiMultiSelectFlags_NoSelectOnRightClick", "value": "1 << 17" + }, + { + "calc_value": 57344, + "name": "ImGuiMultiSelectFlags_SelectOnMask_", + "value": "ImGuiMultiSelectFlags_SelectOnAuto | ImGuiMultiSelectFlags_SelectOnClickAlways | ImGuiMultiSelectFlags_SelectOnClickRelease" } ], "ImGuiNavLayer": [ @@ -4317,28 +4327,33 @@ }, { "calc_value": 37, - "name": "ImGuiStyleVar_SeparatorTextBorderSize", + "name": "ImGuiStyleVar_SeparatorSize", "value": "37" }, { "calc_value": 38, - "name": "ImGuiStyleVar_SeparatorTextAlign", + "name": "ImGuiStyleVar_SeparatorTextBorderSize", "value": "38" }, { "calc_value": 39, - "name": "ImGuiStyleVar_SeparatorTextPadding", + "name": "ImGuiStyleVar_SeparatorTextAlign", "value": "39" }, { "calc_value": 40, - "name": "ImGuiStyleVar_DockingSeparatorSize", + "name": "ImGuiStyleVar_SeparatorTextPadding", "value": "40" }, { "calc_value": 41, - "name": "ImGuiStyleVar_COUNT", + "name": "ImGuiStyleVar_DockingSeparatorSize", "value": "41" + }, + { + "calc_value": 42, + "name": "ImGuiStyleVar_COUNT", + "value": "42" } ], "ImGuiTabBarFlagsPrivate_": [ @@ -5429,221 +5444,221 @@ }, "locations": { "ImBitVector": "imgui_internal:670", - "ImColor": "imgui:3084", - "ImDrawChannel": "imgui:3333", - "ImDrawCmd": "imgui:3289", - "ImDrawCmdHeader": "imgui:3325", - "ImDrawData": "imgui:3554", + "ImColor": "imgui:3100", + "ImDrawChannel": "imgui:3356", + "ImDrawCmd": "imgui:3312", + "ImDrawCmdHeader": "imgui:3348", + "ImDrawData": "imgui:3577", "ImDrawDataBuilder": "imgui_internal:898", - "ImDrawFlags_": "imgui:3358", - "ImDrawList": "imgui:3396", - "ImDrawListFlags_": "imgui:3378", + "ImDrawFlags_": "imgui:3381", + "ImDrawList": "imgui:3419", + "ImDrawListFlags_": "imgui:3401", "ImDrawListSharedData": "imgui_internal:871", - "ImDrawListSplitter": "imgui:3341", + "ImDrawListSplitter": "imgui:3364", "ImDrawTextFlags_": "imgui_internal:443", - "ImDrawVert": "imgui:3310", - "ImFont": "imgui:3980", - "ImFontAtlas": "imgui:3781", - "ImFontAtlasBuilder": "imgui_internal:4159", - "ImFontAtlasFlags_": "imgui:3754", - "ImFontAtlasPostProcessData": "imgui_internal:4132", - "ImFontAtlasRect": "imgui:3744", - "ImFontAtlasRectEntry": "imgui_internal:4124", - "ImFontBaked": "imgui:3932", - "ImFontConfig": "imgui:3663", - "ImFontFlags_": "imgui:3967", - "ImFontGlyph": "imgui:3706", - "ImFontGlyphRangesBuilder": "imgui:3722", - "ImFontLoader": "imgui_internal:4073", + "ImDrawVert": "imgui:3333", + "ImFont": "imgui:4003", + "ImFontAtlas": "imgui:3804", + "ImFontAtlasBuilder": "imgui_internal:4176", + "ImFontAtlasFlags_": "imgui:3777", + "ImFontAtlasPostProcessData": "imgui_internal:4149", + "ImFontAtlasRect": "imgui:3767", + "ImFontAtlasRectEntry": "imgui_internal:4141", + "ImFontBaked": "imgui:3955", + "ImFontConfig": "imgui:3686", + "ImFontFlags_": "imgui:3990", + "ImFontGlyph": "imgui:3729", + "ImFontGlyphRangesBuilder": "imgui:3745", + "ImFontLoader": "imgui_internal:4090", "ImFontStackData": "imgui_internal:906", - "ImGuiActivateFlags_": "imgui_internal:1705", - "ImGuiAxis": "imgui_internal:1155", - "ImGuiBackendFlags_": "imgui:1800", - "ImGuiBoxSelectState": "imgui_internal:1896", + "ImGuiActivateFlags_": "imgui_internal:1706", + "ImGuiAxis": "imgui_internal:1154", + "ImGuiBackendFlags_": "imgui:1803", + "ImGuiBoxSelectState": "imgui_internal:1897", "ImGuiButtonFlagsPrivate_": "imgui_internal:1042", - "ImGuiButtonFlags_": "imgui:1947", - "ImGuiChildFlags_": "imgui:1259", - "ImGuiCol_": "imgui:1817", - "ImGuiColorEditFlags_": "imgui:1958", + "ImGuiButtonFlags_": "imgui:1951", + "ImGuiChildFlags_": "imgui:1262", + "ImGuiCol_": "imgui:1820", + "ImGuiColorEditFlags_": "imgui:1963", "ImGuiColorMod": "imgui_internal:926", - "ImGuiComboFlagsPrivate_": "imgui_internal:1069", - "ImGuiComboFlags_": "imgui:1421", - "ImGuiComboPreviewData": "imgui_internal:1169", - "ImGuiCond_": "imgui:2074", - "ImGuiConfigFlags_": "imgui:1771", - "ImGuiContext": "imgui_internal:2383", - "ImGuiContextHook": "imgui_internal:2368", - "ImGuiContextHookType": "imgui_internal:2366", - "ImGuiDataAuthority_": "imgui_internal:2009", + "ImGuiComboFlagsPrivate_": "imgui_internal:1068", + "ImGuiComboFlags_": "imgui:1424", + "ImGuiComboPreviewData": "imgui_internal:1168", + "ImGuiCond_": "imgui:2079", + "ImGuiConfigFlags_": "imgui:1775", + "ImGuiContext": "imgui_internal:2386", + "ImGuiContextHook": "imgui_internal:2369", + "ImGuiContextHookType": "imgui_internal:2367", + "ImGuiDataAuthority_": "imgui_internal:2010", "ImGuiDataTypeInfo": "imgui_internal:952", "ImGuiDataTypePrivate_": "imgui_internal:961", "ImGuiDataTypeStorage": "imgui_internal:946", - "ImGuiDataType_": "imgui:1577", - "ImGuiDeactivatedItemData": "imgui_internal:1470", - "ImGuiDebugAllocEntry": "imgui_internal:2290", - "ImGuiDebugAllocInfo": "imgui_internal:2297", - "ImGuiDebugItemPathQuery": "imgui_internal:2337", - "ImGuiDebugLogFlags_": "imgui_internal:2267", - "ImGuiDir": "imgui:1595", - "ImGuiDockContext": "imgui_internal:2112", - "ImGuiDockNode": "imgui_internal:2025", - "ImGuiDockNodeFlagsPrivate_": "imgui_internal:1977", - "ImGuiDockNodeFlags_": "imgui:1529", - "ImGuiDockNodeState": "imgui_internal:2016", - "ImGuiDragDropFlags_": "imgui:1548", - "ImGuiErrorRecoveryState": "imgui_internal:1426", - "ImGuiFocusRequestFlags_": "imgui_internal:1115", - "ImGuiFocusScopeData": "imgui_internal:1793", - "ImGuiFocusedFlags_": "imgui:1475", + "ImGuiDataType_": "imgui:1580", + "ImGuiDeactivatedItemData": "imgui_internal:1471", + "ImGuiDebugAllocEntry": "imgui_internal:2291", + "ImGuiDebugAllocInfo": "imgui_internal:2298", + "ImGuiDebugItemPathQuery": "imgui_internal:2338", + "ImGuiDebugLogFlags_": "imgui_internal:2268", + "ImGuiDir": "imgui:1598", + "ImGuiDockContext": "imgui_internal:2113", + "ImGuiDockNode": "imgui_internal:2026", + "ImGuiDockNodeFlagsPrivate_": "imgui_internal:1978", + "ImGuiDockNodeFlags_": "imgui:1532", + "ImGuiDockNodeState": "imgui_internal:2017", + "ImGuiDragDropFlags_": "imgui:1551", + "ImGuiErrorRecoveryState": "imgui_internal:1427", + "ImGuiFocusRequestFlags_": "imgui_internal:1114", + "ImGuiFocusScopeData": "imgui_internal:1794", + "ImGuiFocusedFlags_": "imgui:1478", "ImGuiFreeTypeLoaderFlags_": "imgui_freetype:29", - "ImGuiGroupData": "imgui_internal:1182", + "ImGuiGroupData": "imgui_internal:1181", "ImGuiHoveredFlagsPrivate_": "imgui_internal:1025", - "ImGuiHoveredFlags_": "imgui:1489", - "ImGuiIDStackTool": "imgui_internal:2351", - "ImGuiIO": "imgui:2480", - "ImGuiInputEvent": "imgui_internal:1565", - "ImGuiInputEventAppFocused": "imgui_internal:1563", - "ImGuiInputEventKey": "imgui_internal:1561", - "ImGuiInputEventMouseButton": "imgui_internal:1559", - "ImGuiInputEventMousePos": "imgui_internal:1557", - "ImGuiInputEventMouseViewport": "imgui_internal:1560", - "ImGuiInputEventMouseWheel": "imgui_internal:1558", - "ImGuiInputEventText": "imgui_internal:1562", - "ImGuiInputEventType": "imgui_internal:1533", - "ImGuiInputFlagsPrivate_": "imgui_internal:1632", - "ImGuiInputFlags_": "imgui:1748", - "ImGuiInputSource": "imgui_internal:1546", - "ImGuiInputTextCallbackData": "imgui:2743", - "ImGuiInputTextDeactivatedState": "imgui_internal:1219", + "ImGuiHoveredFlags_": "imgui:1492", + "ImGuiIDStackTool": "imgui_internal:2352", + "ImGuiIO": "imgui:2486", + "ImGuiInputEvent": "imgui_internal:1566", + "ImGuiInputEventAppFocused": "imgui_internal:1564", + "ImGuiInputEventKey": "imgui_internal:1562", + "ImGuiInputEventMouseButton": "imgui_internal:1560", + "ImGuiInputEventMousePos": "imgui_internal:1558", + "ImGuiInputEventMouseViewport": "imgui_internal:1561", + "ImGuiInputEventMouseWheel": "imgui_internal:1559", + "ImGuiInputEventText": "imgui_internal:1563", + "ImGuiInputEventType": "imgui_internal:1534", + "ImGuiInputFlagsPrivate_": "imgui_internal:1633", + "ImGuiInputFlags_": "imgui:1751", + "ImGuiInputSource": "imgui_internal:1547", + "ImGuiInputTextCallbackData": "imgui:2749", + "ImGuiInputTextDeactivatedState": "imgui_internal:1218", "ImGuiInputTextFlagsPrivate_": "imgui_internal:1033", - "ImGuiInputTextFlags_": "imgui:1294", - "ImGuiInputTextState": "imgui_internal:1241", + "ImGuiInputTextFlags_": "imgui:1297", + "ImGuiInputTextState": "imgui_internal:1240", "ImGuiItemFlagsPrivate_": "imgui_internal:974", - "ImGuiItemFlags_": "imgui:1280", + "ImGuiItemFlags_": "imgui:1283", "ImGuiItemStatusFlags_": "imgui_internal:998", - "ImGuiKey": "imgui:1619", - "ImGuiKeyData": "imgui:2472", - "ImGuiKeyOwnerData": "imgui_internal:1619", - "ImGuiKeyRoutingData": "imgui_internal:1593", - "ImGuiKeyRoutingTable": "imgui_internal:1607", - "ImGuiLastItemData": "imgui_internal:1395", - "ImGuiLayoutType_": "imgui_internal:1136", - "ImGuiListClipper": "imgui:2983", - "ImGuiListClipperData": "imgui_internal:1689", - "ImGuiListClipperFlags_": "imgui:2957", - "ImGuiListClipperRange": "imgui_internal:1676", - "ImGuiLocEntry": "imgui_internal:2238", - "ImGuiLocKey": "imgui_internal:2220", - "ImGuiLogFlags_": "imgui_internal:1143", - "ImGuiMenuColumns": "imgui_internal:1201", - "ImGuiMetricsConfig": "imgui_internal:2307", - "ImGuiMouseButton_": "imgui:2032", - "ImGuiMouseCursor_": "imgui:2042", - "ImGuiMouseSource": "imgui:2063", - "ImGuiMultiSelectFlags_": "imgui:3142", - "ImGuiMultiSelectIO": "imgui:3170", - "ImGuiMultiSelectState": "imgui_internal:1953", - "ImGuiMultiSelectTempData": "imgui_internal:1928", - "ImGuiNavItemData": "imgui_internal:1776", - "ImGuiNavLayer": "imgui_internal:1768", - "ImGuiNavMoveFlags_": "imgui_internal:1746", - "ImGuiNavRenderCursorFlags_": "imgui_internal:1731", - "ImGuiNextItemData": "imgui_internal:1373", - "ImGuiNextItemDataFlags_": "imgui_internal:1362", - "ImGuiNextWindowData": "imgui_internal:1330", - "ImGuiNextWindowDataFlags_": "imgui_internal:1310", - "ImGuiOldColumnData": "imgui_internal:1861", - "ImGuiOldColumnFlags_": "imgui_internal:1841", - "ImGuiOldColumns": "imgui_internal:1871", - "ImGuiOnceUponAFrame": "imgui:2846", - "ImGuiPayload": "imgui:2811", - "ImGuiPlatformIO": "imgui:4165", - "ImGuiPlatformImeData": "imgui:4287", - "ImGuiPlatformMonitor": "imgui:4277", - "ImGuiPlotType": "imgui_internal:1162", - "ImGuiPopupData": "imgui_internal:1490", - "ImGuiPopupFlags_": "imgui:1384", - "ImGuiPopupPositionPolicy": "imgui_internal:1482", - "ImGuiPtrOrIndex": "imgui_internal:1460", - "ImGuiScrollFlags_": "imgui_internal:1717", - "ImGuiSelectableFlagsPrivate_": "imgui_internal:1082", - "ImGuiSelectableFlags_": "imgui:1403", - "ImGuiSelectionBasicStorage": "imgui:3216", - "ImGuiSelectionExternalStorage": "imgui:3239", - "ImGuiSelectionRequest": "imgui:3190", - "ImGuiSelectionRequestType": "imgui:3182", - "ImGuiSeparatorFlags_": "imgui_internal:1104", - "ImGuiSettingsHandler": "imgui_internal:2200", - "ImGuiShrinkWidthItem": "imgui_internal:1453", - "ImGuiSizeCallbackData": "imgui:2780", - "ImGuiSliderFlagsPrivate_": "imgui_internal:1075", - "ImGuiSliderFlags_": "imgui:2015", - "ImGuiSortDirection": "imgui:1606", - "ImGuiStackLevelInfo": "imgui_internal:2326", - "ImGuiStorage": "imgui:2919", - "ImGuiStoragePair": "imgui:2902", - "ImGuiStyle": "imgui:2361", + "ImGuiKey": "imgui:1622", + "ImGuiKeyData": "imgui:2478", + "ImGuiKeyOwnerData": "imgui_internal:1620", + "ImGuiKeyRoutingData": "imgui_internal:1594", + "ImGuiKeyRoutingTable": "imgui_internal:1608", + "ImGuiLastItemData": "imgui_internal:1396", + "ImGuiLayoutType_": "imgui_internal:1135", + "ImGuiListClipper": "imgui:2989", + "ImGuiListClipperData": "imgui_internal:1690", + "ImGuiListClipperFlags_": "imgui:2963", + "ImGuiListClipperRange": "imgui_internal:1677", + "ImGuiLocEntry": "imgui_internal:2239", + "ImGuiLocKey": "imgui_internal:2221", + "ImGuiLogFlags_": "imgui_internal:1142", + "ImGuiMenuColumns": "imgui_internal:1200", + "ImGuiMetricsConfig": "imgui_internal:2308", + "ImGuiMouseButton_": "imgui:2037", + "ImGuiMouseCursor_": "imgui:2047", + "ImGuiMouseSource": "imgui:2068", + "ImGuiMultiSelectFlags_": "imgui:3158", + "ImGuiMultiSelectIO": "imgui:3193", + "ImGuiMultiSelectState": "imgui_internal:1954", + "ImGuiMultiSelectTempData": "imgui_internal:1929", + "ImGuiNavItemData": "imgui_internal:1777", + "ImGuiNavLayer": "imgui_internal:1769", + "ImGuiNavMoveFlags_": "imgui_internal:1747", + "ImGuiNavRenderCursorFlags_": "imgui_internal:1732", + "ImGuiNextItemData": "imgui_internal:1374", + "ImGuiNextItemDataFlags_": "imgui_internal:1363", + "ImGuiNextWindowData": "imgui_internal:1331", + "ImGuiNextWindowDataFlags_": "imgui_internal:1311", + "ImGuiOldColumnData": "imgui_internal:1862", + "ImGuiOldColumnFlags_": "imgui_internal:1842", + "ImGuiOldColumns": "imgui_internal:1872", + "ImGuiOnceUponAFrame": "imgui:2852", + "ImGuiPayload": "imgui:2817", + "ImGuiPlatformIO": "imgui:4191", + "ImGuiPlatformImeData": "imgui:4313", + "ImGuiPlatformMonitor": "imgui:4303", + "ImGuiPlotType": "imgui_internal:1161", + "ImGuiPopupData": "imgui_internal:1491", + "ImGuiPopupFlags_": "imgui:1387", + "ImGuiPopupPositionPolicy": "imgui_internal:1483", + "ImGuiPtrOrIndex": "imgui_internal:1461", + "ImGuiScrollFlags_": "imgui_internal:1718", + "ImGuiSelectableFlagsPrivate_": "imgui_internal:1081", + "ImGuiSelectableFlags_": "imgui:1406", + "ImGuiSelectionBasicStorage": "imgui:3239", + "ImGuiSelectionExternalStorage": "imgui:3262", + "ImGuiSelectionRequest": "imgui:3213", + "ImGuiSelectionRequestType": "imgui:3205", + "ImGuiSeparatorFlags_": "imgui_internal:1103", + "ImGuiSettingsHandler": "imgui_internal:2201", + "ImGuiShrinkWidthItem": "imgui_internal:1454", + "ImGuiSizeCallbackData": "imgui:2786", + "ImGuiSliderFlagsPrivate_": "imgui_internal:1074", + "ImGuiSliderFlags_": "imgui:2020", + "ImGuiSortDirection": "imgui:1609", + "ImGuiStackLevelInfo": "imgui_internal:2327", + "ImGuiStorage": "imgui:2925", + "ImGuiStoragePair": "imgui:2908", + "ImGuiStyle": "imgui:2366", "ImGuiStyleMod": "imgui_internal:933", "ImGuiStyleVarInfo": "imgui_internal:917", - "ImGuiStyleVar_": "imgui:1899", - "ImGuiTabBar": "imgui_internal:3047", - "ImGuiTabBarFlagsPrivate_": "imgui_internal:3009", - "ImGuiTabBarFlags_": "imgui:1436", - "ImGuiTabItem": "imgui_internal:3027", - "ImGuiTabItemFlagsPrivate_": "imgui_internal:3017", - "ImGuiTabItemFlags_": "imgui:1460", - "ImGuiTable": "imgui_internal:3193", - "ImGuiTableBgTarget_": "imgui:2215", - "ImGuiTableCellData": "imgui_internal:3161", - "ImGuiTableColumn": "imgui_internal:3101", - "ImGuiTableColumnFlags_": "imgui:2162", - "ImGuiTableColumnSettings": "imgui_internal:3342", - "ImGuiTableColumnSortSpecs": "imgui:2237", - "ImGuiTableFlags_": "imgui:2109", - "ImGuiTableHeaderData": "imgui_internal:3170", - "ImGuiTableInstanceData": "imgui_internal:3180", - "ImGuiTableRowFlags_": "imgui:2200", - "ImGuiTableSettings": "imgui_internal:3366", - "ImGuiTableSortSpecs": "imgui:2227", - "ImGuiTableTempData": "imgui_internal:3318", - "ImGuiTextBuffer": "imgui:2881", - "ImGuiTextFilter": "imgui:2854", - "ImGuiTextFlags_": "imgui_internal:1122", + "ImGuiStyleVar_": "imgui:1902", + "ImGuiTabBar": "imgui_internal:3057", + "ImGuiTabBarFlagsPrivate_": "imgui_internal:3019", + "ImGuiTabBarFlags_": "imgui:1439", + "ImGuiTabItem": "imgui_internal:3037", + "ImGuiTabItemFlagsPrivate_": "imgui_internal:3027", + "ImGuiTabItemFlags_": "imgui:1463", + "ImGuiTable": "imgui_internal:3203", + "ImGuiTableBgTarget_": "imgui:2220", + "ImGuiTableCellData": "imgui_internal:3171", + "ImGuiTableColumn": "imgui_internal:3111", + "ImGuiTableColumnFlags_": "imgui:2167", + "ImGuiTableColumnSettings": "imgui_internal:3353", + "ImGuiTableColumnSortSpecs": "imgui:2242", + "ImGuiTableFlags_": "imgui:2114", + "ImGuiTableHeaderData": "imgui_internal:3180", + "ImGuiTableInstanceData": "imgui_internal:3190", + "ImGuiTableRowFlags_": "imgui:2205", + "ImGuiTableSettings": "imgui_internal:3377", + "ImGuiTableSortSpecs": "imgui:2232", + "ImGuiTableTempData": "imgui_internal:3329", + "ImGuiTextBuffer": "imgui:2887", + "ImGuiTextFilter": "imgui:2860", + "ImGuiTextFlags_": "imgui_internal:1121", "ImGuiTextIndex": "imgui_internal:823", - "ImGuiTextRange": "imgui:2864", - "ImGuiTooltipFlags_": "imgui_internal:1128", - "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:1095", - "ImGuiTreeNodeFlags_": "imgui:1345", - "ImGuiTreeNodeStackData": "imgui_internal:1414", - "ImGuiTypingSelectFlags_": "imgui_internal:1804", - "ImGuiTypingSelectRequest": "imgui_internal:1812", - "ImGuiTypingSelectState": "imgui_internal:1823", - "ImGuiViewport": "imgui:4078", - "ImGuiViewportFlags_": "imgui:4050", - "ImGuiViewportP": "imgui_internal:2129", - "ImGuiWindow": "imgui_internal:2854", - "ImGuiWindowBgClickFlags_": "imgui_internal:1304", - "ImGuiWindowClass": "imgui:2795", - "ImGuiWindowDockStyle": "imgui_internal:2107", - "ImGuiWindowDockStyleCol": "imgui_internal:2092", - "ImGuiWindowFlags_": "imgui:1208", - "ImGuiWindowRefreshFlags_": "imgui_internal:1295", - "ImGuiWindowSettings": "imgui_internal:2181", - "ImGuiWindowStackData": "imgui_internal:1444", - "ImGuiWindowTempData": "imgui_internal:2796", + "ImGuiTextRange": "imgui:2870", + "ImGuiTooltipFlags_": "imgui_internal:1127", + "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:1094", + "ImGuiTreeNodeFlags_": "imgui:1348", + "ImGuiTreeNodeStackData": "imgui_internal:1415", + "ImGuiTypingSelectFlags_": "imgui_internal:1805", + "ImGuiTypingSelectRequest": "imgui_internal:1813", + "ImGuiTypingSelectState": "imgui_internal:1824", + "ImGuiViewport": "imgui:4103", + "ImGuiViewportFlags_": "imgui:4075", + "ImGuiViewportP": "imgui_internal:2130", + "ImGuiWindow": "imgui_internal:2864", + "ImGuiWindowBgClickFlags_": "imgui_internal:1305", + "ImGuiWindowClass": "imgui:2801", + "ImGuiWindowDockStyle": "imgui_internal:2108", + "ImGuiWindowDockStyleCol": "imgui_internal:2093", + "ImGuiWindowFlags_": "imgui:1211", + "ImGuiWindowRefreshFlags_": "imgui_internal:1296", + "ImGuiWindowSettings": "imgui_internal:2182", + "ImGuiWindowStackData": "imgui_internal:1445", + "ImGuiWindowTempData": "imgui_internal:2806", "ImRect": "imgui_internal:592", - "ImTextureData": "imgui:3619", - "ImTextureFormat": "imgui:3587", - "ImTextureRect": "imgui:3606", - "ImTextureRef": "imgui:370", - "ImTextureStatus": "imgui:3594", + "ImTextureData": "imgui:3642", + "ImTextureFormat": "imgui:3610", + "ImTextureRect": "imgui:3629", + "ImTextureRef": "imgui:372", + "ImTextureStatus": "imgui:3617", "ImVec1": "imgui_internal:566", "ImVec2": "imgui:300", "ImVec2i": "imgui_internal:574", "ImVec2ih": "imgui_internal:582", "ImVec4": "imgui:313", "ImWcharClass": "imgui_internal:455", - "stbrp_context_opaque": "imgui_internal:4156" + "stbrp_context_opaque": "imgui_internal:4173" }, "nonPOD": { "ImBitArray": true, @@ -7333,6 +7348,10 @@ "name": "NavLayer", "type": "ImGuiNavLayer" }, + { + "name": "NavIdItemFlags", + "type": "ImGuiItemFlags" + }, { "name": "NavActivateId", "type": "ImGuiID" @@ -7362,6 +7381,14 @@ "name": "NavHighlightActivatedTimer", "type": "float" }, + { + "name": "NavOpenContextMenuItemId", + "type": "ImGuiID" + }, + { + "name": "NavOpenContextMenuWindowId", + "type": "ImGuiID" + }, { "name": "NavNextActivateId", "type": "ImGuiID" @@ -7774,6 +7801,10 @@ "name": "InputTextPasswordFontBackupFlags", "type": "ImFontFlags" }, + { + "name": "InputTextReactivateId", + "type": "ImGuiID" + }, { "name": "TempInputId", "type": "ImGuiID" @@ -7949,6 +7980,10 @@ "name": "HookIdNext", "type": "ImGuiID" }, + { + "name": "DemoMarkerCallback", + "type": "ImGuiDemoMarkerCallback" + }, { "name": "LocalizationTable[ImGuiLocKey_COUNT]", "size": 13, @@ -9330,7 +9365,11 @@ "type": "bool" }, { - "name": "Edited", + "name": "EditedBefore", + "type": "bool" + }, + { + "name": "EditedThisFrame", "type": "bool" }, { @@ -9464,10 +9503,6 @@ } ], "ImGuiListClipper": [ - { - "name": "Ctx", - "type": "ImGuiContext*" - }, { "name": "DisplayStart", "type": "int" @@ -9476,6 +9511,10 @@ "name": "DisplayEnd", "type": "int" }, + { + "name": "UserIndex", + "type": "int" + }, { "name": "ItemsCount", "type": "int" @@ -9484,6 +9523,10 @@ "name": "ItemsHeight", "type": "float" }, + { + "name": "Flags", + "type": "ImGuiListClipperFlags" + }, { "name": "StartPosY", "type": "double" @@ -9493,12 +9536,12 @@ "type": "double" }, { - "name": "TempData", - "type": "void*" + "name": "Ctx", + "type": "ImGuiContext*" }, { - "name": "Flags", - "type": "ImGuiListClipperFlags" + "name": "TempData", + "type": "void*" } ], "ImGuiListClipperData": [ @@ -10725,6 +10768,10 @@ "name": "SelectableTextAlign", "type": "ImVec2" }, + { + "name": "SeparatorSize", + "type": "float" + }, { "name": "SeparatorTextBorderSize", "type": "float" @@ -11360,12 +11407,16 @@ "name": "HeldHeaderColumn", "type": "ImGuiTableColumnIdx" }, + { + "name": "LastHeldHeaderColumn", + "type": "ImGuiTableColumnIdx" + }, { "name": "ReorderColumn", "type": "ImGuiTableColumnIdx" }, { - "name": "ReorderColumnDir", + "name": "ReorderColumnDstOrder", "type": "ImGuiTableColumnIdx" }, { @@ -12145,9 +12196,9 @@ "type": "short" }, { - "name": "BgFgDrawListsLastFrame[2]", + "name": "BgFgDrawListsLastTimeActive[2]", "size": 2, - "type": "int" + "type": "float" }, { "name": "BgFgDrawLists[2]", diff --git a/generator/output/structs_and_enums.lua b/generator/output/structs_and_enums.lua index a55e1fb..bd4d461 100644 --- a/generator/output/structs_and_enums.lua +++ b/generator/output/structs_and_enums.lua @@ -242,46 +242,42 @@ local t={ name="ImGuiButtonFlags_FlattenChildren", value="1 << 11"}, [8]={ - calc_value=4096, - name="ImGuiButtonFlags_AllowOverlap", - value="1 << 12"}, - [9]={ calc_value=32768, name="ImGuiButtonFlags_AlignTextBaseLine", value="1 << 15"}, - [10]={ + [9]={ calc_value=65536, name="ImGuiButtonFlags_NoKeyModsAllowed", value="1 << 16"}, - [11]={ + [10]={ calc_value=131072, name="ImGuiButtonFlags_NoHoldingActiveId", value="1 << 17"}, - [12]={ + [11]={ calc_value=262144, name="ImGuiButtonFlags_NoNavFocus", value="1 << 18"}, - [13]={ + [12]={ calc_value=524288, name="ImGuiButtonFlags_NoHoveredOnFocus", value="1 << 19"}, - [14]={ + [13]={ calc_value=1048576, name="ImGuiButtonFlags_NoSetKeyOwner", value="1 << 20"}, - [15]={ + [14]={ calc_value=2097152, name="ImGuiButtonFlags_NoTestKeyOwner", value="1 << 21"}, - [16]={ + [15]={ calc_value=4194304, name="ImGuiButtonFlags_NoFocus", value="1 << 22"}, - [17]={ + [16]={ calc_value=1008, name="ImGuiButtonFlags_PressedOnMask_", value="ImGuiButtonFlags_PressedOnClick | ImGuiButtonFlags_PressedOnClickRelease | ImGuiButtonFlags_PressedOnClickReleaseAnywhere | ImGuiButtonFlags_PressedOnRelease | ImGuiButtonFlags_PressedOnDoubleClick | ImGuiButtonFlags_PressedOnDragDropHold"}, - [18]={ + [17]={ calc_value=32, name="ImGuiButtonFlags_PressedOnDefault_", value="ImGuiButtonFlags_PressedOnClickRelease"}}, @@ -309,7 +305,11 @@ local t={ [6]={ calc_value=8, name="ImGuiButtonFlags_EnableNav", - value="1 << 3"}}, + value="1 << 3"}, + [7]={ + calc_value=4096, + name="ImGuiButtonFlags_AllowOverlap", + value="1 << 12"}}, ImGuiChildFlags_={ [1]={ calc_value=0, @@ -1611,7 +1611,7 @@ local t={ value="1 << 26"}, [2]={ calc_value=134217728, - name="ImGuiInputTextFlags_MergedItem", + name="ImGuiInputTextFlags_TempInput", value="1 << 27"}, [3]={ calc_value=268435456, @@ -2756,20 +2756,28 @@ local t={ value="1 << 12"}, [15]={ calc_value=8192, - name="ImGuiMultiSelectFlags_SelectOnClick", + name="ImGuiMultiSelectFlags_SelectOnAuto", value="1 << 13"}, [16]={ calc_value=16384, - name="ImGuiMultiSelectFlags_SelectOnClickRelease", + name="ImGuiMultiSelectFlags_SelectOnClickAlways", value="1 << 14"}, [17]={ + calc_value=32768, + name="ImGuiMultiSelectFlags_SelectOnClickRelease", + value="1 << 15"}, + [18]={ calc_value=65536, name="ImGuiMultiSelectFlags_NavWrapX", value="1 << 16"}, - [18]={ + [19]={ calc_value=131072, name="ImGuiMultiSelectFlags_NoSelectOnRightClick", - value="1 << 17"}}, + value="1 << 17"}, + [20]={ + calc_value=57344, + name="ImGuiMultiSelectFlags_SelectOnMask_", + value="ImGuiMultiSelectFlags_SelectOnAuto | ImGuiMultiSelectFlags_SelectOnClickAlways | ImGuiMultiSelectFlags_SelectOnClickRelease"}}, ImGuiNavLayer={ [1]={ calc_value=0, @@ -3414,24 +3422,28 @@ local t={ value="36"}, [38]={ calc_value=37, - name="ImGuiStyleVar_SeparatorTextBorderSize", + name="ImGuiStyleVar_SeparatorSize", value="37"}, [39]={ calc_value=38, - name="ImGuiStyleVar_SeparatorTextAlign", + name="ImGuiStyleVar_SeparatorTextBorderSize", value="38"}, [40]={ calc_value=39, - name="ImGuiStyleVar_SeparatorTextPadding", + name="ImGuiStyleVar_SeparatorTextAlign", value="39"}, [41]={ calc_value=40, - name="ImGuiStyleVar_DockingSeparatorSize", + name="ImGuiStyleVar_SeparatorTextPadding", value="40"}, [42]={ calc_value=41, + name="ImGuiStyleVar_DockingSeparatorSize", + value="41"}, + [43]={ + calc_value=42, name="ImGuiStyleVar_COUNT", - value="41"}}, + value="42"}}, ImGuiTabBarFlagsPrivate_={ [1]={ calc_value=1048576, @@ -4290,221 +4302,221 @@ local t={ ImGuiSortDirection="ImU8"}, locations={ ImBitVector="imgui_internal:670", - ImColor="imgui:3084", - ImDrawChannel="imgui:3333", - ImDrawCmd="imgui:3289", - ImDrawCmdHeader="imgui:3325", - ImDrawData="imgui:3554", + ImColor="imgui:3100", + ImDrawChannel="imgui:3356", + ImDrawCmd="imgui:3312", + ImDrawCmdHeader="imgui:3348", + ImDrawData="imgui:3577", ImDrawDataBuilder="imgui_internal:898", - ImDrawFlags_="imgui:3358", - ImDrawList="imgui:3396", - ImDrawListFlags_="imgui:3378", + ImDrawFlags_="imgui:3381", + ImDrawList="imgui:3419", + ImDrawListFlags_="imgui:3401", ImDrawListSharedData="imgui_internal:871", - ImDrawListSplitter="imgui:3341", + ImDrawListSplitter="imgui:3364", ImDrawTextFlags_="imgui_internal:443", - ImDrawVert="imgui:3310", - ImFont="imgui:3980", - ImFontAtlas="imgui:3781", - ImFontAtlasBuilder="imgui_internal:4159", - ImFontAtlasFlags_="imgui:3754", - ImFontAtlasPostProcessData="imgui_internal:4132", - ImFontAtlasRect="imgui:3744", - ImFontAtlasRectEntry="imgui_internal:4124", - ImFontBaked="imgui:3932", - ImFontConfig="imgui:3663", - ImFontFlags_="imgui:3967", - ImFontGlyph="imgui:3706", - ImFontGlyphRangesBuilder="imgui:3722", - ImFontLoader="imgui_internal:4073", + ImDrawVert="imgui:3333", + ImFont="imgui:4003", + ImFontAtlas="imgui:3804", + ImFontAtlasBuilder="imgui_internal:4176", + ImFontAtlasFlags_="imgui:3777", + ImFontAtlasPostProcessData="imgui_internal:4149", + ImFontAtlasRect="imgui:3767", + ImFontAtlasRectEntry="imgui_internal:4141", + ImFontBaked="imgui:3955", + ImFontConfig="imgui:3686", + ImFontFlags_="imgui:3990", + ImFontGlyph="imgui:3729", + ImFontGlyphRangesBuilder="imgui:3745", + ImFontLoader="imgui_internal:4090", ImFontStackData="imgui_internal:906", - ImGuiActivateFlags_="imgui_internal:1705", - ImGuiAxis="imgui_internal:1155", - ImGuiBackendFlags_="imgui:1800", - ImGuiBoxSelectState="imgui_internal:1896", + ImGuiActivateFlags_="imgui_internal:1706", + ImGuiAxis="imgui_internal:1154", + ImGuiBackendFlags_="imgui:1803", + ImGuiBoxSelectState="imgui_internal:1897", ImGuiButtonFlagsPrivate_="imgui_internal:1042", - ImGuiButtonFlags_="imgui:1947", - ImGuiChildFlags_="imgui:1259", - ImGuiCol_="imgui:1817", - ImGuiColorEditFlags_="imgui:1958", + ImGuiButtonFlags_="imgui:1951", + ImGuiChildFlags_="imgui:1262", + ImGuiCol_="imgui:1820", + ImGuiColorEditFlags_="imgui:1963", ImGuiColorMod="imgui_internal:926", - ImGuiComboFlagsPrivate_="imgui_internal:1069", - ImGuiComboFlags_="imgui:1421", - ImGuiComboPreviewData="imgui_internal:1169", - ImGuiCond_="imgui:2074", - ImGuiConfigFlags_="imgui:1771", - ImGuiContext="imgui_internal:2383", - ImGuiContextHook="imgui_internal:2368", - ImGuiContextHookType="imgui_internal:2366", - ImGuiDataAuthority_="imgui_internal:2009", + ImGuiComboFlagsPrivate_="imgui_internal:1068", + ImGuiComboFlags_="imgui:1424", + ImGuiComboPreviewData="imgui_internal:1168", + ImGuiCond_="imgui:2079", + ImGuiConfigFlags_="imgui:1775", + ImGuiContext="imgui_internal:2386", + ImGuiContextHook="imgui_internal:2369", + ImGuiContextHookType="imgui_internal:2367", + ImGuiDataAuthority_="imgui_internal:2010", ImGuiDataTypeInfo="imgui_internal:952", ImGuiDataTypePrivate_="imgui_internal:961", ImGuiDataTypeStorage="imgui_internal:946", - ImGuiDataType_="imgui:1577", - ImGuiDeactivatedItemData="imgui_internal:1470", - ImGuiDebugAllocEntry="imgui_internal:2290", - ImGuiDebugAllocInfo="imgui_internal:2297", - ImGuiDebugItemPathQuery="imgui_internal:2337", - ImGuiDebugLogFlags_="imgui_internal:2267", - ImGuiDir="imgui:1595", - ImGuiDockContext="imgui_internal:2112", - ImGuiDockNode="imgui_internal:2025", - ImGuiDockNodeFlagsPrivate_="imgui_internal:1977", - ImGuiDockNodeFlags_="imgui:1529", - ImGuiDockNodeState="imgui_internal:2016", - ImGuiDragDropFlags_="imgui:1548", - ImGuiErrorRecoveryState="imgui_internal:1426", - ImGuiFocusRequestFlags_="imgui_internal:1115", - ImGuiFocusScopeData="imgui_internal:1793", - ImGuiFocusedFlags_="imgui:1475", + ImGuiDataType_="imgui:1580", + ImGuiDeactivatedItemData="imgui_internal:1471", + ImGuiDebugAllocEntry="imgui_internal:2291", + ImGuiDebugAllocInfo="imgui_internal:2298", + ImGuiDebugItemPathQuery="imgui_internal:2338", + ImGuiDebugLogFlags_="imgui_internal:2268", + ImGuiDir="imgui:1598", + ImGuiDockContext="imgui_internal:2113", + ImGuiDockNode="imgui_internal:2026", + ImGuiDockNodeFlagsPrivate_="imgui_internal:1978", + ImGuiDockNodeFlags_="imgui:1532", + ImGuiDockNodeState="imgui_internal:2017", + ImGuiDragDropFlags_="imgui:1551", + ImGuiErrorRecoveryState="imgui_internal:1427", + ImGuiFocusRequestFlags_="imgui_internal:1114", + ImGuiFocusScopeData="imgui_internal:1794", + ImGuiFocusedFlags_="imgui:1478", ImGuiFreeTypeLoaderFlags_="imgui_freetype:29", - ImGuiGroupData="imgui_internal:1182", + ImGuiGroupData="imgui_internal:1181", ImGuiHoveredFlagsPrivate_="imgui_internal:1025", - ImGuiHoveredFlags_="imgui:1489", - ImGuiIDStackTool="imgui_internal:2351", - ImGuiIO="imgui:2480", - ImGuiInputEvent="imgui_internal:1565", - ImGuiInputEventAppFocused="imgui_internal:1563", - ImGuiInputEventKey="imgui_internal:1561", - ImGuiInputEventMouseButton="imgui_internal:1559", - ImGuiInputEventMousePos="imgui_internal:1557", - ImGuiInputEventMouseViewport="imgui_internal:1560", - ImGuiInputEventMouseWheel="imgui_internal:1558", - ImGuiInputEventText="imgui_internal:1562", - ImGuiInputEventType="imgui_internal:1533", - ImGuiInputFlagsPrivate_="imgui_internal:1632", - ImGuiInputFlags_="imgui:1748", - ImGuiInputSource="imgui_internal:1546", - ImGuiInputTextCallbackData="imgui:2743", - ImGuiInputTextDeactivatedState="imgui_internal:1219", + ImGuiHoveredFlags_="imgui:1492", + ImGuiIDStackTool="imgui_internal:2352", + ImGuiIO="imgui:2486", + ImGuiInputEvent="imgui_internal:1566", + ImGuiInputEventAppFocused="imgui_internal:1564", + ImGuiInputEventKey="imgui_internal:1562", + ImGuiInputEventMouseButton="imgui_internal:1560", + ImGuiInputEventMousePos="imgui_internal:1558", + ImGuiInputEventMouseViewport="imgui_internal:1561", + ImGuiInputEventMouseWheel="imgui_internal:1559", + ImGuiInputEventText="imgui_internal:1563", + ImGuiInputEventType="imgui_internal:1534", + ImGuiInputFlagsPrivate_="imgui_internal:1633", + ImGuiInputFlags_="imgui:1751", + ImGuiInputSource="imgui_internal:1547", + ImGuiInputTextCallbackData="imgui:2749", + ImGuiInputTextDeactivatedState="imgui_internal:1218", ImGuiInputTextFlagsPrivate_="imgui_internal:1033", - ImGuiInputTextFlags_="imgui:1294", - ImGuiInputTextState="imgui_internal:1241", + ImGuiInputTextFlags_="imgui:1297", + ImGuiInputTextState="imgui_internal:1240", ImGuiItemFlagsPrivate_="imgui_internal:974", - ImGuiItemFlags_="imgui:1280", + ImGuiItemFlags_="imgui:1283", ImGuiItemStatusFlags_="imgui_internal:998", - ImGuiKey="imgui:1619", - ImGuiKeyData="imgui:2472", - ImGuiKeyOwnerData="imgui_internal:1619", - ImGuiKeyRoutingData="imgui_internal:1593", - ImGuiKeyRoutingTable="imgui_internal:1607", - ImGuiLastItemData="imgui_internal:1395", - ImGuiLayoutType_="imgui_internal:1136", - ImGuiListClipper="imgui:2983", - ImGuiListClipperData="imgui_internal:1689", - ImGuiListClipperFlags_="imgui:2957", - ImGuiListClipperRange="imgui_internal:1676", - ImGuiLocEntry="imgui_internal:2238", - ImGuiLocKey="imgui_internal:2220", - ImGuiLogFlags_="imgui_internal:1143", - ImGuiMenuColumns="imgui_internal:1201", - ImGuiMetricsConfig="imgui_internal:2307", - ImGuiMouseButton_="imgui:2032", - ImGuiMouseCursor_="imgui:2042", - ImGuiMouseSource="imgui:2063", - ImGuiMultiSelectFlags_="imgui:3142", - ImGuiMultiSelectIO="imgui:3170", - ImGuiMultiSelectState="imgui_internal:1953", - ImGuiMultiSelectTempData="imgui_internal:1928", - ImGuiNavItemData="imgui_internal:1776", - ImGuiNavLayer="imgui_internal:1768", - ImGuiNavMoveFlags_="imgui_internal:1746", - ImGuiNavRenderCursorFlags_="imgui_internal:1731", - ImGuiNextItemData="imgui_internal:1373", - ImGuiNextItemDataFlags_="imgui_internal:1362", - ImGuiNextWindowData="imgui_internal:1330", - ImGuiNextWindowDataFlags_="imgui_internal:1310", - ImGuiOldColumnData="imgui_internal:1861", - ImGuiOldColumnFlags_="imgui_internal:1841", - ImGuiOldColumns="imgui_internal:1871", - ImGuiOnceUponAFrame="imgui:2846", - ImGuiPayload="imgui:2811", - ImGuiPlatformIO="imgui:4165", - ImGuiPlatformImeData="imgui:4287", - ImGuiPlatformMonitor="imgui:4277", - ImGuiPlotType="imgui_internal:1162", - ImGuiPopupData="imgui_internal:1490", - ImGuiPopupFlags_="imgui:1384", - ImGuiPopupPositionPolicy="imgui_internal:1482", - ImGuiPtrOrIndex="imgui_internal:1460", - ImGuiScrollFlags_="imgui_internal:1717", - ImGuiSelectableFlagsPrivate_="imgui_internal:1082", - ImGuiSelectableFlags_="imgui:1403", - ImGuiSelectionBasicStorage="imgui:3216", - ImGuiSelectionExternalStorage="imgui:3239", - ImGuiSelectionRequest="imgui:3190", - ImGuiSelectionRequestType="imgui:3182", - ImGuiSeparatorFlags_="imgui_internal:1104", - ImGuiSettingsHandler="imgui_internal:2200", - ImGuiShrinkWidthItem="imgui_internal:1453", - ImGuiSizeCallbackData="imgui:2780", - ImGuiSliderFlagsPrivate_="imgui_internal:1075", - ImGuiSliderFlags_="imgui:2015", - ImGuiSortDirection="imgui:1606", - ImGuiStackLevelInfo="imgui_internal:2326", - ImGuiStorage="imgui:2919", - ImGuiStoragePair="imgui:2902", - ImGuiStyle="imgui:2361", + ImGuiKey="imgui:1622", + ImGuiKeyData="imgui:2478", + ImGuiKeyOwnerData="imgui_internal:1620", + ImGuiKeyRoutingData="imgui_internal:1594", + ImGuiKeyRoutingTable="imgui_internal:1608", + ImGuiLastItemData="imgui_internal:1396", + ImGuiLayoutType_="imgui_internal:1135", + ImGuiListClipper="imgui:2989", + ImGuiListClipperData="imgui_internal:1690", + ImGuiListClipperFlags_="imgui:2963", + ImGuiListClipperRange="imgui_internal:1677", + ImGuiLocEntry="imgui_internal:2239", + ImGuiLocKey="imgui_internal:2221", + ImGuiLogFlags_="imgui_internal:1142", + ImGuiMenuColumns="imgui_internal:1200", + ImGuiMetricsConfig="imgui_internal:2308", + ImGuiMouseButton_="imgui:2037", + ImGuiMouseCursor_="imgui:2047", + ImGuiMouseSource="imgui:2068", + ImGuiMultiSelectFlags_="imgui:3158", + ImGuiMultiSelectIO="imgui:3193", + ImGuiMultiSelectState="imgui_internal:1954", + ImGuiMultiSelectTempData="imgui_internal:1929", + ImGuiNavItemData="imgui_internal:1777", + ImGuiNavLayer="imgui_internal:1769", + ImGuiNavMoveFlags_="imgui_internal:1747", + ImGuiNavRenderCursorFlags_="imgui_internal:1732", + ImGuiNextItemData="imgui_internal:1374", + ImGuiNextItemDataFlags_="imgui_internal:1363", + ImGuiNextWindowData="imgui_internal:1331", + ImGuiNextWindowDataFlags_="imgui_internal:1311", + ImGuiOldColumnData="imgui_internal:1862", + ImGuiOldColumnFlags_="imgui_internal:1842", + ImGuiOldColumns="imgui_internal:1872", + ImGuiOnceUponAFrame="imgui:2852", + ImGuiPayload="imgui:2817", + ImGuiPlatformIO="imgui:4191", + ImGuiPlatformImeData="imgui:4313", + ImGuiPlatformMonitor="imgui:4303", + ImGuiPlotType="imgui_internal:1161", + ImGuiPopupData="imgui_internal:1491", + ImGuiPopupFlags_="imgui:1387", + ImGuiPopupPositionPolicy="imgui_internal:1483", + ImGuiPtrOrIndex="imgui_internal:1461", + ImGuiScrollFlags_="imgui_internal:1718", + ImGuiSelectableFlagsPrivate_="imgui_internal:1081", + ImGuiSelectableFlags_="imgui:1406", + ImGuiSelectionBasicStorage="imgui:3239", + ImGuiSelectionExternalStorage="imgui:3262", + ImGuiSelectionRequest="imgui:3213", + ImGuiSelectionRequestType="imgui:3205", + ImGuiSeparatorFlags_="imgui_internal:1103", + ImGuiSettingsHandler="imgui_internal:2201", + ImGuiShrinkWidthItem="imgui_internal:1454", + ImGuiSizeCallbackData="imgui:2786", + ImGuiSliderFlagsPrivate_="imgui_internal:1074", + ImGuiSliderFlags_="imgui:2020", + ImGuiSortDirection="imgui:1609", + ImGuiStackLevelInfo="imgui_internal:2327", + ImGuiStorage="imgui:2925", + ImGuiStoragePair="imgui:2908", + ImGuiStyle="imgui:2366", ImGuiStyleMod="imgui_internal:933", ImGuiStyleVarInfo="imgui_internal:917", - ImGuiStyleVar_="imgui:1899", - ImGuiTabBar="imgui_internal:3047", - ImGuiTabBarFlagsPrivate_="imgui_internal:3009", - ImGuiTabBarFlags_="imgui:1436", - ImGuiTabItem="imgui_internal:3027", - ImGuiTabItemFlagsPrivate_="imgui_internal:3017", - ImGuiTabItemFlags_="imgui:1460", - ImGuiTable="imgui_internal:3193", - ImGuiTableBgTarget_="imgui:2215", - ImGuiTableCellData="imgui_internal:3161", - ImGuiTableColumn="imgui_internal:3101", - ImGuiTableColumnFlags_="imgui:2162", - ImGuiTableColumnSettings="imgui_internal:3342", - ImGuiTableColumnSortSpecs="imgui:2237", - ImGuiTableFlags_="imgui:2109", - ImGuiTableHeaderData="imgui_internal:3170", - ImGuiTableInstanceData="imgui_internal:3180", - ImGuiTableRowFlags_="imgui:2200", - ImGuiTableSettings="imgui_internal:3366", - ImGuiTableSortSpecs="imgui:2227", - ImGuiTableTempData="imgui_internal:3318", - ImGuiTextBuffer="imgui:2881", - ImGuiTextFilter="imgui:2854", - ImGuiTextFlags_="imgui_internal:1122", + ImGuiStyleVar_="imgui:1902", + ImGuiTabBar="imgui_internal:3057", + ImGuiTabBarFlagsPrivate_="imgui_internal:3019", + ImGuiTabBarFlags_="imgui:1439", + ImGuiTabItem="imgui_internal:3037", + ImGuiTabItemFlagsPrivate_="imgui_internal:3027", + ImGuiTabItemFlags_="imgui:1463", + ImGuiTable="imgui_internal:3203", + ImGuiTableBgTarget_="imgui:2220", + ImGuiTableCellData="imgui_internal:3171", + ImGuiTableColumn="imgui_internal:3111", + ImGuiTableColumnFlags_="imgui:2167", + ImGuiTableColumnSettings="imgui_internal:3353", + ImGuiTableColumnSortSpecs="imgui:2242", + ImGuiTableFlags_="imgui:2114", + ImGuiTableHeaderData="imgui_internal:3180", + ImGuiTableInstanceData="imgui_internal:3190", + ImGuiTableRowFlags_="imgui:2205", + ImGuiTableSettings="imgui_internal:3377", + ImGuiTableSortSpecs="imgui:2232", + ImGuiTableTempData="imgui_internal:3329", + ImGuiTextBuffer="imgui:2887", + ImGuiTextFilter="imgui:2860", + ImGuiTextFlags_="imgui_internal:1121", ImGuiTextIndex="imgui_internal:823", - ImGuiTextRange="imgui:2864", - ImGuiTooltipFlags_="imgui_internal:1128", - ImGuiTreeNodeFlagsPrivate_="imgui_internal:1095", - ImGuiTreeNodeFlags_="imgui:1345", - ImGuiTreeNodeStackData="imgui_internal:1414", - ImGuiTypingSelectFlags_="imgui_internal:1804", - ImGuiTypingSelectRequest="imgui_internal:1812", - ImGuiTypingSelectState="imgui_internal:1823", - ImGuiViewport="imgui:4078", - ImGuiViewportFlags_="imgui:4050", - ImGuiViewportP="imgui_internal:2129", - ImGuiWindow="imgui_internal:2854", - ImGuiWindowBgClickFlags_="imgui_internal:1304", - ImGuiWindowClass="imgui:2795", - ImGuiWindowDockStyle="imgui_internal:2107", - ImGuiWindowDockStyleCol="imgui_internal:2092", - ImGuiWindowFlags_="imgui:1208", - ImGuiWindowRefreshFlags_="imgui_internal:1295", - ImGuiWindowSettings="imgui_internal:2181", - ImGuiWindowStackData="imgui_internal:1444", - ImGuiWindowTempData="imgui_internal:2796", + ImGuiTextRange="imgui:2870", + ImGuiTooltipFlags_="imgui_internal:1127", + ImGuiTreeNodeFlagsPrivate_="imgui_internal:1094", + ImGuiTreeNodeFlags_="imgui:1348", + ImGuiTreeNodeStackData="imgui_internal:1415", + ImGuiTypingSelectFlags_="imgui_internal:1805", + ImGuiTypingSelectRequest="imgui_internal:1813", + ImGuiTypingSelectState="imgui_internal:1824", + ImGuiViewport="imgui:4103", + ImGuiViewportFlags_="imgui:4075", + ImGuiViewportP="imgui_internal:2130", + ImGuiWindow="imgui_internal:2864", + ImGuiWindowBgClickFlags_="imgui_internal:1305", + ImGuiWindowClass="imgui:2801", + ImGuiWindowDockStyle="imgui_internal:2108", + ImGuiWindowDockStyleCol="imgui_internal:2093", + ImGuiWindowFlags_="imgui:1211", + ImGuiWindowRefreshFlags_="imgui_internal:1296", + ImGuiWindowSettings="imgui_internal:2182", + ImGuiWindowStackData="imgui_internal:1445", + ImGuiWindowTempData="imgui_internal:2806", ImRect="imgui_internal:592", - ImTextureData="imgui:3619", - ImTextureFormat="imgui:3587", - ImTextureRect="imgui:3606", - ImTextureRef="imgui:370", - ImTextureStatus="imgui:3594", + ImTextureData="imgui:3642", + ImTextureFormat="imgui:3610", + ImTextureRect="imgui:3629", + ImTextureRef="imgui:372", + ImTextureStatus="imgui:3617", ImVec1="imgui_internal:566", ImVec2="imgui:300", ImVec2i="imgui_internal:574", ImVec2ih="imgui_internal:582", ImVec4="imgui:313", ImWcharClass="imgui_internal:455", - stbrp_context_opaque="imgui_internal:4156"}, + stbrp_context_opaque="imgui_internal:4173"}, nonPOD={ ImBitArray=true, ImColor=true, @@ -5800,623 +5812,638 @@ local t={ name="NavLayer", type="ImGuiNavLayer"}, [126]={ + name="NavIdItemFlags", + type="ImGuiItemFlags"}, + [127]={ name="NavActivateId", type="ImGuiID"}, - [127]={ + [128]={ name="NavActivateDownId", type="ImGuiID"}, - [128]={ + [129]={ name="NavActivatePressedId", type="ImGuiID"}, - [129]={ + [130]={ name="NavActivateFlags", type="ImGuiActivateFlags"}, - [130]={ + [131]={ name="NavFocusRoute", template_type="ImGuiFocusScopeData", type="ImVector_ImGuiFocusScopeData"}, - [131]={ + [132]={ name="NavHighlightActivatedId", type="ImGuiID"}, - [132]={ + [133]={ name="NavHighlightActivatedTimer", type="float"}, - [133]={ + [134]={ + name="NavOpenContextMenuItemId", + type="ImGuiID"}, + [135]={ + name="NavOpenContextMenuWindowId", + type="ImGuiID"}, + [136]={ name="NavNextActivateId", type="ImGuiID"}, - [134]={ + [137]={ name="NavNextActivateFlags", type="ImGuiActivateFlags"}, - [135]={ + [138]={ name="NavInputSource", type="ImGuiInputSource"}, - [136]={ + [139]={ name="NavLastValidSelectionUserData", type="ImGuiSelectionUserData"}, - [137]={ + [140]={ name="NavCursorHideFrames", type="ImS8"}, - [138]={ + [141]={ name="NavAnyRequest", type="bool"}, - [139]={ + [142]={ name="NavInitRequest", type="bool"}, - [140]={ + [143]={ name="NavInitRequestFromMove", type="bool"}, - [141]={ + [144]={ name="NavInitResult", type="ImGuiNavItemData"}, - [142]={ + [145]={ name="NavMoveSubmitted", type="bool"}, - [143]={ + [146]={ name="NavMoveScoringItems", type="bool"}, - [144]={ + [147]={ name="NavMoveForwardToNextFrame", type="bool"}, - [145]={ + [148]={ name="NavMoveFlags", type="ImGuiNavMoveFlags"}, - [146]={ + [149]={ name="NavMoveScrollFlags", type="ImGuiScrollFlags"}, - [147]={ + [150]={ name="NavMoveKeyMods", type="ImGuiKeyChord"}, - [148]={ + [151]={ name="NavMoveDir", type="ImGuiDir"}, - [149]={ + [152]={ name="NavMoveDirForDebug", type="ImGuiDir"}, - [150]={ + [153]={ name="NavMoveClipDir", type="ImGuiDir"}, - [151]={ + [154]={ name="NavScoringRect", type="ImRect"}, - [152]={ + [155]={ name="NavScoringNoClipRect", type="ImRect"}, - [153]={ + [156]={ name="NavScoringDebugCount", type="int"}, - [154]={ + [157]={ name="NavTabbingDir", type="int"}, - [155]={ + [158]={ name="NavTabbingCounter", type="int"}, - [156]={ + [159]={ name="NavMoveResultLocal", type="ImGuiNavItemData"}, - [157]={ + [160]={ name="NavMoveResultLocalVisible", type="ImGuiNavItemData"}, - [158]={ + [161]={ name="NavMoveResultOther", type="ImGuiNavItemData"}, - [159]={ + [162]={ name="NavTabbingResultFirst", type="ImGuiNavItemData"}, - [160]={ + [163]={ name="NavJustMovedFromFocusScopeId", type="ImGuiID"}, - [161]={ + [164]={ name="NavJustMovedToId", type="ImGuiID"}, - [162]={ + [165]={ name="NavJustMovedToFocusScopeId", type="ImGuiID"}, - [163]={ + [166]={ name="NavJustMovedToKeyMods", type="ImGuiKeyChord"}, - [164]={ + [167]={ name="NavJustMovedToIsTabbing", type="bool"}, - [165]={ + [168]={ name="NavJustMovedToHasSelectionData", type="bool"}, - [166]={ + [169]={ name="ConfigNavEnableTabbing", type="bool"}, - [167]={ + [170]={ name="ConfigNavWindowingWithGamepad", type="bool"}, - [168]={ + [171]={ name="ConfigNavWindowingKeyNext", type="ImGuiKeyChord"}, - [169]={ + [172]={ name="ConfigNavWindowingKeyPrev", type="ImGuiKeyChord"}, - [170]={ + [173]={ name="NavWindowingTarget", type="ImGuiWindow*"}, - [171]={ + [174]={ name="NavWindowingTargetAnim", type="ImGuiWindow*"}, - [172]={ + [175]={ name="NavWindowingListWindow", type="ImGuiWindow*"}, - [173]={ + [176]={ name="NavWindowingTimer", type="float"}, - [174]={ + [177]={ name="NavWindowingHighlightAlpha", type="float"}, - [175]={ + [178]={ name="NavWindowingInputSource", type="ImGuiInputSource"}, - [176]={ + [179]={ name="NavWindowingToggleLayer", type="bool"}, - [177]={ + [180]={ name="NavWindowingToggleKey", type="ImGuiKey"}, - [178]={ + [181]={ name="NavWindowingAccumDeltaPos", type="ImVec2"}, - [179]={ + [182]={ name="NavWindowingAccumDeltaSize", type="ImVec2"}, - [180]={ + [183]={ name="DimBgRatio", type="float"}, - [181]={ + [184]={ name="DragDropActive", type="bool"}, - [182]={ + [185]={ name="DragDropWithinSource", type="bool"}, - [183]={ + [186]={ name="DragDropWithinTarget", type="bool"}, - [184]={ + [187]={ name="DragDropSourceFlags", type="ImGuiDragDropFlags"}, - [185]={ + [188]={ name="DragDropSourceFrameCount", type="int"}, - [186]={ + [189]={ name="DragDropMouseButton", type="int"}, - [187]={ + [190]={ name="DragDropPayload", type="ImGuiPayload"}, - [188]={ + [191]={ name="DragDropTargetRect", type="ImRect"}, - [189]={ + [192]={ name="DragDropTargetClipRect", type="ImRect"}, - [190]={ + [193]={ name="DragDropTargetId", type="ImGuiID"}, - [191]={ + [194]={ name="DragDropTargetFullViewport", type="ImGuiID"}, - [192]={ + [195]={ name="DragDropAcceptFlagsCurr", type="ImGuiDragDropFlags"}, - [193]={ + [196]={ name="DragDropAcceptFlagsPrev", type="ImGuiDragDropFlags"}, - [194]={ + [197]={ name="DragDropAcceptIdCurrRectSurface", type="float"}, - [195]={ + [198]={ name="DragDropAcceptIdCurr", type="ImGuiID"}, - [196]={ + [199]={ name="DragDropAcceptIdPrev", type="ImGuiID"}, - [197]={ + [200]={ name="DragDropAcceptFrameCount", type="int"}, - [198]={ + [201]={ name="DragDropHoldJustPressedId", type="ImGuiID"}, - [199]={ + [202]={ name="DragDropPayloadBufHeap", template_type="unsigned char", type="ImVector_unsigned_char"}, - [200]={ + [203]={ name="DragDropPayloadBufLocal[16]", size=16, type="unsigned char"}, - [201]={ + [204]={ name="ClipperTempDataStacked", type="int"}, - [202]={ + [205]={ name="ClipperTempData", template_type="ImGuiListClipperData", type="ImVector_ImGuiListClipperData"}, - [203]={ + [206]={ name="CurrentTable", type="ImGuiTable*"}, - [204]={ + [207]={ name="DebugBreakInTable", type="ImGuiID"}, - [205]={ + [208]={ name="TablesTempDataStacked", type="int"}, - [206]={ + [209]={ name="TablesTempData", template_type="ImGuiTableTempData", type="ImVector_ImGuiTableTempData"}, - [207]={ + [210]={ name="Tables", template_type="ImGuiTable", type="ImPool_ImGuiTable"}, - [208]={ + [211]={ name="TablesLastTimeActive", template_type="float", type="ImVector_float"}, - [209]={ + [212]={ name="DrawChannelsTempMergeBuffer", template_type="ImDrawChannel", type="ImVector_ImDrawChannel"}, - [210]={ + [213]={ name="CurrentTabBar", type="ImGuiTabBar*"}, - [211]={ + [214]={ name="TabBars", template_type="ImGuiTabBar", type="ImPool_ImGuiTabBar"}, - [212]={ + [215]={ name="CurrentTabBarStack", template_type="ImGuiPtrOrIndex", type="ImVector_ImGuiPtrOrIndex"}, - [213]={ + [216]={ name="ShrinkWidthBuffer", template_type="ImGuiShrinkWidthItem", type="ImVector_ImGuiShrinkWidthItem"}, - [214]={ + [217]={ name="BoxSelectState", type="ImGuiBoxSelectState"}, - [215]={ + [218]={ name="CurrentMultiSelect", type="ImGuiMultiSelectTempData*"}, - [216]={ + [219]={ name="MultiSelectTempDataStacked", type="int"}, - [217]={ + [220]={ name="MultiSelectTempData", template_type="ImGuiMultiSelectTempData", type="ImVector_ImGuiMultiSelectTempData"}, - [218]={ + [221]={ name="MultiSelectStorage", template_type="ImGuiMultiSelectState", type="ImPool_ImGuiMultiSelectState"}, - [219]={ + [222]={ name="HoverItemDelayId", type="ImGuiID"}, - [220]={ + [223]={ name="HoverItemDelayIdPreviousFrame", type="ImGuiID"}, - [221]={ + [224]={ name="HoverItemDelayTimer", type="float"}, - [222]={ + [225]={ name="HoverItemDelayClearTimer", type="float"}, - [223]={ + [226]={ name="HoverItemUnlockedStationaryId", type="ImGuiID"}, - [224]={ + [227]={ name="HoverWindowUnlockedStationaryId", type="ImGuiID"}, - [225]={ + [228]={ name="MouseCursor", type="ImGuiMouseCursor"}, - [226]={ + [229]={ name="MouseStationaryTimer", type="float"}, - [227]={ + [230]={ name="MouseLastValidPos", type="ImVec2"}, - [228]={ + [231]={ name="InputTextState", type="ImGuiInputTextState"}, - [229]={ + [232]={ name="InputTextLineIndex", type="ImGuiTextIndex"}, - [230]={ + [233]={ name="InputTextDeactivatedState", type="ImGuiInputTextDeactivatedState"}, - [231]={ + [234]={ name="InputTextPasswordFontBackupBaked", type="ImFontBaked"}, - [232]={ + [235]={ name="InputTextPasswordFontBackupFlags", type="ImFontFlags"}, - [233]={ + [236]={ + name="InputTextReactivateId", + type="ImGuiID"}, + [237]={ name="TempInputId", type="ImGuiID"}, - [234]={ + [238]={ name="DataTypeZeroValue", type="ImGuiDataTypeStorage"}, - [235]={ + [239]={ name="BeginMenuDepth", type="int"}, - [236]={ + [240]={ name="BeginComboDepth", type="int"}, - [237]={ + [241]={ name="ColorEditOptions", type="ImGuiColorEditFlags"}, - [238]={ + [242]={ name="ColorEditCurrentID", type="ImGuiID"}, - [239]={ + [243]={ name="ColorEditSavedID", type="ImGuiID"}, - [240]={ + [244]={ name="ColorEditSavedHue", type="float"}, - [241]={ + [245]={ name="ColorEditSavedSat", type="float"}, - [242]={ + [246]={ name="ColorEditSavedColor", type="ImU32"}, - [243]={ + [247]={ name="ColorPickerRef", type="ImVec4"}, - [244]={ + [248]={ name="ComboPreviewData", type="ImGuiComboPreviewData"}, - [245]={ + [249]={ name="WindowResizeBorderExpectedRect", type="ImRect"}, - [246]={ + [250]={ name="WindowResizeRelativeMode", type="bool"}, - [247]={ + [251]={ name="ScrollbarSeekMode", type="short"}, - [248]={ + [252]={ name="ScrollbarClickDeltaToGrabCenter", type="float"}, - [249]={ + [253]={ name="SliderGrabClickOffset", type="float"}, - [250]={ + [254]={ name="SliderCurrentAccum", type="float"}, - [251]={ + [255]={ name="SliderCurrentAccumDirty", type="bool"}, - [252]={ + [256]={ name="DragCurrentAccumDirty", type="bool"}, - [253]={ + [257]={ name="DragCurrentAccum", type="float"}, - [254]={ + [258]={ name="DragSpeedDefaultRatio", type="float"}, - [255]={ + [259]={ name="DisabledAlphaBackup", type="float"}, - [256]={ + [260]={ name="DisabledStackSize", type="short"}, - [257]={ + [261]={ name="TooltipOverrideCount", type="short"}, - [258]={ + [262]={ name="TooltipPreviousWindow", type="ImGuiWindow*"}, - [259]={ + [263]={ name="ClipboardHandlerData", template_type="char", type="ImVector_char"}, - [260]={ + [264]={ name="MenusIdSubmittedThisFrame", template_type="ImGuiID", type="ImVector_ImGuiID"}, - [261]={ + [265]={ name="TypingSelectState", type="ImGuiTypingSelectState"}, - [262]={ + [266]={ name="PlatformImeData", type="ImGuiPlatformImeData"}, - [263]={ + [267]={ name="PlatformImeDataPrev", type="ImGuiPlatformImeData"}, - [264]={ + [268]={ name="UserTextures", template_type="ImTextureData*", type="ImVector_ImTextureDataPtr"}, - [265]={ + [269]={ name="DockContext", type="ImGuiDockContext"}, - [266]={ + [270]={ name="DockNodeWindowMenuHandler", type="void(*)(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar)"}, - [267]={ + [271]={ name="SettingsLoaded", type="bool"}, - [268]={ + [272]={ name="SettingsDirtyTimer", type="float"}, - [269]={ + [273]={ name="SettingsIniData", type="ImGuiTextBuffer"}, - [270]={ + [274]={ name="SettingsHandlers", template_type="ImGuiSettingsHandler", type="ImVector_ImGuiSettingsHandler"}, - [271]={ + [275]={ name="SettingsWindows", template_type="ImGuiWindowSettings", type="ImChunkStream_ImGuiWindowSettings"}, - [272]={ + [276]={ name="SettingsTables", template_type="ImGuiTableSettings", type="ImChunkStream_ImGuiTableSettings"}, - [273]={ + [277]={ name="Hooks", template_type="ImGuiContextHook", type="ImVector_ImGuiContextHook"}, - [274]={ + [278]={ name="HookIdNext", type="ImGuiID"}, - [275]={ + [279]={ + name="DemoMarkerCallback", + type="ImGuiDemoMarkerCallback"}, + [280]={ name="LocalizationTable[ImGuiLocKey_COUNT]", size=13, type="const char*"}, - [276]={ + [281]={ name="LogEnabled", type="bool"}, - [277]={ + [282]={ name="LogLineFirstItem", type="bool"}, - [278]={ + [283]={ name="LogFlags", type="ImGuiLogFlags"}, - [279]={ + [284]={ name="LogWindow", type="ImGuiWindow*"}, - [280]={ + [285]={ name="LogFile", type="ImFileHandle"}, - [281]={ + [286]={ name="LogBuffer", type="ImGuiTextBuffer"}, - [282]={ + [287]={ name="LogNextPrefix", type="const char*"}, - [283]={ + [288]={ name="LogNextSuffix", type="const char*"}, - [284]={ + [289]={ name="LogLinePosY", type="float"}, - [285]={ + [290]={ name="LogDepthRef", type="int"}, - [286]={ + [291]={ name="LogDepthToExpand", type="int"}, - [287]={ + [292]={ name="LogDepthToExpandDefault", type="int"}, - [288]={ + [293]={ name="ErrorCallback", type="ImGuiErrorCallback"}, - [289]={ + [294]={ name="ErrorCallbackUserData", type="void*"}, - [290]={ + [295]={ name="ErrorTooltipLockedPos", type="ImVec2"}, - [291]={ + [296]={ name="ErrorFirst", type="bool"}, - [292]={ + [297]={ name="ErrorCountCurrentFrame", type="int"}, - [293]={ + [298]={ name="StackSizesInNewFrame", type="ImGuiErrorRecoveryState"}, - [294]={ + [299]={ name="StackSizesInBeginForCurrentWindow", type="ImGuiErrorRecoveryState*"}, - [295]={ + [300]={ name="DebugDrawIdConflictsCount", type="int"}, - [296]={ + [301]={ name="DebugLogFlags", type="ImGuiDebugLogFlags"}, - [297]={ + [302]={ name="DebugLogBuf", type="ImGuiTextBuffer"}, - [298]={ + [303]={ name="DebugLogIndex", type="ImGuiTextIndex"}, - [299]={ + [304]={ name="DebugLogSkippedErrors", type="int"}, - [300]={ + [305]={ name="DebugLogAutoDisableFlags", type="ImGuiDebugLogFlags"}, - [301]={ + [306]={ name="DebugLogAutoDisableFrames", type="ImU8"}, - [302]={ + [307]={ name="DebugLocateFrames", type="ImU8"}, - [303]={ + [308]={ name="DebugBreakInLocateId", type="bool"}, - [304]={ + [309]={ name="DebugBreakKeyChord", type="ImGuiKeyChord"}, - [305]={ + [310]={ name="DebugBeginReturnValueCullDepth", type="ImS8"}, - [306]={ + [311]={ name="DebugItemPickerActive", type="bool"}, - [307]={ + [312]={ name="DebugItemPickerMouseButton", type="ImU8"}, - [308]={ + [313]={ name="DebugItemPickerBreakId", type="ImGuiID"}, - [309]={ + [314]={ name="DebugFlashStyleColorTime", type="float"}, - [310]={ + [315]={ name="DebugFlashStyleColorBackup", type="ImVec4"}, - [311]={ + [316]={ name="DebugMetricsConfig", type="ImGuiMetricsConfig"}, - [312]={ + [317]={ name="DebugItemPathQuery", type="ImGuiDebugItemPathQuery"}, - [313]={ + [318]={ name="DebugIDStackTool", type="ImGuiIDStackTool"}, - [314]={ + [319]={ name="DebugAllocInfo", type="ImGuiDebugAllocInfo"}, - [315]={ + [320]={ name="DebugHoveredDockNode", type="ImGuiDockNode*"}, - [316]={ + [321]={ name="FramerateSecPerFrame[60]", size=60, type="float"}, - [317]={ + [322]={ name="FramerateSecPerFrameIdx", type="int"}, - [318]={ + [323]={ name="FramerateSecPerFrameCount", type="int"}, - [319]={ + [324]={ name="FramerateSecPerFrameAccum", type="float"}, - [320]={ + [325]={ name="WantCaptureMouseNextFrame", type="int"}, - [321]={ + [326]={ name="WantCaptureKeyboardNextFrame", type="int"}, - [322]={ + [327]={ name="WantTextInputNextFrame", type="int"}, - [323]={ + [328]={ name="TempBuffer", template_type="char", type="ImVector_char"}, - [324]={ + [329]={ name="TempKeychordName[64]", size=64, type="char"}}, @@ -7301,18 +7328,21 @@ local t={ name="SelectedAllMouseLock", type="bool"}, [18]={ - name="Edited", + name="EditedBefore", type="bool"}, [19]={ - name="WantReloadUserBuf", + name="EditedThisFrame", type="bool"}, [20]={ + name="WantReloadUserBuf", + type="bool"}, + [21]={ name="LastMoveDirectionLR", type="ImS8"}, - [21]={ + [22]={ name="ReloadSelectionStart", type="int"}, - [22]={ + [23]={ name="ReloadSelectionEnd", type="int"}}, ImGuiKeyData={ @@ -7400,14 +7430,14 @@ local t={ type="ImGuiKeyChord"}}, ImGuiListClipper={ [1]={ - name="Ctx", - type="ImGuiContext*"}, - [2]={ name="DisplayStart", type="int"}, - [3]={ + [2]={ name="DisplayEnd", type="int"}, + [3]={ + name="UserIndex", + type="int"}, [4]={ name="ItemsCount", type="int"}, @@ -7415,17 +7445,20 @@ local t={ name="ItemsHeight", type="float"}, [6]={ + name="Flags", + type="ImGuiListClipperFlags"}, + [7]={ name="StartPosY", type="double"}, - [7]={ + [8]={ name="StartSeekOffsetY", type="double"}, - [8]={ - name="TempData", - type="void*"}, [9]={ - name="Flags", - type="ImGuiListClipperFlags"}}, + name="Ctx", + type="ImGuiContext*"}, + [10]={ + name="TempData", + type="void*"}}, ImGuiListClipperData={ [1]={ name="ListClipper", @@ -8333,67 +8366,70 @@ local t={ name="SelectableTextAlign", type="ImVec2"}, [54]={ - name="SeparatorTextBorderSize", + name="SeparatorSize", type="float"}, [55]={ + name="SeparatorTextBorderSize", + type="float"}, + [56]={ name="SeparatorTextAlign", type="ImVec2"}, - [56]={ + [57]={ name="SeparatorTextPadding", type="ImVec2"}, - [57]={ + [58]={ name="DisplayWindowPadding", type="ImVec2"}, - [58]={ + [59]={ name="DisplaySafeAreaPadding", type="ImVec2"}, - [59]={ + [60]={ name="DockingNodeHasCloseButton", type="bool"}, - [60]={ + [61]={ name="DockingSeparatorSize", type="float"}, - [61]={ + [62]={ name="MouseCursorScale", type="float"}, - [62]={ + [63]={ name="AntiAliasedLines", type="bool"}, - [63]={ + [64]={ name="AntiAliasedLinesUseTex", type="bool"}, - [64]={ + [65]={ name="AntiAliasedFill", type="bool"}, - [65]={ + [66]={ name="CurveTessellationTol", type="float"}, - [66]={ + [67]={ name="CircleTessellationMaxError", type="float"}, - [67]={ + [68]={ name="Colors[ImGuiCol_COUNT]", size=62, type="ImVec4"}, - [68]={ + [69]={ name="HoverStationaryDelay", type="float"}, - [69]={ + [70]={ name="HoverDelayShort", type="float"}, - [70]={ + [71]={ name="HoverDelayNormal", type="float"}, - [71]={ + [72]={ name="HoverFlagsForTooltipMouse", type="ImGuiHoveredFlags"}, - [72]={ + [73]={ name="HoverFlagsForTooltipNav", type="ImGuiHoveredFlags"}, - [73]={ + [74]={ name="_MainScale", type="float"}, - [74]={ + [75]={ name="_NextFrameFontSizeBase", type="float"}}, ImGuiStyleMod={ @@ -8810,111 +8846,114 @@ local t={ name="HeldHeaderColumn", type="ImGuiTableColumnIdx"}, [78]={ - name="ReorderColumn", + name="LastHeldHeaderColumn", type="ImGuiTableColumnIdx"}, [79]={ - name="ReorderColumnDir", + name="ReorderColumn", type="ImGuiTableColumnIdx"}, [80]={ - name="LeftMostEnabledColumn", + name="ReorderColumnDstOrder", type="ImGuiTableColumnIdx"}, [81]={ - name="RightMostEnabledColumn", + name="LeftMostEnabledColumn", type="ImGuiTableColumnIdx"}, [82]={ - name="LeftMostStretchedColumn", + name="RightMostEnabledColumn", type="ImGuiTableColumnIdx"}, [83]={ - name="RightMostStretchedColumn", + name="LeftMostStretchedColumn", type="ImGuiTableColumnIdx"}, [84]={ - name="ContextPopupColumn", + name="RightMostStretchedColumn", type="ImGuiTableColumnIdx"}, [85]={ - name="FreezeRowsRequest", + name="ContextPopupColumn", type="ImGuiTableColumnIdx"}, [86]={ - name="FreezeRowsCount", + name="FreezeRowsRequest", type="ImGuiTableColumnIdx"}, [87]={ - name="FreezeColumnsRequest", + name="FreezeRowsCount", type="ImGuiTableColumnIdx"}, [88]={ - name="FreezeColumnsCount", + name="FreezeColumnsRequest", type="ImGuiTableColumnIdx"}, [89]={ - name="RowCellDataCurrent", + name="FreezeColumnsCount", type="ImGuiTableColumnIdx"}, [90]={ + name="RowCellDataCurrent", + type="ImGuiTableColumnIdx"}, + [91]={ name="DummyDrawChannel", type="ImGuiTableDrawChannelIdx"}, - [91]={ + [92]={ name="Bg2DrawChannelCurrent", type="ImGuiTableDrawChannelIdx"}, - [92]={ + [93]={ name="Bg2DrawChannelUnfrozen", type="ImGuiTableDrawChannelIdx"}, - [93]={ + [94]={ name="NavLayer", type="ImS8"}, - [94]={ + [95]={ name="IsLayoutLocked", type="bool"}, - [95]={ + [96]={ name="IsInsideRow", type="bool"}, - [96]={ + [97]={ name="IsInitializing", type="bool"}, - [97]={ + [98]={ name="IsSortSpecsDirty", type="bool"}, - [98]={ + [99]={ name="IsUsingHeaders", type="bool"}, - [99]={ + [100]={ name="IsContextPopupOpen", type="bool"}, - [100]={ + [101]={ name="DisableDefaultContextMenu", type="bool"}, - [101]={ + [102]={ name="IsSettingsRequestLoad", type="bool"}, - [102]={ + [103]={ name="IsSettingsDirty", type="bool"}, - [103]={ + [104]={ name="IsDefaultDisplayOrder", type="bool"}, - [104]={ + [105]={ name="IsResetAllRequest", type="bool"}, - [105]={ + [106]={ name="IsResetDisplayOrderRequest", type="bool"}, - [106]={ + [107]={ name="IsUnfrozenRows", type="bool"}, - [107]={ + [108]={ name="IsDefaultSizingPolicy", type="bool"}, - [108]={ + [109]={ name="IsActiveIdAliveBeforeTable", type="bool"}, - [109]={ + [110]={ name="IsActiveIdInTable", type="bool"}, - [110]={ + [111]={ name="HasScrollbarYCurr", type="bool"}, - [111]={ + [112]={ name="HasScrollbarYPrev", type="bool"}, - [112]={ + [113]={ name="MemoryCompacted", type="bool"}, - [113]={ + [114]={ name="HostSkipItems", type="bool"}}, ImGuiTableCellData={ @@ -9392,9 +9431,9 @@ local t={ name="PlatformMonitor", type="short"}, [13]={ - name="BgFgDrawListsLastFrame[2]", + name="BgFgDrawListsLastTimeActive[2]", size=2, - type="int"}, + type="float"}, [14]={ name="BgFgDrawLists[2]", size=2, diff --git a/generator/output/typedefs_dict.json b/generator/output/typedefs_dict.json index 990481b..627adf8 100644 --- a/generator/output/typedefs_dict.json +++ b/generator/output/typedefs_dict.json @@ -57,6 +57,7 @@ "ImGuiDebugAllocInfo": "struct ImGuiDebugAllocInfo", "ImGuiDebugItemPathQuery": "struct ImGuiDebugItemPathQuery", "ImGuiDebugLogFlags": "int", + "ImGuiDemoMarkerCallback": "void (*)(const char* file, int line, const char* section);", "ImGuiDockContext": "struct ImGuiDockContext", "ImGuiDockNode": "struct ImGuiDockNode", "ImGuiDockNodeFlags": "int", diff --git a/generator/output/typedefs_dict.lua b/generator/output/typedefs_dict.lua index dc336bc..2275094 100644 --- a/generator/output/typedefs_dict.lua +++ b/generator/output/typedefs_dict.lua @@ -57,6 +57,7 @@ local t={ ImGuiDebugAllocInfo="struct ImGuiDebugAllocInfo", ImGuiDebugItemPathQuery="struct ImGuiDebugItemPathQuery", ImGuiDebugLogFlags="int", + ImGuiDemoMarkerCallback="void (*)(const char* file, int line, const char* section);", ImGuiDockContext="struct ImGuiDockContext", ImGuiDockNode="struct ImGuiDockNode", ImGuiDockNodeFlags="int", diff --git a/imgui b/imgui index 2a1b69f..f5f6ca0 160000 --- a/imgui +++ b/imgui @@ -1 +1 @@ -Subproject commit 2a1b69f05748ad909f03acf4533447cac1331611 +Subproject commit f5f6ca07be7ce0ea9eed6c04d55833bac3f6b50b