mirror of
https://github.com/cimgui/cimgui.git
synced 2026-04-13 07:41:17 +01:00
Merge branch 'docking_inter' 1.92.7
This commit is contained in:
@@ -1553,6 +1553,36 @@ local function printItems(items)
|
||||
printItemsKind(items,v)
|
||||
end
|
||||
end
|
||||
|
||||
-------------------------------json saving
|
||||
--avoid mixed tables (with string and integer keys)
|
||||
local function json_prepare(defs)
|
||||
--delete signatures in function
|
||||
for k,def in pairs(defs) do
|
||||
for k2,v in pairs(def) do
|
||||
if type(k2)=="string" then
|
||||
def[k2] = nil
|
||||
end
|
||||
end
|
||||
end
|
||||
return defs
|
||||
end
|
||||
|
||||
|
||||
local function save_output(self)
|
||||
save_data("./output/overloads.txt",self.overloadstxt)
|
||||
save_data("./output/definitions.lua",M.serializeTableF(self.defsT))
|
||||
save_data("./output/structs_and_enums.lua",M.serializeTableF(self.structs_and_enums_table))
|
||||
save_data("./output/typedefs_dict.lua",M.serializeTableF(self.typedefs_dict))
|
||||
save_data("./output/constants.lua",M.serializeTableF(self.constants))
|
||||
|
||||
local json = require"json"
|
||||
local json_opts = {dict_on_empty={defaults=true}}
|
||||
save_data("./output/definitions.json",json.encode(json_prepare(self.defsT),json_opts))
|
||||
save_data("./output/structs_and_enums.json",json.encode(self.structs_and_enums_table))
|
||||
save_data("./output/typedefs_dict.json",json.encode(self.typedefs_dict))
|
||||
save_data("./output/constants.json",json.encode(self.constants))
|
||||
end
|
||||
-------------
|
||||
local numerr = 0 --for popen error file
|
||||
function M.Parser()
|
||||
@@ -1573,6 +1603,7 @@ function M.Parser()
|
||||
par.skipped = {}
|
||||
par.UDTs = {}
|
||||
|
||||
par.save_output = save_output
|
||||
par.genConversors = genConversions
|
||||
par.gen_structs_c = gen_structs_c
|
||||
function par:insert(line,loca)
|
||||
@@ -1624,6 +1655,7 @@ function M.Parser()
|
||||
--try to guess a compiler error
|
||||
assert(not errstr:match" error")
|
||||
os.remove(errfile)
|
||||
self.constants = defines
|
||||
return defines
|
||||
end
|
||||
function par:do_parse()
|
||||
@@ -2072,6 +2104,10 @@ function M.Parser()
|
||||
print("--skip = vardef declaration:",it2)
|
||||
it2 = ""
|
||||
end
|
||||
if it2:match("%s*extern") then
|
||||
print("--skip extern vardef declaration:",it2)
|
||||
it2 = ""
|
||||
end
|
||||
end
|
||||
--table.insert(outtabpre,it2)
|
||||
--table.insert(outtab,it2)
|
||||
@@ -2358,6 +2394,15 @@ function M.Parser()
|
||||
print(it.item)
|
||||
end
|
||||
end
|
||||
elseif it.re_name == "vardef_re" then
|
||||
local it2 = it.item:gsub("constexpr","static const")
|
||||
if it2:match"static const" then
|
||||
local name, assig = it2:match("static const %s*.+%s+([%w_]+)%s*=%s*([^;]*);")
|
||||
--print(it2,name,assig)
|
||||
if name and assig then
|
||||
self.constants[name] = assig
|
||||
end
|
||||
end
|
||||
end
|
||||
elseif it.re_name == "enum_re" then
|
||||
enums_for_table(it, outtab, enumsordered)
|
||||
@@ -2913,7 +2958,8 @@ local function location(file,locpathT,defines,COMPILER,keepemptylines)
|
||||
if name and val then
|
||||
--while defines[val] do val = defines[val] end
|
||||
--if val:match(number_re) or val:match(hex_re) then
|
||||
table.insert(defines,{name , val})
|
||||
--table.insert(defines,{name , val})
|
||||
defines[name] = val
|
||||
--end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -39,10 +39,10 @@ if FREETYPE_GENERATION then
|
||||
end
|
||||
|
||||
if COMPILER == "gcc" or COMPILER == "clang" or COMPILER == "zig cc" then
|
||||
CPRE = COMPILER..[[ -E -DIMGUI_DISABLE_OBSOLETE_FUNCTIONS -DIMGUI_API="" -DIMGUI_IMPL_API="" ]] .. CFLAGS
|
||||
CPRE = COMPILER..[[ -E -dD -DIMGUI_DISABLE_OBSOLETE_FUNCTIONS -DIMGUI_API="" -DIMGUI_IMPL_API="" ]] .. CFLAGS
|
||||
CTEST = COMPILER.." --version"
|
||||
elseif COMPILER == "cl" then
|
||||
CPRE = COMPILER..[[ /E /DIMGUI_DISABLE_OBSOLETE_FUNCTIONS /DIMGUI_DEBUG_PARANOID /DIMGUI_API="" /DIMGUI_IMPL_API="" ]] .. CFLAGS
|
||||
CPRE = COMPILER..[[ /E /d1PP /DIMGUI_DISABLE_OBSOLETE_FUNCTIONS /DIMGUI_DEBUG_PARANOID /DIMGUI_API="" /DIMGUI_IMPL_API="" ]] .. CFLAGS
|
||||
CTEST = COMPILER
|
||||
else
|
||||
print("Working without compiler ")
|
||||
@@ -398,7 +398,7 @@ local function parseImGuiHeader(header,names)
|
||||
parser.custom_function_post = custom_function_post
|
||||
parser.header_text_insert = header_text_insert
|
||||
local defines = parser:take_lines(CPRE..header,names,COMPILER)
|
||||
|
||||
--cpp2ffi.prtable("defines",defines)
|
||||
return parser
|
||||
end
|
||||
--generation
|
||||
@@ -438,14 +438,8 @@ structs_and_enums_table.templated_structs = parser1.templated_structs
|
||||
structs_and_enums_table.typenames = parser1.typenames
|
||||
structs_and_enums_table.templates_done = parser1.templates_done
|
||||
--structs_and_enums_table.nonPOD_used = parser1.nP_used
|
||||
|
||||
save_data("./output/structs_and_enums.lua",serializeTableF(structs_and_enums_table))
|
||||
save_data("./output/typedefs_dict.lua",serializeTableF(parser1.typedefs_dict))
|
||||
|
||||
----------save fundefs in definitions.lua for using in bindings
|
||||
--DefsByStruct(pFP)
|
||||
set_defines(parser1.defsT)
|
||||
save_data("./output/definitions.lua",serializeTableF(parser1.defsT))
|
||||
parser1:save_output()
|
||||
|
||||
--check every function has ov_cimguiname
|
||||
-- for k,v in pairs(parser1.defsT) do
|
||||
@@ -549,13 +543,6 @@ local function json_prepare(defs)
|
||||
end
|
||||
---[[
|
||||
local json = require"json"
|
||||
save_data("./output/definitions.json",json.encode(json_prepare(parser1.defsT),{dict_on_empty={defaults=true}}))
|
||||
--delete extra info for json
|
||||
--structs_and_enums_table.templated_structs = nil
|
||||
--structs_and_enums_table.typenames = nil
|
||||
--structs_and_enums_table.templates_done = nil
|
||||
save_data("./output/structs_and_enums.json",json.encode(structs_and_enums_table))
|
||||
save_data("./output/typedefs_dict.json",json.encode(parser1.typedefs_dict))
|
||||
if parser2 then
|
||||
save_data("./output/impl_definitions.json",json.encode(json_prepare(parser2.defsT),{dict_on_empty={defaults=true}}))
|
||||
end
|
||||
|
||||
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_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.7\"",
|
||||
"IMGUI_VERSION_NUM": "19270",
|
||||
"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)",
|
||||
"ImDrawCallback_ResetRenderState": "(ImDrawCallback)(-8)",
|
||||
"ImFabs(X)": "fabsf(X)",
|
||||
"ImFmod(X,Y)": "fmodf((X), (Y))",
|
||||
"ImFontAtlasRectId_GenerationMask_": "(0x3FF00000)",
|
||||
"ImFontAtlasRectId_GenerationShift_": "(20)",
|
||||
"ImFontAtlasRectId_IndexMask_": "(0x0007FFFF)",
|
||||
"ImFontAtlasRectId_Invalid": "-1",
|
||||
"ImGuiKeyOwner_Any": "((ImGuiID)0)",
|
||||
"ImGuiKeyOwner_NoOwner": "((ImGuiID)-1)",
|
||||
"ImGuiKey_Aliases_BEGIN": "(ImGuiKey_Mouse_BEGIN)",
|
||||
"ImGuiKey_Aliases_END": "(ImGuiKey_Mouse_END)",
|
||||
"ImGuiKey_Gamepad_BEGIN": "(ImGuiKey_GamepadStart)",
|
||||
"ImGuiKey_Gamepad_END": "(ImGuiKey_GamepadRStickDown + 1)",
|
||||
"ImGuiKey_Keyboard_BEGIN": "(ImGuiKey_NamedKey_BEGIN)",
|
||||
"ImGuiKey_Keyboard_END": "(ImGuiKey_GamepadStart)",
|
||||
"ImGuiKey_LegacyNativeKey_BEGIN": "0",
|
||||
"ImGuiKey_LegacyNativeKey_END": "512",
|
||||
"ImGuiKey_Mouse_BEGIN": "(ImGuiKey_MouseLeft)",
|
||||
"ImGuiKey_Mouse_END": "(ImGuiKey_MouseWheelY + 1)",
|
||||
"ImGuiKey_NavGamepadActivate": "(g.IO.ConfigNavSwapGamepadButtons ? ImGuiKey_GamepadFaceRight : ImGuiKey_GamepadFaceDown)",
|
||||
"ImGuiKey_NavGamepadCancel": "(g.IO.ConfigNavSwapGamepadButtons ? ImGuiKey_GamepadFaceDown : ImGuiKey_GamepadFaceRight)",
|
||||
"ImGuiKey_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_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.7\"",
|
||||
IMGUI_VERSION_NUM="19270",
|
||||
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)",
|
||||
ImDrawCallback_ResetRenderState="(ImDrawCallback)(-8)",
|
||||
["ImFabs(X)"]="fabsf(X)",
|
||||
["ImFmod(X,Y)"]="fmodf((X), (Y))",
|
||||
ImFontAtlasRectId_GenerationMask_="(0x3FF00000)",
|
||||
ImFontAtlasRectId_GenerationShift_="(20)",
|
||||
ImFontAtlasRectId_IndexMask_="(0x0007FFFF)",
|
||||
ImFontAtlasRectId_Invalid="-1",
|
||||
ImGuiKeyOwner_Any="((ImGuiID)0)",
|
||||
ImGuiKeyOwner_NoOwner="((ImGuiID)-1)",
|
||||
ImGuiKey_Aliases_BEGIN="(ImGuiKey_Mouse_BEGIN)",
|
||||
ImGuiKey_Aliases_END="(ImGuiKey_Mouse_END)",
|
||||
ImGuiKey_Gamepad_BEGIN="(ImGuiKey_GamepadStart)",
|
||||
ImGuiKey_Gamepad_END="(ImGuiKey_GamepadRStickDown + 1)",
|
||||
ImGuiKey_Keyboard_BEGIN="(ImGuiKey_NamedKey_BEGIN)",
|
||||
ImGuiKey_Keyboard_END="(ImGuiKey_GamepadStart)",
|
||||
ImGuiKey_LegacyNativeKey_BEGIN="0",
|
||||
ImGuiKey_LegacyNativeKey_END="512",
|
||||
ImGuiKey_Mouse_BEGIN="(ImGuiKey_MouseLeft)",
|
||||
ImGuiKey_Mouse_END="(ImGuiKey_MouseWheelY + 1)",
|
||||
ImGuiKey_NavGamepadActivate="(g.IO.ConfigNavSwapGamepadButtons ? ImGuiKey_GamepadFaceRight : ImGuiKey_GamepadFaceDown)",
|
||||
ImGuiKey_NavGamepadCancel="(g.IO.ConfigNavSwapGamepadButtons ? ImGuiKey_GamepadFaceDown : ImGuiKey_GamepadFaceRight)",
|
||||
ImGuiKey_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
@@ -1363,7 +1363,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
"location": "imgui_impl_vulkan:199",
|
||||
"location": "imgui_impl_vulkan:200",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
"ret": "void",
|
||||
"signature": "(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)",
|
||||
@@ -1397,7 +1397,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_DestroyWindow",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_DestroyWindow",
|
||||
"location": "imgui_impl_vulkan:200",
|
||||
"location": "imgui_impl_vulkan:201",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_DestroyWindow",
|
||||
"ret": "void",
|
||||
"signature": "(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)",
|
||||
@@ -1419,7 +1419,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
"location": "imgui_impl_vulkan:205",
|
||||
"location": "imgui_impl_vulkan:206",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
"ret": "int",
|
||||
"signature": "(VkPresentModeKHR)",
|
||||
@@ -1441,7 +1441,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
"location": "imgui_impl_vulkan:203",
|
||||
"location": "imgui_impl_vulkan:204",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
"ret": "VkPhysicalDevice",
|
||||
"signature": "(VkInstance)",
|
||||
@@ -1475,7 +1475,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||
"location": "imgui_impl_vulkan:202",
|
||||
"location": "imgui_impl_vulkan:203",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||
"ret": "VkPresentModeKHR",
|
||||
"signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)",
|
||||
@@ -1497,7 +1497,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
"location": "imgui_impl_vulkan:204",
|
||||
"location": "imgui_impl_vulkan:205",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
"ret": "uint32_t",
|
||||
"signature": "(VkPhysicalDevice)",
|
||||
@@ -1535,7 +1535,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
"location": "imgui_impl_vulkan:201",
|
||||
"location": "imgui_impl_vulkan:202",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
"ret": "VkSurfaceFormatKHR",
|
||||
"signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)",
|
||||
@@ -1553,7 +1553,7 @@
|
||||
"constructor": true,
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_Window",
|
||||
"location": "imgui_impl_vulkan:251",
|
||||
"location": "imgui_impl_vulkan:252",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window",
|
||||
"signature": "()",
|
||||
"stname": "ImGui_ImplVulkanH_Window"
|
||||
@@ -1572,7 +1572,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_Window_destroy",
|
||||
"defaults": {},
|
||||
"destructor": true,
|
||||
"location": "imgui_impl_vulkan:251",
|
||||
"location": "imgui_impl_vulkan:252",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_Window_destroy",
|
||||
"ret": "void",
|
||||
"signature": "(ImGui_ImplVulkanH_Window*)",
|
||||
@@ -1602,7 +1602,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_AddTexture",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_AddTexture",
|
||||
"location": "imgui_impl_vulkan:157",
|
||||
"location": "imgui_impl_vulkan:158",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_AddTexture",
|
||||
"ret": "VkDescriptorSet",
|
||||
"signature": "(VkSampler,VkImageView,VkImageLayout)",
|
||||
@@ -1624,7 +1624,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||
"location": "imgui_impl_vulkan:149",
|
||||
"location": "imgui_impl_vulkan:150",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||
"ret": "void",
|
||||
"signature": "(const ImGui_ImplVulkan_PipelineInfo*)",
|
||||
@@ -1646,7 +1646,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_Init",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_Init",
|
||||
"location": "imgui_impl_vulkan:140",
|
||||
"location": "imgui_impl_vulkan:141",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_Init",
|
||||
"ret": "bool",
|
||||
"signature": "(ImGui_ImplVulkan_InitInfo*)",
|
||||
@@ -1678,7 +1678,7 @@
|
||||
"user_data": "nullptr"
|
||||
},
|
||||
"funcname": "ImGui_ImplVulkan_LoadFunctions",
|
||||
"location": "imgui_impl_vulkan:162",
|
||||
"location": "imgui_impl_vulkan:163",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_LoadFunctions",
|
||||
"ret": "bool",
|
||||
"signature": "(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)",
|
||||
@@ -1695,7 +1695,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_NewFrame",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_NewFrame",
|
||||
"location": "imgui_impl_vulkan:142",
|
||||
"location": "imgui_impl_vulkan:143",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_NewFrame",
|
||||
"ret": "void",
|
||||
"signature": "()",
|
||||
@@ -1717,7 +1717,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_RemoveTexture",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_RemoveTexture",
|
||||
"location": "imgui_impl_vulkan:158",
|
||||
"location": "imgui_impl_vulkan:159",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_RemoveTexture",
|
||||
"ret": "void",
|
||||
"signature": "(VkDescriptorSet)",
|
||||
@@ -1749,7 +1749,7 @@
|
||||
"pipeline": "0ULL"
|
||||
},
|
||||
"funcname": "ImGui_ImplVulkan_RenderDrawData",
|
||||
"location": "imgui_impl_vulkan:143",
|
||||
"location": "imgui_impl_vulkan:144",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_RenderDrawData",
|
||||
"ret": "void",
|
||||
"signature": "(ImDrawData*,VkCommandBuffer,VkPipeline)",
|
||||
@@ -1771,7 +1771,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||
"location": "imgui_impl_vulkan:144",
|
||||
"location": "imgui_impl_vulkan:145",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||
"ret": "void",
|
||||
"signature": "(uint32_t)",
|
||||
@@ -1788,7 +1788,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_Shutdown",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_Shutdown",
|
||||
"location": "imgui_impl_vulkan:141",
|
||||
"location": "imgui_impl_vulkan:142",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_Shutdown",
|
||||
"ret": "void",
|
||||
"signature": "()",
|
||||
@@ -1810,7 +1810,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_UpdateTexture",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_UpdateTexture",
|
||||
"location": "imgui_impl_vulkan:152",
|
||||
"location": "imgui_impl_vulkan:153",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_UpdateTexture",
|
||||
"ret": "void",
|
||||
"signature": "(ImTextureData*)",
|
||||
|
||||
@@ -1179,7 +1179,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
location="imgui_impl_vulkan:199",
|
||||
location="imgui_impl_vulkan:200",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
ret="void",
|
||||
signature="(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)",
|
||||
@@ -1207,7 +1207,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_DestroyWindow",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_DestroyWindow",
|
||||
location="imgui_impl_vulkan:200",
|
||||
location="imgui_impl_vulkan:201",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_DestroyWindow",
|
||||
ret="void",
|
||||
signature="(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)",
|
||||
@@ -1226,7 +1226,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
location="imgui_impl_vulkan:205",
|
||||
location="imgui_impl_vulkan:206",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
ret="int",
|
||||
signature="(VkPresentModeKHR)",
|
||||
@@ -1245,7 +1245,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
location="imgui_impl_vulkan:203",
|
||||
location="imgui_impl_vulkan:204",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
ret="VkPhysicalDevice",
|
||||
signature="(VkInstance)",
|
||||
@@ -1273,7 +1273,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||
location="imgui_impl_vulkan:202",
|
||||
location="imgui_impl_vulkan:203",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||
ret="VkPresentModeKHR",
|
||||
signature="(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)",
|
||||
@@ -1292,7 +1292,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
location="imgui_impl_vulkan:204",
|
||||
location="imgui_impl_vulkan:205",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
ret="uint32_t",
|
||||
signature="(VkPhysicalDevice)",
|
||||
@@ -1323,7 +1323,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
location="imgui_impl_vulkan:201",
|
||||
location="imgui_impl_vulkan:202",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
ret="VkSurfaceFormatKHR",
|
||||
signature="(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)",
|
||||
@@ -1340,7 +1340,7 @@ local t={
|
||||
constructor=true,
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_Window",
|
||||
location="imgui_impl_vulkan:251",
|
||||
location="imgui_impl_vulkan:252",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window",
|
||||
signature="()",
|
||||
stname="ImGui_ImplVulkanH_Window"},
|
||||
@@ -1356,7 +1356,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_Window_destroy",
|
||||
defaults={},
|
||||
destructor=true,
|
||||
location="imgui_impl_vulkan:251",
|
||||
location="imgui_impl_vulkan:252",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_Window_destroy",
|
||||
ret="void",
|
||||
signature="(ImGui_ImplVulkanH_Window*)",
|
||||
@@ -1381,7 +1381,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_AddTexture",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_AddTexture",
|
||||
location="imgui_impl_vulkan:157",
|
||||
location="imgui_impl_vulkan:158",
|
||||
ov_cimguiname="ImGui_ImplVulkan_AddTexture",
|
||||
ret="VkDescriptorSet",
|
||||
signature="(VkSampler,VkImageView,VkImageLayout)",
|
||||
@@ -1400,7 +1400,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||
location="imgui_impl_vulkan:149",
|
||||
location="imgui_impl_vulkan:150",
|
||||
ov_cimguiname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||
ret="void",
|
||||
signature="(const ImGui_ImplVulkan_PipelineInfo*)",
|
||||
@@ -1419,7 +1419,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_Init",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_Init",
|
||||
location="imgui_impl_vulkan:140",
|
||||
location="imgui_impl_vulkan:141",
|
||||
ov_cimguiname="ImGui_ImplVulkan_Init",
|
||||
ret="bool",
|
||||
signature="(ImGui_ImplVulkan_InitInfo*)",
|
||||
@@ -1445,7 +1445,7 @@ local t={
|
||||
defaults={
|
||||
user_data="nullptr"},
|
||||
funcname="ImGui_ImplVulkan_LoadFunctions",
|
||||
location="imgui_impl_vulkan:162",
|
||||
location="imgui_impl_vulkan:163",
|
||||
ov_cimguiname="ImGui_ImplVulkan_LoadFunctions",
|
||||
ret="bool",
|
||||
signature="(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)",
|
||||
@@ -1461,7 +1461,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_NewFrame",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_NewFrame",
|
||||
location="imgui_impl_vulkan:142",
|
||||
location="imgui_impl_vulkan:143",
|
||||
ov_cimguiname="ImGui_ImplVulkan_NewFrame",
|
||||
ret="void",
|
||||
signature="()",
|
||||
@@ -1480,7 +1480,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_RemoveTexture",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_RemoveTexture",
|
||||
location="imgui_impl_vulkan:158",
|
||||
location="imgui_impl_vulkan:159",
|
||||
ov_cimguiname="ImGui_ImplVulkan_RemoveTexture",
|
||||
ret="void",
|
||||
signature="(VkDescriptorSet)",
|
||||
@@ -1506,7 +1506,7 @@ local t={
|
||||
defaults={
|
||||
pipeline="0ULL"},
|
||||
funcname="ImGui_ImplVulkan_RenderDrawData",
|
||||
location="imgui_impl_vulkan:143",
|
||||
location="imgui_impl_vulkan:144",
|
||||
ov_cimguiname="ImGui_ImplVulkan_RenderDrawData",
|
||||
ret="void",
|
||||
signature="(ImDrawData*,VkCommandBuffer,VkPipeline)",
|
||||
@@ -1525,7 +1525,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_SetMinImageCount",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_SetMinImageCount",
|
||||
location="imgui_impl_vulkan:144",
|
||||
location="imgui_impl_vulkan:145",
|
||||
ov_cimguiname="ImGui_ImplVulkan_SetMinImageCount",
|
||||
ret="void",
|
||||
signature="(uint32_t)",
|
||||
@@ -1541,7 +1541,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_Shutdown",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_Shutdown",
|
||||
location="imgui_impl_vulkan:141",
|
||||
location="imgui_impl_vulkan:142",
|
||||
ov_cimguiname="ImGui_ImplVulkan_Shutdown",
|
||||
ret="void",
|
||||
signature="()",
|
||||
@@ -1560,7 +1560,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_UpdateTexture",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_UpdateTexture",
|
||||
location="imgui_impl_vulkan:152",
|
||||
location="imgui_impl_vulkan:153",
|
||||
ov_cimguiname="ImGui_ImplVulkan_UpdateTexture",
|
||||
ret="void",
|
||||
signature="(ImTextureData*)",
|
||||
|
||||
@@ -287,11 +287,6 @@
|
||||
"name": "ImGuiButtonFlags_FlattenChildren",
|
||||
"value": "1 << 11"
|
||||
},
|
||||
{
|
||||
"calc_value": 4096,
|
||||
"name": "ImGuiButtonFlags_AllowOverlap",
|
||||
"value": "1 << 12"
|
||||
},
|
||||
{
|
||||
"calc_value": 32768,
|
||||
"name": "ImGuiButtonFlags_AlignTextBaseLine",
|
||||
@@ -373,6 +368,11 @@
|
||||
"calc_value": 8,
|
||||
"name": "ImGuiButtonFlags_EnableNav",
|
||||
"value": "1 << 3"
|
||||
},
|
||||
{
|
||||
"calc_value": 4096,
|
||||
"name": "ImGuiButtonFlags_AllowOverlap",
|
||||
"value": "1 << 12"
|
||||
}
|
||||
],
|
||||
"ImGuiChildFlags_": [
|
||||
@@ -1812,7 +1812,7 @@
|
||||
},
|
||||
{
|
||||
"calc_value": 134217728,
|
||||
"name": "ImGuiInputTextFlags_MergedItem",
|
||||
"name": "ImGuiInputTextFlags_TempInput",
|
||||
"value": "1 << 27"
|
||||
},
|
||||
{
|
||||
@@ -3238,14 +3238,19 @@
|
||||
},
|
||||
{
|
||||
"calc_value": 8192,
|
||||
"name": "ImGuiMultiSelectFlags_SelectOnClick",
|
||||
"name": "ImGuiMultiSelectFlags_SelectOnAuto",
|
||||
"value": "1 << 13"
|
||||
},
|
||||
{
|
||||
"calc_value": 16384,
|
||||
"name": "ImGuiMultiSelectFlags_SelectOnClickRelease",
|
||||
"name": "ImGuiMultiSelectFlags_SelectOnClickAlways",
|
||||
"value": "1 << 14"
|
||||
},
|
||||
{
|
||||
"calc_value": 32768,
|
||||
"name": "ImGuiMultiSelectFlags_SelectOnClickRelease",
|
||||
"value": "1 << 15"
|
||||
},
|
||||
{
|
||||
"calc_value": 65536,
|
||||
"name": "ImGuiMultiSelectFlags_NavWrapX",
|
||||
@@ -3255,6 +3260,11 @@
|
||||
"calc_value": 131072,
|
||||
"name": "ImGuiMultiSelectFlags_NoSelectOnRightClick",
|
||||
"value": "1 << 17"
|
||||
},
|
||||
{
|
||||
"calc_value": 57344,
|
||||
"name": "ImGuiMultiSelectFlags_SelectOnMask_",
|
||||
"value": "ImGuiMultiSelectFlags_SelectOnAuto | ImGuiMultiSelectFlags_SelectOnClickAlways | ImGuiMultiSelectFlags_SelectOnClickRelease"
|
||||
}
|
||||
],
|
||||
"ImGuiNavLayer": [
|
||||
@@ -4059,23 +4069,28 @@
|
||||
},
|
||||
{
|
||||
"calc_value": 37,
|
||||
"name": "ImGuiStyleVar_SeparatorTextBorderSize",
|
||||
"name": "ImGuiStyleVar_SeparatorSize",
|
||||
"value": "37"
|
||||
},
|
||||
{
|
||||
"calc_value": 38,
|
||||
"name": "ImGuiStyleVar_SeparatorTextAlign",
|
||||
"name": "ImGuiStyleVar_SeparatorTextBorderSize",
|
||||
"value": "38"
|
||||
},
|
||||
{
|
||||
"calc_value": 39,
|
||||
"name": "ImGuiStyleVar_SeparatorTextPadding",
|
||||
"name": "ImGuiStyleVar_SeparatorTextAlign",
|
||||
"value": "39"
|
||||
},
|
||||
{
|
||||
"calc_value": 40,
|
||||
"name": "ImGuiStyleVar_COUNT",
|
||||
"name": "ImGuiStyleVar_SeparatorTextPadding",
|
||||
"value": "40"
|
||||
},
|
||||
{
|
||||
"calc_value": 41,
|
||||
"name": "ImGuiStyleVar_COUNT",
|
||||
"value": "41"
|
||||
}
|
||||
],
|
||||
"ImGuiTabBarFlagsPrivate_": [
|
||||
@@ -5044,210 +5059,210 @@
|
||||
},
|
||||
"locations": {
|
||||
"ImBitVector": "imgui_internal:659",
|
||||
"ImColor": "imgui:2952",
|
||||
"ImDrawChannel": "imgui:3201",
|
||||
"ImDrawCmd": "imgui:3157",
|
||||
"ImDrawCmdHeader": "imgui:3193",
|
||||
"ImDrawData": "imgui:3422",
|
||||
"ImColor": "imgui:2968",
|
||||
"ImDrawChannel": "imgui:3224",
|
||||
"ImDrawCmd": "imgui:3180",
|
||||
"ImDrawCmdHeader": "imgui:3216",
|
||||
"ImDrawData": "imgui:3445",
|
||||
"ImDrawDataBuilder": "imgui_internal:887",
|
||||
"ImDrawFlags_": "imgui:3226",
|
||||
"ImDrawList": "imgui:3264",
|
||||
"ImDrawListFlags_": "imgui:3246",
|
||||
"ImDrawFlags_": "imgui:3249",
|
||||
"ImDrawList": "imgui:3287",
|
||||
"ImDrawListFlags_": "imgui:3269",
|
||||
"ImDrawListSharedData": "imgui_internal:860",
|
||||
"ImDrawListSplitter": "imgui:3209",
|
||||
"ImDrawListSplitter": "imgui:3232",
|
||||
"ImDrawTextFlags_": "imgui_internal:432",
|
||||
"ImDrawVert": "imgui:3178",
|
||||
"ImFont": "imgui:3848",
|
||||
"ImFontAtlas": "imgui:3649",
|
||||
"ImFontAtlasBuilder": "imgui_internal:3862",
|
||||
"ImFontAtlasFlags_": "imgui:3622",
|
||||
"ImFontAtlasPostProcessData": "imgui_internal:3835",
|
||||
"ImFontAtlasRect": "imgui:3612",
|
||||
"ImFontAtlasRectEntry": "imgui_internal:3827",
|
||||
"ImFontBaked": "imgui:3800",
|
||||
"ImFontConfig": "imgui:3531",
|
||||
"ImFontFlags_": "imgui:3835",
|
||||
"ImFontGlyph": "imgui:3574",
|
||||
"ImFontGlyphRangesBuilder": "imgui:3590",
|
||||
"ImFontLoader": "imgui_internal:3776",
|
||||
"ImDrawVert": "imgui:3201",
|
||||
"ImFont": "imgui:3871",
|
||||
"ImFontAtlas": "imgui:3672",
|
||||
"ImFontAtlasBuilder": "imgui_internal:3879",
|
||||
"ImFontAtlasFlags_": "imgui:3645",
|
||||
"ImFontAtlasPostProcessData": "imgui_internal:3852",
|
||||
"ImFontAtlasRect": "imgui:3635",
|
||||
"ImFontAtlasRectEntry": "imgui_internal:3844",
|
||||
"ImFontBaked": "imgui:3823",
|
||||
"ImFontConfig": "imgui:3554",
|
||||
"ImFontFlags_": "imgui:3858",
|
||||
"ImFontGlyph": "imgui:3597",
|
||||
"ImFontGlyphRangesBuilder": "imgui:3613",
|
||||
"ImFontLoader": "imgui_internal:3793",
|
||||
"ImFontStackData": "imgui_internal:895",
|
||||
"ImGuiActivateFlags_": "imgui_internal:1683",
|
||||
"ImGuiAxis": "imgui_internal:1144",
|
||||
"ImGuiBackendFlags_": "imgui:1723",
|
||||
"ImGuiBoxSelectState": "imgui_internal:1874",
|
||||
"ImGuiActivateFlags_": "imgui_internal:1684",
|
||||
"ImGuiAxis": "imgui_internal:1143",
|
||||
"ImGuiBackendFlags_": "imgui:1726",
|
||||
"ImGuiBoxSelectState": "imgui_internal:1875",
|
||||
"ImGuiButtonFlagsPrivate_": "imgui_internal:1031",
|
||||
"ImGuiButtonFlags_": "imgui:1861",
|
||||
"ImGuiChildFlags_": "imgui:1212",
|
||||
"ImGuiCol_": "imgui:1734",
|
||||
"ImGuiColorEditFlags_": "imgui:1872",
|
||||
"ImGuiButtonFlags_": "imgui:1865",
|
||||
"ImGuiChildFlags_": "imgui:1215",
|
||||
"ImGuiCol_": "imgui:1737",
|
||||
"ImGuiColorEditFlags_": "imgui:1877",
|
||||
"ImGuiColorMod": "imgui_internal:915",
|
||||
"ImGuiComboFlagsPrivate_": "imgui_internal:1058",
|
||||
"ImGuiComboFlags_": "imgui:1374",
|
||||
"ImGuiComboPreviewData": "imgui_internal:1158",
|
||||
"ImGuiCond_": "imgui:1988",
|
||||
"ImGuiConfigFlags_": "imgui:1703",
|
||||
"ImGuiContext": "imgui_internal:2189",
|
||||
"ImGuiContextHook": "imgui_internal:2174",
|
||||
"ImGuiContextHookType": "imgui_internal:2172",
|
||||
"ImGuiComboFlagsPrivate_": "imgui_internal:1057",
|
||||
"ImGuiComboFlags_": "imgui:1377",
|
||||
"ImGuiComboPreviewData": "imgui_internal:1157",
|
||||
"ImGuiCond_": "imgui:1993",
|
||||
"ImGuiConfigFlags_": "imgui:1707",
|
||||
"ImGuiContext": "imgui_internal:2192",
|
||||
"ImGuiContextHook": "imgui_internal:2175",
|
||||
"ImGuiContextHookType": "imgui_internal:2173",
|
||||
"ImGuiDataTypeInfo": "imgui_internal:941",
|
||||
"ImGuiDataTypePrivate_": "imgui_internal:950",
|
||||
"ImGuiDataTypeStorage": "imgui_internal:935",
|
||||
"ImGuiDataType_": "imgui:1509",
|
||||
"ImGuiDeactivatedItemData": "imgui_internal:1451",
|
||||
"ImGuiDebugAllocEntry": "imgui_internal:2097",
|
||||
"ImGuiDebugAllocInfo": "imgui_internal:2104",
|
||||
"ImGuiDebugItemPathQuery": "imgui_internal:2143",
|
||||
"ImGuiDebugLogFlags_": "imgui_internal:2074",
|
||||
"ImGuiDir": "imgui:1527",
|
||||
"ImGuiDragDropFlags_": "imgui:1480",
|
||||
"ImGuiErrorRecoveryState": "imgui_internal:1407",
|
||||
"ImGuiFocusRequestFlags_": "imgui_internal:1104",
|
||||
"ImGuiFocusScopeData": "imgui_internal:1771",
|
||||
"ImGuiFocusedFlags_": "imgui:1428",
|
||||
"ImGuiDataType_": "imgui:1512",
|
||||
"ImGuiDeactivatedItemData": "imgui_internal:1452",
|
||||
"ImGuiDebugAllocEntry": "imgui_internal:2098",
|
||||
"ImGuiDebugAllocInfo": "imgui_internal:2105",
|
||||
"ImGuiDebugItemPathQuery": "imgui_internal:2144",
|
||||
"ImGuiDebugLogFlags_": "imgui_internal:2075",
|
||||
"ImGuiDir": "imgui:1530",
|
||||
"ImGuiDragDropFlags_": "imgui:1483",
|
||||
"ImGuiErrorRecoveryState": "imgui_internal:1408",
|
||||
"ImGuiFocusRequestFlags_": "imgui_internal:1103",
|
||||
"ImGuiFocusScopeData": "imgui_internal:1772",
|
||||
"ImGuiFocusedFlags_": "imgui:1431",
|
||||
"ImGuiFreeTypeLoaderFlags_": "imgui_freetype:29",
|
||||
"ImGuiGroupData": "imgui_internal:1171",
|
||||
"ImGuiGroupData": "imgui_internal:1170",
|
||||
"ImGuiHoveredFlagsPrivate_": "imgui_internal:1014",
|
||||
"ImGuiHoveredFlags_": "imgui:1442",
|
||||
"ImGuiIDStackTool": "imgui_internal:2157",
|
||||
"ImGuiIO": "imgui:2392",
|
||||
"ImGuiInputEvent": "imgui_internal:1544",
|
||||
"ImGuiInputEventAppFocused": "imgui_internal:1542",
|
||||
"ImGuiInputEventKey": "imgui_internal:1540",
|
||||
"ImGuiInputEventMouseButton": "imgui_internal:1539",
|
||||
"ImGuiInputEventMousePos": "imgui_internal:1537",
|
||||
"ImGuiInputEventMouseWheel": "imgui_internal:1538",
|
||||
"ImGuiInputEventText": "imgui_internal:1541",
|
||||
"ImGuiInputEventType": "imgui_internal:1514",
|
||||
"ImGuiInputFlagsPrivate_": "imgui_internal:1610",
|
||||
"ImGuiInputFlags_": "imgui:1680",
|
||||
"ImGuiInputSource": "imgui_internal:1526",
|
||||
"ImGuiInputTextCallbackData": "imgui:2633",
|
||||
"ImGuiInputTextDeactivatedState": "imgui_internal:1208",
|
||||
"ImGuiHoveredFlags_": "imgui:1445",
|
||||
"ImGuiIDStackTool": "imgui_internal:2158",
|
||||
"ImGuiIO": "imgui:2398",
|
||||
"ImGuiInputEvent": "imgui_internal:1545",
|
||||
"ImGuiInputEventAppFocused": "imgui_internal:1543",
|
||||
"ImGuiInputEventKey": "imgui_internal:1541",
|
||||
"ImGuiInputEventMouseButton": "imgui_internal:1540",
|
||||
"ImGuiInputEventMousePos": "imgui_internal:1538",
|
||||
"ImGuiInputEventMouseWheel": "imgui_internal:1539",
|
||||
"ImGuiInputEventText": "imgui_internal:1542",
|
||||
"ImGuiInputEventType": "imgui_internal:1515",
|
||||
"ImGuiInputFlagsPrivate_": "imgui_internal:1611",
|
||||
"ImGuiInputFlags_": "imgui:1683",
|
||||
"ImGuiInputSource": "imgui_internal:1527",
|
||||
"ImGuiInputTextCallbackData": "imgui:2639",
|
||||
"ImGuiInputTextDeactivatedState": "imgui_internal:1207",
|
||||
"ImGuiInputTextFlagsPrivate_": "imgui_internal:1022",
|
||||
"ImGuiInputTextFlags_": "imgui:1247",
|
||||
"ImGuiInputTextState": "imgui_internal:1230",
|
||||
"ImGuiInputTextFlags_": "imgui:1250",
|
||||
"ImGuiInputTextState": "imgui_internal:1229",
|
||||
"ImGuiItemFlagsPrivate_": "imgui_internal:963",
|
||||
"ImGuiItemFlags_": "imgui:1233",
|
||||
"ImGuiItemFlags_": "imgui:1236",
|
||||
"ImGuiItemStatusFlags_": "imgui_internal:987",
|
||||
"ImGuiKey": "imgui:1551",
|
||||
"ImGuiKeyData": "imgui:2384",
|
||||
"ImGuiKeyOwnerData": "imgui_internal:1597",
|
||||
"ImGuiKeyRoutingData": "imgui_internal:1571",
|
||||
"ImGuiKeyRoutingTable": "imgui_internal:1585",
|
||||
"ImGuiLastItemData": "imgui_internal:1376",
|
||||
"ImGuiLayoutType_": "imgui_internal:1125",
|
||||
"ImGuiListClipper": "imgui:2851",
|
||||
"ImGuiListClipperData": "imgui_internal:1667",
|
||||
"ImGuiListClipperFlags_": "imgui:2825",
|
||||
"ImGuiListClipperRange": "imgui_internal:1654",
|
||||
"ImGuiLocEntry": "imgui_internal:2045",
|
||||
"ImGuiLocKey": "imgui_internal:2030",
|
||||
"ImGuiLogFlags_": "imgui_internal:1132",
|
||||
"ImGuiMenuColumns": "imgui_internal:1190",
|
||||
"ImGuiMetricsConfig": "imgui_internal:2114",
|
||||
"ImGuiMouseButton_": "imgui:1946",
|
||||
"ImGuiMouseCursor_": "imgui:1956",
|
||||
"ImGuiMouseSource": "imgui:1977",
|
||||
"ImGuiMultiSelectFlags_": "imgui:3010",
|
||||
"ImGuiMultiSelectIO": "imgui:3038",
|
||||
"ImGuiMultiSelectState": "imgui_internal:1931",
|
||||
"ImGuiMultiSelectTempData": "imgui_internal:1906",
|
||||
"ImGuiNavItemData": "imgui_internal:1754",
|
||||
"ImGuiNavLayer": "imgui_internal:1746",
|
||||
"ImGuiNavMoveFlags_": "imgui_internal:1724",
|
||||
"ImGuiNavRenderCursorFlags_": "imgui_internal:1709",
|
||||
"ImGuiNextItemData": "imgui_internal:1354",
|
||||
"ImGuiNextItemDataFlags_": "imgui_internal:1343",
|
||||
"ImGuiNextWindowData": "imgui_internal:1316",
|
||||
"ImGuiNextWindowDataFlags_": "imgui_internal:1299",
|
||||
"ImGuiOldColumnData": "imgui_internal:1839",
|
||||
"ImGuiOldColumnFlags_": "imgui_internal:1819",
|
||||
"ImGuiOldColumns": "imgui_internal:1849",
|
||||
"ImGuiOnceUponAFrame": "imgui:2714",
|
||||
"ImGuiPayload": "imgui:2679",
|
||||
"ImGuiPlatformIO": "imgui:3959",
|
||||
"ImGuiPlatformImeData": "imgui:4016",
|
||||
"ImGuiPlotType": "imgui_internal:1151",
|
||||
"ImGuiPopupData": "imgui_internal:1471",
|
||||
"ImGuiPopupFlags_": "imgui:1337",
|
||||
"ImGuiPopupPositionPolicy": "imgui_internal:1463",
|
||||
"ImGuiPtrOrIndex": "imgui_internal:1441",
|
||||
"ImGuiScrollFlags_": "imgui_internal:1695",
|
||||
"ImGuiSelectableFlagsPrivate_": "imgui_internal:1071",
|
||||
"ImGuiSelectableFlags_": "imgui:1356",
|
||||
"ImGuiSelectionBasicStorage": "imgui:3084",
|
||||
"ImGuiSelectionExternalStorage": "imgui:3107",
|
||||
"ImGuiSelectionRequest": "imgui:3058",
|
||||
"ImGuiSelectionRequestType": "imgui:3050",
|
||||
"ImGuiSeparatorFlags_": "imgui_internal:1093",
|
||||
"ImGuiSettingsHandler": "imgui_internal:2010",
|
||||
"ImGuiShrinkWidthItem": "imgui_internal:1434",
|
||||
"ImGuiSizeCallbackData": "imgui:2670",
|
||||
"ImGuiSliderFlagsPrivate_": "imgui_internal:1064",
|
||||
"ImGuiSliderFlags_": "imgui:1929",
|
||||
"ImGuiSortDirection": "imgui:1538",
|
||||
"ImGuiStackLevelInfo": "imgui_internal:2132",
|
||||
"ImGuiStorage": "imgui:2787",
|
||||
"ImGuiStoragePair": "imgui:2770",
|
||||
"ImGuiStyle": "imgui:2275",
|
||||
"ImGuiKey": "imgui:1554",
|
||||
"ImGuiKeyData": "imgui:2390",
|
||||
"ImGuiKeyOwnerData": "imgui_internal:1598",
|
||||
"ImGuiKeyRoutingData": "imgui_internal:1572",
|
||||
"ImGuiKeyRoutingTable": "imgui_internal:1586",
|
||||
"ImGuiLastItemData": "imgui_internal:1377",
|
||||
"ImGuiLayoutType_": "imgui_internal:1124",
|
||||
"ImGuiListClipper": "imgui:2857",
|
||||
"ImGuiListClipperData": "imgui_internal:1668",
|
||||
"ImGuiListClipperFlags_": "imgui:2831",
|
||||
"ImGuiListClipperRange": "imgui_internal:1655",
|
||||
"ImGuiLocEntry": "imgui_internal:2046",
|
||||
"ImGuiLocKey": "imgui_internal:2031",
|
||||
"ImGuiLogFlags_": "imgui_internal:1131",
|
||||
"ImGuiMenuColumns": "imgui_internal:1189",
|
||||
"ImGuiMetricsConfig": "imgui_internal:2115",
|
||||
"ImGuiMouseButton_": "imgui:1951",
|
||||
"ImGuiMouseCursor_": "imgui:1961",
|
||||
"ImGuiMouseSource": "imgui:1982",
|
||||
"ImGuiMultiSelectFlags_": "imgui:3026",
|
||||
"ImGuiMultiSelectIO": "imgui:3061",
|
||||
"ImGuiMultiSelectState": "imgui_internal:1932",
|
||||
"ImGuiMultiSelectTempData": "imgui_internal:1907",
|
||||
"ImGuiNavItemData": "imgui_internal:1755",
|
||||
"ImGuiNavLayer": "imgui_internal:1747",
|
||||
"ImGuiNavMoveFlags_": "imgui_internal:1725",
|
||||
"ImGuiNavRenderCursorFlags_": "imgui_internal:1710",
|
||||
"ImGuiNextItemData": "imgui_internal:1355",
|
||||
"ImGuiNextItemDataFlags_": "imgui_internal:1344",
|
||||
"ImGuiNextWindowData": "imgui_internal:1317",
|
||||
"ImGuiNextWindowDataFlags_": "imgui_internal:1300",
|
||||
"ImGuiOldColumnData": "imgui_internal:1840",
|
||||
"ImGuiOldColumnFlags_": "imgui_internal:1820",
|
||||
"ImGuiOldColumns": "imgui_internal:1850",
|
||||
"ImGuiOnceUponAFrame": "imgui:2720",
|
||||
"ImGuiPayload": "imgui:2685",
|
||||
"ImGuiPlatformIO": "imgui:3984",
|
||||
"ImGuiPlatformImeData": "imgui:4041",
|
||||
"ImGuiPlotType": "imgui_internal:1150",
|
||||
"ImGuiPopupData": "imgui_internal:1472",
|
||||
"ImGuiPopupFlags_": "imgui:1340",
|
||||
"ImGuiPopupPositionPolicy": "imgui_internal:1464",
|
||||
"ImGuiPtrOrIndex": "imgui_internal:1442",
|
||||
"ImGuiScrollFlags_": "imgui_internal:1696",
|
||||
"ImGuiSelectableFlagsPrivate_": "imgui_internal:1070",
|
||||
"ImGuiSelectableFlags_": "imgui:1359",
|
||||
"ImGuiSelectionBasicStorage": "imgui:3107",
|
||||
"ImGuiSelectionExternalStorage": "imgui:3130",
|
||||
"ImGuiSelectionRequest": "imgui:3081",
|
||||
"ImGuiSelectionRequestType": "imgui:3073",
|
||||
"ImGuiSeparatorFlags_": "imgui_internal:1092",
|
||||
"ImGuiSettingsHandler": "imgui_internal:2011",
|
||||
"ImGuiShrinkWidthItem": "imgui_internal:1435",
|
||||
"ImGuiSizeCallbackData": "imgui:2676",
|
||||
"ImGuiSliderFlagsPrivate_": "imgui_internal:1063",
|
||||
"ImGuiSliderFlags_": "imgui:1934",
|
||||
"ImGuiSortDirection": "imgui:1541",
|
||||
"ImGuiStackLevelInfo": "imgui_internal:2133",
|
||||
"ImGuiStorage": "imgui:2793",
|
||||
"ImGuiStoragePair": "imgui:2776",
|
||||
"ImGuiStyle": "imgui:2280",
|
||||
"ImGuiStyleMod": "imgui_internal:922",
|
||||
"ImGuiStyleVarInfo": "imgui_internal:906",
|
||||
"ImGuiStyleVar_": "imgui:1814",
|
||||
"ImGuiTabBar": "imgui_internal:2813",
|
||||
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2776",
|
||||
"ImGuiTabBarFlags_": "imgui:1389",
|
||||
"ImGuiTabItem": "imgui_internal:2794",
|
||||
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2784",
|
||||
"ImGuiTabItemFlags_": "imgui:1413",
|
||||
"ImGuiTable": "imgui_internal:2959",
|
||||
"ImGuiTableBgTarget_": "imgui:2129",
|
||||
"ImGuiTableCellData": "imgui_internal:2927",
|
||||
"ImGuiTableColumn": "imgui_internal:2867",
|
||||
"ImGuiTableColumnFlags_": "imgui:2076",
|
||||
"ImGuiTableColumnSettings": "imgui_internal:3108",
|
||||
"ImGuiTableColumnSortSpecs": "imgui:2151",
|
||||
"ImGuiTableFlags_": "imgui:2023",
|
||||
"ImGuiTableHeaderData": "imgui_internal:2936",
|
||||
"ImGuiTableInstanceData": "imgui_internal:2946",
|
||||
"ImGuiTableRowFlags_": "imgui:2114",
|
||||
"ImGuiTableSettings": "imgui_internal:3132",
|
||||
"ImGuiTableSortSpecs": "imgui:2141",
|
||||
"ImGuiTableTempData": "imgui_internal:3084",
|
||||
"ImGuiTextBuffer": "imgui:2749",
|
||||
"ImGuiTextFilter": "imgui:2722",
|
||||
"ImGuiTextFlags_": "imgui_internal:1111",
|
||||
"ImGuiStyleVar_": "imgui:1817",
|
||||
"ImGuiTabBar": "imgui_internal:2823",
|
||||
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2786",
|
||||
"ImGuiTabBarFlags_": "imgui:1392",
|
||||
"ImGuiTabItem": "imgui_internal:2804",
|
||||
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2794",
|
||||
"ImGuiTabItemFlags_": "imgui:1416",
|
||||
"ImGuiTable": "imgui_internal:2969",
|
||||
"ImGuiTableBgTarget_": "imgui:2134",
|
||||
"ImGuiTableCellData": "imgui_internal:2937",
|
||||
"ImGuiTableColumn": "imgui_internal:2877",
|
||||
"ImGuiTableColumnFlags_": "imgui:2081",
|
||||
"ImGuiTableColumnSettings": "imgui_internal:3119",
|
||||
"ImGuiTableColumnSortSpecs": "imgui:2156",
|
||||
"ImGuiTableFlags_": "imgui:2028",
|
||||
"ImGuiTableHeaderData": "imgui_internal:2946",
|
||||
"ImGuiTableInstanceData": "imgui_internal:2956",
|
||||
"ImGuiTableRowFlags_": "imgui:2119",
|
||||
"ImGuiTableSettings": "imgui_internal:3143",
|
||||
"ImGuiTableSortSpecs": "imgui:2146",
|
||||
"ImGuiTableTempData": "imgui_internal:3095",
|
||||
"ImGuiTextBuffer": "imgui:2755",
|
||||
"ImGuiTextFilter": "imgui:2728",
|
||||
"ImGuiTextFlags_": "imgui_internal:1110",
|
||||
"ImGuiTextIndex": "imgui_internal:812",
|
||||
"ImGuiTextRange": "imgui:2732",
|
||||
"ImGuiTooltipFlags_": "imgui_internal:1117",
|
||||
"ImGuiTreeNodeFlagsPrivate_": "imgui_internal:1084",
|
||||
"ImGuiTreeNodeFlags_": "imgui:1298",
|
||||
"ImGuiTreeNodeStackData": "imgui_internal:1395",
|
||||
"ImGuiTypingSelectFlags_": "imgui_internal:1782",
|
||||
"ImGuiTypingSelectRequest": "imgui_internal:1790",
|
||||
"ImGuiTypingSelectState": "imgui_internal:1801",
|
||||
"ImGuiViewport": "imgui:3933",
|
||||
"ImGuiViewportFlags_": "imgui:3918",
|
||||
"ImGuiViewportP": "imgui_internal:1959",
|
||||
"ImGuiWindow": "imgui_internal:2641",
|
||||
"ImGuiWindowBgClickFlags_": "imgui_internal:1293",
|
||||
"ImGuiWindowFlags_": "imgui:1163",
|
||||
"ImGuiWindowRefreshFlags_": "imgui_internal:1284",
|
||||
"ImGuiWindowSettings": "imgui_internal:1996",
|
||||
"ImGuiWindowStackData": "imgui_internal:1425",
|
||||
"ImGuiWindowTempData": "imgui_internal:2587",
|
||||
"ImGuiTextRange": "imgui:2738",
|
||||
"ImGuiTooltipFlags_": "imgui_internal:1116",
|
||||
"ImGuiTreeNodeFlagsPrivate_": "imgui_internal:1083",
|
||||
"ImGuiTreeNodeFlags_": "imgui:1301",
|
||||
"ImGuiTreeNodeStackData": "imgui_internal:1396",
|
||||
"ImGuiTypingSelectFlags_": "imgui_internal:1783",
|
||||
"ImGuiTypingSelectRequest": "imgui_internal:1791",
|
||||
"ImGuiTypingSelectState": "imgui_internal:1802",
|
||||
"ImGuiViewport": "imgui:3958",
|
||||
"ImGuiViewportFlags_": "imgui:3943",
|
||||
"ImGuiViewportP": "imgui_internal:1960",
|
||||
"ImGuiWindow": "imgui_internal:2651",
|
||||
"ImGuiWindowBgClickFlags_": "imgui_internal:1294",
|
||||
"ImGuiWindowFlags_": "imgui:1166",
|
||||
"ImGuiWindowRefreshFlags_": "imgui_internal:1285",
|
||||
"ImGuiWindowSettings": "imgui_internal:1997",
|
||||
"ImGuiWindowStackData": "imgui_internal:1426",
|
||||
"ImGuiWindowTempData": "imgui_internal:2597",
|
||||
"ImRect": "imgui_internal:581",
|
||||
"ImTextureData": "imgui:3487",
|
||||
"ImTextureFormat": "imgui:3455",
|
||||
"ImTextureRect": "imgui:3474",
|
||||
"ImTextureRef": "imgui:365",
|
||||
"ImTextureStatus": "imgui:3462",
|
||||
"ImTextureData": "imgui:3510",
|
||||
"ImTextureFormat": "imgui:3478",
|
||||
"ImTextureRect": "imgui:3497",
|
||||
"ImTextureRef": "imgui:367",
|
||||
"ImTextureStatus": "imgui:3485",
|
||||
"ImVec1": "imgui_internal:555",
|
||||
"ImVec2": "imgui:295",
|
||||
"ImVec2i": "imgui_internal:563",
|
||||
"ImVec2ih": "imgui_internal:571",
|
||||
"ImVec4": "imgui:308",
|
||||
"ImWcharClass": "imgui_internal:444",
|
||||
"stbrp_context_opaque": "imgui_internal:3859"
|
||||
"stbrp_context_opaque": "imgui_internal:3876"
|
||||
},
|
||||
"nonPOD": {
|
||||
"ImBitArray": true,
|
||||
@@ -6885,6 +6900,10 @@
|
||||
"name": "NavLayer",
|
||||
"type": "ImGuiNavLayer"
|
||||
},
|
||||
{
|
||||
"name": "NavIdItemFlags",
|
||||
"type": "ImGuiItemFlags"
|
||||
},
|
||||
{
|
||||
"name": "NavActivateId",
|
||||
"type": "ImGuiID"
|
||||
@@ -6914,6 +6933,14 @@
|
||||
"name": "NavHighlightActivatedTimer",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "NavOpenContextMenuItemId",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "NavOpenContextMenuWindowId",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "NavNextActivateId",
|
||||
"type": "ImGuiID"
|
||||
@@ -7326,6 +7353,10 @@
|
||||
"name": "InputTextPasswordFontBackupFlags",
|
||||
"type": "ImFontFlags"
|
||||
},
|
||||
{
|
||||
"name": "InputTextReactivateId",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "TempInputId",
|
||||
"type": "ImGuiID"
|
||||
@@ -7493,6 +7524,10 @@
|
||||
"name": "HookIdNext",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "DemoMarkerCallback",
|
||||
"type": "ImGuiDemoMarkerCallback"
|
||||
},
|
||||
{
|
||||
"name": "LocalizationTable[ImGuiLocKey_COUNT]",
|
||||
"size": 10,
|
||||
@@ -8601,7 +8636,11 @@
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "Edited",
|
||||
"name": "EditedBefore",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "EditedThisFrame",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
@@ -8735,10 +8774,6 @@
|
||||
}
|
||||
],
|
||||
"ImGuiListClipper": [
|
||||
{
|
||||
"name": "Ctx",
|
||||
"type": "ImGuiContext*"
|
||||
},
|
||||
{
|
||||
"name": "DisplayStart",
|
||||
"type": "int"
|
||||
@@ -8747,6 +8782,10 @@
|
||||
"name": "DisplayEnd",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "UserIndex",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "ItemsCount",
|
||||
"type": "int"
|
||||
@@ -8755,6 +8794,10 @@
|
||||
"name": "ItemsHeight",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "Flags",
|
||||
"type": "ImGuiListClipperFlags"
|
||||
},
|
||||
{
|
||||
"name": "StartPosY",
|
||||
"type": "double"
|
||||
@@ -8764,12 +8807,12 @@
|
||||
"type": "double"
|
||||
},
|
||||
{
|
||||
"name": "TempData",
|
||||
"type": "void*"
|
||||
"name": "Ctx",
|
||||
"type": "ImGuiContext*"
|
||||
},
|
||||
{
|
||||
"name": "Flags",
|
||||
"type": "ImGuiListClipperFlags"
|
||||
"name": "TempData",
|
||||
"type": "void*"
|
||||
}
|
||||
],
|
||||
"ImGuiListClipperData": [
|
||||
@@ -9836,6 +9879,10 @@
|
||||
"name": "SelectableTextAlign",
|
||||
"type": "ImVec2"
|
||||
},
|
||||
{
|
||||
"name": "SeparatorSize",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "SeparatorTextBorderSize",
|
||||
"type": "float"
|
||||
@@ -10459,12 +10506,16 @@
|
||||
"name": "HeldHeaderColumn",
|
||||
"type": "ImGuiTableColumnIdx"
|
||||
},
|
||||
{
|
||||
"name": "LastHeldHeaderColumn",
|
||||
"type": "ImGuiTableColumnIdx"
|
||||
},
|
||||
{
|
||||
"name": "ReorderColumn",
|
||||
"type": "ImGuiTableColumnIdx"
|
||||
},
|
||||
{
|
||||
"name": "ReorderColumnDir",
|
||||
"name": "ReorderColumnDstOrder",
|
||||
"type": "ImGuiTableColumnIdx"
|
||||
},
|
||||
{
|
||||
@@ -11160,9 +11211,9 @@
|
||||
"type": "ImGuiViewport"
|
||||
},
|
||||
{
|
||||
"name": "BgFgDrawListsLastFrame[2]",
|
||||
"name": "BgFgDrawListsLastTimeActive[2]",
|
||||
"size": 2,
|
||||
"type": "int"
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "BgFgDrawLists[2]",
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -56,6 +56,7 @@
|
||||
"ImGuiDebugAllocInfo": "struct ImGuiDebugAllocInfo",
|
||||
"ImGuiDebugItemPathQuery": "struct ImGuiDebugItemPathQuery",
|
||||
"ImGuiDebugLogFlags": "int",
|
||||
"ImGuiDemoMarkerCallback": "void (*)(const char* file, int line, const char* section);",
|
||||
"ImGuiDragDropFlags": "int",
|
||||
"ImGuiErrorCallback": "void (*)(ImGuiContext* ctx, void* user_data, const char* msg);",
|
||||
"ImGuiErrorRecoveryState": "struct ImGuiErrorRecoveryState",
|
||||
|
||||
@@ -56,6 +56,7 @@ local t={
|
||||
ImGuiDebugAllocInfo="struct ImGuiDebugAllocInfo",
|
||||
ImGuiDebugItemPathQuery="struct ImGuiDebugItemPathQuery",
|
||||
ImGuiDebugLogFlags="int",
|
||||
ImGuiDemoMarkerCallback="void (*)(const char* file, int line, const char* section);",
|
||||
ImGuiDragDropFlags="int",
|
||||
ImGuiErrorCallback="void (*)(ImGuiContext* ctx, void* user_data, const char* msg);",
|
||||
ImGuiErrorRecoveryState="struct ImGuiErrorRecoveryState",
|
||||
|
||||
Reference in New Issue
Block a user