mirror of
https://github.com/cimgui/cimgui.git
synced 2026-07-30 08:27:46 +00:00
Compare commits
40 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4e8fcc1367 | ||
|
|
cd61f1ae57 | ||
|
|
053280dfff | ||
|
|
8aaa4b624e | ||
|
|
9bffa7632f | ||
|
|
e2c1d90128 | ||
|
|
64fcbf194b | ||
|
|
fced8c3451 | ||
|
|
7388e030e8 | ||
|
|
d298666861 | ||
|
|
bbddc623b5 | ||
|
|
07fde25e7a | ||
|
|
1261b23193 | ||
|
|
650a427069 | ||
|
|
d24c440621 | ||
|
|
e90e027c82 | ||
|
|
1e3cfe7157 | ||
|
|
0313c558fc | ||
|
|
ad70f13873 | ||
|
|
a444aa6c50 | ||
|
|
fab34e3855 | ||
|
|
467262ef29 | ||
|
|
d3f0c2f4a7 | ||
|
|
0e533fd0b7 | ||
|
|
715802490e | ||
|
|
8de229087f | ||
|
|
e41d6fb1e8 | ||
|
|
c0c044e22f | ||
|
|
2cb5b7d19b | ||
|
|
335ef09f52 | ||
|
|
ee8fbaaff4 | ||
|
|
1a15dc7bcd | ||
|
|
b6563e1b11 | ||
|
|
2a8012424d | ||
|
|
77f726c6ca | ||
|
|
99f8065703 | ||
|
|
b801b08eee | ||
|
|
a890b9f594 | ||
|
|
c56d1668b1 | ||
|
|
9dd992c22b |
12
README.md
12
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)
|
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:
|
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.9 of Dear ImGui with internal api]
|
||||||
* only functions, structs and enums from imgui.h (an optionally imgui_internal.h) are wrapped.
|
* 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.
|
* 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.
|
* 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.
|
||||||
@@ -41,7 +41,7 @@ Notes:
|
|||||||
* you will need LuaJIT (https://github.com/LuaJIT/LuaJIT.git better 2.1 branch) or precompiled for linux/macOS/windows in https://luapower.com/luajit/download
|
* you will need LuaJIT (https://github.com/LuaJIT/LuaJIT.git better 2.1 branch) or precompiled for linux/macOS/windows in https://luapower.com/luajit/download
|
||||||
* you need to use also a C++ compiler for doing preprocessing: gcc (In windows MinGW-W64-builds for example), clang or cl (MSVC). (this repo was done with gcc)
|
* you need to use also a C++ compiler for doing preprocessing: gcc (In windows MinGW-W64-builds for example), clang or cl (MSVC). (this repo was done with gcc)
|
||||||
* update `imgui` folder to the version you desire.
|
* update `imgui` folder to the version you desire.
|
||||||
* edit `generator/generator.bat` on windows, or `generator/generator.sh` on linux, to choose between gcc, clang, or cl and to choose desired backends and whether imgui_internal is generated or not, comments are generated or not and if constructors are generated also with versions performing just initialization of structs provided by yourself (_Construct is added to the constructor names)
|
* edit `generator/generator.bat` on windows, or `generator/generator.sh` on linux, to choose between gcc, clang, or cl and to choose desired backends and whether imgui_internal is generated or not, comments are generated or not and if constructors are generated also with versions performing just initialization of structs provided by yourself (uses IM_PLACEMENT_NEW and _Construct is added to the constructor names)
|
||||||
* the defaults of generator are gcc as compiler, imgui_internal included and sdl, glfw, vulkan, opengl2 and opengl3 as backends.
|
* the defaults of generator are gcc as compiler, imgui_internal included and sdl, glfw, vulkan, opengl2 and opengl3 as backends.
|
||||||
* edit config_generator.lua for adding includes needed by your chosen backends (vulkan needs that).
|
* edit config_generator.lua for adding includes needed by your chosen backends (vulkan needs that).
|
||||||
* Run generator.bat or generator.sh with gcc, clang or cl and LuaJIT on your PATH.
|
* Run generator.bat or generator.sh with gcc, clang or cl and LuaJIT on your PATH.
|
||||||
@@ -70,7 +70,7 @@ Notes:
|
|||||||
* manual : will be true if this function is hand-written (not generated)
|
* manual : will be true if this function is hand-written (not generated)
|
||||||
* skipped : will be true if this function is not generated (and not hand-written)
|
* skipped : will be true if this function is not generated (and not hand-written)
|
||||||
* isvararg : is set if some argument is a vararg
|
* isvararg : is set if some argument is a vararg
|
||||||
* constructor : is set if the function is a constructor for a class.
|
* constructor : is set if the function is a constructor for a class. (another destructor function with _destroy postfix will be created)
|
||||||
* destructor : is set if the function is a destructor for a class but not just a default destructor.
|
* destructor : is set if the function is a destructor for a class but not just a default destructor.
|
||||||
* realdestructor : is set if the function is a destructor for a class
|
* realdestructor : is set if the function is a destructor for a class
|
||||||
* templated : is set if the function belongs to a templated class (ImVector)
|
* templated : is set if the function belongs to a templated class (ImVector)
|
||||||
@@ -106,10 +106,14 @@ Notes:
|
|||||||
# example bindings based on cimgui
|
# example bindings based on cimgui
|
||||||
|
|
||||||
* [LuaJIT-ImGui](https://github.com/sonoro1234/LuaJIT-ImGui)
|
* [LuaJIT-ImGui](https://github.com/sonoro1234/LuaJIT-ImGui)
|
||||||
|
* [cimgui-go](https://github.com/AllenDang/cimgui-go)
|
||||||
|
* [Hexa.NET.ImGui](https://github.com/HexaEngine/Hexa.NET.ImGui)
|
||||||
|
* [dear-imgui-rs](https://github.com/Latias94/dear-imgui-rs)
|
||||||
|
* [CImGui.jl](https://github.com/Gnimuc/CImGui.jl)
|
||||||
* [ImGui.NET](https://github.com/mellinoe/ImGui.NET)
|
* [ImGui.NET](https://github.com/mellinoe/ImGui.NET)
|
||||||
|
* [Zig-ImGui](https://github.com/SpexGuy/Zig-ImGui)
|
||||||
* [nimgl/imgui](https://github.com/nimgl/imgui)
|
* [nimgl/imgui](https://github.com/nimgl/imgui)
|
||||||
* [kotlin-imgui](https://github.com/Dominaezzz/kotlin-imgui)
|
* [kotlin-imgui](https://github.com/Dominaezzz/kotlin-imgui)
|
||||||
* [CImGui.jl](https://github.com/Gnimuc/CImGui.jl)
|
|
||||||
* [odin-imgui](https://github.com/ThisDrunkDane/odin-imgui)
|
* [odin-imgui](https://github.com/ThisDrunkDane/odin-imgui)
|
||||||
* [DerelictImgui](https://github.com/Extrawurst/DerelictImgui)
|
* [DerelictImgui](https://github.com/Extrawurst/DerelictImgui)
|
||||||
* [BindBC-CimGui](https://github.com/MrcSnm/bindbc-cimgui)
|
* [BindBC-CimGui](https://github.com/MrcSnm/bindbc-cimgui)
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//this must be equal to that in imgui_impl_vulkan.h
|
//this must be equal to that in imgui_impl_vulkan.h
|
||||||
#define IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE (1) // Minimum per atlas
|
//#define IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE (1) // Minimum per atlas
|
||||||
|
|
||||||
#define CIMGUI_DEFINE_ENUMS_AND_STRUCTS
|
#define CIMGUI_DEFINE_ENUMS_AND_STRUCTS
|
||||||
#include <cimgui.h>
|
#include <cimgui.h>
|
||||||
@@ -214,7 +214,8 @@ static void SetupVulkan(const char** extensions, uint32_t extensions_count)
|
|||||||
{
|
{
|
||||||
VkDescriptorPoolSize pool_sizes[] =
|
VkDescriptorPoolSize pool_sizes[] =
|
||||||
{
|
{
|
||||||
{ VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE },
|
{ VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE, IMGUI_IMPL_VULKAN_MINIMUM_SAMPLED_IMAGE_POOL_SIZE },
|
||||||
|
{ VK_DESCRIPTOR_TYPE_SAMPLER, IMGUI_IMPL_VULKAN_MINIMUM_SAMPLER_POOL_SIZE },
|
||||||
};
|
};
|
||||||
VkDescriptorPoolCreateInfo pool_info = {};
|
VkDescriptorPoolCreateInfo pool_info = {};
|
||||||
pool_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO;
|
pool_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO;
|
||||||
@@ -281,9 +282,10 @@ static void CleanupVulkan()
|
|||||||
vkDestroyInstance(g_Instance, g_Allocator);
|
vkDestroyInstance(g_Instance, g_Allocator);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void CleanupVulkanWindow()
|
static void CleanupVulkanWindow(ImGui_ImplVulkanH_Window* wd)
|
||||||
{
|
{
|
||||||
ImGui_ImplVulkanH_DestroyWindow(g_Instance, g_Device, &g_MainWindowData, g_Allocator);
|
ImGui_ImplVulkanH_DestroyWindow(g_Instance, g_Device, wd, g_Allocator);
|
||||||
|
vkDestroySurfaceKHR(g_Instance, wd->Surface, g_Allocator);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void FrameRender(ImGui_ImplVulkanH_Window* wd, ImDrawData* draw_data)
|
static void FrameRender(ImGui_ImplVulkanH_Window* wd, ImDrawData* draw_data)
|
||||||
@@ -620,7 +622,7 @@ int main(int argc, char* argv[])
|
|||||||
ImGui_ImplSDL3_Shutdown();
|
ImGui_ImplSDL3_Shutdown();
|
||||||
igDestroyContext(NULL);
|
igDestroyContext(NULL);
|
||||||
|
|
||||||
CleanupVulkanWindow();
|
CleanupVulkanWindow(&g_MainWindowData);
|
||||||
CleanupVulkan();
|
CleanupVulkan();
|
||||||
|
|
||||||
SDL_DestroyWindow(window);
|
SDL_DestroyWindow(window);
|
||||||
|
|||||||
36
backend_test/example_sdl_renderer3/CMakeLists.txt
Normal file
36
backend_test/example_sdl_renderer3/CMakeLists.txt
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.30)
|
||||||
|
project(cimgui_sdlrenderer3 LANGUAGES C CXX)
|
||||||
|
|
||||||
|
set(CMAKE_C_STANDARD 11)
|
||||||
|
|
||||||
|
include(FetchContent)
|
||||||
|
|
||||||
|
FetchContent_Declare(
|
||||||
|
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)
|
||||||
|
FetchContent_MakeAvailable(sdl3)
|
||||||
|
|
||||||
|
include(../cmake/GenerateCimguiBindings.cmake)
|
||||||
|
|
||||||
|
set(inclulist ${sdl3_SOURCE_DIR}/include)
|
||||||
|
GenerateCimguiBindings(cimgui_with_backend sdl3 sdlrenderer3 inclulist)
|
||||||
|
target_link_libraries(cimgui_with_backend PRIVATE SDL3::SDL3)
|
||||||
|
|
||||||
|
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_SDLRENDERER3=1
|
||||||
|
)
|
||||||
16
backend_test/example_sdl_renderer3/README.md
Normal file
16
backend_test/example_sdl_renderer3/README.md
Normal file
@@ -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`
|
||||||
|
|
||||||
158
backend_test/example_sdl_renderer3/main.c
Normal file
158
backend_test/example_sdl_renderer3/main.c
Normal file
@@ -0,0 +1,158 @@
|
|||||||
|
#include <assert.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include <SDL3/SDL.h>
|
||||||
|
|
||||||
|
#include <cimgui.h>
|
||||||
|
#include <cimgui_impl.h>
|
||||||
|
|
||||||
|
#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;
|
||||||
|
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
|
||||||
|
igCreateContext(NULL);
|
||||||
|
ImGuiIO* io = igGetIO(); (void)io;
|
||||||
|
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);
|
||||||
|
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);
|
||||||
|
ImGui_ImplSDLRenderer3_Init(renderer);
|
||||||
|
|
||||||
|
// 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 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();
|
||||||
|
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);
|
||||||
|
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);
|
||||||
|
SDL_DestroyWindow(window);
|
||||||
|
SDL_Quit();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//this must be equal to that in imgui_impl_vulkan.h
|
//this must be equal to that in imgui_impl_vulkan.h
|
||||||
#define IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE (1) // Minimum per atlas
|
//#define IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE (1) // Minimum per atlas
|
||||||
|
|
||||||
#define CIMGUI_DEFINE_ENUMS_AND_STRUCTS
|
#define CIMGUI_DEFINE_ENUMS_AND_STRUCTS
|
||||||
#include "cimgui.h"
|
#include "cimgui.h"
|
||||||
@@ -218,7 +218,8 @@ static void SetupVulkan(const char** extensions, uint32_t extensions_count)
|
|||||||
{
|
{
|
||||||
VkDescriptorPoolSize pool_sizes[] =
|
VkDescriptorPoolSize pool_sizes[] =
|
||||||
{
|
{
|
||||||
{ VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE },
|
{ VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE, IMGUI_IMPL_VULKAN_MINIMUM_SAMPLED_IMAGE_POOL_SIZE },
|
||||||
|
{ VK_DESCRIPTOR_TYPE_SAMPLER, IMGUI_IMPL_VULKAN_MINIMUM_SAMPLER_POOL_SIZE },
|
||||||
};
|
};
|
||||||
VkDescriptorPoolCreateInfo pool_info = {};
|
VkDescriptorPoolCreateInfo pool_info = {};
|
||||||
pool_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO;
|
pool_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO;
|
||||||
@@ -285,9 +286,10 @@ static void CleanupVulkan()
|
|||||||
vkDestroyInstance(g_Instance, g_Allocator);
|
vkDestroyInstance(g_Instance, g_Allocator);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void CleanupVulkanWindow()
|
static void CleanupVulkanWindow(ImGui_ImplVulkanH_Window* wd)
|
||||||
{
|
{
|
||||||
ImGui_ImplVulkanH_DestroyWindow(g_Instance, g_Device, &g_MainWindowData, g_Allocator);
|
ImGui_ImplVulkanH_DestroyWindow(g_Instance, g_Device, wd, g_Allocator);
|
||||||
|
vkDestroySurfaceKHR(g_Instance, wd->Surface, g_Allocator);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void FrameRender(ImGui_ImplVulkanH_Window* wd, ImDrawData* draw_data)
|
static void FrameRender(ImGui_ImplVulkanH_Window* wd, ImDrawData* draw_data)
|
||||||
@@ -615,7 +617,7 @@ int main(int argc, char* argv[])
|
|||||||
ImGui_ImplSDL2_Shutdown();
|
ImGui_ImplSDL2_Shutdown();
|
||||||
igDestroyContext(NULL);
|
igDestroyContext(NULL);
|
||||||
|
|
||||||
CleanupVulkanWindow();
|
CleanupVulkanWindow(&g_MainWindowData);
|
||||||
CleanupVulkan();
|
CleanupVulkan();
|
||||||
|
|
||||||
SDL_DestroyWindow(window);
|
SDL_DestroyWindow(window);
|
||||||
|
|||||||
798
cimgui.cpp
798
cimgui.cpp
File diff suppressed because it is too large
Load Diff
@@ -30,8 +30,20 @@ CIMGUI_API void ImGui_ImplGlfw_WindowFocusCallback(GLFWwindow* window,int focuse
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
#ifdef CIMGUI_USE_OPENGL3
|
#ifdef CIMGUI_USE_OPENGL3
|
||||||
|
#ifdef CIMGUI_DEFINE_ENUMS_AND_STRUCTS
|
||||||
|
|
||||||
|
typedef struct ImGui_ImplOpenGL3_RenderState ImGui_ImplOpenGL3_RenderState;
|
||||||
|
struct ImGui_ImplOpenGL3_RenderState
|
||||||
|
{
|
||||||
|
bool UseBindSampler;
|
||||||
|
bool UseTexParameterFilter;
|
||||||
|
unsigned int CurrentSampler;
|
||||||
|
unsigned int CurrentTexParameterFilter;
|
||||||
|
};
|
||||||
|
#endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS
|
||||||
CIMGUI_API bool ImGui_ImplOpenGL3_CreateDeviceObjects(void);
|
CIMGUI_API bool ImGui_ImplOpenGL3_CreateDeviceObjects(void);
|
||||||
CIMGUI_API void ImGui_ImplOpenGL3_DestroyDeviceObjects(void);
|
CIMGUI_API void ImGui_ImplOpenGL3_DestroyDeviceObjects(void);
|
||||||
|
CIMGUI_API ImGui_ImplOpenGL3_RenderState* ImGui_ImplOpenGL3_GetRenderState(void);
|
||||||
CIMGUI_API bool ImGui_ImplOpenGL3_Init(const char* glsl_version);
|
CIMGUI_API bool ImGui_ImplOpenGL3_Init(const char* glsl_version);
|
||||||
CIMGUI_API void ImGui_ImplOpenGL3_NewFrame(void);
|
CIMGUI_API void ImGui_ImplOpenGL3_NewFrame(void);
|
||||||
CIMGUI_API void ImGui_ImplOpenGL3_RenderDrawData(ImDrawData* draw_data);
|
CIMGUI_API void ImGui_ImplOpenGL3_RenderDrawData(ImDrawData* draw_data);
|
||||||
@@ -60,6 +72,7 @@ struct SDL_Renderer;
|
|||||||
struct _SDL_GameController;
|
struct _SDL_GameController;
|
||||||
typedef union SDL_Event SDL_Event;
|
typedef union SDL_Event SDL_Event;
|
||||||
typedef enum { ImGui_ImplSDL2_GamepadMode_AutoFirst, ImGui_ImplSDL2_GamepadMode_AutoAll, ImGui_ImplSDL2_GamepadMode_Manual }ImGui_ImplSDL2_GamepadMode;
|
typedef enum { ImGui_ImplSDL2_GamepadMode_AutoFirst, ImGui_ImplSDL2_GamepadMode_AutoAll, ImGui_ImplSDL2_GamepadMode_Manual }ImGui_ImplSDL2_GamepadMode;
|
||||||
|
typedef enum { ImGui_ImplSDL2_MouseCaptureMode_Enabled, ImGui_ImplSDL2_MouseCaptureMode_EnabledAfterDrag, ImGui_ImplSDL2_MouseCaptureMode_Disabled }ImGui_ImplSDL2_MouseCaptureMode;
|
||||||
#endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS
|
#endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS
|
||||||
CIMGUI_API float ImGui_ImplSDL2_GetContentScaleForDisplay(int display_index);
|
CIMGUI_API float ImGui_ImplSDL2_GetContentScaleForDisplay(int display_index);
|
||||||
CIMGUI_API float ImGui_ImplSDL2_GetContentScaleForWindow(SDL_Window* window);
|
CIMGUI_API float ImGui_ImplSDL2_GetContentScaleForWindow(SDL_Window* window);
|
||||||
@@ -72,6 +85,7 @@ CIMGUI_API bool ImGui_ImplSDL2_InitForVulkan(SDL_Window* window);
|
|||||||
CIMGUI_API void ImGui_ImplSDL2_NewFrame(void);
|
CIMGUI_API void ImGui_ImplSDL2_NewFrame(void);
|
||||||
CIMGUI_API bool ImGui_ImplSDL2_ProcessEvent(const SDL_Event* event);
|
CIMGUI_API bool ImGui_ImplSDL2_ProcessEvent(const SDL_Event* event);
|
||||||
CIMGUI_API void ImGui_ImplSDL2_SetGamepadMode(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array,int manual_gamepads_count);
|
CIMGUI_API void ImGui_ImplSDL2_SetGamepadMode(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array,int manual_gamepads_count);
|
||||||
|
CIMGUI_API void ImGui_ImplSDL2_SetMouseCaptureMode(ImGui_ImplSDL2_MouseCaptureMode mode);
|
||||||
CIMGUI_API void ImGui_ImplSDL2_Shutdown(void);
|
CIMGUI_API void ImGui_ImplSDL2_Shutdown(void);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
@@ -86,6 +100,7 @@ struct SDL_Renderer;
|
|||||||
struct SDL_Gamepad;
|
struct SDL_Gamepad;
|
||||||
typedef union SDL_Event SDL_Event;
|
typedef union SDL_Event SDL_Event;
|
||||||
typedef enum { ImGui_ImplSDL3_GamepadMode_AutoFirst, ImGui_ImplSDL3_GamepadMode_AutoAll, ImGui_ImplSDL3_GamepadMode_Manual }ImGui_ImplSDL3_GamepadMode;
|
typedef enum { ImGui_ImplSDL3_GamepadMode_AutoFirst, ImGui_ImplSDL3_GamepadMode_AutoAll, ImGui_ImplSDL3_GamepadMode_Manual }ImGui_ImplSDL3_GamepadMode;
|
||||||
|
typedef enum { ImGui_ImplSDL3_MouseCaptureMode_Enabled, ImGui_ImplSDL3_MouseCaptureMode_EnabledAfterDrag, ImGui_ImplSDL3_MouseCaptureMode_Disabled }ImGui_ImplSDL3_MouseCaptureMode;
|
||||||
#endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS
|
#endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS
|
||||||
CIMGUI_API bool ImGui_ImplSDL3_InitForD3D(SDL_Window* window);
|
CIMGUI_API bool ImGui_ImplSDL3_InitForD3D(SDL_Window* window);
|
||||||
CIMGUI_API bool ImGui_ImplSDL3_InitForMetal(SDL_Window* window);
|
CIMGUI_API bool ImGui_ImplSDL3_InitForMetal(SDL_Window* window);
|
||||||
@@ -97,6 +112,7 @@ CIMGUI_API bool ImGui_ImplSDL3_InitForVulkan(SDL_Window* window);
|
|||||||
CIMGUI_API void ImGui_ImplSDL3_NewFrame(void);
|
CIMGUI_API void ImGui_ImplSDL3_NewFrame(void);
|
||||||
CIMGUI_API bool ImGui_ImplSDL3_ProcessEvent(const SDL_Event* event);
|
CIMGUI_API bool ImGui_ImplSDL3_ProcessEvent(const SDL_Event* event);
|
||||||
CIMGUI_API void ImGui_ImplSDL3_SetGamepadMode(ImGui_ImplSDL3_GamepadMode mode,SDL_Gamepad** manual_gamepads_array,int manual_gamepads_count);
|
CIMGUI_API void ImGui_ImplSDL3_SetGamepadMode(ImGui_ImplSDL3_GamepadMode mode,SDL_Gamepad** manual_gamepads_array,int manual_gamepads_count);
|
||||||
|
CIMGUI_API void ImGui_ImplSDL3_SetMouseCaptureMode(ImGui_ImplSDL3_MouseCaptureMode mode);
|
||||||
CIMGUI_API void ImGui_ImplSDL3_Shutdown(void);
|
CIMGUI_API void ImGui_ImplSDL3_Shutdown(void);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
@@ -106,11 +122,14 @@ CIMGUI_API void ImGui_ImplSDL3_Shutdown(void);
|
|||||||
typedef struct ImGui_ImplVulkanH_Frame ImGui_ImplVulkanH_Frame;
|
typedef struct ImGui_ImplVulkanH_Frame ImGui_ImplVulkanH_Frame;
|
||||||
typedef struct ImGui_ImplVulkanH_Window ImGui_ImplVulkanH_Window;
|
typedef struct ImGui_ImplVulkanH_Window ImGui_ImplVulkanH_Window;
|
||||||
typedef struct ImGui_ImplVulkan_PipelineInfo ImGui_ImplVulkan_PipelineInfo;
|
typedef struct ImGui_ImplVulkan_PipelineInfo ImGui_ImplVulkan_PipelineInfo;
|
||||||
|
typedef struct ImVector_VkDynamicState {int Size;int Capacity;VkDynamicState* Data;} ImVector_VkDynamicState;
|
||||||
|
|
||||||
struct ImGui_ImplVulkan_PipelineInfo
|
struct ImGui_ImplVulkan_PipelineInfo
|
||||||
{
|
{
|
||||||
VkRenderPass RenderPass;
|
VkRenderPass RenderPass;
|
||||||
uint32_t Subpass;
|
uint32_t Subpass;
|
||||||
VkSampleCountFlagBits MSAASamples;
|
VkSampleCountFlagBits MSAASamples;
|
||||||
|
ImVector_VkDynamicState ExtraDynamicStates;
|
||||||
VkPipelineRenderingCreateInfoKHR PipelineRenderingCreateInfo;
|
VkPipelineRenderingCreateInfoKHR PipelineRenderingCreateInfo;
|
||||||
};
|
};
|
||||||
typedef struct ImGui_ImplVulkan_InitInfo ImGui_ImplVulkan_InitInfo;
|
typedef struct ImGui_ImplVulkan_InitInfo ImGui_ImplVulkan_InitInfo;
|
||||||
@@ -165,17 +184,17 @@ typedef struct ImVector_ImGui_ImplVulkanH_FrameSemaphores {int Size;int Capacity
|
|||||||
|
|
||||||
struct ImGui_ImplVulkanH_Window
|
struct ImGui_ImplVulkanH_Window
|
||||||
{
|
{
|
||||||
int Width;
|
bool UseDynamicRendering;
|
||||||
int Height;
|
|
||||||
VkSwapchainKHR Swapchain;
|
|
||||||
VkSurfaceKHR Surface;
|
VkSurfaceKHR Surface;
|
||||||
VkSurfaceFormatKHR SurfaceFormat;
|
VkSurfaceFormatKHR SurfaceFormat;
|
||||||
VkPresentModeKHR PresentMode;
|
VkPresentModeKHR PresentMode;
|
||||||
|
VkAttachmentDescription AttachmentDesc;
|
||||||
|
VkClearValue ClearValue;
|
||||||
|
int Width;
|
||||||
|
int Height;
|
||||||
|
VkSwapchainKHR Swapchain;
|
||||||
VkRenderPass RenderPass;
|
VkRenderPass RenderPass;
|
||||||
VkPipeline Pipeline;
|
VkPipeline Pipeline;
|
||||||
bool UseDynamicRendering;
|
|
||||||
bool ClearEnable;
|
|
||||||
VkClearValue ClearValue;
|
|
||||||
uint32_t FrameIndex;
|
uint32_t FrameIndex;
|
||||||
uint32_t ImageCount;
|
uint32_t ImageCount;
|
||||||
uint32_t SemaphoreCount;
|
uint32_t SemaphoreCount;
|
||||||
@@ -187,7 +206,10 @@ struct ImGui_ImplVulkanH_Window
|
|||||||
#ifndef CIMGUI_DEFINE_ENUMS_AND_STRUCTS
|
#ifndef CIMGUI_DEFINE_ENUMS_AND_STRUCTS
|
||||||
typedef ImVector<ImGui_ImplVulkanH_Frame> ImVector_ImGui_ImplVulkanH_Frame;
|
typedef ImVector<ImGui_ImplVulkanH_Frame> ImVector_ImGui_ImplVulkanH_Frame;
|
||||||
typedef ImVector<ImGui_ImplVulkanH_FrameSemaphores> ImVector_ImGui_ImplVulkanH_FrameSemaphores;
|
typedef ImVector<ImGui_ImplVulkanH_FrameSemaphores> ImVector_ImGui_ImplVulkanH_FrameSemaphores;
|
||||||
|
typedef ImVector<VkDynamicState> ImVector_VkDynamicState;
|
||||||
#endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS
|
#endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS
|
||||||
|
#define IMGUI_IMPL_VULKAN_MINIMUM_SAMPLED_IMAGE_POOL_SIZE (8)
|
||||||
|
#define IMGUI_IMPL_VULKAN_MINIMUM_SAMPLER_POOL_SIZE (2)
|
||||||
CIMGUI_API void ImGui_ImplVulkanH_CreateOrResizeWindow(VkInstance instance,VkPhysicalDevice physical_device,VkDevice device,ImGui_ImplVulkanH_Window* wd,uint32_t queue_family,const VkAllocationCallbacks* allocator,int w,int h,uint32_t min_image_count,VkImageUsageFlags image_usage);
|
CIMGUI_API void ImGui_ImplVulkanH_CreateOrResizeWindow(VkInstance instance,VkPhysicalDevice physical_device,VkDevice device,ImGui_ImplVulkanH_Window* wd,uint32_t queue_family,const VkAllocationCallbacks* allocator,int w,int h,uint32_t min_image_count,VkImageUsageFlags image_usage);
|
||||||
CIMGUI_API void ImGui_ImplVulkanH_DestroyWindow(VkInstance instance,VkDevice device,ImGui_ImplVulkanH_Window* wd,const VkAllocationCallbacks* allocator);
|
CIMGUI_API void ImGui_ImplVulkanH_DestroyWindow(VkInstance instance,VkDevice device,ImGui_ImplVulkanH_Window* wd,const VkAllocationCallbacks* allocator);
|
||||||
CIMGUI_API int ImGui_ImplVulkanH_GetMinImageCountFromPresentMode(VkPresentModeKHR present_mode);
|
CIMGUI_API int ImGui_ImplVulkanH_GetMinImageCountFromPresentMode(VkPresentModeKHR present_mode);
|
||||||
@@ -196,7 +218,7 @@ CIMGUI_API VkPresentModeKHR ImGui_ImplVulkanH_SelectPresentMode(VkPhysicalDevice
|
|||||||
CIMGUI_API uint32_t ImGui_ImplVulkanH_SelectQueueFamilyIndex(VkPhysicalDevice physical_device);
|
CIMGUI_API uint32_t ImGui_ImplVulkanH_SelectQueueFamilyIndex(VkPhysicalDevice physical_device);
|
||||||
CIMGUI_API VkSurfaceFormatKHR ImGui_ImplVulkanH_SelectSurfaceFormat(VkPhysicalDevice physical_device,VkSurfaceKHR surface,const VkFormat* request_formats,int request_formats_count,VkColorSpaceKHR request_color_space);
|
CIMGUI_API VkSurfaceFormatKHR ImGui_ImplVulkanH_SelectSurfaceFormat(VkPhysicalDevice physical_device,VkSurfaceKHR surface,const VkFormat* request_formats,int request_formats_count,VkColorSpaceKHR request_color_space);
|
||||||
CIMGUI_API ImGui_ImplVulkanH_Window* ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window(void);
|
CIMGUI_API ImGui_ImplVulkanH_Window* ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window(void);
|
||||||
CIMGUI_API VkDescriptorSet ImGui_ImplVulkan_AddTexture(VkSampler sampler,VkImageView image_view,VkImageLayout image_layout);
|
CIMGUI_API VkDescriptorSet ImGui_ImplVulkan_AddTexture(VkImageView image_view,VkImageLayout image_layout);
|
||||||
CIMGUI_API void ImGui_ImplVulkan_CreateMainPipeline(const ImGui_ImplVulkan_PipelineInfo* info);
|
CIMGUI_API void ImGui_ImplVulkan_CreateMainPipeline(const ImGui_ImplVulkan_PipelineInfo* info);
|
||||||
CIMGUI_API bool ImGui_ImplVulkan_Init(ImGui_ImplVulkan_InitInfo* info);
|
CIMGUI_API bool ImGui_ImplVulkan_Init(ImGui_ImplVulkan_InitInfo* info);
|
||||||
CIMGUI_API bool ImGui_ImplVulkan_LoadFunctions(uint32_t api_version,PFN_vkVoidFunction(*loader_func)(const char* function_name,void* user_data),void* user_data);
|
CIMGUI_API bool ImGui_ImplVulkan_LoadFunctions(uint32_t api_version,PFN_vkVoidFunction(*loader_func)(const char* function_name,void* user_data),void* user_data);
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -39,10 +39,10 @@ if FREETYPE_GENERATION then
|
|||||||
end
|
end
|
||||||
|
|
||||||
if COMPILER == "gcc" or COMPILER == "clang" or COMPILER == "zig cc" then
|
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"
|
CTEST = COMPILER.." --version"
|
||||||
elseif COMPILER == "cl" then
|
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
|
CTEST = COMPILER
|
||||||
else
|
else
|
||||||
print("Working without compiler ")
|
print("Working without compiler ")
|
||||||
@@ -120,10 +120,13 @@ local save_data = cpp2ffi.save_data
|
|||||||
local copyfile = cpp2ffi.copyfile
|
local copyfile = cpp2ffi.copyfile
|
||||||
local serializeTableF = cpp2ffi.serializeTableF
|
local serializeTableF = cpp2ffi.serializeTableF
|
||||||
|
|
||||||
local function func_header_impl_generate(FP)
|
local function func_header_impl_generate(FP, defines)
|
||||||
|
|
||||||
local outtab = {}
|
local outtab = {}
|
||||||
|
--may be key sorting is not enough and declaration order needed
|
||||||
|
cpp2ffi.table_do_sorted(defines, function(k,v)
|
||||||
|
table.insert(outtab,"#define "..k.." "..v.."\n")
|
||||||
|
end)
|
||||||
-- for _,t in ipairs(FP.funcdefs) do
|
-- for _,t in ipairs(FP.funcdefs) do
|
||||||
-- if t.cimguiname then
|
-- if t.cimguiname then
|
||||||
-- local cimf = FP.defsT[t.cimguiname]
|
-- local cimf = FP.defsT[t.cimguiname]
|
||||||
@@ -286,6 +289,7 @@ local function cimgui_generation(parser)
|
|||||||
|
|
||||||
|
|
||||||
local tdt = parser:generate_templates()
|
local tdt = parser:generate_templates()
|
||||||
|
cpp2ffi.prtable("generate_templates",tdt)
|
||||||
local cstructsstr = outpre..tdt..outpost
|
local cstructsstr = outpre..tdt..outpost
|
||||||
|
|
||||||
if gdefines.IMGUI_HAS_DOCK then
|
if gdefines.IMGUI_HAS_DOCK then
|
||||||
@@ -379,16 +383,15 @@ end
|
|||||||
local function parseImGuiHeader(header,names)
|
local function parseImGuiHeader(header,names)
|
||||||
--prepare parser
|
--prepare parser
|
||||||
local parser = cpp2ffi.Parser()
|
local parser = cpp2ffi.Parser()
|
||||||
|
parser.modulename = "cimgui"
|
||||||
parser.getCname = function(stname,funcname,namespace)
|
parser.getCname = function(stname,funcname,namespace)
|
||||||
local pre = (stname == "") and (namespace and (namespace=="ImGui" and "ig" or namespace.."_") or "ig") or stname.."_"
|
local pre = (stname == "") and (namespace and (namespace=="ImGui" and "ig" or namespace.."_") or "ig") or stname.."_"
|
||||||
return pre..funcname
|
return pre..funcname
|
||||||
end
|
end
|
||||||
parser.cname_overloads = cimgui_overloads
|
parser.cname_overloads = cimgui_overloads
|
||||||
--parser.manuals = cimgui_manuals
|
|
||||||
parser:set_manuals(cimgui_manuals, "cimgui")
|
parser:set_manuals(cimgui_manuals, "cimgui")
|
||||||
parser.skipped = cimgui_skipped
|
parser.skipped = cimgui_skipped
|
||||||
parser.UDTs = {"ImVec2","ImVec4","ImColor","ImRect"}
|
--parser.UDTs = {"ImVec2","ImVec4","ImColor","ImRect"}
|
||||||
--parser.gen_template_typedef = gen_template_typedef --use auto
|
--parser.gen_template_typedef = gen_template_typedef --use auto
|
||||||
parser.COMMENTS_GENERATION = COMMENTS_GENERATION
|
parser.COMMENTS_GENERATION = COMMENTS_GENERATION
|
||||||
parser.CONSTRUCTORS_GENERATION = CONSTRUCTORS_GENERATION
|
parser.CONSTRUCTORS_GENERATION = CONSTRUCTORS_GENERATION
|
||||||
@@ -398,7 +401,7 @@ local function parseImGuiHeader(header,names)
|
|||||||
parser.custom_function_post = custom_function_post
|
parser.custom_function_post = custom_function_post
|
||||||
parser.header_text_insert = header_text_insert
|
parser.header_text_insert = header_text_insert
|
||||||
local defines = parser:take_lines(CPRE..header,names,COMPILER)
|
local defines = parser:take_lines(CPRE..header,names,COMPILER)
|
||||||
|
--cpp2ffi.prtable("defines",defines)
|
||||||
return parser
|
return parser
|
||||||
end
|
end
|
||||||
--generation
|
--generation
|
||||||
@@ -438,14 +441,8 @@ structs_and_enums_table.templated_structs = parser1.templated_structs
|
|||||||
structs_and_enums_table.typenames = parser1.typenames
|
structs_and_enums_table.typenames = parser1.typenames
|
||||||
structs_and_enums_table.templates_done = parser1.templates_done
|
structs_and_enums_table.templates_done = parser1.templates_done
|
||||||
--structs_and_enums_table.nonPOD_used = parser1.nP_used
|
--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 fundefs in definitions.lua for using in bindings
|
|
||||||
--DefsByStruct(pFP)
|
|
||||||
set_defines(parser1.defsT)
|
set_defines(parser1.defsT)
|
||||||
save_data("./output/definitions.lua",serializeTableF(parser1.defsT))
|
parser1:save_output()
|
||||||
|
|
||||||
--check every function has ov_cimguiname
|
--check every function has ov_cimguiname
|
||||||
-- for k,v in pairs(parser1.defsT) do
|
-- for k,v in pairs(parser1.defsT) do
|
||||||
@@ -463,7 +460,11 @@ if ff then
|
|||||||
else
|
else
|
||||||
backends_folder = IMGUI_PATH .. "/backends/"
|
backends_folder = IMGUI_PATH .. "/backends/"
|
||||||
end
|
end
|
||||||
|
local function getCname(stname,funcname, namespace)
|
||||||
|
if #stname == 0 then return funcname end --top level
|
||||||
|
local pre = stname.."_"
|
||||||
|
return pre..funcname
|
||||||
|
end
|
||||||
local parser2
|
local parser2
|
||||||
|
|
||||||
if #implementations > 0 then
|
if #implementations > 0 then
|
||||||
@@ -495,13 +496,15 @@ if #implementations > 0 then
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
parser2.cimgui_inherited = dofile([[./output/structs_and_enums.lua]])
|
parser2.cimgui_inherited = dofile([[./output/structs_and_enums.lua]])
|
||||||
|
parser2.getCname = getCname
|
||||||
local defines = parser2:take_lines(CPRE..extra_defines..extra_includes..source, {locati}, COMPILER)
|
local defines = parser2:take_lines(CPRE..extra_defines..extra_includes..source, {locati}, COMPILER)
|
||||||
|
|
||||||
local parser3 = cpp2ffi.Parser()
|
local parser3 = cpp2ffi.Parser()
|
||||||
|
parser3.getCname = getCname
|
||||||
parser3.cimgui_inherited = dofile([[./output/structs_and_enums.lua]])
|
parser3.cimgui_inherited = dofile([[./output/structs_and_enums.lua]])
|
||||||
parser3:take_lines(CPRE..extra_defines..extra_includes..source, {locati}, COMPILER)
|
local defines = parser3:take_lines(CPRE..extra_defines..extra_includes..source, {locati}, COMPILER)
|
||||||
parser3:do_parse()
|
parser3:do_parse()
|
||||||
local cfuncsstr = func_header_impl_generate(parser3)
|
local cfuncsstr = func_header_impl_generate(parser3, defines)
|
||||||
local cstructstr1,cstructstr2 = parser3.structs_and_enums[1], parser3.structs_and_enums[2]
|
local cstructstr1,cstructstr2 = parser3.structs_and_enums[1], parser3.structs_and_enums[2]
|
||||||
local cstru = cstructstr1 .. cstructstr2
|
local cstru = cstructstr1 .. cstructstr2
|
||||||
if cstru ~="" then
|
if cstru ~="" then
|
||||||
@@ -549,20 +552,9 @@ local function json_prepare(defs)
|
|||||||
end
|
end
|
||||||
---[[
|
---[[
|
||||||
local json = require"json"
|
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))
|
|
||||||
if parser2 then
|
if parser2 then
|
||||||
save_data("./output/impl_definitions.json",json.encode(json_prepare(parser2.defsT),{dict_on_empty={defaults=true}}))
|
save_data("./output/impl_definitions.json",json.encode(json_prepare(parser2.defsT),{dict_on_empty={defaults=true}}))
|
||||||
end
|
end
|
||||||
--]]
|
--]]
|
||||||
-------------------copy C files to repo root
|
|
||||||
copyfile("./output/cimgui.h", "../cimgui.h")
|
|
||||||
copyfile("./output/cimgui.cpp", "../cimgui.cpp")
|
|
||||||
os.remove("./output/cimgui.h")
|
|
||||||
os.remove("./output/cimgui.cpp")
|
|
||||||
print"all done!!"
|
print"all done!!"
|
||||||
|
|||||||
119
generator/output/constants.json
Normal file
119
generator/output/constants.json
Normal file
@@ -0,0 +1,119 @@
|
|||||||
|
{
|
||||||
|
"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_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_TABLE(...)": "do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventTable) 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_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.9\"",
|
||||||
|
"IMGUI_VERSION_NUM": "19290",
|
||||||
|
"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)<<IM_COL32_A_SHIFT) | ((ImU32)(B)<<IM_COL32_B_SHIFT) | ((ImU32)(G)<<IM_COL32_G_SHIFT) | ((ImU32)(R)<<IM_COL32_R_SHIFT))",
|
||||||
|
"IM_COL32_A_MASK": "0xFF000000",
|
||||||
|
"IM_COL32_A_SHIFT": "24",
|
||||||
|
"IM_COL32_BLACK": "IM_COL32(0,0,0,255)",
|
||||||
|
"IM_COL32_BLACK_TRANS": "IM_COL32(0,0,0,0)",
|
||||||
|
"IM_COL32_B_SHIFT": "16",
|
||||||
|
"IM_COL32_DISABLE": "IM_COL32(0,0,0,1)",
|
||||||
|
"IM_COL32_G_SHIFT": "8",
|
||||||
|
"IM_COL32_R_SHIFT": "0",
|
||||||
|
"IM_COL32_WHITE": "IM_COL32(255,255,255,255)",
|
||||||
|
"IM_COUNTOF(_ARR)": "((int)(sizeof(_ARR) / sizeof(*(_ARR))))",
|
||||||
|
"IM_DEBUG_BREAK()": "__asm__ volatile(\"int3;nop\")",
|
||||||
|
"IM_DRAWLIST_ARCFAST_SAMPLE_MAX": "IM_DRAWLIST_ARCFAST_TABLE_SIZE",
|
||||||
|
"IM_DRAWLIST_ARCFAST_TABLE_SIZE": "48",
|
||||||
|
"IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC(_RAD,_MAXERROR)": "ImClamp(IM_ROUNDUP_TO_EVEN((int)ImCeil(IM_PI / ImAcos(1 - ImMin((_MAXERROR), (_RAD)) / (_RAD)))), IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MIN, IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MAX)",
|
||||||
|
"IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC_ERROR(_N,_RAD)": "((1 - ImCos(IM_PI / ImMax((float)(_N), IM_PI))) / (_RAD))",
|
||||||
|
"IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC_R(_N,_MAXERROR)": "((_MAXERROR) / (1 - ImCos(IM_PI / ImMax((float)(_N), IM_PI))))",
|
||||||
|
"IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MAX": "512",
|
||||||
|
"IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MIN": "4",
|
||||||
|
"IM_DRAWLIST_TEX_LINES_WIDTH_MAX": "(32)",
|
||||||
|
"IM_F32_TO_INT8_SAT(_VAL)": "((int)(ImSaturate(_VAL) * 255.0f + 0.5f))",
|
||||||
|
"IM_F32_TO_INT8_UNBOUND(_VAL)": "((int)((_VAL) * 255.0f + ((_VAL)>=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)",
|
||||||
|
"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_NavGamepadContextMenu": "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)"
|
||||||
|
}
|
||||||
119
generator/output/constants.lua
Normal file
119
generator/output/constants.lua
Normal file
@@ -0,0 +1,119 @@
|
|||||||
|
local t={
|
||||||
|
["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_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_TABLE(...)"]="do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventTable) 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_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.9\"",
|
||||||
|
IMGUI_VERSION_NUM="19290",
|
||||||
|
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)<<IM_COL32_A_SHIFT) | ((ImU32)(B)<<IM_COL32_B_SHIFT) | ((ImU32)(G)<<IM_COL32_G_SHIFT) | ((ImU32)(R)<<IM_COL32_R_SHIFT))",
|
||||||
|
IM_COL32_A_MASK="0xFF000000",
|
||||||
|
IM_COL32_A_SHIFT="24",
|
||||||
|
IM_COL32_BLACK="IM_COL32(0,0,0,255)",
|
||||||
|
IM_COL32_BLACK_TRANS="IM_COL32(0,0,0,0)",
|
||||||
|
IM_COL32_B_SHIFT="16",
|
||||||
|
IM_COL32_DISABLE="IM_COL32(0,0,0,1)",
|
||||||
|
IM_COL32_G_SHIFT="8",
|
||||||
|
IM_COL32_R_SHIFT="0",
|
||||||
|
IM_COL32_WHITE="IM_COL32(255,255,255,255)",
|
||||||
|
["IM_COUNTOF(_ARR)"]="((int)(sizeof(_ARR) / sizeof(*(_ARR))))",
|
||||||
|
["IM_DEBUG_BREAK()"]="__asm__ volatile(\"int3;nop\")",
|
||||||
|
IM_DRAWLIST_ARCFAST_SAMPLE_MAX="IM_DRAWLIST_ARCFAST_TABLE_SIZE",
|
||||||
|
IM_DRAWLIST_ARCFAST_TABLE_SIZE="48",
|
||||||
|
["IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC(_RAD,_MAXERROR)"]="ImClamp(IM_ROUNDUP_TO_EVEN((int)ImCeil(IM_PI / ImAcos(1 - ImMin((_MAXERROR), (_RAD)) / (_RAD)))), IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MIN, IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MAX)",
|
||||||
|
["IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC_ERROR(_N,_RAD)"]="((1 - ImCos(IM_PI / ImMax((float)(_N), IM_PI))) / (_RAD))",
|
||||||
|
["IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC_R(_N,_MAXERROR)"]="((_MAXERROR) / (1 - ImCos(IM_PI / ImMax((float)(_N), IM_PI))))",
|
||||||
|
IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MAX="512",
|
||||||
|
IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MIN="4",
|
||||||
|
IM_DRAWLIST_TEX_LINES_WIDTH_MAX="(32)",
|
||||||
|
["IM_F32_TO_INT8_SAT(_VAL)"]="((int)(ImSaturate(_VAL) * 255.0f + 0.5f))",
|
||||||
|
["IM_F32_TO_INT8_UNBOUND(_VAL)"]="((int)((_VAL) * 255.0f + ((_VAL)>=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)",
|
||||||
|
["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_NavGamepadContextMenu="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)"}
|
||||||
|
return t
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -18,7 +18,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_CharCallback",
|
"cimguiname": "ImGui_ImplGlfw_CharCallback",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_CharCallback",
|
"funcname": "ImGui_ImplGlfw_CharCallback",
|
||||||
"location": "imgui_impl_glfw:61",
|
"location": "imgui_impl_glfw:62",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_CharCallback",
|
"ov_cimguiname": "ImGui_ImplGlfw_CharCallback",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWwindow*,unsigned int)",
|
"signature": "(GLFWwindow*,unsigned int)",
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_CursorEnterCallback",
|
"cimguiname": "ImGui_ImplGlfw_CursorEnterCallback",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_CursorEnterCallback",
|
"funcname": "ImGui_ImplGlfw_CursorEnterCallback",
|
||||||
"location": "imgui_impl_glfw:56",
|
"location": "imgui_impl_glfw:57",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_CursorEnterCallback",
|
"ov_cimguiname": "ImGui_ImplGlfw_CursorEnterCallback",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWwindow*,int)",
|
"signature": "(GLFWwindow*,int)",
|
||||||
@@ -74,7 +74,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_CursorPosCallback",
|
"cimguiname": "ImGui_ImplGlfw_CursorPosCallback",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_CursorPosCallback",
|
"funcname": "ImGui_ImplGlfw_CursorPosCallback",
|
||||||
"location": "imgui_impl_glfw:57",
|
"location": "imgui_impl_glfw:58",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_CursorPosCallback",
|
"ov_cimguiname": "ImGui_ImplGlfw_CursorPosCallback",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWwindow*,double,double)",
|
"signature": "(GLFWwindow*,double,double)",
|
||||||
@@ -96,7 +96,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_GetContentScaleForMonitor",
|
"cimguiname": "ImGui_ImplGlfw_GetContentScaleForMonitor",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_GetContentScaleForMonitor",
|
"funcname": "ImGui_ImplGlfw_GetContentScaleForMonitor",
|
||||||
"location": "imgui_impl_glfw:67",
|
"location": "imgui_impl_glfw:68",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_GetContentScaleForMonitor",
|
"ov_cimguiname": "ImGui_ImplGlfw_GetContentScaleForMonitor",
|
||||||
"ret": "float",
|
"ret": "float",
|
||||||
"signature": "(GLFWmonitor*)",
|
"signature": "(GLFWmonitor*)",
|
||||||
@@ -118,7 +118,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_GetContentScaleForWindow",
|
"cimguiname": "ImGui_ImplGlfw_GetContentScaleForWindow",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_GetContentScaleForWindow",
|
"funcname": "ImGui_ImplGlfw_GetContentScaleForWindow",
|
||||||
"location": "imgui_impl_glfw:66",
|
"location": "imgui_impl_glfw:67",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_GetContentScaleForWindow",
|
"ov_cimguiname": "ImGui_ImplGlfw_GetContentScaleForWindow",
|
||||||
"ret": "float",
|
"ret": "float",
|
||||||
"signature": "(GLFWwindow*)",
|
"signature": "(GLFWwindow*)",
|
||||||
@@ -144,7 +144,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_InitForOpenGL",
|
"cimguiname": "ImGui_ImplGlfw_InitForOpenGL",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_InitForOpenGL",
|
"funcname": "ImGui_ImplGlfw_InitForOpenGL",
|
||||||
"location": "imgui_impl_glfw:32",
|
"location": "imgui_impl_glfw:33",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_InitForOpenGL",
|
"ov_cimguiname": "ImGui_ImplGlfw_InitForOpenGL",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(GLFWwindow*,bool)",
|
"signature": "(GLFWwindow*,bool)",
|
||||||
@@ -170,7 +170,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_InitForOther",
|
"cimguiname": "ImGui_ImplGlfw_InitForOther",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_InitForOther",
|
"funcname": "ImGui_ImplGlfw_InitForOther",
|
||||||
"location": "imgui_impl_glfw:34",
|
"location": "imgui_impl_glfw:35",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_InitForOther",
|
"ov_cimguiname": "ImGui_ImplGlfw_InitForOther",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(GLFWwindow*,bool)",
|
"signature": "(GLFWwindow*,bool)",
|
||||||
@@ -196,7 +196,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_InitForVulkan",
|
"cimguiname": "ImGui_ImplGlfw_InitForVulkan",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_InitForVulkan",
|
"funcname": "ImGui_ImplGlfw_InitForVulkan",
|
||||||
"location": "imgui_impl_glfw:33",
|
"location": "imgui_impl_glfw:34",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_InitForVulkan",
|
"ov_cimguiname": "ImGui_ImplGlfw_InitForVulkan",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(GLFWwindow*,bool)",
|
"signature": "(GLFWwindow*,bool)",
|
||||||
@@ -218,7 +218,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_InstallCallbacks",
|
"cimguiname": "ImGui_ImplGlfw_InstallCallbacks",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_InstallCallbacks",
|
"funcname": "ImGui_ImplGlfw_InstallCallbacks",
|
||||||
"location": "imgui_impl_glfw:47",
|
"location": "imgui_impl_glfw:48",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_InstallCallbacks",
|
"ov_cimguiname": "ImGui_ImplGlfw_InstallCallbacks",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWwindow*)",
|
"signature": "(GLFWwindow*)",
|
||||||
@@ -256,7 +256,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_KeyCallback",
|
"cimguiname": "ImGui_ImplGlfw_KeyCallback",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_KeyCallback",
|
"funcname": "ImGui_ImplGlfw_KeyCallback",
|
||||||
"location": "imgui_impl_glfw:60",
|
"location": "imgui_impl_glfw:61",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_KeyCallback",
|
"ov_cimguiname": "ImGui_ImplGlfw_KeyCallback",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWwindow*,int,int,int,int)",
|
"signature": "(GLFWwindow*,int,int,int,int)",
|
||||||
@@ -282,7 +282,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_MonitorCallback",
|
"cimguiname": "ImGui_ImplGlfw_MonitorCallback",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_MonitorCallback",
|
"funcname": "ImGui_ImplGlfw_MonitorCallback",
|
||||||
"location": "imgui_impl_glfw:62",
|
"location": "imgui_impl_glfw:63",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_MonitorCallback",
|
"ov_cimguiname": "ImGui_ImplGlfw_MonitorCallback",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWmonitor*,int)",
|
"signature": "(GLFWmonitor*,int)",
|
||||||
@@ -316,7 +316,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_MouseButtonCallback",
|
"cimguiname": "ImGui_ImplGlfw_MouseButtonCallback",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_MouseButtonCallback",
|
"funcname": "ImGui_ImplGlfw_MouseButtonCallback",
|
||||||
"location": "imgui_impl_glfw:58",
|
"location": "imgui_impl_glfw:59",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_MouseButtonCallback",
|
"ov_cimguiname": "ImGui_ImplGlfw_MouseButtonCallback",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWwindow*,int,int,int)",
|
"signature": "(GLFWwindow*,int,int,int)",
|
||||||
@@ -333,7 +333,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_NewFrame",
|
"cimguiname": "ImGui_ImplGlfw_NewFrame",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_NewFrame",
|
"funcname": "ImGui_ImplGlfw_NewFrame",
|
||||||
"location": "imgui_impl_glfw:36",
|
"location": "imgui_impl_glfw:37",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_NewFrame",
|
"ov_cimguiname": "ImGui_ImplGlfw_NewFrame",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "()",
|
"signature": "()",
|
||||||
@@ -355,7 +355,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_RestoreCallbacks",
|
"cimguiname": "ImGui_ImplGlfw_RestoreCallbacks",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_RestoreCallbacks",
|
"funcname": "ImGui_ImplGlfw_RestoreCallbacks",
|
||||||
"location": "imgui_impl_glfw:48",
|
"location": "imgui_impl_glfw:49",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_RestoreCallbacks",
|
"ov_cimguiname": "ImGui_ImplGlfw_RestoreCallbacks",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWwindow*)",
|
"signature": "(GLFWwindow*)",
|
||||||
@@ -385,7 +385,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_ScrollCallback",
|
"cimguiname": "ImGui_ImplGlfw_ScrollCallback",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_ScrollCallback",
|
"funcname": "ImGui_ImplGlfw_ScrollCallback",
|
||||||
"location": "imgui_impl_glfw:59",
|
"location": "imgui_impl_glfw:60",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_ScrollCallback",
|
"ov_cimguiname": "ImGui_ImplGlfw_ScrollCallback",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWwindow*,double,double)",
|
"signature": "(GLFWwindow*,double,double)",
|
||||||
@@ -407,7 +407,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
"cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
"funcname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
||||||
"location": "imgui_impl_glfw:52",
|
"location": "imgui_impl_glfw:53",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
"ov_cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(bool)",
|
"signature": "(bool)",
|
||||||
@@ -424,7 +424,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_Shutdown",
|
"cimguiname": "ImGui_ImplGlfw_Shutdown",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_Shutdown",
|
"funcname": "ImGui_ImplGlfw_Shutdown",
|
||||||
"location": "imgui_impl_glfw:35",
|
"location": "imgui_impl_glfw:36",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_Shutdown",
|
"ov_cimguiname": "ImGui_ImplGlfw_Shutdown",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "()",
|
"signature": "()",
|
||||||
@@ -446,7 +446,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_Sleep",
|
"cimguiname": "ImGui_ImplGlfw_Sleep",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_Sleep",
|
"funcname": "ImGui_ImplGlfw_Sleep",
|
||||||
"location": "imgui_impl_glfw:65",
|
"location": "imgui_impl_glfw:66",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_Sleep",
|
"ov_cimguiname": "ImGui_ImplGlfw_Sleep",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(int)",
|
"signature": "(int)",
|
||||||
@@ -472,7 +472,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_WindowFocusCallback",
|
"cimguiname": "ImGui_ImplGlfw_WindowFocusCallback",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_WindowFocusCallback",
|
"funcname": "ImGui_ImplGlfw_WindowFocusCallback",
|
||||||
"location": "imgui_impl_glfw:55",
|
"location": "imgui_impl_glfw:56",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_WindowFocusCallback",
|
"ov_cimguiname": "ImGui_ImplGlfw_WindowFocusCallback",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWwindow*,int)",
|
"signature": "(GLFWwindow*,int)",
|
||||||
@@ -489,7 +489,7 @@
|
|||||||
"cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects",
|
"cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplOpenGL2_CreateDeviceObjects",
|
"funcname": "ImGui_ImplOpenGL2_CreateDeviceObjects",
|
||||||
"location": "imgui_impl_opengl2:37",
|
"location": "imgui_impl_opengl2:38",
|
||||||
"ov_cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects",
|
"ov_cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "()",
|
"signature": "()",
|
||||||
@@ -506,7 +506,7 @@
|
|||||||
"cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects",
|
"cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplOpenGL2_DestroyDeviceObjects",
|
"funcname": "ImGui_ImplOpenGL2_DestroyDeviceObjects",
|
||||||
"location": "imgui_impl_opengl2:38",
|
"location": "imgui_impl_opengl2:39",
|
||||||
"ov_cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects",
|
"ov_cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "()",
|
"signature": "()",
|
||||||
@@ -523,7 +523,7 @@
|
|||||||
"cimguiname": "ImGui_ImplOpenGL2_Init",
|
"cimguiname": "ImGui_ImplOpenGL2_Init",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplOpenGL2_Init",
|
"funcname": "ImGui_ImplOpenGL2_Init",
|
||||||
"location": "imgui_impl_opengl2:31",
|
"location": "imgui_impl_opengl2:32",
|
||||||
"ov_cimguiname": "ImGui_ImplOpenGL2_Init",
|
"ov_cimguiname": "ImGui_ImplOpenGL2_Init",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "()",
|
"signature": "()",
|
||||||
@@ -540,7 +540,7 @@
|
|||||||
"cimguiname": "ImGui_ImplOpenGL2_NewFrame",
|
"cimguiname": "ImGui_ImplOpenGL2_NewFrame",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplOpenGL2_NewFrame",
|
"funcname": "ImGui_ImplOpenGL2_NewFrame",
|
||||||
"location": "imgui_impl_opengl2:33",
|
"location": "imgui_impl_opengl2:34",
|
||||||
"ov_cimguiname": "ImGui_ImplOpenGL2_NewFrame",
|
"ov_cimguiname": "ImGui_ImplOpenGL2_NewFrame",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "()",
|
"signature": "()",
|
||||||
@@ -562,7 +562,7 @@
|
|||||||
"cimguiname": "ImGui_ImplOpenGL2_RenderDrawData",
|
"cimguiname": "ImGui_ImplOpenGL2_RenderDrawData",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplOpenGL2_RenderDrawData",
|
"funcname": "ImGui_ImplOpenGL2_RenderDrawData",
|
||||||
"location": "imgui_impl_opengl2:34",
|
"location": "imgui_impl_opengl2:35",
|
||||||
"ov_cimguiname": "ImGui_ImplOpenGL2_RenderDrawData",
|
"ov_cimguiname": "ImGui_ImplOpenGL2_RenderDrawData",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(ImDrawData*)",
|
"signature": "(ImDrawData*)",
|
||||||
@@ -579,7 +579,7 @@
|
|||||||
"cimguiname": "ImGui_ImplOpenGL2_Shutdown",
|
"cimguiname": "ImGui_ImplOpenGL2_Shutdown",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplOpenGL2_Shutdown",
|
"funcname": "ImGui_ImplOpenGL2_Shutdown",
|
||||||
"location": "imgui_impl_opengl2:32",
|
"location": "imgui_impl_opengl2:33",
|
||||||
"ov_cimguiname": "ImGui_ImplOpenGL2_Shutdown",
|
"ov_cimguiname": "ImGui_ImplOpenGL2_Shutdown",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "()",
|
"signature": "()",
|
||||||
@@ -601,7 +601,7 @@
|
|||||||
"cimguiname": "ImGui_ImplOpenGL2_UpdateTexture",
|
"cimguiname": "ImGui_ImplOpenGL2_UpdateTexture",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplOpenGL2_UpdateTexture",
|
"funcname": "ImGui_ImplOpenGL2_UpdateTexture",
|
||||||
"location": "imgui_impl_opengl2:41",
|
"location": "imgui_impl_opengl2:42",
|
||||||
"ov_cimguiname": "ImGui_ImplOpenGL2_UpdateTexture",
|
"ov_cimguiname": "ImGui_ImplOpenGL2_UpdateTexture",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(ImTextureData*)",
|
"signature": "(ImTextureData*)",
|
||||||
@@ -642,6 +642,23 @@
|
|||||||
"stname": ""
|
"stname": ""
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"ImGui_ImplOpenGL3_GetRenderState": [
|
||||||
|
{
|
||||||
|
"args": "()",
|
||||||
|
"argsT": [],
|
||||||
|
"argsoriginal": "()",
|
||||||
|
"call_args": "()",
|
||||||
|
"call_args_old": "()",
|
||||||
|
"cimguiname": "ImGui_ImplOpenGL3_GetRenderState",
|
||||||
|
"defaults": {},
|
||||||
|
"funcname": "ImGui_ImplOpenGL3_GetRenderState",
|
||||||
|
"location": "imgui_impl_opengl3:79",
|
||||||
|
"ov_cimguiname": "ImGui_ImplOpenGL3_GetRenderState",
|
||||||
|
"ret": "ImGui_ImplOpenGL3_RenderState*",
|
||||||
|
"signature": "()",
|
||||||
|
"stname": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
"ImGui_ImplOpenGL3_Init": [
|
"ImGui_ImplOpenGL3_Init": [
|
||||||
{
|
{
|
||||||
"args": "(const char* glsl_version)",
|
"args": "(const char* glsl_version)",
|
||||||
@@ -1000,6 +1017,28 @@
|
|||||||
"stname": ""
|
"stname": ""
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"ImGui_ImplSDL2_SetMouseCaptureMode": [
|
||||||
|
{
|
||||||
|
"args": "(ImGui_ImplSDL2_MouseCaptureMode mode)",
|
||||||
|
"argsT": [
|
||||||
|
{
|
||||||
|
"name": "mode",
|
||||||
|
"type": "ImGui_ImplSDL2_MouseCaptureMode"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"argsoriginal": "(ImGui_ImplSDL2_MouseCaptureMode mode)",
|
||||||
|
"call_args": "(mode)",
|
||||||
|
"call_args_old": "(mode)",
|
||||||
|
"cimguiname": "ImGui_ImplSDL2_SetMouseCaptureMode",
|
||||||
|
"defaults": {},
|
||||||
|
"funcname": "ImGui_ImplSDL2_SetMouseCaptureMode",
|
||||||
|
"location": "imgui_impl_sdl2:55",
|
||||||
|
"ov_cimguiname": "ImGui_ImplSDL2_SetMouseCaptureMode",
|
||||||
|
"ret": "void",
|
||||||
|
"signature": "(ImGui_ImplSDL2_MouseCaptureMode)",
|
||||||
|
"stname": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
"ImGui_ImplSDL2_Shutdown": [
|
"ImGui_ImplSDL2_Shutdown": [
|
||||||
{
|
{
|
||||||
"args": "()",
|
"args": "()",
|
||||||
@@ -1251,6 +1290,28 @@
|
|||||||
"stname": ""
|
"stname": ""
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"ImGui_ImplSDL3_SetMouseCaptureMode": [
|
||||||
|
{
|
||||||
|
"args": "(ImGui_ImplSDL3_MouseCaptureMode mode)",
|
||||||
|
"argsT": [
|
||||||
|
{
|
||||||
|
"name": "mode",
|
||||||
|
"type": "ImGui_ImplSDL3_MouseCaptureMode"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"argsoriginal": "(ImGui_ImplSDL3_MouseCaptureMode mode)",
|
||||||
|
"call_args": "(mode)",
|
||||||
|
"call_args_old": "(mode)",
|
||||||
|
"cimguiname": "ImGui_ImplSDL3_SetMouseCaptureMode",
|
||||||
|
"defaults": {},
|
||||||
|
"funcname": "ImGui_ImplSDL3_SetMouseCaptureMode",
|
||||||
|
"location": "imgui_impl_sdl3:52",
|
||||||
|
"ov_cimguiname": "ImGui_ImplSDL3_SetMouseCaptureMode",
|
||||||
|
"ret": "void",
|
||||||
|
"signature": "(ImGui_ImplSDL3_MouseCaptureMode)",
|
||||||
|
"stname": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
"ImGui_ImplSDL3_Shutdown": [
|
"ImGui_ImplSDL3_Shutdown": [
|
||||||
{
|
{
|
||||||
"args": "()",
|
"args": "()",
|
||||||
@@ -1319,7 +1380,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
"cimguiname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
"funcname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||||
"location": "imgui_impl_vulkan:195",
|
"location": "imgui_impl_vulkan:204",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
"ov_cimguiname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)",
|
"signature": "(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)",
|
||||||
@@ -1353,7 +1414,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkanH_DestroyWindow",
|
"cimguiname": "ImGui_ImplVulkanH_DestroyWindow",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkanH_DestroyWindow",
|
"funcname": "ImGui_ImplVulkanH_DestroyWindow",
|
||||||
"location": "imgui_impl_vulkan:196",
|
"location": "imgui_impl_vulkan:205",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkanH_DestroyWindow",
|
"ov_cimguiname": "ImGui_ImplVulkanH_DestroyWindow",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)",
|
"signature": "(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)",
|
||||||
@@ -1375,7 +1436,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
"cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
"funcname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||||
"location": "imgui_impl_vulkan:201",
|
"location": "imgui_impl_vulkan:210",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
"ov_cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||||
"ret": "int",
|
"ret": "int",
|
||||||
"signature": "(VkPresentModeKHR)",
|
"signature": "(VkPresentModeKHR)",
|
||||||
@@ -1397,7 +1458,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
"cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
"funcname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||||
"location": "imgui_impl_vulkan:199",
|
"location": "imgui_impl_vulkan:208",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
"ov_cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||||
"ret": "VkPhysicalDevice",
|
"ret": "VkPhysicalDevice",
|
||||||
"signature": "(VkInstance)",
|
"signature": "(VkInstance)",
|
||||||
@@ -1431,7 +1492,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkanH_SelectPresentMode",
|
"cimguiname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkanH_SelectPresentMode",
|
"funcname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||||
"location": "imgui_impl_vulkan:198",
|
"location": "imgui_impl_vulkan:207",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectPresentMode",
|
"ov_cimguiname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||||
"ret": "VkPresentModeKHR",
|
"ret": "VkPresentModeKHR",
|
||||||
"signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)",
|
"signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)",
|
||||||
@@ -1453,7 +1514,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
"cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
"funcname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||||
"location": "imgui_impl_vulkan:200",
|
"location": "imgui_impl_vulkan:209",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
"ov_cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||||
"ret": "uint32_t",
|
"ret": "uint32_t",
|
||||||
"signature": "(VkPhysicalDevice)",
|
"signature": "(VkPhysicalDevice)",
|
||||||
@@ -1491,7 +1552,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
"cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
"funcname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||||
"location": "imgui_impl_vulkan:197",
|
"location": "imgui_impl_vulkan:206",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
"ov_cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||||
"ret": "VkSurfaceFormatKHR",
|
"ret": "VkSurfaceFormatKHR",
|
||||||
"signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)",
|
"signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)",
|
||||||
@@ -1509,7 +1570,8 @@
|
|||||||
"constructor": true,
|
"constructor": true,
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkanH_Window",
|
"funcname": "ImGui_ImplVulkanH_Window",
|
||||||
"location": "imgui_impl_vulkan:244",
|
"location": "imgui_impl_vulkan:256",
|
||||||
|
"namespace": "ImGui_ImplVulkanH_Window",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window",
|
"ov_cimguiname": "ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window",
|
||||||
"signature": "()",
|
"signature": "()",
|
||||||
"stname": "ImGui_ImplVulkanH_Window"
|
"stname": "ImGui_ImplVulkanH_Window"
|
||||||
@@ -1528,7 +1590,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkanH_Window_destroy",
|
"cimguiname": "ImGui_ImplVulkanH_Window_destroy",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"destructor": true,
|
"destructor": true,
|
||||||
"location": "imgui_impl_vulkan:244",
|
"location": "imgui_impl_vulkan:256",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkanH_Window_destroy",
|
"ov_cimguiname": "ImGui_ImplVulkanH_Window_destroy",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(ImGui_ImplVulkanH_Window*)",
|
"signature": "(ImGui_ImplVulkanH_Window*)",
|
||||||
@@ -1537,12 +1599,8 @@
|
|||||||
],
|
],
|
||||||
"ImGui_ImplVulkan_AddTexture": [
|
"ImGui_ImplVulkan_AddTexture": [
|
||||||
{
|
{
|
||||||
"args": "(VkSampler sampler,VkImageView image_view,VkImageLayout image_layout)",
|
"args": "(VkImageView image_view,VkImageLayout image_layout)",
|
||||||
"argsT": [
|
"argsT": [
|
||||||
{
|
|
||||||
"name": "sampler",
|
|
||||||
"type": "VkSampler"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "image_view",
|
"name": "image_view",
|
||||||
"type": "VkImageView"
|
"type": "VkImageView"
|
||||||
@@ -1552,16 +1610,16 @@
|
|||||||
"type": "VkImageLayout"
|
"type": "VkImageLayout"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"argsoriginal": "(VkSampler sampler,VkImageView image_view,VkImageLayout image_layout)",
|
"argsoriginal": "(VkImageView image_view,VkImageLayout image_layout)",
|
||||||
"call_args": "(sampler,image_view,image_layout)",
|
"call_args": "(image_view,image_layout)",
|
||||||
"call_args_old": "(sampler,image_view,image_layout)",
|
"call_args_old": "(image_view,image_layout)",
|
||||||
"cimguiname": "ImGui_ImplVulkan_AddTexture",
|
"cimguiname": "ImGui_ImplVulkan_AddTexture",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkan_AddTexture",
|
"funcname": "ImGui_ImplVulkan_AddTexture",
|
||||||
"location": "imgui_impl_vulkan:152",
|
"location": "imgui_impl_vulkan:157",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_AddTexture",
|
"ov_cimguiname": "ImGui_ImplVulkan_AddTexture",
|
||||||
"ret": "VkDescriptorSet",
|
"ret": "VkDescriptorSet",
|
||||||
"signature": "(VkSampler,VkImageView,VkImageLayout)",
|
"signature": "(VkImageView,VkImageLayout)",
|
||||||
"stname": ""
|
"stname": ""
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -1580,7 +1638,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkan_CreateMainPipeline",
|
"cimguiname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkan_CreateMainPipeline",
|
"funcname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||||
"location": "imgui_impl_vulkan:144",
|
"location": "imgui_impl_vulkan:151",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_CreateMainPipeline",
|
"ov_cimguiname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(const ImGui_ImplVulkan_PipelineInfo*)",
|
"signature": "(const ImGui_ImplVulkan_PipelineInfo*)",
|
||||||
@@ -1602,7 +1660,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkan_Init",
|
"cimguiname": "ImGui_ImplVulkan_Init",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkan_Init",
|
"funcname": "ImGui_ImplVulkan_Init",
|
||||||
"location": "imgui_impl_vulkan:135",
|
"location": "imgui_impl_vulkan:142",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_Init",
|
"ov_cimguiname": "ImGui_ImplVulkan_Init",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(ImGui_ImplVulkan_InitInfo*)",
|
"signature": "(ImGui_ImplVulkan_InitInfo*)",
|
||||||
@@ -1634,7 +1692,7 @@
|
|||||||
"user_data": "nullptr"
|
"user_data": "nullptr"
|
||||||
},
|
},
|
||||||
"funcname": "ImGui_ImplVulkan_LoadFunctions",
|
"funcname": "ImGui_ImplVulkan_LoadFunctions",
|
||||||
"location": "imgui_impl_vulkan:157",
|
"location": "imgui_impl_vulkan:166",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_LoadFunctions",
|
"ov_cimguiname": "ImGui_ImplVulkan_LoadFunctions",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)",
|
"signature": "(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)",
|
||||||
@@ -1651,7 +1709,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkan_NewFrame",
|
"cimguiname": "ImGui_ImplVulkan_NewFrame",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkan_NewFrame",
|
"funcname": "ImGui_ImplVulkan_NewFrame",
|
||||||
"location": "imgui_impl_vulkan:137",
|
"location": "imgui_impl_vulkan:144",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_NewFrame",
|
"ov_cimguiname": "ImGui_ImplVulkan_NewFrame",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "()",
|
"signature": "()",
|
||||||
@@ -1673,7 +1731,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkan_RemoveTexture",
|
"cimguiname": "ImGui_ImplVulkan_RemoveTexture",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkan_RemoveTexture",
|
"funcname": "ImGui_ImplVulkan_RemoveTexture",
|
||||||
"location": "imgui_impl_vulkan:153",
|
"location": "imgui_impl_vulkan:158",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_RemoveTexture",
|
"ov_cimguiname": "ImGui_ImplVulkan_RemoveTexture",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(VkDescriptorSet)",
|
"signature": "(VkDescriptorSet)",
|
||||||
@@ -1705,7 +1763,7 @@
|
|||||||
"pipeline": "0ULL"
|
"pipeline": "0ULL"
|
||||||
},
|
},
|
||||||
"funcname": "ImGui_ImplVulkan_RenderDrawData",
|
"funcname": "ImGui_ImplVulkan_RenderDrawData",
|
||||||
"location": "imgui_impl_vulkan:138",
|
"location": "imgui_impl_vulkan:145",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_RenderDrawData",
|
"ov_cimguiname": "ImGui_ImplVulkan_RenderDrawData",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(ImDrawData*,VkCommandBuffer,VkPipeline)",
|
"signature": "(ImDrawData*,VkCommandBuffer,VkPipeline)",
|
||||||
@@ -1727,7 +1785,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkan_SetMinImageCount",
|
"cimguiname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkan_SetMinImageCount",
|
"funcname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||||
"location": "imgui_impl_vulkan:139",
|
"location": "imgui_impl_vulkan:146",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_SetMinImageCount",
|
"ov_cimguiname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(uint32_t)",
|
"signature": "(uint32_t)",
|
||||||
@@ -1744,7 +1802,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkan_Shutdown",
|
"cimguiname": "ImGui_ImplVulkan_Shutdown",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkan_Shutdown",
|
"funcname": "ImGui_ImplVulkan_Shutdown",
|
||||||
"location": "imgui_impl_vulkan:136",
|
"location": "imgui_impl_vulkan:143",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_Shutdown",
|
"ov_cimguiname": "ImGui_ImplVulkan_Shutdown",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "()",
|
"signature": "()",
|
||||||
@@ -1766,7 +1824,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkan_UpdateTexture",
|
"cimguiname": "ImGui_ImplVulkan_UpdateTexture",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkan_UpdateTexture",
|
"funcname": "ImGui_ImplVulkan_UpdateTexture",
|
||||||
"location": "imgui_impl_vulkan:147",
|
"location": "imgui_impl_vulkan:154",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_UpdateTexture",
|
"ov_cimguiname": "ImGui_ImplVulkan_UpdateTexture",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(ImTextureData*)",
|
"signature": "(ImTextureData*)",
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplGlfw_CharCallback",
|
cimguiname="ImGui_ImplGlfw_CharCallback",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplGlfw_CharCallback",
|
funcname="ImGui_ImplGlfw_CharCallback",
|
||||||
location="imgui_impl_glfw:61",
|
location="imgui_impl_glfw:62",
|
||||||
ov_cimguiname="ImGui_ImplGlfw_CharCallback",
|
ov_cimguiname="ImGui_ImplGlfw_CharCallback",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(GLFWwindow*,unsigned int)",
|
signature="(GLFWwindow*,unsigned int)",
|
||||||
@@ -37,7 +37,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplGlfw_CursorEnterCallback",
|
cimguiname="ImGui_ImplGlfw_CursorEnterCallback",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplGlfw_CursorEnterCallback",
|
funcname="ImGui_ImplGlfw_CursorEnterCallback",
|
||||||
location="imgui_impl_glfw:56",
|
location="imgui_impl_glfw:57",
|
||||||
ov_cimguiname="ImGui_ImplGlfw_CursorEnterCallback",
|
ov_cimguiname="ImGui_ImplGlfw_CursorEnterCallback",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(GLFWwindow*,int)",
|
signature="(GLFWwindow*,int)",
|
||||||
@@ -62,7 +62,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplGlfw_CursorPosCallback",
|
cimguiname="ImGui_ImplGlfw_CursorPosCallback",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplGlfw_CursorPosCallback",
|
funcname="ImGui_ImplGlfw_CursorPosCallback",
|
||||||
location="imgui_impl_glfw:57",
|
location="imgui_impl_glfw:58",
|
||||||
ov_cimguiname="ImGui_ImplGlfw_CursorPosCallback",
|
ov_cimguiname="ImGui_ImplGlfw_CursorPosCallback",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(GLFWwindow*,double,double)",
|
signature="(GLFWwindow*,double,double)",
|
||||||
@@ -81,7 +81,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplGlfw_GetContentScaleForMonitor",
|
cimguiname="ImGui_ImplGlfw_GetContentScaleForMonitor",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplGlfw_GetContentScaleForMonitor",
|
funcname="ImGui_ImplGlfw_GetContentScaleForMonitor",
|
||||||
location="imgui_impl_glfw:67",
|
location="imgui_impl_glfw:68",
|
||||||
ov_cimguiname="ImGui_ImplGlfw_GetContentScaleForMonitor",
|
ov_cimguiname="ImGui_ImplGlfw_GetContentScaleForMonitor",
|
||||||
ret="float",
|
ret="float",
|
||||||
signature="(GLFWmonitor*)",
|
signature="(GLFWmonitor*)",
|
||||||
@@ -100,7 +100,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplGlfw_GetContentScaleForWindow",
|
cimguiname="ImGui_ImplGlfw_GetContentScaleForWindow",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplGlfw_GetContentScaleForWindow",
|
funcname="ImGui_ImplGlfw_GetContentScaleForWindow",
|
||||||
location="imgui_impl_glfw:66",
|
location="imgui_impl_glfw:67",
|
||||||
ov_cimguiname="ImGui_ImplGlfw_GetContentScaleForWindow",
|
ov_cimguiname="ImGui_ImplGlfw_GetContentScaleForWindow",
|
||||||
ret="float",
|
ret="float",
|
||||||
signature="(GLFWwindow*)",
|
signature="(GLFWwindow*)",
|
||||||
@@ -122,7 +122,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplGlfw_InitForOpenGL",
|
cimguiname="ImGui_ImplGlfw_InitForOpenGL",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplGlfw_InitForOpenGL",
|
funcname="ImGui_ImplGlfw_InitForOpenGL",
|
||||||
location="imgui_impl_glfw:32",
|
location="imgui_impl_glfw:33",
|
||||||
ov_cimguiname="ImGui_ImplGlfw_InitForOpenGL",
|
ov_cimguiname="ImGui_ImplGlfw_InitForOpenGL",
|
||||||
ret="bool",
|
ret="bool",
|
||||||
signature="(GLFWwindow*,bool)",
|
signature="(GLFWwindow*,bool)",
|
||||||
@@ -144,7 +144,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplGlfw_InitForOther",
|
cimguiname="ImGui_ImplGlfw_InitForOther",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplGlfw_InitForOther",
|
funcname="ImGui_ImplGlfw_InitForOther",
|
||||||
location="imgui_impl_glfw:34",
|
location="imgui_impl_glfw:35",
|
||||||
ov_cimguiname="ImGui_ImplGlfw_InitForOther",
|
ov_cimguiname="ImGui_ImplGlfw_InitForOther",
|
||||||
ret="bool",
|
ret="bool",
|
||||||
signature="(GLFWwindow*,bool)",
|
signature="(GLFWwindow*,bool)",
|
||||||
@@ -166,7 +166,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplGlfw_InitForVulkan",
|
cimguiname="ImGui_ImplGlfw_InitForVulkan",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplGlfw_InitForVulkan",
|
funcname="ImGui_ImplGlfw_InitForVulkan",
|
||||||
location="imgui_impl_glfw:33",
|
location="imgui_impl_glfw:34",
|
||||||
ov_cimguiname="ImGui_ImplGlfw_InitForVulkan",
|
ov_cimguiname="ImGui_ImplGlfw_InitForVulkan",
|
||||||
ret="bool",
|
ret="bool",
|
||||||
signature="(GLFWwindow*,bool)",
|
signature="(GLFWwindow*,bool)",
|
||||||
@@ -185,7 +185,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplGlfw_InstallCallbacks",
|
cimguiname="ImGui_ImplGlfw_InstallCallbacks",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplGlfw_InstallCallbacks",
|
funcname="ImGui_ImplGlfw_InstallCallbacks",
|
||||||
location="imgui_impl_glfw:47",
|
location="imgui_impl_glfw:48",
|
||||||
ov_cimguiname="ImGui_ImplGlfw_InstallCallbacks",
|
ov_cimguiname="ImGui_ImplGlfw_InstallCallbacks",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(GLFWwindow*)",
|
signature="(GLFWwindow*)",
|
||||||
@@ -216,7 +216,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplGlfw_KeyCallback",
|
cimguiname="ImGui_ImplGlfw_KeyCallback",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplGlfw_KeyCallback",
|
funcname="ImGui_ImplGlfw_KeyCallback",
|
||||||
location="imgui_impl_glfw:60",
|
location="imgui_impl_glfw:61",
|
||||||
ov_cimguiname="ImGui_ImplGlfw_KeyCallback",
|
ov_cimguiname="ImGui_ImplGlfw_KeyCallback",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(GLFWwindow*,int,int,int,int)",
|
signature="(GLFWwindow*,int,int,int,int)",
|
||||||
@@ -238,7 +238,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplGlfw_MonitorCallback",
|
cimguiname="ImGui_ImplGlfw_MonitorCallback",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplGlfw_MonitorCallback",
|
funcname="ImGui_ImplGlfw_MonitorCallback",
|
||||||
location="imgui_impl_glfw:62",
|
location="imgui_impl_glfw:63",
|
||||||
ov_cimguiname="ImGui_ImplGlfw_MonitorCallback",
|
ov_cimguiname="ImGui_ImplGlfw_MonitorCallback",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(GLFWmonitor*,int)",
|
signature="(GLFWmonitor*,int)",
|
||||||
@@ -266,7 +266,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplGlfw_MouseButtonCallback",
|
cimguiname="ImGui_ImplGlfw_MouseButtonCallback",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplGlfw_MouseButtonCallback",
|
funcname="ImGui_ImplGlfw_MouseButtonCallback",
|
||||||
location="imgui_impl_glfw:58",
|
location="imgui_impl_glfw:59",
|
||||||
ov_cimguiname="ImGui_ImplGlfw_MouseButtonCallback",
|
ov_cimguiname="ImGui_ImplGlfw_MouseButtonCallback",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(GLFWwindow*,int,int,int)",
|
signature="(GLFWwindow*,int,int,int)",
|
||||||
@@ -282,7 +282,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplGlfw_NewFrame",
|
cimguiname="ImGui_ImplGlfw_NewFrame",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplGlfw_NewFrame",
|
funcname="ImGui_ImplGlfw_NewFrame",
|
||||||
location="imgui_impl_glfw:36",
|
location="imgui_impl_glfw:37",
|
||||||
ov_cimguiname="ImGui_ImplGlfw_NewFrame",
|
ov_cimguiname="ImGui_ImplGlfw_NewFrame",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="()",
|
signature="()",
|
||||||
@@ -301,7 +301,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplGlfw_RestoreCallbacks",
|
cimguiname="ImGui_ImplGlfw_RestoreCallbacks",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplGlfw_RestoreCallbacks",
|
funcname="ImGui_ImplGlfw_RestoreCallbacks",
|
||||||
location="imgui_impl_glfw:48",
|
location="imgui_impl_glfw:49",
|
||||||
ov_cimguiname="ImGui_ImplGlfw_RestoreCallbacks",
|
ov_cimguiname="ImGui_ImplGlfw_RestoreCallbacks",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(GLFWwindow*)",
|
signature="(GLFWwindow*)",
|
||||||
@@ -326,7 +326,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplGlfw_ScrollCallback",
|
cimguiname="ImGui_ImplGlfw_ScrollCallback",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplGlfw_ScrollCallback",
|
funcname="ImGui_ImplGlfw_ScrollCallback",
|
||||||
location="imgui_impl_glfw:59",
|
location="imgui_impl_glfw:60",
|
||||||
ov_cimguiname="ImGui_ImplGlfw_ScrollCallback",
|
ov_cimguiname="ImGui_ImplGlfw_ScrollCallback",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(GLFWwindow*,double,double)",
|
signature="(GLFWwindow*,double,double)",
|
||||||
@@ -345,7 +345,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
cimguiname="ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
funcname="ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
||||||
location="imgui_impl_glfw:52",
|
location="imgui_impl_glfw:53",
|
||||||
ov_cimguiname="ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
ov_cimguiname="ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(bool)",
|
signature="(bool)",
|
||||||
@@ -361,7 +361,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplGlfw_Shutdown",
|
cimguiname="ImGui_ImplGlfw_Shutdown",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplGlfw_Shutdown",
|
funcname="ImGui_ImplGlfw_Shutdown",
|
||||||
location="imgui_impl_glfw:35",
|
location="imgui_impl_glfw:36",
|
||||||
ov_cimguiname="ImGui_ImplGlfw_Shutdown",
|
ov_cimguiname="ImGui_ImplGlfw_Shutdown",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="()",
|
signature="()",
|
||||||
@@ -380,7 +380,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplGlfw_Sleep",
|
cimguiname="ImGui_ImplGlfw_Sleep",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplGlfw_Sleep",
|
funcname="ImGui_ImplGlfw_Sleep",
|
||||||
location="imgui_impl_glfw:65",
|
location="imgui_impl_glfw:66",
|
||||||
ov_cimguiname="ImGui_ImplGlfw_Sleep",
|
ov_cimguiname="ImGui_ImplGlfw_Sleep",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(int)",
|
signature="(int)",
|
||||||
@@ -402,7 +402,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplGlfw_WindowFocusCallback",
|
cimguiname="ImGui_ImplGlfw_WindowFocusCallback",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplGlfw_WindowFocusCallback",
|
funcname="ImGui_ImplGlfw_WindowFocusCallback",
|
||||||
location="imgui_impl_glfw:55",
|
location="imgui_impl_glfw:56",
|
||||||
ov_cimguiname="ImGui_ImplGlfw_WindowFocusCallback",
|
ov_cimguiname="ImGui_ImplGlfw_WindowFocusCallback",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(GLFWwindow*,int)",
|
signature="(GLFWwindow*,int)",
|
||||||
@@ -418,7 +418,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplOpenGL2_CreateDeviceObjects",
|
cimguiname="ImGui_ImplOpenGL2_CreateDeviceObjects",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplOpenGL2_CreateDeviceObjects",
|
funcname="ImGui_ImplOpenGL2_CreateDeviceObjects",
|
||||||
location="imgui_impl_opengl2:37",
|
location="imgui_impl_opengl2:38",
|
||||||
ov_cimguiname="ImGui_ImplOpenGL2_CreateDeviceObjects",
|
ov_cimguiname="ImGui_ImplOpenGL2_CreateDeviceObjects",
|
||||||
ret="bool",
|
ret="bool",
|
||||||
signature="()",
|
signature="()",
|
||||||
@@ -434,7 +434,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplOpenGL2_DestroyDeviceObjects",
|
cimguiname="ImGui_ImplOpenGL2_DestroyDeviceObjects",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplOpenGL2_DestroyDeviceObjects",
|
funcname="ImGui_ImplOpenGL2_DestroyDeviceObjects",
|
||||||
location="imgui_impl_opengl2:38",
|
location="imgui_impl_opengl2:39",
|
||||||
ov_cimguiname="ImGui_ImplOpenGL2_DestroyDeviceObjects",
|
ov_cimguiname="ImGui_ImplOpenGL2_DestroyDeviceObjects",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="()",
|
signature="()",
|
||||||
@@ -450,7 +450,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplOpenGL2_Init",
|
cimguiname="ImGui_ImplOpenGL2_Init",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplOpenGL2_Init",
|
funcname="ImGui_ImplOpenGL2_Init",
|
||||||
location="imgui_impl_opengl2:31",
|
location="imgui_impl_opengl2:32",
|
||||||
ov_cimguiname="ImGui_ImplOpenGL2_Init",
|
ov_cimguiname="ImGui_ImplOpenGL2_Init",
|
||||||
ret="bool",
|
ret="bool",
|
||||||
signature="()",
|
signature="()",
|
||||||
@@ -466,7 +466,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplOpenGL2_NewFrame",
|
cimguiname="ImGui_ImplOpenGL2_NewFrame",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplOpenGL2_NewFrame",
|
funcname="ImGui_ImplOpenGL2_NewFrame",
|
||||||
location="imgui_impl_opengl2:33",
|
location="imgui_impl_opengl2:34",
|
||||||
ov_cimguiname="ImGui_ImplOpenGL2_NewFrame",
|
ov_cimguiname="ImGui_ImplOpenGL2_NewFrame",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="()",
|
signature="()",
|
||||||
@@ -485,7 +485,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplOpenGL2_RenderDrawData",
|
cimguiname="ImGui_ImplOpenGL2_RenderDrawData",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplOpenGL2_RenderDrawData",
|
funcname="ImGui_ImplOpenGL2_RenderDrawData",
|
||||||
location="imgui_impl_opengl2:34",
|
location="imgui_impl_opengl2:35",
|
||||||
ov_cimguiname="ImGui_ImplOpenGL2_RenderDrawData",
|
ov_cimguiname="ImGui_ImplOpenGL2_RenderDrawData",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(ImDrawData*)",
|
signature="(ImDrawData*)",
|
||||||
@@ -501,7 +501,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplOpenGL2_Shutdown",
|
cimguiname="ImGui_ImplOpenGL2_Shutdown",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplOpenGL2_Shutdown",
|
funcname="ImGui_ImplOpenGL2_Shutdown",
|
||||||
location="imgui_impl_opengl2:32",
|
location="imgui_impl_opengl2:33",
|
||||||
ov_cimguiname="ImGui_ImplOpenGL2_Shutdown",
|
ov_cimguiname="ImGui_ImplOpenGL2_Shutdown",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="()",
|
signature="()",
|
||||||
@@ -520,7 +520,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplOpenGL2_UpdateTexture",
|
cimguiname="ImGui_ImplOpenGL2_UpdateTexture",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplOpenGL2_UpdateTexture",
|
funcname="ImGui_ImplOpenGL2_UpdateTexture",
|
||||||
location="imgui_impl_opengl2:41",
|
location="imgui_impl_opengl2:42",
|
||||||
ov_cimguiname="ImGui_ImplOpenGL2_UpdateTexture",
|
ov_cimguiname="ImGui_ImplOpenGL2_UpdateTexture",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(ImTextureData*)",
|
signature="(ImTextureData*)",
|
||||||
@@ -558,6 +558,22 @@ local t={
|
|||||||
signature="()",
|
signature="()",
|
||||||
stname=""},
|
stname=""},
|
||||||
["()"]=nil},
|
["()"]=nil},
|
||||||
|
ImGui_ImplOpenGL3_GetRenderState={
|
||||||
|
[1]={
|
||||||
|
args="()",
|
||||||
|
argsT={},
|
||||||
|
argsoriginal="()",
|
||||||
|
call_args="()",
|
||||||
|
call_args_old="()",
|
||||||
|
cimguiname="ImGui_ImplOpenGL3_GetRenderState",
|
||||||
|
defaults={},
|
||||||
|
funcname="ImGui_ImplOpenGL3_GetRenderState",
|
||||||
|
location="imgui_impl_opengl3:79",
|
||||||
|
ov_cimguiname="ImGui_ImplOpenGL3_GetRenderState",
|
||||||
|
ret="ImGui_ImplOpenGL3_RenderState*",
|
||||||
|
signature="()",
|
||||||
|
stname=""},
|
||||||
|
["()"]=nil},
|
||||||
ImGui_ImplOpenGL3_Init={
|
ImGui_ImplOpenGL3_Init={
|
||||||
[1]={
|
[1]={
|
||||||
args="(const char* glsl_version)",
|
args="(const char* glsl_version)",
|
||||||
@@ -868,6 +884,25 @@ local t={
|
|||||||
signature="(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)",
|
signature="(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)",
|
||||||
stname=""},
|
stname=""},
|
||||||
["(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)"]=nil},
|
["(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)"]=nil},
|
||||||
|
ImGui_ImplSDL2_SetMouseCaptureMode={
|
||||||
|
[1]={
|
||||||
|
args="(ImGui_ImplSDL2_MouseCaptureMode mode)",
|
||||||
|
argsT={
|
||||||
|
[1]={
|
||||||
|
name="mode",
|
||||||
|
type="ImGui_ImplSDL2_MouseCaptureMode"}},
|
||||||
|
argsoriginal="(ImGui_ImplSDL2_MouseCaptureMode mode)",
|
||||||
|
call_args="(mode)",
|
||||||
|
call_args_old="(mode)",
|
||||||
|
cimguiname="ImGui_ImplSDL2_SetMouseCaptureMode",
|
||||||
|
defaults={},
|
||||||
|
funcname="ImGui_ImplSDL2_SetMouseCaptureMode",
|
||||||
|
location="imgui_impl_sdl2:55",
|
||||||
|
ov_cimguiname="ImGui_ImplSDL2_SetMouseCaptureMode",
|
||||||
|
ret="void",
|
||||||
|
signature="(ImGui_ImplSDL2_MouseCaptureMode)",
|
||||||
|
stname=""},
|
||||||
|
["(ImGui_ImplSDL2_MouseCaptureMode)"]=nil},
|
||||||
ImGui_ImplSDL2_Shutdown={
|
ImGui_ImplSDL2_Shutdown={
|
||||||
[1]={
|
[1]={
|
||||||
args="()",
|
args="()",
|
||||||
@@ -1085,6 +1120,25 @@ local t={
|
|||||||
signature="(ImGui_ImplSDL3_GamepadMode,SDL_Gamepad**,int)",
|
signature="(ImGui_ImplSDL3_GamepadMode,SDL_Gamepad**,int)",
|
||||||
stname=""},
|
stname=""},
|
||||||
["(ImGui_ImplSDL3_GamepadMode,SDL_Gamepad**,int)"]=nil},
|
["(ImGui_ImplSDL3_GamepadMode,SDL_Gamepad**,int)"]=nil},
|
||||||
|
ImGui_ImplSDL3_SetMouseCaptureMode={
|
||||||
|
[1]={
|
||||||
|
args="(ImGui_ImplSDL3_MouseCaptureMode mode)",
|
||||||
|
argsT={
|
||||||
|
[1]={
|
||||||
|
name="mode",
|
||||||
|
type="ImGui_ImplSDL3_MouseCaptureMode"}},
|
||||||
|
argsoriginal="(ImGui_ImplSDL3_MouseCaptureMode mode)",
|
||||||
|
call_args="(mode)",
|
||||||
|
call_args_old="(mode)",
|
||||||
|
cimguiname="ImGui_ImplSDL3_SetMouseCaptureMode",
|
||||||
|
defaults={},
|
||||||
|
funcname="ImGui_ImplSDL3_SetMouseCaptureMode",
|
||||||
|
location="imgui_impl_sdl3:52",
|
||||||
|
ov_cimguiname="ImGui_ImplSDL3_SetMouseCaptureMode",
|
||||||
|
ret="void",
|
||||||
|
signature="(ImGui_ImplSDL3_MouseCaptureMode)",
|
||||||
|
stname=""},
|
||||||
|
["(ImGui_ImplSDL3_MouseCaptureMode)"]=nil},
|
||||||
ImGui_ImplSDL3_Shutdown={
|
ImGui_ImplSDL3_Shutdown={
|
||||||
[1]={
|
[1]={
|
||||||
args="()",
|
args="()",
|
||||||
@@ -1141,7 +1195,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
funcname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||||
location="imgui_impl_vulkan:195",
|
location="imgui_impl_vulkan:204",
|
||||||
ov_cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
ov_cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)",
|
signature="(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)",
|
||||||
@@ -1169,7 +1223,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkanH_DestroyWindow",
|
cimguiname="ImGui_ImplVulkanH_DestroyWindow",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkanH_DestroyWindow",
|
funcname="ImGui_ImplVulkanH_DestroyWindow",
|
||||||
location="imgui_impl_vulkan:196",
|
location="imgui_impl_vulkan:205",
|
||||||
ov_cimguiname="ImGui_ImplVulkanH_DestroyWindow",
|
ov_cimguiname="ImGui_ImplVulkanH_DestroyWindow",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)",
|
signature="(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)",
|
||||||
@@ -1188,7 +1242,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
funcname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||||
location="imgui_impl_vulkan:201",
|
location="imgui_impl_vulkan:210",
|
||||||
ov_cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
ov_cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||||
ret="int",
|
ret="int",
|
||||||
signature="(VkPresentModeKHR)",
|
signature="(VkPresentModeKHR)",
|
||||||
@@ -1207,7 +1261,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
funcname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||||
location="imgui_impl_vulkan:199",
|
location="imgui_impl_vulkan:208",
|
||||||
ov_cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
ov_cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||||
ret="VkPhysicalDevice",
|
ret="VkPhysicalDevice",
|
||||||
signature="(VkInstance)",
|
signature="(VkInstance)",
|
||||||
@@ -1235,7 +1289,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkanH_SelectPresentMode",
|
cimguiname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkanH_SelectPresentMode",
|
funcname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||||
location="imgui_impl_vulkan:198",
|
location="imgui_impl_vulkan:207",
|
||||||
ov_cimguiname="ImGui_ImplVulkanH_SelectPresentMode",
|
ov_cimguiname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||||
ret="VkPresentModeKHR",
|
ret="VkPresentModeKHR",
|
||||||
signature="(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)",
|
signature="(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)",
|
||||||
@@ -1254,7 +1308,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
funcname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||||
location="imgui_impl_vulkan:200",
|
location="imgui_impl_vulkan:209",
|
||||||
ov_cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
ov_cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||||
ret="uint32_t",
|
ret="uint32_t",
|
||||||
signature="(VkPhysicalDevice)",
|
signature="(VkPhysicalDevice)",
|
||||||
@@ -1285,7 +1339,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
funcname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||||
location="imgui_impl_vulkan:197",
|
location="imgui_impl_vulkan:206",
|
||||||
ov_cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
ov_cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||||
ret="VkSurfaceFormatKHR",
|
ret="VkSurfaceFormatKHR",
|
||||||
signature="(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)",
|
signature="(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)",
|
||||||
@@ -1302,7 +1356,8 @@ local t={
|
|||||||
constructor=true,
|
constructor=true,
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkanH_Window",
|
funcname="ImGui_ImplVulkanH_Window",
|
||||||
location="imgui_impl_vulkan:244",
|
location="imgui_impl_vulkan:256",
|
||||||
|
namespace="ImGui_ImplVulkanH_Window",
|
||||||
ov_cimguiname="ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window",
|
ov_cimguiname="ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window",
|
||||||
signature="()",
|
signature="()",
|
||||||
stname="ImGui_ImplVulkanH_Window"},
|
stname="ImGui_ImplVulkanH_Window"},
|
||||||
@@ -1318,7 +1373,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkanH_Window_destroy",
|
cimguiname="ImGui_ImplVulkanH_Window_destroy",
|
||||||
defaults={},
|
defaults={},
|
||||||
destructor=true,
|
destructor=true,
|
||||||
location="imgui_impl_vulkan:244",
|
location="imgui_impl_vulkan:256",
|
||||||
ov_cimguiname="ImGui_ImplVulkanH_Window_destroy",
|
ov_cimguiname="ImGui_ImplVulkanH_Window_destroy",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(ImGui_ImplVulkanH_Window*)",
|
signature="(ImGui_ImplVulkanH_Window*)",
|
||||||
@@ -1326,29 +1381,26 @@ local t={
|
|||||||
["(ImGui_ImplVulkanH_Window*)"]=nil},
|
["(ImGui_ImplVulkanH_Window*)"]=nil},
|
||||||
ImGui_ImplVulkan_AddTexture={
|
ImGui_ImplVulkan_AddTexture={
|
||||||
[1]={
|
[1]={
|
||||||
args="(VkSampler sampler,VkImageView image_view,VkImageLayout image_layout)",
|
args="(VkImageView image_view,VkImageLayout image_layout)",
|
||||||
argsT={
|
argsT={
|
||||||
[1]={
|
[1]={
|
||||||
name="sampler",
|
|
||||||
type="VkSampler"},
|
|
||||||
[2]={
|
|
||||||
name="image_view",
|
name="image_view",
|
||||||
type="VkImageView"},
|
type="VkImageView"},
|
||||||
[3]={
|
[2]={
|
||||||
name="image_layout",
|
name="image_layout",
|
||||||
type="VkImageLayout"}},
|
type="VkImageLayout"}},
|
||||||
argsoriginal="(VkSampler sampler,VkImageView image_view,VkImageLayout image_layout)",
|
argsoriginal="(VkImageView image_view,VkImageLayout image_layout)",
|
||||||
call_args="(sampler,image_view,image_layout)",
|
call_args="(image_view,image_layout)",
|
||||||
call_args_old="(sampler,image_view,image_layout)",
|
call_args_old="(image_view,image_layout)",
|
||||||
cimguiname="ImGui_ImplVulkan_AddTexture",
|
cimguiname="ImGui_ImplVulkan_AddTexture",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkan_AddTexture",
|
funcname="ImGui_ImplVulkan_AddTexture",
|
||||||
location="imgui_impl_vulkan:152",
|
location="imgui_impl_vulkan:157",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_AddTexture",
|
ov_cimguiname="ImGui_ImplVulkan_AddTexture",
|
||||||
ret="VkDescriptorSet",
|
ret="VkDescriptorSet",
|
||||||
signature="(VkSampler,VkImageView,VkImageLayout)",
|
signature="(VkImageView,VkImageLayout)",
|
||||||
stname=""},
|
stname=""},
|
||||||
["(VkSampler,VkImageView,VkImageLayout)"]=nil},
|
["(VkImageView,VkImageLayout)"]=nil},
|
||||||
ImGui_ImplVulkan_CreateMainPipeline={
|
ImGui_ImplVulkan_CreateMainPipeline={
|
||||||
[1]={
|
[1]={
|
||||||
args="(const ImGui_ImplVulkan_PipelineInfo* info)",
|
args="(const ImGui_ImplVulkan_PipelineInfo* info)",
|
||||||
@@ -1362,7 +1414,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkan_CreateMainPipeline",
|
cimguiname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkan_CreateMainPipeline",
|
funcname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||||
location="imgui_impl_vulkan:144",
|
location="imgui_impl_vulkan:151",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_CreateMainPipeline",
|
ov_cimguiname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(const ImGui_ImplVulkan_PipelineInfo*)",
|
signature="(const ImGui_ImplVulkan_PipelineInfo*)",
|
||||||
@@ -1381,7 +1433,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkan_Init",
|
cimguiname="ImGui_ImplVulkan_Init",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkan_Init",
|
funcname="ImGui_ImplVulkan_Init",
|
||||||
location="imgui_impl_vulkan:135",
|
location="imgui_impl_vulkan:142",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_Init",
|
ov_cimguiname="ImGui_ImplVulkan_Init",
|
||||||
ret="bool",
|
ret="bool",
|
||||||
signature="(ImGui_ImplVulkan_InitInfo*)",
|
signature="(ImGui_ImplVulkan_InitInfo*)",
|
||||||
@@ -1407,7 +1459,7 @@ local t={
|
|||||||
defaults={
|
defaults={
|
||||||
user_data="nullptr"},
|
user_data="nullptr"},
|
||||||
funcname="ImGui_ImplVulkan_LoadFunctions",
|
funcname="ImGui_ImplVulkan_LoadFunctions",
|
||||||
location="imgui_impl_vulkan:157",
|
location="imgui_impl_vulkan:166",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_LoadFunctions",
|
ov_cimguiname="ImGui_ImplVulkan_LoadFunctions",
|
||||||
ret="bool",
|
ret="bool",
|
||||||
signature="(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)",
|
signature="(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)",
|
||||||
@@ -1423,7 +1475,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkan_NewFrame",
|
cimguiname="ImGui_ImplVulkan_NewFrame",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkan_NewFrame",
|
funcname="ImGui_ImplVulkan_NewFrame",
|
||||||
location="imgui_impl_vulkan:137",
|
location="imgui_impl_vulkan:144",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_NewFrame",
|
ov_cimguiname="ImGui_ImplVulkan_NewFrame",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="()",
|
signature="()",
|
||||||
@@ -1442,7 +1494,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkan_RemoveTexture",
|
cimguiname="ImGui_ImplVulkan_RemoveTexture",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkan_RemoveTexture",
|
funcname="ImGui_ImplVulkan_RemoveTexture",
|
||||||
location="imgui_impl_vulkan:153",
|
location="imgui_impl_vulkan:158",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_RemoveTexture",
|
ov_cimguiname="ImGui_ImplVulkan_RemoveTexture",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(VkDescriptorSet)",
|
signature="(VkDescriptorSet)",
|
||||||
@@ -1468,7 +1520,7 @@ local t={
|
|||||||
defaults={
|
defaults={
|
||||||
pipeline="0ULL"},
|
pipeline="0ULL"},
|
||||||
funcname="ImGui_ImplVulkan_RenderDrawData",
|
funcname="ImGui_ImplVulkan_RenderDrawData",
|
||||||
location="imgui_impl_vulkan:138",
|
location="imgui_impl_vulkan:145",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_RenderDrawData",
|
ov_cimguiname="ImGui_ImplVulkan_RenderDrawData",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(ImDrawData*,VkCommandBuffer,VkPipeline)",
|
signature="(ImDrawData*,VkCommandBuffer,VkPipeline)",
|
||||||
@@ -1487,7 +1539,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkan_SetMinImageCount",
|
cimguiname="ImGui_ImplVulkan_SetMinImageCount",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkan_SetMinImageCount",
|
funcname="ImGui_ImplVulkan_SetMinImageCount",
|
||||||
location="imgui_impl_vulkan:139",
|
location="imgui_impl_vulkan:146",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_SetMinImageCount",
|
ov_cimguiname="ImGui_ImplVulkan_SetMinImageCount",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(uint32_t)",
|
signature="(uint32_t)",
|
||||||
@@ -1503,7 +1555,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkan_Shutdown",
|
cimguiname="ImGui_ImplVulkan_Shutdown",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkan_Shutdown",
|
funcname="ImGui_ImplVulkan_Shutdown",
|
||||||
location="imgui_impl_vulkan:136",
|
location="imgui_impl_vulkan:143",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_Shutdown",
|
ov_cimguiname="ImGui_ImplVulkan_Shutdown",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="()",
|
signature="()",
|
||||||
@@ -1522,7 +1574,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkan_UpdateTexture",
|
cimguiname="ImGui_ImplVulkan_UpdateTexture",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkan_UpdateTexture",
|
funcname="ImGui_ImplVulkan_UpdateTexture",
|
||||||
location="imgui_impl_vulkan:147",
|
location="imgui_impl_vulkan:154",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_UpdateTexture",
|
ov_cimguiname="ImGui_ImplVulkan_UpdateTexture",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(ImTextureData*)",
|
signature="(ImTextureData*)",
|
||||||
@@ -1556,6 +1608,7 @@ t.ImGui_ImplOpenGL2_Shutdown["()"]=t.ImGui_ImplOpenGL2_Shutdown[1]
|
|||||||
t.ImGui_ImplOpenGL2_UpdateTexture["(ImTextureData*)"]=t.ImGui_ImplOpenGL2_UpdateTexture[1]
|
t.ImGui_ImplOpenGL2_UpdateTexture["(ImTextureData*)"]=t.ImGui_ImplOpenGL2_UpdateTexture[1]
|
||||||
t.ImGui_ImplOpenGL3_CreateDeviceObjects["()"]=t.ImGui_ImplOpenGL3_CreateDeviceObjects[1]
|
t.ImGui_ImplOpenGL3_CreateDeviceObjects["()"]=t.ImGui_ImplOpenGL3_CreateDeviceObjects[1]
|
||||||
t.ImGui_ImplOpenGL3_DestroyDeviceObjects["()"]=t.ImGui_ImplOpenGL3_DestroyDeviceObjects[1]
|
t.ImGui_ImplOpenGL3_DestroyDeviceObjects["()"]=t.ImGui_ImplOpenGL3_DestroyDeviceObjects[1]
|
||||||
|
t.ImGui_ImplOpenGL3_GetRenderState["()"]=t.ImGui_ImplOpenGL3_GetRenderState[1]
|
||||||
t.ImGui_ImplOpenGL3_Init["(const char*)"]=t.ImGui_ImplOpenGL3_Init[1]
|
t.ImGui_ImplOpenGL3_Init["(const char*)"]=t.ImGui_ImplOpenGL3_Init[1]
|
||||||
t.ImGui_ImplOpenGL3_NewFrame["()"]=t.ImGui_ImplOpenGL3_NewFrame[1]
|
t.ImGui_ImplOpenGL3_NewFrame["()"]=t.ImGui_ImplOpenGL3_NewFrame[1]
|
||||||
t.ImGui_ImplOpenGL3_RenderDrawData["(ImDrawData*)"]=t.ImGui_ImplOpenGL3_RenderDrawData[1]
|
t.ImGui_ImplOpenGL3_RenderDrawData["(ImDrawData*)"]=t.ImGui_ImplOpenGL3_RenderDrawData[1]
|
||||||
@@ -1572,6 +1625,7 @@ t.ImGui_ImplSDL2_InitForVulkan["(SDL_Window*)"]=t.ImGui_ImplSDL2_InitForVulkan[1
|
|||||||
t.ImGui_ImplSDL2_NewFrame["()"]=t.ImGui_ImplSDL2_NewFrame[1]
|
t.ImGui_ImplSDL2_NewFrame["()"]=t.ImGui_ImplSDL2_NewFrame[1]
|
||||||
t.ImGui_ImplSDL2_ProcessEvent["(const SDL_Event*)"]=t.ImGui_ImplSDL2_ProcessEvent[1]
|
t.ImGui_ImplSDL2_ProcessEvent["(const SDL_Event*)"]=t.ImGui_ImplSDL2_ProcessEvent[1]
|
||||||
t.ImGui_ImplSDL2_SetGamepadMode["(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)"]=t.ImGui_ImplSDL2_SetGamepadMode[1]
|
t.ImGui_ImplSDL2_SetGamepadMode["(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)"]=t.ImGui_ImplSDL2_SetGamepadMode[1]
|
||||||
|
t.ImGui_ImplSDL2_SetMouseCaptureMode["(ImGui_ImplSDL2_MouseCaptureMode)"]=t.ImGui_ImplSDL2_SetMouseCaptureMode[1]
|
||||||
t.ImGui_ImplSDL2_Shutdown["()"]=t.ImGui_ImplSDL2_Shutdown[1]
|
t.ImGui_ImplSDL2_Shutdown["()"]=t.ImGui_ImplSDL2_Shutdown[1]
|
||||||
t.ImGui_ImplSDL3_InitForD3D["(SDL_Window*)"]=t.ImGui_ImplSDL3_InitForD3D[1]
|
t.ImGui_ImplSDL3_InitForD3D["(SDL_Window*)"]=t.ImGui_ImplSDL3_InitForD3D[1]
|
||||||
t.ImGui_ImplSDL3_InitForMetal["(SDL_Window*)"]=t.ImGui_ImplSDL3_InitForMetal[1]
|
t.ImGui_ImplSDL3_InitForMetal["(SDL_Window*)"]=t.ImGui_ImplSDL3_InitForMetal[1]
|
||||||
@@ -1583,6 +1637,7 @@ t.ImGui_ImplSDL3_InitForVulkan["(SDL_Window*)"]=t.ImGui_ImplSDL3_InitForVulkan[1
|
|||||||
t.ImGui_ImplSDL3_NewFrame["()"]=t.ImGui_ImplSDL3_NewFrame[1]
|
t.ImGui_ImplSDL3_NewFrame["()"]=t.ImGui_ImplSDL3_NewFrame[1]
|
||||||
t.ImGui_ImplSDL3_ProcessEvent["(const SDL_Event*)"]=t.ImGui_ImplSDL3_ProcessEvent[1]
|
t.ImGui_ImplSDL3_ProcessEvent["(const SDL_Event*)"]=t.ImGui_ImplSDL3_ProcessEvent[1]
|
||||||
t.ImGui_ImplSDL3_SetGamepadMode["(ImGui_ImplSDL3_GamepadMode,SDL_Gamepad**,int)"]=t.ImGui_ImplSDL3_SetGamepadMode[1]
|
t.ImGui_ImplSDL3_SetGamepadMode["(ImGui_ImplSDL3_GamepadMode,SDL_Gamepad**,int)"]=t.ImGui_ImplSDL3_SetGamepadMode[1]
|
||||||
|
t.ImGui_ImplSDL3_SetMouseCaptureMode["(ImGui_ImplSDL3_MouseCaptureMode)"]=t.ImGui_ImplSDL3_SetMouseCaptureMode[1]
|
||||||
t.ImGui_ImplSDL3_Shutdown["()"]=t.ImGui_ImplSDL3_Shutdown[1]
|
t.ImGui_ImplSDL3_Shutdown["()"]=t.ImGui_ImplSDL3_Shutdown[1]
|
||||||
t.ImGui_ImplVulkanH_CreateOrResizeWindow["(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)"]=t.ImGui_ImplVulkanH_CreateOrResizeWindow[1]
|
t.ImGui_ImplVulkanH_CreateOrResizeWindow["(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)"]=t.ImGui_ImplVulkanH_CreateOrResizeWindow[1]
|
||||||
t.ImGui_ImplVulkanH_DestroyWindow["(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)"]=t.ImGui_ImplVulkanH_DestroyWindow[1]
|
t.ImGui_ImplVulkanH_DestroyWindow["(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)"]=t.ImGui_ImplVulkanH_DestroyWindow[1]
|
||||||
@@ -1593,7 +1648,7 @@ t.ImGui_ImplVulkanH_SelectQueueFamilyIndex["(VkPhysicalDevice)"]=t.ImGui_ImplVul
|
|||||||
t.ImGui_ImplVulkanH_SelectSurfaceFormat["(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)"]=t.ImGui_ImplVulkanH_SelectSurfaceFormat[1]
|
t.ImGui_ImplVulkanH_SelectSurfaceFormat["(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)"]=t.ImGui_ImplVulkanH_SelectSurfaceFormat[1]
|
||||||
t.ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window["()"]=t.ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window[1]
|
t.ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window["()"]=t.ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window[1]
|
||||||
t.ImGui_ImplVulkanH_Window_destroy["(ImGui_ImplVulkanH_Window*)"]=t.ImGui_ImplVulkanH_Window_destroy[1]
|
t.ImGui_ImplVulkanH_Window_destroy["(ImGui_ImplVulkanH_Window*)"]=t.ImGui_ImplVulkanH_Window_destroy[1]
|
||||||
t.ImGui_ImplVulkan_AddTexture["(VkSampler,VkImageView,VkImageLayout)"]=t.ImGui_ImplVulkan_AddTexture[1]
|
t.ImGui_ImplVulkan_AddTexture["(VkImageView,VkImageLayout)"]=t.ImGui_ImplVulkan_AddTexture[1]
|
||||||
t.ImGui_ImplVulkan_CreateMainPipeline["(const ImGui_ImplVulkan_PipelineInfo*)"]=t.ImGui_ImplVulkan_CreateMainPipeline[1]
|
t.ImGui_ImplVulkan_CreateMainPipeline["(const ImGui_ImplVulkan_PipelineInfo*)"]=t.ImGui_ImplVulkan_CreateMainPipeline[1]
|
||||||
t.ImGui_ImplVulkan_Init["(ImGui_ImplVulkan_InitInfo*)"]=t.ImGui_ImplVulkan_Init[1]
|
t.ImGui_ImplVulkan_Init["(ImGui_ImplVulkan_InitInfo*)"]=t.ImGui_ImplVulkan_Init[1]
|
||||||
t.ImGui_ImplVulkan_LoadFunctions["(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)"]=t.ImGui_ImplVulkan_LoadFunctions[1]
|
t.ImGui_ImplVulkan_LoadFunctions["(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)"]=t.ImGui_ImplVulkan_LoadFunctions[1]
|
||||||
|
|||||||
@@ -8,6 +8,9 @@ ImColor_ImColor 5
|
|||||||
ImDrawList_AddText 2
|
ImDrawList_AddText 2
|
||||||
1 void ImDrawList_AddText_Vec2 (const ImVec2,ImU32,const char*,const char*)
|
1 void ImDrawList_AddText_Vec2 (const ImVec2,ImU32,const char*,const char*)
|
||||||
2 void ImDrawList_AddText_FontPtr (ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)
|
2 void ImDrawList_AddText_FontPtr (ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)
|
||||||
|
ImGuiPackedDate_ImGuiPackedDate 2
|
||||||
|
1 nil ImGuiPackedDate_ImGuiPackedDate_Nil ()
|
||||||
|
2 nil ImGuiPackedDate_ImGuiPackedDate_Int (int)
|
||||||
ImGuiPtrOrIndex_ImGuiPtrOrIndex 2
|
ImGuiPtrOrIndex_ImGuiPtrOrIndex 2
|
||||||
1 nil ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr (void*)
|
1 nil ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr (void*)
|
||||||
2 nil ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int (int)
|
2 nil ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int (int)
|
||||||
@@ -217,8 +220,8 @@ igMenuItem 2
|
|||||||
1 bool igMenuItem_Bool (const char*,const char*,bool,bool)
|
1 bool igMenuItem_Bool (const char*,const char*,bool,bool)
|
||||||
2 bool igMenuItem_BoolPtr (const char*,const char*,bool*,bool)
|
2 bool igMenuItem_BoolPtr (const char*,const char*,bool*,bool)
|
||||||
igOpenPopup 2
|
igOpenPopup 2
|
||||||
1 void igOpenPopup_Str (const char*,ImGuiPopupFlags)
|
1 bool igOpenPopup_Str (const char*,ImGuiPopupFlags)
|
||||||
2 void igOpenPopup_ID (ImGuiID,ImGuiPopupFlags)
|
2 bool igOpenPopup_ID (ImGuiID,ImGuiPopupFlags)
|
||||||
igPlotHistogram 2
|
igPlotHistogram 2
|
||||||
1 void igPlotHistogram_FloatPtr (const char*,const float*,int,int,const char*,float,float,ImVec2,int)
|
1 void igPlotHistogram_FloatPtr (const char*,const float*,int,int,const char*,float,float,ImVec2,int)
|
||||||
2 void igPlotHistogram_FnFloatPtr (const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)
|
2 void igPlotHistogram_FnFloatPtr (const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)
|
||||||
@@ -243,8 +246,8 @@ igSelectable 2
|
|||||||
1 bool igSelectable_Bool (const char*,bool,ImGuiSelectableFlags,const ImVec2)
|
1 bool igSelectable_Bool (const char*,bool,ImGuiSelectableFlags,const ImVec2)
|
||||||
2 bool igSelectable_BoolPtr (const char*,bool*,ImGuiSelectableFlags,const ImVec2)
|
2 bool igSelectable_BoolPtr (const char*,bool*,ImGuiSelectableFlags,const ImVec2)
|
||||||
igSetItemKeyOwner 2
|
igSetItemKeyOwner 2
|
||||||
1 void igSetItemKeyOwner_Nil (ImGuiKey)
|
1 bool igSetItemKeyOwner_Nil (ImGuiKey)
|
||||||
2 void igSetItemKeyOwner_InputFlags (ImGuiKey,ImGuiInputFlags)
|
2 bool igSetItemKeyOwner_InputFlags (ImGuiKey,ImGuiInputFlags)
|
||||||
igSetScrollFromPosX 2
|
igSetScrollFromPosX 2
|
||||||
1 void igSetScrollFromPosX_Float (float,float)
|
1 void igSetScrollFromPosX_Float (float,float)
|
||||||
2 void igSetScrollFromPosX_WindowPtr (ImGuiWindow*,float,float)
|
2 void igSetScrollFromPosX_WindowPtr (ImGuiWindow*,float,float)
|
||||||
@@ -309,4 +312,4 @@ igValue 4
|
|||||||
2 void igValue_Int (const char*,int)
|
2 void igValue_Int (const char*,int)
|
||||||
3 void igValue_Uint (const char*,unsigned int)
|
3 void igValue_Uint (const char*,unsigned int)
|
||||||
4 void igValue_Float (const char*,float,const char*)
|
4 void igValue_Float (const char*,float,const char*)
|
||||||
216 overloaded
|
218 overloaded
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -56,6 +56,7 @@
|
|||||||
"ImGuiDebugAllocInfo": "struct ImGuiDebugAllocInfo",
|
"ImGuiDebugAllocInfo": "struct ImGuiDebugAllocInfo",
|
||||||
"ImGuiDebugItemPathQuery": "struct ImGuiDebugItemPathQuery",
|
"ImGuiDebugItemPathQuery": "struct ImGuiDebugItemPathQuery",
|
||||||
"ImGuiDebugLogFlags": "int",
|
"ImGuiDebugLogFlags": "int",
|
||||||
|
"ImGuiDemoMarkerCallback": "void (*)(const char* file, int line, const char* section);",
|
||||||
"ImGuiDragDropFlags": "int",
|
"ImGuiDragDropFlags": "int",
|
||||||
"ImGuiErrorCallback": "void (*)(ImGuiContext* ctx, void* user_data, const char* msg);",
|
"ImGuiErrorCallback": "void (*)(ImGuiContext* ctx, void* user_data, const char* msg);",
|
||||||
"ImGuiErrorRecoveryState": "struct ImGuiErrorRecoveryState",
|
"ImGuiErrorRecoveryState": "struct ImGuiErrorRecoveryState",
|
||||||
@@ -119,6 +120,7 @@
|
|||||||
"ImGuiOldColumnFlags": "int",
|
"ImGuiOldColumnFlags": "int",
|
||||||
"ImGuiOldColumns": "struct ImGuiOldColumns",
|
"ImGuiOldColumns": "struct ImGuiOldColumns",
|
||||||
"ImGuiOnceUponAFrame": "struct ImGuiOnceUponAFrame",
|
"ImGuiOnceUponAFrame": "struct ImGuiOnceUponAFrame",
|
||||||
|
"ImGuiPackedDate": "struct ImGuiPackedDate",
|
||||||
"ImGuiPayload": "struct ImGuiPayload",
|
"ImGuiPayload": "struct ImGuiPayload",
|
||||||
"ImGuiPlatformIO": "struct ImGuiPlatformIO",
|
"ImGuiPlatformIO": "struct ImGuiPlatformIO",
|
||||||
"ImGuiPlatformImeData": "struct ImGuiPlatformImeData",
|
"ImGuiPlatformImeData": "struct ImGuiPlatformImeData",
|
||||||
@@ -132,6 +134,7 @@
|
|||||||
"ImGuiSelectionRequest": "struct ImGuiSelectionRequest",
|
"ImGuiSelectionRequest": "struct ImGuiSelectionRequest",
|
||||||
"ImGuiSelectionUserData": "ImS64",
|
"ImGuiSelectionUserData": "ImS64",
|
||||||
"ImGuiSeparatorFlags": "int",
|
"ImGuiSeparatorFlags": "int",
|
||||||
|
"ImGuiSettingsCleanupArgs": "struct ImGuiSettingsCleanupArgs",
|
||||||
"ImGuiSettingsHandler": "struct ImGuiSettingsHandler",
|
"ImGuiSettingsHandler": "struct ImGuiSettingsHandler",
|
||||||
"ImGuiShrinkWidthItem": "struct ImGuiShrinkWidthItem",
|
"ImGuiShrinkWidthItem": "struct ImGuiShrinkWidthItem",
|
||||||
"ImGuiSizeCallback": "void (*)(ImGuiSizeCallbackData* data);",
|
"ImGuiSizeCallback": "void (*)(ImGuiSizeCallbackData* data);",
|
||||||
@@ -161,6 +164,7 @@
|
|||||||
"ImGuiTableFlags": "int",
|
"ImGuiTableFlags": "int",
|
||||||
"ImGuiTableHeaderData": "struct ImGuiTableHeaderData",
|
"ImGuiTableHeaderData": "struct ImGuiTableHeaderData",
|
||||||
"ImGuiTableInstanceData": "struct ImGuiTableInstanceData",
|
"ImGuiTableInstanceData": "struct ImGuiTableInstanceData",
|
||||||
|
"ImGuiTableReconcileColumnData": "struct ImGuiTableReconcileColumnData",
|
||||||
"ImGuiTableRowFlags": "int",
|
"ImGuiTableRowFlags": "int",
|
||||||
"ImGuiTableSettings": "struct ImGuiTableSettings",
|
"ImGuiTableSettings": "struct ImGuiTableSettings",
|
||||||
"ImGuiTableSortSpecs": "struct ImGuiTableSortSpecs",
|
"ImGuiTableSortSpecs": "struct ImGuiTableSortSpecs",
|
||||||
|
|||||||
@@ -56,6 +56,7 @@ local t={
|
|||||||
ImGuiDebugAllocInfo="struct ImGuiDebugAllocInfo",
|
ImGuiDebugAllocInfo="struct ImGuiDebugAllocInfo",
|
||||||
ImGuiDebugItemPathQuery="struct ImGuiDebugItemPathQuery",
|
ImGuiDebugItemPathQuery="struct ImGuiDebugItemPathQuery",
|
||||||
ImGuiDebugLogFlags="int",
|
ImGuiDebugLogFlags="int",
|
||||||
|
ImGuiDemoMarkerCallback="void (*)(const char* file, int line, const char* section);",
|
||||||
ImGuiDragDropFlags="int",
|
ImGuiDragDropFlags="int",
|
||||||
ImGuiErrorCallback="void (*)(ImGuiContext* ctx, void* user_data, const char* msg);",
|
ImGuiErrorCallback="void (*)(ImGuiContext* ctx, void* user_data, const char* msg);",
|
||||||
ImGuiErrorRecoveryState="struct ImGuiErrorRecoveryState",
|
ImGuiErrorRecoveryState="struct ImGuiErrorRecoveryState",
|
||||||
@@ -119,6 +120,7 @@ local t={
|
|||||||
ImGuiOldColumnFlags="int",
|
ImGuiOldColumnFlags="int",
|
||||||
ImGuiOldColumns="struct ImGuiOldColumns",
|
ImGuiOldColumns="struct ImGuiOldColumns",
|
||||||
ImGuiOnceUponAFrame="struct ImGuiOnceUponAFrame",
|
ImGuiOnceUponAFrame="struct ImGuiOnceUponAFrame",
|
||||||
|
ImGuiPackedDate="struct ImGuiPackedDate",
|
||||||
ImGuiPayload="struct ImGuiPayload",
|
ImGuiPayload="struct ImGuiPayload",
|
||||||
ImGuiPlatformIO="struct ImGuiPlatformIO",
|
ImGuiPlatformIO="struct ImGuiPlatformIO",
|
||||||
ImGuiPlatformImeData="struct ImGuiPlatformImeData",
|
ImGuiPlatformImeData="struct ImGuiPlatformImeData",
|
||||||
@@ -132,6 +134,7 @@ local t={
|
|||||||
ImGuiSelectionRequest="struct ImGuiSelectionRequest",
|
ImGuiSelectionRequest="struct ImGuiSelectionRequest",
|
||||||
ImGuiSelectionUserData="ImS64",
|
ImGuiSelectionUserData="ImS64",
|
||||||
ImGuiSeparatorFlags="int",
|
ImGuiSeparatorFlags="int",
|
||||||
|
ImGuiSettingsCleanupArgs="struct ImGuiSettingsCleanupArgs",
|
||||||
ImGuiSettingsHandler="struct ImGuiSettingsHandler",
|
ImGuiSettingsHandler="struct ImGuiSettingsHandler",
|
||||||
ImGuiShrinkWidthItem="struct ImGuiShrinkWidthItem",
|
ImGuiShrinkWidthItem="struct ImGuiShrinkWidthItem",
|
||||||
ImGuiSizeCallback="void (*)(ImGuiSizeCallbackData* data);",
|
ImGuiSizeCallback="void (*)(ImGuiSizeCallbackData* data);",
|
||||||
@@ -161,6 +164,7 @@ local t={
|
|||||||
ImGuiTableFlags="int",
|
ImGuiTableFlags="int",
|
||||||
ImGuiTableHeaderData="struct ImGuiTableHeaderData",
|
ImGuiTableHeaderData="struct ImGuiTableHeaderData",
|
||||||
ImGuiTableInstanceData="struct ImGuiTableInstanceData",
|
ImGuiTableInstanceData="struct ImGuiTableInstanceData",
|
||||||
|
ImGuiTableReconcileColumnData="struct ImGuiTableReconcileColumnData",
|
||||||
ImGuiTableRowFlags="int",
|
ImGuiTableRowFlags="int",
|
||||||
ImGuiTableSettings="struct ImGuiTableSettings",
|
ImGuiTableSettings="struct ImGuiTableSettings",
|
||||||
ImGuiTableSortSpecs="struct ImGuiTableSortSpecs",
|
ImGuiTableSortSpecs="struct ImGuiTableSortSpecs",
|
||||||
|
|||||||
2
imgui
2
imgui
Submodule imgui updated: 6d910d5487...a9e7a8c880
Reference in New Issue
Block a user