Merge branch 'docking_inter'

This commit is contained in:
sonoro1234
2023-04-18 10:43:06 +02:00
19 changed files with 4740 additions and 3870 deletions

View File

@@ -986,15 +986,28 @@ local function ADDIMSTR_S(FP)
if dd.signature == defT2.signature then
doadd = false;
print("skip _S addition",defT2.cimguiname)
--M.prtable(defT2)
break
end
end
--delete imstrv generation
if FP.NOIMSTRV then
newcdefs[#newcdefs] = nil
cimf[t.signature] = nil
for i,v in ipairs(cimf) do
if v.signature == t.signature then
table.remove(cimf, i)
break
end
end
end
--add _S version
if doadd then
if doadd and not FP.NOCHAR then
cimf[#cimf+1] = defT2
cimf[defT2.signature] = defT2
newcdefs[#newcdefs+1] = {stname=t.stname,funcname=t.funcname,args=defT2.args,signature=defT2.signature,cimguiname=defT2.cimguiname,ret =defT2.ret}
end
end
else print("not cimguiname in");M.prtable(t)
end

View File

@@ -15,10 +15,10 @@ set PATH=%PATH%;C:\anima;C:\mingws\i686-7.2.0-release-posix-dwarf-rt_v5-rev1\min
:: set PATH=%PATH%;C:\luaGL\sources\luajit-master\luajit-master\bin\mingw32;C:\mingw32\bin;
::process files
:: arg[1] compiler name gcc, clang or cl
:: arg[2] options as words in one string: internal for imgui_internal generation, freetype for freetype generation, comments for comments generation
:: arg[2] options as words in one string: internal for imgui_internal generation, freetype for freetype generation, comments for comments generation, nochar to skip char* function version, noimstrv to skip imstrv
:: examples: "" "internal" "internal freetype comments"
:: arg[3..n] name of implementations to generate and/or CFLAGS (e.g. -DIMGUI_USER_CONFIG or -DIMGUI_USE_WCHAR32)
luajit ./generator.lua gcc "internal" glfw opengl3 opengl2 sdl2
luajit ./generator.lua gcc "internal noimstrv" glfw opengl3 opengl2 sdl2 %*
::leave console open
cmd /k

View File

@@ -9,6 +9,8 @@ local COMPILER = script_args[1]
local INTERNAL_GENERATION = script_args[2]:match("internal") and true or false
local FREETYPE_GENERATION = script_args[2]:match("freetype") and true or false
local COMMENTS_GENERATION = script_args[2]:match("comments") and true or false
local NOCHAR = script_args[2]:match("nochar") and true or false
local NOIMSTRV = script_args[2]:match("noimstrv") and true or false
local IMGUI_PATH = os.getenv"IMGUI_PATH" or "../imgui"
local CFLAGS = ""
local CPRE,CTEST
@@ -249,7 +251,9 @@ local function cimgui_generation(parser)
cstructsstr = cstructsstr.."\n#define IMGUI_HAS_DOCK 1\n"
end
if gdefines.IMGUI_HAS_IMSTR then
if not (NOCHAR or NOIMSTRV) then
cstructsstr = cstructsstr.."\n#define IMGUI_HAS_IMSTR 1\n"
end
end
hstrfile = hstrfile:gsub([[#include "imgui_structs%.h"]],cstructsstr)
@@ -291,7 +295,10 @@ if gdefines.IMGUI_HAS_DOCK then
]]
end
assert(not NOCHAR or not NOIMSTRV,"nochar and noimstrv cant be set at the same time")
print("IMGUI_HAS_IMSTR",gdefines.IMGUI_HAS_IMSTR)
print("NOCHAR",NOCHAR)
print("NOIMSTRV",NOIMSTRV)
print("IMGUI_HAS_DOCK",gdefines.IMGUI_HAS_DOCK)
print("IMGUI_VERSION",gdefines.IMGUI_VERSION)
@@ -311,6 +318,8 @@ local function parseImGuiHeader(header,names)
parser.UDTs = {"ImVec2","ImVec4","ImColor","ImRect"}
--parser.gen_template_typedef = gen_template_typedef --use auto
parser.COMMENTS_GENERATION = COMMENTS_GENERATION
parser.NOCHAR = NOCHAR
parser.NOIMSTRV = NOIMSTRV
local defines = parser:take_lines(CPRE..header,names,COMPILER)
return parser

View File

@@ -1,4 +1,4 @@
#!/usr/bin/sh
#!/bin/bash
# this script must be executed in this directory
# all the output goes to generator/output folder
@@ -13,13 +13,65 @@
#process files
# arg[1] compiler name gcc, clang, or cl
# arg[2] options as words in one string: internal for imgui_internal generation, freetype for freetype generation, comments for comments generation
# arg[2] options as words in one string: internal for imgui_internal generation, freetype for freetype generation, comments for comments generation, nochar to skip char* function version, noimstrv to skip imstrv
# examples: "" "internal" "internal freetype" "comments internal"
# arg[3..n] name of implementations to generate and/or CLFLAGS (e.g. -DIMGUI_USER_CONFIG or -DIMGUI_USE_WCHAR32)
#
# parse command line arguments
# ref: https://stackoverflow.com/questions/192249/how-do-i-parse-command-line-arguments-in-bash
POSITIONAL_ARGS=()
TARGETS="internal noimstrv"
CFLAGS="glfw opengl3 opengl2 sdl2"
help() {
cat <<EOF
Usage of generator.sh:
-t --target specify which imgui features should be generated
(default: $TARGETS)
-c --cflags specify additional gcc flags
(default: $CFLAGS
-h --help show this message and exit
EOF
}
while [[ $# -gt 0 ]]; do
case $1 in
-c|--cflags)
CFLAGS="$2"
shift # past argument
shift # past value
;;
-t|--target)
TARGETS="$2"
shift # past argument
shift # past value
;;
-h|--help)
help
exit 0
;;
-*|--*)
echo "Unknown option $1"
help
exit 1
;;
*)
POSITIONAL_ARGS+=("$1") # save positional arg
shift # past argument
;;
esac
done
set -- "${POSITIONAL_ARGS[@]}" # restore positional parameters
if [[ "$OSTYPE" == "cygwin" || "$OSTYPE" == "msys" || "$OSTYPE" == "win32" ]];
then
suffix='.exe'
fi
luajit$suffix ./generator.lua gcc "internal" glfw opengl3 opengl2 sdl2
echo "CFLAGS: " $CFLAGS
echo "TARGETS: " $TARGETS
luajit$suffix ./generator.lua gcc "$TARGETS" $CFLAGS

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -17,7 +17,7 @@
"cimguiname": "ImGui_ImplGlfw_CharCallback",
"defaults": {},
"funcname": "ImGui_ImplGlfw_CharCallback",
"location": "imgui_impl_glfw:45",
"location": "imgui_impl_glfw:46",
"ov_cimguiname": "ImGui_ImplGlfw_CharCallback",
"ret": "void",
"signature": "(GLFWwindow*,unsigned int)",
@@ -42,7 +42,7 @@
"cimguiname": "ImGui_ImplGlfw_CursorEnterCallback",
"defaults": {},
"funcname": "ImGui_ImplGlfw_CursorEnterCallback",
"location": "imgui_impl_glfw:40",
"location": "imgui_impl_glfw:41",
"ov_cimguiname": "ImGui_ImplGlfw_CursorEnterCallback",
"ret": "void",
"signature": "(GLFWwindow*,int)",
@@ -71,7 +71,7 @@
"cimguiname": "ImGui_ImplGlfw_CursorPosCallback",
"defaults": {},
"funcname": "ImGui_ImplGlfw_CursorPosCallback",
"location": "imgui_impl_glfw:41",
"location": "imgui_impl_glfw:42",
"ov_cimguiname": "ImGui_ImplGlfw_CursorPosCallback",
"ret": "void",
"signature": "(GLFWwindow*,double,double)",
@@ -96,7 +96,7 @@
"cimguiname": "ImGui_ImplGlfw_InitForOpenGL",
"defaults": {},
"funcname": "ImGui_ImplGlfw_InitForOpenGL",
"location": "imgui_impl_glfw:22",
"location": "imgui_impl_glfw:23",
"ov_cimguiname": "ImGui_ImplGlfw_InitForOpenGL",
"ret": "bool",
"signature": "(GLFWwindow*,bool)",
@@ -121,7 +121,7 @@
"cimguiname": "ImGui_ImplGlfw_InitForOther",
"defaults": {},
"funcname": "ImGui_ImplGlfw_InitForOther",
"location": "imgui_impl_glfw:24",
"location": "imgui_impl_glfw:25",
"ov_cimguiname": "ImGui_ImplGlfw_InitForOther",
"ret": "bool",
"signature": "(GLFWwindow*,bool)",
@@ -146,7 +146,7 @@
"cimguiname": "ImGui_ImplGlfw_InitForVulkan",
"defaults": {},
"funcname": "ImGui_ImplGlfw_InitForVulkan",
"location": "imgui_impl_glfw:23",
"location": "imgui_impl_glfw:24",
"ov_cimguiname": "ImGui_ImplGlfw_InitForVulkan",
"ret": "bool",
"signature": "(GLFWwindow*,bool)",
@@ -167,7 +167,7 @@
"cimguiname": "ImGui_ImplGlfw_InstallCallbacks",
"defaults": {},
"funcname": "ImGui_ImplGlfw_InstallCallbacks",
"location": "imgui_impl_glfw:31",
"location": "imgui_impl_glfw:32",
"ov_cimguiname": "ImGui_ImplGlfw_InstallCallbacks",
"ret": "void",
"signature": "(GLFWwindow*)",
@@ -204,7 +204,7 @@
"cimguiname": "ImGui_ImplGlfw_KeyCallback",
"defaults": {},
"funcname": "ImGui_ImplGlfw_KeyCallback",
"location": "imgui_impl_glfw:44",
"location": "imgui_impl_glfw:45",
"ov_cimguiname": "ImGui_ImplGlfw_KeyCallback",
"ret": "void",
"signature": "(GLFWwindow*,int,int,int,int)",
@@ -229,7 +229,7 @@
"cimguiname": "ImGui_ImplGlfw_MonitorCallback",
"defaults": {},
"funcname": "ImGui_ImplGlfw_MonitorCallback",
"location": "imgui_impl_glfw:46",
"location": "imgui_impl_glfw:47",
"ov_cimguiname": "ImGui_ImplGlfw_MonitorCallback",
"ret": "void",
"signature": "(GLFWmonitor*,int)",
@@ -262,7 +262,7 @@
"cimguiname": "ImGui_ImplGlfw_MouseButtonCallback",
"defaults": {},
"funcname": "ImGui_ImplGlfw_MouseButtonCallback",
"location": "imgui_impl_glfw:42",
"location": "imgui_impl_glfw:43",
"ov_cimguiname": "ImGui_ImplGlfw_MouseButtonCallback",
"ret": "void",
"signature": "(GLFWwindow*,int,int,int)",
@@ -278,7 +278,7 @@
"cimguiname": "ImGui_ImplGlfw_NewFrame",
"defaults": {},
"funcname": "ImGui_ImplGlfw_NewFrame",
"location": "imgui_impl_glfw:26",
"location": "imgui_impl_glfw:27",
"ov_cimguiname": "ImGui_ImplGlfw_NewFrame",
"ret": "void",
"signature": "()",
@@ -299,7 +299,7 @@
"cimguiname": "ImGui_ImplGlfw_RestoreCallbacks",
"defaults": {},
"funcname": "ImGui_ImplGlfw_RestoreCallbacks",
"location": "imgui_impl_glfw:32",
"location": "imgui_impl_glfw:33",
"ov_cimguiname": "ImGui_ImplGlfw_RestoreCallbacks",
"ret": "void",
"signature": "(GLFWwindow*)",
@@ -328,7 +328,7 @@
"cimguiname": "ImGui_ImplGlfw_ScrollCallback",
"defaults": {},
"funcname": "ImGui_ImplGlfw_ScrollCallback",
"location": "imgui_impl_glfw:43",
"location": "imgui_impl_glfw:44",
"ov_cimguiname": "ImGui_ImplGlfw_ScrollCallback",
"ret": "void",
"signature": "(GLFWwindow*,double,double)",
@@ -349,7 +349,7 @@
"cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
"defaults": {},
"funcname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
"location": "imgui_impl_glfw:36",
"location": "imgui_impl_glfw:37",
"ov_cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
"ret": "void",
"signature": "(bool)",
@@ -365,7 +365,7 @@
"cimguiname": "ImGui_ImplGlfw_Shutdown",
"defaults": {},
"funcname": "ImGui_ImplGlfw_Shutdown",
"location": "imgui_impl_glfw:25",
"location": "imgui_impl_glfw:26",
"ov_cimguiname": "ImGui_ImplGlfw_Shutdown",
"ret": "void",
"signature": "()",
@@ -390,7 +390,7 @@
"cimguiname": "ImGui_ImplGlfw_WindowFocusCallback",
"defaults": {},
"funcname": "ImGui_ImplGlfw_WindowFocusCallback",
"location": "imgui_impl_glfw:39",
"location": "imgui_impl_glfw:40",
"ov_cimguiname": "ImGui_ImplGlfw_WindowFocusCallback",
"ret": "void",
"signature": "(GLFWwindow*,int)",
@@ -684,7 +684,7 @@
"cimguiname": "ImGui_ImplSDL2_InitForD3D",
"defaults": {},
"funcname": "ImGui_ImplSDL2_InitForD3D",
"location": "imgui_impl_sdl2:26",
"location": "imgui_impl_sdl2:27",
"ov_cimguiname": "ImGui_ImplSDL2_InitForD3D",
"ret": "bool",
"signature": "(SDL_Window*)",
@@ -705,7 +705,7 @@
"cimguiname": "ImGui_ImplSDL2_InitForMetal",
"defaults": {},
"funcname": "ImGui_ImplSDL2_InitForMetal",
"location": "imgui_impl_sdl2:27",
"location": "imgui_impl_sdl2:28",
"ov_cimguiname": "ImGui_ImplSDL2_InitForMetal",
"ret": "bool",
"signature": "(SDL_Window*)",
@@ -730,7 +730,7 @@
"cimguiname": "ImGui_ImplSDL2_InitForOpenGL",
"defaults": {},
"funcname": "ImGui_ImplSDL2_InitForOpenGL",
"location": "imgui_impl_sdl2:24",
"location": "imgui_impl_sdl2:25",
"ov_cimguiname": "ImGui_ImplSDL2_InitForOpenGL",
"ret": "bool",
"signature": "(SDL_Window*,void*)",
@@ -755,7 +755,7 @@
"cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer",
"defaults": {},
"funcname": "ImGui_ImplSDL2_InitForSDLRenderer",
"location": "imgui_impl_sdl2:28",
"location": "imgui_impl_sdl2:29",
"ov_cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer",
"ret": "bool",
"signature": "(SDL_Window*,SDL_Renderer*)",
@@ -776,7 +776,7 @@
"cimguiname": "ImGui_ImplSDL2_InitForVulkan",
"defaults": {},
"funcname": "ImGui_ImplSDL2_InitForVulkan",
"location": "imgui_impl_sdl2:25",
"location": "imgui_impl_sdl2:26",
"ov_cimguiname": "ImGui_ImplSDL2_InitForVulkan",
"ret": "bool",
"signature": "(SDL_Window*)",
@@ -792,7 +792,7 @@
"cimguiname": "ImGui_ImplSDL2_NewFrame",
"defaults": {},
"funcname": "ImGui_ImplSDL2_NewFrame",
"location": "imgui_impl_sdl2:30",
"location": "imgui_impl_sdl2:31",
"ov_cimguiname": "ImGui_ImplSDL2_NewFrame",
"ret": "void",
"signature": "()",
@@ -813,7 +813,7 @@
"cimguiname": "ImGui_ImplSDL2_ProcessEvent",
"defaults": {},
"funcname": "ImGui_ImplSDL2_ProcessEvent",
"location": "imgui_impl_sdl2:31",
"location": "imgui_impl_sdl2:32",
"ov_cimguiname": "ImGui_ImplSDL2_ProcessEvent",
"ret": "bool",
"signature": "(const SDL_Event*)",
@@ -829,7 +829,7 @@
"cimguiname": "ImGui_ImplSDL2_Shutdown",
"defaults": {},
"funcname": "ImGui_ImplSDL2_Shutdown",
"location": "imgui_impl_sdl2:29",
"location": "imgui_impl_sdl2:30",
"ov_cimguiname": "ImGui_ImplSDL2_Shutdown",
"ret": "void",
"signature": "()",

View File

@@ -14,7 +14,7 @@ defs["ImGui_ImplGlfw_CharCallback"][1]["call_args"] = "(window,c)"
defs["ImGui_ImplGlfw_CharCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CharCallback"
defs["ImGui_ImplGlfw_CharCallback"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_CharCallback"][1]["funcname"] = "ImGui_ImplGlfw_CharCallback"
defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw:45"
defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw:46"
defs["ImGui_ImplGlfw_CharCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CharCallback"
defs["ImGui_ImplGlfw_CharCallback"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_CharCallback"][1]["signature"] = "(GLFWwindow*,unsigned int)"
@@ -35,7 +35,7 @@ defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["call_args"] = "(window,entered)"
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CursorEnterCallback"
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["funcname"] = "ImGui_ImplGlfw_CursorEnterCallback"
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["location"] = "imgui_impl_glfw:40"
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["location"] = "imgui_impl_glfw:41"
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CursorEnterCallback"
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["signature"] = "(GLFWwindow*,int)"
@@ -59,7 +59,7 @@ defs["ImGui_ImplGlfw_CursorPosCallback"][1]["call_args"] = "(window,x,y)"
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CursorPosCallback"
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["funcname"] = "ImGui_ImplGlfw_CursorPosCallback"
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["location"] = "imgui_impl_glfw:41"
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["location"] = "imgui_impl_glfw:42"
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CursorPosCallback"
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["signature"] = "(GLFWwindow*,double,double)"
@@ -80,7 +80,7 @@ defs["ImGui_ImplGlfw_InitForOpenGL"][1]["call_args"] = "(window,install_callback
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL"
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["funcname"] = "ImGui_ImplGlfw_InitForOpenGL"
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw:22"
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw:23"
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL"
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ret"] = "bool"
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["signature"] = "(GLFWwindow*,bool)"
@@ -101,7 +101,7 @@ defs["ImGui_ImplGlfw_InitForOther"][1]["call_args"] = "(window,install_callbacks
defs["ImGui_ImplGlfw_InitForOther"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOther"
defs["ImGui_ImplGlfw_InitForOther"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_InitForOther"][1]["funcname"] = "ImGui_ImplGlfw_InitForOther"
defs["ImGui_ImplGlfw_InitForOther"][1]["location"] = "imgui_impl_glfw:24"
defs["ImGui_ImplGlfw_InitForOther"][1]["location"] = "imgui_impl_glfw:25"
defs["ImGui_ImplGlfw_InitForOther"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOther"
defs["ImGui_ImplGlfw_InitForOther"][1]["ret"] = "bool"
defs["ImGui_ImplGlfw_InitForOther"][1]["signature"] = "(GLFWwindow*,bool)"
@@ -122,7 +122,7 @@ defs["ImGui_ImplGlfw_InitForVulkan"][1]["call_args"] = "(window,install_callback
defs["ImGui_ImplGlfw_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForVulkan"
defs["ImGui_ImplGlfw_InitForVulkan"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_InitForVulkan"][1]["funcname"] = "ImGui_ImplGlfw_InitForVulkan"
defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw:23"
defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw:24"
defs["ImGui_ImplGlfw_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForVulkan"
defs["ImGui_ImplGlfw_InitForVulkan"][1]["ret"] = "bool"
defs["ImGui_ImplGlfw_InitForVulkan"][1]["signature"] = "(GLFWwindow*,bool)"
@@ -140,7 +140,7 @@ defs["ImGui_ImplGlfw_InstallCallbacks"][1]["call_args"] = "(window)"
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["cimguiname"] = "ImGui_ImplGlfw_InstallCallbacks"
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["funcname"] = "ImGui_ImplGlfw_InstallCallbacks"
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["location"] = "imgui_impl_glfw:31"
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["location"] = "imgui_impl_glfw:32"
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InstallCallbacks"
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["signature"] = "(GLFWwindow*)"
@@ -170,7 +170,7 @@ defs["ImGui_ImplGlfw_KeyCallback"][1]["call_args"] = "(window,key,scancode,actio
defs["ImGui_ImplGlfw_KeyCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_KeyCallback"
defs["ImGui_ImplGlfw_KeyCallback"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_KeyCallback"][1]["funcname"] = "ImGui_ImplGlfw_KeyCallback"
defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw:44"
defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw:45"
defs["ImGui_ImplGlfw_KeyCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_KeyCallback"
defs["ImGui_ImplGlfw_KeyCallback"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_KeyCallback"][1]["signature"] = "(GLFWwindow*,int,int,int,int)"
@@ -191,7 +191,7 @@ defs["ImGui_ImplGlfw_MonitorCallback"][1]["call_args"] = "(monitor,event)"
defs["ImGui_ImplGlfw_MonitorCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MonitorCallback"
defs["ImGui_ImplGlfw_MonitorCallback"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_MonitorCallback"][1]["funcname"] = "ImGui_ImplGlfw_MonitorCallback"
defs["ImGui_ImplGlfw_MonitorCallback"][1]["location"] = "imgui_impl_glfw:46"
defs["ImGui_ImplGlfw_MonitorCallback"][1]["location"] = "imgui_impl_glfw:47"
defs["ImGui_ImplGlfw_MonitorCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MonitorCallback"
defs["ImGui_ImplGlfw_MonitorCallback"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_MonitorCallback"][1]["signature"] = "(GLFWmonitor*,int)"
@@ -218,7 +218,7 @@ defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["call_args"] = "(window,button,act
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback"
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["funcname"] = "ImGui_ImplGlfw_MouseButtonCallback"
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw:42"
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw:43"
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback"
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["signature"] = "(GLFWwindow*,int,int,int)"
@@ -233,7 +233,7 @@ defs["ImGui_ImplGlfw_NewFrame"][1]["call_args"] = "()"
defs["ImGui_ImplGlfw_NewFrame"][1]["cimguiname"] = "ImGui_ImplGlfw_NewFrame"
defs["ImGui_ImplGlfw_NewFrame"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_NewFrame"][1]["funcname"] = "ImGui_ImplGlfw_NewFrame"
defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw:26"
defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw:27"
defs["ImGui_ImplGlfw_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_NewFrame"
defs["ImGui_ImplGlfw_NewFrame"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_NewFrame"][1]["signature"] = "()"
@@ -251,7 +251,7 @@ defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["call_args"] = "(window)"
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["cimguiname"] = "ImGui_ImplGlfw_RestoreCallbacks"
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["funcname"] = "ImGui_ImplGlfw_RestoreCallbacks"
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["location"] = "imgui_impl_glfw:32"
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["location"] = "imgui_impl_glfw:33"
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_RestoreCallbacks"
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["signature"] = "(GLFWwindow*)"
@@ -275,7 +275,7 @@ defs["ImGui_ImplGlfw_ScrollCallback"][1]["call_args"] = "(window,xoffset,yoffset
defs["ImGui_ImplGlfw_ScrollCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_ScrollCallback"
defs["ImGui_ImplGlfw_ScrollCallback"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_ScrollCallback"][1]["funcname"] = "ImGui_ImplGlfw_ScrollCallback"
defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw:43"
defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw:44"
defs["ImGui_ImplGlfw_ScrollCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_ScrollCallback"
defs["ImGui_ImplGlfw_ScrollCallback"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_ScrollCallback"][1]["signature"] = "(GLFWwindow*,double,double)"
@@ -293,7 +293,7 @@ defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["call_args"] = "(chain_
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["cimguiname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows"
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["funcname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows"
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["location"] = "imgui_impl_glfw:36"
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["location"] = "imgui_impl_glfw:37"
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows"
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["signature"] = "(bool)"
@@ -308,7 +308,7 @@ defs["ImGui_ImplGlfw_Shutdown"][1]["call_args"] = "()"
defs["ImGui_ImplGlfw_Shutdown"][1]["cimguiname"] = "ImGui_ImplGlfw_Shutdown"
defs["ImGui_ImplGlfw_Shutdown"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_Shutdown"][1]["funcname"] = "ImGui_ImplGlfw_Shutdown"
defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw:25"
defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw:26"
defs["ImGui_ImplGlfw_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_Shutdown"
defs["ImGui_ImplGlfw_Shutdown"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_Shutdown"][1]["signature"] = "()"
@@ -329,7 +329,7 @@ defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["call_args"] = "(window,focused)"
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_WindowFocusCallback"
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["funcname"] = "ImGui_ImplGlfw_WindowFocusCallback"
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["location"] = "imgui_impl_glfw:39"
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["location"] = "imgui_impl_glfw:40"
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_WindowFocusCallback"
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["signature"] = "(GLFWwindow*,int)"
@@ -597,7 +597,7 @@ defs["ImGui_ImplSDL2_InitForD3D"][1]["call_args"] = "(window)"
defs["ImGui_ImplSDL2_InitForD3D"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForD3D"
defs["ImGui_ImplSDL2_InitForD3D"][1]["defaults"] = {}
defs["ImGui_ImplSDL2_InitForD3D"][1]["funcname"] = "ImGui_ImplSDL2_InitForD3D"
defs["ImGui_ImplSDL2_InitForD3D"][1]["location"] = "imgui_impl_sdl2:26"
defs["ImGui_ImplSDL2_InitForD3D"][1]["location"] = "imgui_impl_sdl2:27"
defs["ImGui_ImplSDL2_InitForD3D"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForD3D"
defs["ImGui_ImplSDL2_InitForD3D"][1]["ret"] = "bool"
defs["ImGui_ImplSDL2_InitForD3D"][1]["signature"] = "(SDL_Window*)"
@@ -615,7 +615,7 @@ defs["ImGui_ImplSDL2_InitForMetal"][1]["call_args"] = "(window)"
defs["ImGui_ImplSDL2_InitForMetal"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForMetal"
defs["ImGui_ImplSDL2_InitForMetal"][1]["defaults"] = {}
defs["ImGui_ImplSDL2_InitForMetal"][1]["funcname"] = "ImGui_ImplSDL2_InitForMetal"
defs["ImGui_ImplSDL2_InitForMetal"][1]["location"] = "imgui_impl_sdl2:27"
defs["ImGui_ImplSDL2_InitForMetal"][1]["location"] = "imgui_impl_sdl2:28"
defs["ImGui_ImplSDL2_InitForMetal"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForMetal"
defs["ImGui_ImplSDL2_InitForMetal"][1]["ret"] = "bool"
defs["ImGui_ImplSDL2_InitForMetal"][1]["signature"] = "(SDL_Window*)"
@@ -636,7 +636,7 @@ defs["ImGui_ImplSDL2_InitForOpenGL"][1]["call_args"] = "(window,sdl_gl_context)"
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL"
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["defaults"] = {}
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["funcname"] = "ImGui_ImplSDL2_InitForOpenGL"
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl2:24"
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl2:25"
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL"
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ret"] = "bool"
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["signature"] = "(SDL_Window*,void*)"
@@ -657,7 +657,7 @@ defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["call_args"] = "(window,renderer)"
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForSDLRenderer"
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["defaults"] = {}
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["funcname"] = "ImGui_ImplSDL2_InitForSDLRenderer"
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["location"] = "imgui_impl_sdl2:28"
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["location"] = "imgui_impl_sdl2:29"
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForSDLRenderer"
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["ret"] = "bool"
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["signature"] = "(SDL_Window*,SDL_Renderer*)"
@@ -675,7 +675,7 @@ defs["ImGui_ImplSDL2_InitForVulkan"][1]["call_args"] = "(window)"
defs["ImGui_ImplSDL2_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForVulkan"
defs["ImGui_ImplSDL2_InitForVulkan"][1]["defaults"] = {}
defs["ImGui_ImplSDL2_InitForVulkan"][1]["funcname"] = "ImGui_ImplSDL2_InitForVulkan"
defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl2:25"
defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl2:26"
defs["ImGui_ImplSDL2_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForVulkan"
defs["ImGui_ImplSDL2_InitForVulkan"][1]["ret"] = "bool"
defs["ImGui_ImplSDL2_InitForVulkan"][1]["signature"] = "(SDL_Window*)"
@@ -690,7 +690,7 @@ defs["ImGui_ImplSDL2_NewFrame"][1]["call_args"] = "()"
defs["ImGui_ImplSDL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplSDL2_NewFrame"
defs["ImGui_ImplSDL2_NewFrame"][1]["defaults"] = {}
defs["ImGui_ImplSDL2_NewFrame"][1]["funcname"] = "ImGui_ImplSDL2_NewFrame"
defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl2:30"
defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl2:31"
defs["ImGui_ImplSDL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_NewFrame"
defs["ImGui_ImplSDL2_NewFrame"][1]["ret"] = "void"
defs["ImGui_ImplSDL2_NewFrame"][1]["signature"] = "()"
@@ -708,7 +708,7 @@ defs["ImGui_ImplSDL2_ProcessEvent"][1]["call_args"] = "(event)"
defs["ImGui_ImplSDL2_ProcessEvent"][1]["cimguiname"] = "ImGui_ImplSDL2_ProcessEvent"
defs["ImGui_ImplSDL2_ProcessEvent"][1]["defaults"] = {}
defs["ImGui_ImplSDL2_ProcessEvent"][1]["funcname"] = "ImGui_ImplSDL2_ProcessEvent"
defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl2:31"
defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl2:32"
defs["ImGui_ImplSDL2_ProcessEvent"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_ProcessEvent"
defs["ImGui_ImplSDL2_ProcessEvent"][1]["ret"] = "bool"
defs["ImGui_ImplSDL2_ProcessEvent"][1]["signature"] = "(const SDL_Event*)"
@@ -723,7 +723,7 @@ defs["ImGui_ImplSDL2_Shutdown"][1]["call_args"] = "()"
defs["ImGui_ImplSDL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplSDL2_Shutdown"
defs["ImGui_ImplSDL2_Shutdown"][1]["defaults"] = {}
defs["ImGui_ImplSDL2_Shutdown"][1]["funcname"] = "ImGui_ImplSDL2_Shutdown"
defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl2:29"
defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl2:30"
defs["ImGui_ImplSDL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_Shutdown"
defs["ImGui_ImplSDL2_Shutdown"][1]["ret"] = "void"
defs["ImGui_ImplSDL2_Shutdown"][1]["signature"] = "()"

View File

@@ -126,6 +126,9 @@ igGetID 3
igGetIDWithSeed 2
1 ImGuiID igGetIDWithSeed_Str (const char*,const char*,ImGuiID)
2 ImGuiID igGetIDWithSeed_Int (int,ImGuiID)
igGetKeyData 2
1 ImGuiKeyData* igGetKeyData_ContextPtr (ImGuiContext*,ImGuiKey)
2 ImGuiKeyData* igGetKeyData_Key (ImGuiKey)
igImAbs 3
1 int igImAbs_Int (int)
2 float igImAbs_Float (float)
@@ -278,4 +281,4 @@ igValue 4
2 void igValue_Int (const char*,int)
3 void igValue_Uint (const char*,unsigned int)
4 void igValue_Float (const char*,float,const char*)
195 overloaded
197 overloaded

View File

@@ -1012,13 +1012,18 @@
},
{
"calc_value": 32,
"name": "ImGuiDebugLogFlags_EventIO",
"name": "ImGuiDebugLogFlags_EventSelection",
"value": "1 << 5"
},
{
"calc_value": 63,
"calc_value": 64,
"name": "ImGuiDebugLogFlags_EventIO",
"value": "1 << 6"
},
{
"calc_value": 127,
"name": "ImGuiDebugLogFlags_EventMask_",
"value": "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventIO"
"value": "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO"
},
{
"calc_value": 1024,
@@ -1416,13 +1421,8 @@
},
{
"calc_value": 5,
"name": "ImGuiInputSource_Nav",
"value": "5"
},
{
"calc_value": 6,
"name": "ImGuiInputSource_COUNT",
"value": "6"
"value": "5"
}
],
"ImGuiInputTextFlagsPrivate_": [
@@ -2600,6 +2600,28 @@
"value": "9"
}
],
"ImGuiMouseSource": [
{
"calc_value": 0,
"name": "ImGuiMouseSource_Mouse",
"value": "0"
},
{
"calc_value": 1,
"name": "ImGuiMouseSource_TouchScreen",
"value": "1"
},
{
"calc_value": 2,
"name": "ImGuiMouseSource_Pen",
"value": "2"
},
{
"calc_value": 3,
"name": "ImGuiMouseSource_COUNT",
"value": "3"
}
],
"ImGuiNavHighlightFlags_": [
{
"calc_value": 0,
@@ -4122,168 +4144,172 @@
},
"enumtypes": {
"ImGuiKey": "int",
"ImGuiLocKey": "int"
"ImGuiLocKey": "int",
"ImGuiMouseSource": "int"
},
"locations": {
"ImBitVector": "imgui_internal:595",
"ImColor": "imgui:2351",
"ImDrawChannel": "imgui:2441",
"ImDrawCmd": "imgui:2400",
"ImDrawCmdHeader": "imgui:2433",
"ImDrawData": "imgui:2633",
"ImDrawDataBuilder": "imgui_internal:785",
"ImDrawFlags_": "imgui:2467",
"ImDrawList": "imgui:2505",
"ImDrawListFlags_": "imgui:2487",
"ImDrawListSharedData": "imgui_internal:762",
"ImDrawListSplitter": "imgui:2450",
"ImDrawVert": "imgui:2418",
"ImFont": "imgui:2852",
"ImFontAtlas": "imgui:2749",
"ImFontAtlasCustomRect": "imgui:2711",
"ImFontAtlasFlags_": "imgui:2724",
"ImFontBuilderIO": "imgui_internal:3212",
"ImFontConfig": "imgui:2655",
"ImFontGlyph": "imgui:2684",
"ImFontGlyphRangesBuilder": "imgui:2696",
"ImGuiActivateFlags_": "imgui_internal:1420",
"ImGuiAxis": "imgui_internal:951",
"ImGuiBackendFlags_": "imgui:1509",
"ImGuiButtonFlagsPrivate_": "imgui_internal:856",
"ImGuiButtonFlags_": "imgui:1619",
"ImGuiCol_": "imgui:1519",
"ImGuiColorEditFlags_": "imgui:1632",
"ImGuiColorMod": "imgui_internal:994",
"ImGuiComboFlagsPrivate_": "imgui_internal:881",
"ImGuiComboFlags_": "imgui:1081",
"ImGuiComboPreviewData": "imgui_internal:1011",
"ImGuiCond_": "imgui:1723",
"ImGuiConfigFlags_": "imgui:1493",
"ImGuiContext": "imgui_internal:1733",
"ImGuiContextHook": "imgui_internal:1718",
"ImGuiContextHookType": "imgui_internal:1716",
"ImGuiDataTypeInfo": "imgui_internal:977",
"ImGuiDataTypePrivate_": "imgui_internal:986",
"ImGuiDataTypeTempStorage": "imgui_internal:971",
"ImGuiDataType_": "imgui:1318",
"ImGuiDebugLogFlags_": "imgui_internal:1659",
"ImGuiDir_": "imgui:1334",
"ImGuiDragDropFlags_": "imgui:1296",
"ImGuiFocusedFlags_": "imgui:1258",
"ImGuiGroupData": "imgui_internal:1024",
"ImGuiHoveredFlags_": "imgui:1272",
"ImGuiIO": "imgui:1903",
"ImGuiInputEvent": "imgui_internal:1279",
"ImGuiInputEventAppFocused": "imgui_internal:1277",
"ImGuiInputEventKey": "imgui_internal:1275",
"ImGuiInputEventMouseButton": "imgui_internal:1274",
"ImGuiInputEventMousePos": "imgui_internal:1272",
"ImGuiInputEventMouseWheel": "imgui_internal:1273",
"ImGuiInputEventText": "imgui_internal:1276",
"ImGuiInputEventType": "imgui_internal:1247",
"ImGuiInputFlags_": "imgui_internal:1341",
"ImGuiInputSource": "imgui_internal:1259",
"ImGuiInputTextCallbackData": "imgui:2076",
"ImGuiInputTextFlagsPrivate_": "imgui_internal:847",
"ImGuiInputTextFlags_": "imgui:993",
"ImGuiInputTextState": "imgui_internal:1059",
"ImGuiItemFlags_": "imgui_internal:804",
"ImGuiItemStatusFlags_": "imgui_internal:824",
"ImBitVector": "imgui_internal:581",
"ImColor": "imgui:2403",
"ImDrawChannel": "imgui:2493",
"ImDrawCmd": "imgui:2452",
"ImDrawCmdHeader": "imgui:2485",
"ImDrawData": "imgui:2684",
"ImDrawDataBuilder": "imgui_internal:771",
"ImDrawFlags_": "imgui:2519",
"ImDrawList": "imgui:2557",
"ImDrawListFlags_": "imgui:2539",
"ImDrawListSharedData": "imgui_internal:748",
"ImDrawListSplitter": "imgui:2502",
"ImDrawVert": "imgui:2470",
"ImFont": "imgui:2903",
"ImFontAtlas": "imgui:2800",
"ImFontAtlasCustomRect": "imgui:2762",
"ImFontAtlasFlags_": "imgui:2775",
"ImFontBuilderIO": "imgui_internal:3239",
"ImFontConfig": "imgui:2706",
"ImFontGlyph": "imgui:2735",
"ImFontGlyphRangesBuilder": "imgui:2747",
"ImGuiActivateFlags_": "imgui_internal:1426",
"ImGuiAxis": "imgui_internal:939",
"ImGuiBackendFlags_": "imgui:1510",
"ImGuiButtonFlagsPrivate_": "imgui_internal:844",
"ImGuiButtonFlags_": "imgui:1620",
"ImGuiCol_": "imgui:1520",
"ImGuiColorEditFlags_": "imgui:1633",
"ImGuiColorMod": "imgui_internal:990",
"ImGuiComboFlagsPrivate_": "imgui_internal:869",
"ImGuiComboFlags_": "imgui:1080",
"ImGuiComboPreviewData": "imgui_internal:1007",
"ImGuiCond_": "imgui:1734",
"ImGuiConfigFlags_": "imgui:1494",
"ImGuiContext": "imgui_internal:1740",
"ImGuiContextHook": "imgui_internal:1725",
"ImGuiContextHookType": "imgui_internal:1723",
"ImGuiDataTypeInfo": "imgui_internal:973",
"ImGuiDataTypePrivate_": "imgui_internal:982",
"ImGuiDataTypeTempStorage": "imgui_internal:967",
"ImGuiDataType_": "imgui:1317",
"ImGuiDataVarInfo": "imgui_internal:959",
"ImGuiDebugLogFlags_": "imgui_internal:1665",
"ImGuiDir_": "imgui:1333",
"ImGuiDragDropFlags_": "imgui:1295",
"ImGuiFocusedFlags_": "imgui:1257",
"ImGuiGroupData": "imgui_internal:1020",
"ImGuiHoveredFlags_": "imgui:1271",
"ImGuiIO": "imgui:1914",
"ImGuiInputEvent": "imgui_internal:1284",
"ImGuiInputEventAppFocused": "imgui_internal:1282",
"ImGuiInputEventKey": "imgui_internal:1280",
"ImGuiInputEventMouseButton": "imgui_internal:1279",
"ImGuiInputEventMousePos": "imgui_internal:1277",
"ImGuiInputEventMouseWheel": "imgui_internal:1278",
"ImGuiInputEventText": "imgui_internal:1281",
"ImGuiInputEventType": "imgui_internal:1253",
"ImGuiInputFlags_": "imgui_internal:1347",
"ImGuiInputSource": "imgui_internal:1265",
"ImGuiInputTextCallbackData": "imgui:2100",
"ImGuiInputTextDeactivatedState": "imgui_internal:1054",
"ImGuiInputTextFlagsPrivate_": "imgui_internal:835",
"ImGuiInputTextFlags_": "imgui:994",
"ImGuiInputTextState": "imgui_internal:1064",
"ImGuiItemFlags_": "imgui_internal:790",
"ImGuiItemStatusFlags_": "imgui_internal:810",
"ImGuiKey": "imgui:1356",
"ImGuiKeyData": "imgui:1895",
"ImGuiKeyOwnerData": "imgui_internal:1329",
"ImGuiKeyRoutingData": "imgui_internal:1304",
"ImGuiKeyRoutingTable": "imgui_internal:1317",
"ImGuiLastItemData": "imgui_internal:1166",
"ImGuiLayoutType_": "imgui_internal:935",
"ImGuiListClipper": "imgui:2300",
"ImGuiListClipperData": "imgui_internal:1404",
"ImGuiListClipperRange": "imgui_internal:1391",
"ImGuiLocEntry": "imgui_internal:1648",
"ImGuiLocKey": "imgui_internal:1636",
"ImGuiLogType": "imgui_internal:941",
"ImGuiMenuColumns": "imgui_internal:1040",
"ImGuiMetricsConfig": "imgui_internal:1673",
"ImGuiMouseButton_": "imgui:1695",
"ImGuiMouseCursor_": "imgui:1705",
"ImGuiNavHighlightFlags_": "imgui_internal:1443",
"ImGuiNavInput": "imgui:1484",
"ImGuiNavItemData": "imgui_internal:1477",
"ImGuiNavLayer": "imgui_internal:1470",
"ImGuiNavMoveFlags_": "imgui_internal:1452",
"ImGuiNextItemData": "imgui_internal:1153",
"ImGuiNextItemDataFlags_": "imgui_internal:1146",
"ImGuiNextWindowData": "imgui_internal:1124",
"ImGuiNextWindowDataFlags_": "imgui_internal:1110",
"ImGuiOldColumnData": "imgui_internal:1517",
"ImGuiOldColumnFlags_": "imgui_internal:1497",
"ImGuiOldColumns": "imgui_internal:1527",
"ImGuiOnceUponAFrame": "imgui:2175",
"ImGuiPayload": "imgui:2116",
"ImGuiPlatformImeData": "imgui:2948",
"ImGuiPlotType": "imgui_internal:958",
"ImGuiPopupData": "imgui_internal:1096",
"ImGuiPopupFlags_": "imgui:1054",
"ImGuiPopupPositionPolicy": "imgui_internal:964",
"ImGuiPtrOrIndex": "imgui_internal:1210",
"ImGuiScrollFlags_": "imgui_internal:1429",
"ImGuiSelectableFlagsPrivate_": "imgui_internal:894",
"ImGuiSelectableFlags_": "imgui:1070",
"ImGuiSeparatorFlags_": "imgui_internal:913",
"ImGuiSettingsHandler": "imgui_internal:1616",
"ImGuiShrinkWidthItem": "imgui_internal:1203",
"ImGuiSizeCallbackData": "imgui:2107",
"ImGuiSliderFlagsPrivate_": "imgui_internal:887",
"ImGuiSliderFlags_": "imgui:1678",
"ImGuiSortDirection_": "imgui:1345",
"ImGuiStackLevelInfo": "imgui_internal:1687",
"ImGuiStackSizes": "imgui_internal:1178",
"ImGuiStackTool": "imgui_internal:1699",
"ImGuiStorage": "imgui:2237",
"ImGuiStoragePair": "imgui:2240",
"ImGuiStyle": "imgui:1835",
"ImGuiStyleMod": "imgui_internal:1001",
"ImGuiStyleVar_": "imgui:1584",
"ImGuiTabBar": "imgui_internal:2399",
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2364",
"ImGuiTabBarFlags_": "imgui:1095",
"ImGuiTabItem": "imgui_internal:2380",
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2372",
"ImGuiTabItemFlags_": "imgui:1111",
"ImGuiTable": "imgui_internal:2528",
"ImGuiTableBgTarget_": "imgui:1249",
"ImGuiTableCellData": "imgui_internal:2510",
"ImGuiTableColumn": "imgui_internal:2451",
"ImGuiTableColumnFlags_": "imgui:1197",
"ImGuiTableColumnSettings": "imgui_internal:2664",
"ImGuiTableColumnSortSpecs": "imgui:2138",
"ImGuiTableFlags_": "imgui:1146",
"ImGuiTableInstanceData": "imgui_internal:2517",
"ImGuiTableRowFlags_": "imgui:1234",
"ImGuiTableSettings": "imgui_internal:2688",
"ImGuiTableSortSpecs": "imgui:2152",
"ImGuiTableTempData": "imgui_internal:2643",
"ImGuiTextBuffer": "imgui:2210",
"ImGuiTextFilter": "imgui:2183",
"ImGuiTextFlags_": "imgui_internal:921",
"ImGuiTextIndex": "imgui_internal:719",
"ImGuiTextRange": "imgui:2193",
"ImGuiTooltipFlags_": "imgui_internal:927",
"ImGuiTreeNodeFlagsPrivate_": "imgui_internal:908",
"ImGuiTreeNodeFlags_": "imgui:1025",
"ImGuiViewport": "imgui:2925",
"ImGuiViewportFlags_": "imgui:2910",
"ImGuiViewportP": "imgui_internal:1570",
"ImGuiWindow": "imgui_internal:2240",
"ImGuiWindowFlags_": "imgui:955",
"ImGuiWindowSettings": "imgui_internal:1603",
"ImGuiWindowStackData": "imgui_internal:1196",
"ImGuiWindowTempData": "imgui_internal:2192",
"ImRect": "imgui_internal:518",
"ImVec1": "imgui_internal:500",
"ImVec2": "imgui:253",
"ImVec2ih": "imgui_internal:508",
"ImVec4": "imgui:266",
"ImGuiKeyData": "imgui:1906",
"ImGuiKeyOwnerData": "imgui_internal:1335",
"ImGuiKeyRoutingData": "imgui_internal:1310",
"ImGuiKeyRoutingTable": "imgui_internal:1323",
"ImGuiLastItemData": "imgui_internal:1171",
"ImGuiLayoutType_": "imgui_internal:923",
"ImGuiListClipper": "imgui:2325",
"ImGuiListClipperData": "imgui_internal:1410",
"ImGuiListClipperRange": "imgui_internal:1397",
"ImGuiLocEntry": "imgui_internal:1654",
"ImGuiLocKey": "imgui_internal:1642",
"ImGuiLogType": "imgui_internal:929",
"ImGuiMenuColumns": "imgui_internal:1036",
"ImGuiMetricsConfig": "imgui_internal:1680",
"ImGuiMouseButton_": "imgui:1694",
"ImGuiMouseCursor_": "imgui:1704",
"ImGuiMouseSource": "imgui:1723",
"ImGuiNavHighlightFlags_": "imgui_internal:1449",
"ImGuiNavInput": "imgui:1485",
"ImGuiNavItemData": "imgui_internal:1483",
"ImGuiNavLayer": "imgui_internal:1476",
"ImGuiNavMoveFlags_": "imgui_internal:1458",
"ImGuiNextItemData": "imgui_internal:1158",
"ImGuiNextItemDataFlags_": "imgui_internal:1151",
"ImGuiNextWindowData": "imgui_internal:1129",
"ImGuiNextWindowDataFlags_": "imgui_internal:1115",
"ImGuiOldColumnData": "imgui_internal:1523",
"ImGuiOldColumnFlags_": "imgui_internal:1503",
"ImGuiOldColumns": "imgui_internal:1533",
"ImGuiOnceUponAFrame": "imgui:2200",
"ImGuiPayload": "imgui:2141",
"ImGuiPlatformImeData": "imgui:2999",
"ImGuiPlotType": "imgui_internal:946",
"ImGuiPopupData": "imgui_internal:1101",
"ImGuiPopupFlags_": "imgui:1053",
"ImGuiPopupPositionPolicy": "imgui_internal:952",
"ImGuiPtrOrIndex": "imgui_internal:1215",
"ImGuiScrollFlags_": "imgui_internal:1435",
"ImGuiSelectableFlagsPrivate_": "imgui_internal:882",
"ImGuiSelectableFlags_": "imgui:1069",
"ImGuiSeparatorFlags_": "imgui_internal:901",
"ImGuiSettingsHandler": "imgui_internal:1622",
"ImGuiShrinkWidthItem": "imgui_internal:1208",
"ImGuiSizeCallbackData": "imgui:2132",
"ImGuiSliderFlagsPrivate_": "imgui_internal:875",
"ImGuiSliderFlags_": "imgui:1679",
"ImGuiSortDirection_": "imgui:1344",
"ImGuiStackLevelInfo": "imgui_internal:1694",
"ImGuiStackSizes": "imgui_internal:1183",
"ImGuiStackTool": "imgui_internal:1706",
"ImGuiStorage": "imgui:2262",
"ImGuiStoragePair": "imgui:2265",
"ImGuiStyle": "imgui:1846",
"ImGuiStyleMod": "imgui_internal:997",
"ImGuiStyleVar_": "imgui:1585",
"ImGuiTabBar": "imgui_internal:2420",
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2385",
"ImGuiTabBarFlags_": "imgui:1094",
"ImGuiTabItem": "imgui_internal:2401",
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2393",
"ImGuiTabItemFlags_": "imgui:1110",
"ImGuiTable": "imgui_internal:2549",
"ImGuiTableBgTarget_": "imgui:1248",
"ImGuiTableCellData": "imgui_internal:2531",
"ImGuiTableColumn": "imgui_internal:2472",
"ImGuiTableColumnFlags_": "imgui:1196",
"ImGuiTableColumnSettings": "imgui_internal:2685",
"ImGuiTableColumnSortSpecs": "imgui:2163",
"ImGuiTableFlags_": "imgui:1145",
"ImGuiTableInstanceData": "imgui_internal:2538",
"ImGuiTableRowFlags_": "imgui:1233",
"ImGuiTableSettings": "imgui_internal:2709",
"ImGuiTableSortSpecs": "imgui:2177",
"ImGuiTableTempData": "imgui_internal:2664",
"ImGuiTextBuffer": "imgui:2235",
"ImGuiTextFilter": "imgui:2208",
"ImGuiTextFlags_": "imgui_internal:909",
"ImGuiTextIndex": "imgui_internal:705",
"ImGuiTextRange": "imgui:2218",
"ImGuiTooltipFlags_": "imgui_internal:915",
"ImGuiTreeNodeFlagsPrivate_": "imgui_internal:896",
"ImGuiTreeNodeFlags_": "imgui:1024",
"ImGuiViewport": "imgui:2976",
"ImGuiViewportFlags_": "imgui:2961",
"ImGuiViewportP": "imgui_internal:1576",
"ImGuiWindow": "imgui_internal:2260",
"ImGuiWindowFlags_": "imgui:956",
"ImGuiWindowSettings": "imgui_internal:1609",
"ImGuiWindowStackData": "imgui_internal:1201",
"ImGuiWindowTempData": "imgui_internal:2212",
"ImRect": "imgui_internal:504",
"ImVec1": "imgui_internal:486",
"ImVec2": "imgui:254",
"ImVec2ih": "imgui_internal:494",
"ImVec4": "imgui:267",
"STB_TexteditState": "imstb_textedit:320",
"StbTexteditRow": "imstb_textedit:367",
"StbUndoRecord": "imstb_textedit:302",
@@ -4959,16 +4985,6 @@
"name": "IO",
"type": "ImGuiIO"
},
{
"name": "InputEventsQueue",
"template_type": "ImGuiInputEvent",
"type": "ImVector_ImGuiInputEvent"
},
{
"name": "InputEventsTrail",
"template_type": "ImGuiInputEvent",
"type": "ImVector_ImGuiInputEvent"
},
{
"name": "Style",
"type": "ImGuiStyle"
@@ -5029,6 +5045,24 @@
"name": "TestEngine",
"type": "void*"
},
{
"name": "InputEventsQueue",
"template_type": "ImGuiInputEvent",
"type": "ImVector_ImGuiInputEvent"
},
{
"name": "InputEventsTrail",
"template_type": "ImGuiInputEvent",
"type": "ImVector_ImGuiInputEvent"
},
{
"name": "InputEventsNextMouseSource",
"type": "ImGuiMouseSource"
},
{
"name": "InputEventsNextEventId",
"type": "ImU32"
},
{
"name": "Windows",
"template_type": "ImGuiWindow*",
@@ -5323,10 +5357,6 @@
"name": "NavActivatePressedId",
"type": "ImGuiID"
},
{
"name": "NavActivateInputId",
"type": "ImGuiID"
},
{
"name": "NavActivateFlags",
"type": "ImGuiActivateFlags"
@@ -5665,6 +5695,10 @@
"name": "InputTextState",
"type": "ImGuiInputTextState"
},
{
"name": "InputTextDeactivatedState",
"type": "ImGuiInputTextDeactivatedState"
},
{
"name": "InputTextPasswordFont",
"type": "ImFont"
@@ -5864,10 +5898,18 @@
"name": "DebugLogIndex",
"type": "ImGuiTextIndex"
},
{
"name": "DebugLogClipperAutoDisableFrames",
"type": "ImU8"
},
{
"name": "DebugLocateFrames",
"type": "ImU8"
},
{
"name": "DebugBeginReturnValueCullDepth",
"type": "ImS8"
},
{
"name": "DebugItemPickerActive",
"type": "bool"
@@ -5970,6 +6012,20 @@
"type": "ImU8"
}
],
"ImGuiDataVarInfo": [
{
"name": "Type",
"type": "ImGuiDataType"
},
{
"name": "Count",
"type": "ImU32"
},
{
"name": "Offset",
"type": "ImU32"
}
],
"ImGuiGroupData": [
{
"name": "WindowID",
@@ -6133,6 +6189,14 @@
"name": "ConfigMemoryCompactTimer",
"type": "float"
},
{
"name": "ConfigDebugBeginReturnValueOnce",
"type": "bool"
},
{
"name": "ConfigDebugBeginReturnValueLoop",
"type": "bool"
},
{
"name": "BackendPlatformName",
"type": "const char*"
@@ -6244,6 +6308,10 @@
"size": 16,
"type": "float"
},
{
"name": "Ctx",
"type": "ImGuiContext*"
},
{
"name": "MousePos",
"type": "ImVec2"
@@ -6261,6 +6329,10 @@
"name": "MouseWheelH",
"type": "float"
},
{
"name": "MouseSource",
"type": "ImGuiMouseSource"
},
{
"name": "KeyCtrl",
"type": "bool"
@@ -6339,6 +6411,10 @@
"size": 5,
"type": "bool"
},
{
"name": "MouseWheelRequestAxisSwap",
"type": "bool"
},
{
"name": "MouseDownDuration[5]",
"size": 5,
@@ -6393,6 +6469,10 @@
"name": "Source",
"type": "ImGuiInputSource"
},
{
"name": "EventId",
"type": "ImU32"
},
{
"name": "",
"type": "union { ImGuiInputEventMousePos MousePos; ImGuiInputEventMouseWheel MouseWheel; ImGuiInputEventMouseButton MouseButton; ImGuiInputEventKey Key; ImGuiInputEventText Text; ImGuiInputEventAppFocused AppFocused;}"
@@ -6430,6 +6510,10 @@
{
"name": "Down",
"type": "bool"
},
{
"name": "MouseSource",
"type": "ImGuiMouseSource"
}
],
"ImGuiInputEventMousePos": [
@@ -6440,6 +6524,10 @@
{
"name": "PosY",
"type": "float"
},
{
"name": "MouseSource",
"type": "ImGuiMouseSource"
}
],
"ImGuiInputEventMouseWheel": [
@@ -6450,6 +6538,10 @@
{
"name": "WheelY",
"type": "float"
},
{
"name": "MouseSource",
"type": "ImGuiMouseSource"
}
],
"ImGuiInputEventText": [
@@ -6459,6 +6551,10 @@
}
],
"ImGuiInputTextCallbackData": [
{
"name": "Ctx",
"type": "ImGuiContext*"
},
{
"name": "EventFlag",
"type": "ImGuiInputTextFlags"
@@ -6508,6 +6604,17 @@
"type": "int"
}
],
"ImGuiInputTextDeactivatedState": [
{
"name": "ID",
"type": "ImGuiID"
},
{
"name": "TextA",
"template_type": "char",
"type": "ImVector_char"
}
],
"ImGuiInputTextState": [
{
"name": "Ctx",
@@ -6679,6 +6786,10 @@
}
],
"ImGuiListClipper": [
{
"name": "Ctx",
"type": "ImGuiContext*"
},
{
"name": "DisplayStart",
"type": "int"
@@ -8568,6 +8679,10 @@
}
],
"ImGuiWindow": [
{
"name": "Ctx",
"type": "ImGuiContext*"
},
{
"name": "Name",
"type": "char*"

File diff suppressed because it is too large Load Diff

View File

@@ -41,6 +41,7 @@
"ImGuiDataType": "int",
"ImGuiDataTypeInfo": "struct ImGuiDataTypeInfo",
"ImGuiDataTypeTempStorage": "struct ImGuiDataTypeTempStorage",
"ImGuiDataVarInfo": "struct ImGuiDataVarInfo",
"ImGuiDebugLogFlags": "int",
"ImGuiDir": "int",
"ImGuiDragDropFlags": "int",
@@ -60,6 +61,8 @@
"ImGuiInputFlags": "int",
"ImGuiInputTextCallback": "int(*)(ImGuiInputTextCallbackData* data);",
"ImGuiInputTextCallbackData": "struct ImGuiInputTextCallbackData",
"ImGuiInputTextDeactivateData": "struct ImGuiInputTextDeactivateData",
"ImGuiInputTextDeactivatedState": "struct ImGuiInputTextDeactivatedState",
"ImGuiInputTextFlags": "int",
"ImGuiInputTextState": "struct ImGuiInputTextState",
"ImGuiItemFlags": "int",

View File

@@ -41,6 +41,7 @@ defs["ImGuiContextHookCallback"] = "void(*)(ImGuiContext* ctx,ImGuiContextHook*
defs["ImGuiDataType"] = "int"
defs["ImGuiDataTypeInfo"] = "struct ImGuiDataTypeInfo"
defs["ImGuiDataTypeTempStorage"] = "struct ImGuiDataTypeTempStorage"
defs["ImGuiDataVarInfo"] = "struct ImGuiDataVarInfo"
defs["ImGuiDebugLogFlags"] = "int"
defs["ImGuiDir"] = "int"
defs["ImGuiDragDropFlags"] = "int"
@@ -60,6 +61,8 @@ defs["ImGuiInputEventText"] = "struct ImGuiInputEventText"
defs["ImGuiInputFlags"] = "int"
defs["ImGuiInputTextCallback"] = "int(*)(ImGuiInputTextCallbackData* data);"
defs["ImGuiInputTextCallbackData"] = "struct ImGuiInputTextCallbackData"
defs["ImGuiInputTextDeactivateData"] = "struct ImGuiInputTextDeactivateData"
defs["ImGuiInputTextDeactivatedState"] = "struct ImGuiInputTextDeactivatedState"
defs["ImGuiInputTextFlags"] = "int"
defs["ImGuiInputTextState"] = "struct ImGuiInputTextState"
defs["ImGuiItemFlags"] = "int"