mirror of
https://github.com/cimgui/cimgui.git
synced 2026-03-20 04:51:18 +00:00
Merge branch 'docking_inter'
This commit is contained in:
@@ -76,6 +76,25 @@ function M.prtable(...)
|
||||
print("\n")
|
||||
end
|
||||
end
|
||||
local function deepcopy(object)
|
||||
local lookup_table = {}
|
||||
local function _copy(object)
|
||||
--assert(object~=REST)
|
||||
if type(object) ~= "table" then
|
||||
return object
|
||||
elseif lookup_table[object] then
|
||||
return lookup_table[object]
|
||||
end
|
||||
local new_table = {}
|
||||
lookup_table[object] = new_table
|
||||
for index, value in pairs(object) do
|
||||
new_table[_copy(index)] = _copy(value)
|
||||
end
|
||||
return setmetatable(new_table, getmetatable(object))
|
||||
end
|
||||
return _copy(object)
|
||||
end
|
||||
M.deepcopy = deepcopy
|
||||
local function str_split(str, pat)
|
||||
local t = {}
|
||||
local fpat = "(.-)" .. pat
|
||||
@@ -529,7 +548,7 @@ local function name_overloadsAlgo(v)
|
||||
for i=1,#v do
|
||||
if not done[i] then
|
||||
bb[i] = bb[i]..(aa[i][l]=="nil" and "" or aa[i][l])
|
||||
cc[i][l] = aa[i][l]
|
||||
table.insert(cc[i], (aa[i][l]=="nil" and "" or aa[i][l]))
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -544,7 +563,7 @@ local function name_overloadsAlgo(v)
|
||||
end
|
||||
end
|
||||
--avoid empty postfix which will be reserved to generic
|
||||
for i,v in ipairs(bb) do if v=="" then bb[i]="Nil" end end
|
||||
for i,v in ipairs(bb) do if v=="" then bb[i]="Nil"; table.insert(cc[i],"Nil") end end
|
||||
return aa,bb,cc
|
||||
end
|
||||
M.name_overloadsAlgo = name_overloadsAlgo
|
||||
@@ -560,15 +579,26 @@ local function typetoStr(typ)
|
||||
typ = typ:gsub("const%s","")--"c")
|
||||
typ = typ:gsub("%s+","_")
|
||||
typ = typ:gsub("charPtr","Str")
|
||||
typ = typ:gsub("int","Int")
|
||||
typ = typ:gsub("^int","Int")
|
||||
typ = typ:gsub("^nil","Nil")
|
||||
typ = typ:gsub("bool","Bool")
|
||||
typ = typ:gsub("float","Float")
|
||||
typ = typ:gsub("uInt","Uint")
|
||||
typ = typ:gsub("u[Ii]nt","Uint")
|
||||
typ = typ:gsub("ImGui","")
|
||||
--typ = typ:gsub("ImStr","STR")
|
||||
typ = typ:gsub("Im","")
|
||||
typ = typ:gsub("[<>]","")
|
||||
return "_"..typ
|
||||
return typ
|
||||
-- return "_"..typ
|
||||
end
|
||||
local function typetoStrpat(pat,post,typsc)
|
||||
local str = ""
|
||||
for i,v in ipairs(pat) do
|
||||
str = str..typetoStr(v)
|
||||
end
|
||||
--local str2 = typetoStr(post)
|
||||
--if str~=str2 then print(1,str,2,str2);M.prtable(typesc,post,pat);error"DEBUG" end
|
||||
return str
|
||||
end
|
||||
--used to clean signature in function ptr argument
|
||||
local function clean_names_from_signature(self,signat)
|
||||
@@ -2035,6 +2065,13 @@ function M.Parser()
|
||||
print("--skip enum forward declaration:",it2)
|
||||
it2 = ""
|
||||
end
|
||||
--only vardef assign with number
|
||||
local assig = it2:match("static const [^=]*=([^;]*);")
|
||||
--print("it2",it2,"assig",assig,tonumber(assig))
|
||||
if assig and not tonumber(assig) then
|
||||
print("--skip = vardef declaration:",it2)
|
||||
it2 = ""
|
||||
end
|
||||
end
|
||||
--table.insert(outtabpre,it2)
|
||||
--table.insert(outtab,it2)
|
||||
@@ -2445,7 +2482,7 @@ function M.Parser()
|
||||
--print(k,#v)
|
||||
table.insert(strt,string.format("%s\t%d",k,#v))
|
||||
local typesc,post,pat = name_overloadsAlgo(v)
|
||||
-- if k=="igImLerp" then
|
||||
-- if k=="ImPlot_PlotLine" then
|
||||
-- print"----------------------"
|
||||
-- M.prtable(v)
|
||||
-- M.prtable(typesc)
|
||||
@@ -2455,7 +2492,7 @@ function M.Parser()
|
||||
-- end
|
||||
for i,t in ipairs(v) do
|
||||
--take overloaded name from manual table or algorythm
|
||||
t.ov_cimguiname = self.getCname_overload(t.stname,t.funcname,t.signature,t.namespace) or k..typetoStr(post[i])
|
||||
t.ov_cimguiname = self.getCname_overload(t.stname,t.funcname,t.signature,t.namespace) or k.."_"..typetoStrpat(pat[i],post[i],typesc)
|
||||
--check ...
|
||||
if( t.ov_cimguiname:match"%.%.%.") then
|
||||
print("... in ov",t.ov_cimguiname)
|
||||
@@ -3010,7 +3047,7 @@ local function func_implementation(FP)
|
||||
assert(def)
|
||||
local custom
|
||||
if FP.custom_implementation then
|
||||
custom = FP.custom_implementation(outtab, def)
|
||||
custom = FP.custom_implementation(outtab, def, FP)
|
||||
end
|
||||
local manual = FP.get_manuals(def)
|
||||
if not custom and not manual and not def.templated and not FP.get_skipped(def) then
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -18,7 +18,7 @@
|
||||
"cimguiname": "ImGui_ImplGlfw_CharCallback",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplGlfw_CharCallback",
|
||||
"location": "imgui_impl_glfw:61",
|
||||
"location": "imgui_impl_glfw:62",
|
||||
"ov_cimguiname": "ImGui_ImplGlfw_CharCallback",
|
||||
"ret": "void",
|
||||
"signature": "(GLFWwindow*,unsigned int)",
|
||||
@@ -44,7 +44,7 @@
|
||||
"cimguiname": "ImGui_ImplGlfw_CursorEnterCallback",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplGlfw_CursorEnterCallback",
|
||||
"location": "imgui_impl_glfw:56",
|
||||
"location": "imgui_impl_glfw:57",
|
||||
"ov_cimguiname": "ImGui_ImplGlfw_CursorEnterCallback",
|
||||
"ret": "void",
|
||||
"signature": "(GLFWwindow*,int)",
|
||||
@@ -74,7 +74,7 @@
|
||||
"cimguiname": "ImGui_ImplGlfw_CursorPosCallback",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplGlfw_CursorPosCallback",
|
||||
"location": "imgui_impl_glfw:57",
|
||||
"location": "imgui_impl_glfw:58",
|
||||
"ov_cimguiname": "ImGui_ImplGlfw_CursorPosCallback",
|
||||
"ret": "void",
|
||||
"signature": "(GLFWwindow*,double,double)",
|
||||
@@ -96,7 +96,7 @@
|
||||
"cimguiname": "ImGui_ImplGlfw_GetContentScaleForMonitor",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplGlfw_GetContentScaleForMonitor",
|
||||
"location": "imgui_impl_glfw:67",
|
||||
"location": "imgui_impl_glfw:68",
|
||||
"ov_cimguiname": "ImGui_ImplGlfw_GetContentScaleForMonitor",
|
||||
"ret": "float",
|
||||
"signature": "(GLFWmonitor*)",
|
||||
@@ -118,7 +118,7 @@
|
||||
"cimguiname": "ImGui_ImplGlfw_GetContentScaleForWindow",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplGlfw_GetContentScaleForWindow",
|
||||
"location": "imgui_impl_glfw:66",
|
||||
"location": "imgui_impl_glfw:67",
|
||||
"ov_cimguiname": "ImGui_ImplGlfw_GetContentScaleForWindow",
|
||||
"ret": "float",
|
||||
"signature": "(GLFWwindow*)",
|
||||
@@ -144,7 +144,7 @@
|
||||
"cimguiname": "ImGui_ImplGlfw_InitForOpenGL",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplGlfw_InitForOpenGL",
|
||||
"location": "imgui_impl_glfw:32",
|
||||
"location": "imgui_impl_glfw:33",
|
||||
"ov_cimguiname": "ImGui_ImplGlfw_InitForOpenGL",
|
||||
"ret": "bool",
|
||||
"signature": "(GLFWwindow*,bool)",
|
||||
@@ -170,7 +170,7 @@
|
||||
"cimguiname": "ImGui_ImplGlfw_InitForOther",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplGlfw_InitForOther",
|
||||
"location": "imgui_impl_glfw:34",
|
||||
"location": "imgui_impl_glfw:35",
|
||||
"ov_cimguiname": "ImGui_ImplGlfw_InitForOther",
|
||||
"ret": "bool",
|
||||
"signature": "(GLFWwindow*,bool)",
|
||||
@@ -196,7 +196,7 @@
|
||||
"cimguiname": "ImGui_ImplGlfw_InitForVulkan",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplGlfw_InitForVulkan",
|
||||
"location": "imgui_impl_glfw:33",
|
||||
"location": "imgui_impl_glfw:34",
|
||||
"ov_cimguiname": "ImGui_ImplGlfw_InitForVulkan",
|
||||
"ret": "bool",
|
||||
"signature": "(GLFWwindow*,bool)",
|
||||
@@ -218,7 +218,7 @@
|
||||
"cimguiname": "ImGui_ImplGlfw_InstallCallbacks",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplGlfw_InstallCallbacks",
|
||||
"location": "imgui_impl_glfw:47",
|
||||
"location": "imgui_impl_glfw:48",
|
||||
"ov_cimguiname": "ImGui_ImplGlfw_InstallCallbacks",
|
||||
"ret": "void",
|
||||
"signature": "(GLFWwindow*)",
|
||||
@@ -256,7 +256,7 @@
|
||||
"cimguiname": "ImGui_ImplGlfw_KeyCallback",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplGlfw_KeyCallback",
|
||||
"location": "imgui_impl_glfw:60",
|
||||
"location": "imgui_impl_glfw:61",
|
||||
"ov_cimguiname": "ImGui_ImplGlfw_KeyCallback",
|
||||
"ret": "void",
|
||||
"signature": "(GLFWwindow*,int,int,int,int)",
|
||||
@@ -282,7 +282,7 @@
|
||||
"cimguiname": "ImGui_ImplGlfw_MonitorCallback",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplGlfw_MonitorCallback",
|
||||
"location": "imgui_impl_glfw:62",
|
||||
"location": "imgui_impl_glfw:63",
|
||||
"ov_cimguiname": "ImGui_ImplGlfw_MonitorCallback",
|
||||
"ret": "void",
|
||||
"signature": "(GLFWmonitor*,int)",
|
||||
@@ -316,7 +316,7 @@
|
||||
"cimguiname": "ImGui_ImplGlfw_MouseButtonCallback",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplGlfw_MouseButtonCallback",
|
||||
"location": "imgui_impl_glfw:58",
|
||||
"location": "imgui_impl_glfw:59",
|
||||
"ov_cimguiname": "ImGui_ImplGlfw_MouseButtonCallback",
|
||||
"ret": "void",
|
||||
"signature": "(GLFWwindow*,int,int,int)",
|
||||
@@ -333,7 +333,7 @@
|
||||
"cimguiname": "ImGui_ImplGlfw_NewFrame",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplGlfw_NewFrame",
|
||||
"location": "imgui_impl_glfw:36",
|
||||
"location": "imgui_impl_glfw:37",
|
||||
"ov_cimguiname": "ImGui_ImplGlfw_NewFrame",
|
||||
"ret": "void",
|
||||
"signature": "()",
|
||||
@@ -355,7 +355,7 @@
|
||||
"cimguiname": "ImGui_ImplGlfw_RestoreCallbacks",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplGlfw_RestoreCallbacks",
|
||||
"location": "imgui_impl_glfw:48",
|
||||
"location": "imgui_impl_glfw:49",
|
||||
"ov_cimguiname": "ImGui_ImplGlfw_RestoreCallbacks",
|
||||
"ret": "void",
|
||||
"signature": "(GLFWwindow*)",
|
||||
@@ -385,7 +385,7 @@
|
||||
"cimguiname": "ImGui_ImplGlfw_ScrollCallback",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplGlfw_ScrollCallback",
|
||||
"location": "imgui_impl_glfw:59",
|
||||
"location": "imgui_impl_glfw:60",
|
||||
"ov_cimguiname": "ImGui_ImplGlfw_ScrollCallback",
|
||||
"ret": "void",
|
||||
"signature": "(GLFWwindow*,double,double)",
|
||||
@@ -407,7 +407,7 @@
|
||||
"cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
||||
"location": "imgui_impl_glfw:52",
|
||||
"location": "imgui_impl_glfw:53",
|
||||
"ov_cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
||||
"ret": "void",
|
||||
"signature": "(bool)",
|
||||
@@ -424,7 +424,7 @@
|
||||
"cimguiname": "ImGui_ImplGlfw_Shutdown",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplGlfw_Shutdown",
|
||||
"location": "imgui_impl_glfw:35",
|
||||
"location": "imgui_impl_glfw:36",
|
||||
"ov_cimguiname": "ImGui_ImplGlfw_Shutdown",
|
||||
"ret": "void",
|
||||
"signature": "()",
|
||||
@@ -446,7 +446,7 @@
|
||||
"cimguiname": "ImGui_ImplGlfw_Sleep",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplGlfw_Sleep",
|
||||
"location": "imgui_impl_glfw:65",
|
||||
"location": "imgui_impl_glfw:66",
|
||||
"ov_cimguiname": "ImGui_ImplGlfw_Sleep",
|
||||
"ret": "void",
|
||||
"signature": "(int)",
|
||||
@@ -472,7 +472,7 @@
|
||||
"cimguiname": "ImGui_ImplGlfw_WindowFocusCallback",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplGlfw_WindowFocusCallback",
|
||||
"location": "imgui_impl_glfw:55",
|
||||
"location": "imgui_impl_glfw:56",
|
||||
"ov_cimguiname": "ImGui_ImplGlfw_WindowFocusCallback",
|
||||
"ret": "void",
|
||||
"signature": "(GLFWwindow*,int)",
|
||||
@@ -1000,6 +1000,28 @@
|
||||
"stname": ""
|
||||
}
|
||||
],
|
||||
"ImGui_ImplSDL2_SetMouseCaptureMode": [
|
||||
{
|
||||
"args": "(ImGui_ImplSDL2_MouseCaptureMode mode)",
|
||||
"argsT": [
|
||||
{
|
||||
"name": "mode",
|
||||
"type": "ImGui_ImplSDL2_MouseCaptureMode"
|
||||
}
|
||||
],
|
||||
"argsoriginal": "(ImGui_ImplSDL2_MouseCaptureMode mode)",
|
||||
"call_args": "(mode)",
|
||||
"call_args_old": "(mode)",
|
||||
"cimguiname": "ImGui_ImplSDL2_SetMouseCaptureMode",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplSDL2_SetMouseCaptureMode",
|
||||
"location": "imgui_impl_sdl2:55",
|
||||
"ov_cimguiname": "ImGui_ImplSDL2_SetMouseCaptureMode",
|
||||
"ret": "void",
|
||||
"signature": "(ImGui_ImplSDL2_MouseCaptureMode)",
|
||||
"stname": ""
|
||||
}
|
||||
],
|
||||
"ImGui_ImplSDL2_Shutdown": [
|
||||
{
|
||||
"args": "()",
|
||||
@@ -1251,6 +1273,28 @@
|
||||
"stname": ""
|
||||
}
|
||||
],
|
||||
"ImGui_ImplSDL3_SetMouseCaptureMode": [
|
||||
{
|
||||
"args": "(ImGui_ImplSDL3_MouseCaptureMode mode)",
|
||||
"argsT": [
|
||||
{
|
||||
"name": "mode",
|
||||
"type": "ImGui_ImplSDL3_MouseCaptureMode"
|
||||
}
|
||||
],
|
||||
"argsoriginal": "(ImGui_ImplSDL3_MouseCaptureMode mode)",
|
||||
"call_args": "(mode)",
|
||||
"call_args_old": "(mode)",
|
||||
"cimguiname": "ImGui_ImplSDL3_SetMouseCaptureMode",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplSDL3_SetMouseCaptureMode",
|
||||
"location": "imgui_impl_sdl3:52",
|
||||
"ov_cimguiname": "ImGui_ImplSDL3_SetMouseCaptureMode",
|
||||
"ret": "void",
|
||||
"signature": "(ImGui_ImplSDL3_MouseCaptureMode)",
|
||||
"stname": ""
|
||||
}
|
||||
],
|
||||
"ImGui_ImplSDL3_Shutdown": [
|
||||
{
|
||||
"args": "()",
|
||||
@@ -1319,7 +1363,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
"location": "imgui_impl_vulkan:195",
|
||||
"location": "imgui_impl_vulkan:199",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
"ret": "void",
|
||||
"signature": "(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)",
|
||||
@@ -1353,7 +1397,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_DestroyWindow",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_DestroyWindow",
|
||||
"location": "imgui_impl_vulkan:196",
|
||||
"location": "imgui_impl_vulkan:200",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_DestroyWindow",
|
||||
"ret": "void",
|
||||
"signature": "(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)",
|
||||
@@ -1375,7 +1419,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
"location": "imgui_impl_vulkan:201",
|
||||
"location": "imgui_impl_vulkan:205",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
"ret": "int",
|
||||
"signature": "(VkPresentModeKHR)",
|
||||
@@ -1397,7 +1441,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
"location": "imgui_impl_vulkan:199",
|
||||
"location": "imgui_impl_vulkan:203",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
"ret": "VkPhysicalDevice",
|
||||
"signature": "(VkInstance)",
|
||||
@@ -1431,7 +1475,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||
"location": "imgui_impl_vulkan:198",
|
||||
"location": "imgui_impl_vulkan:202",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||
"ret": "VkPresentModeKHR",
|
||||
"signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)",
|
||||
@@ -1453,7 +1497,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
"location": "imgui_impl_vulkan:200",
|
||||
"location": "imgui_impl_vulkan:204",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
"ret": "uint32_t",
|
||||
"signature": "(VkPhysicalDevice)",
|
||||
@@ -1491,7 +1535,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
"location": "imgui_impl_vulkan:197",
|
||||
"location": "imgui_impl_vulkan:201",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
"ret": "VkSurfaceFormatKHR",
|
||||
"signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)",
|
||||
@@ -1509,7 +1553,7 @@
|
||||
"constructor": true,
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_Window",
|
||||
"location": "imgui_impl_vulkan:244",
|
||||
"location": "imgui_impl_vulkan:251",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window",
|
||||
"signature": "()",
|
||||
"stname": "ImGui_ImplVulkanH_Window"
|
||||
@@ -1528,7 +1572,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_Window_destroy",
|
||||
"defaults": {},
|
||||
"destructor": true,
|
||||
"location": "imgui_impl_vulkan:244",
|
||||
"location": "imgui_impl_vulkan:251",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_Window_destroy",
|
||||
"ret": "void",
|
||||
"signature": "(ImGui_ImplVulkanH_Window*)",
|
||||
@@ -1558,7 +1602,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_AddTexture",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_AddTexture",
|
||||
"location": "imgui_impl_vulkan:152",
|
||||
"location": "imgui_impl_vulkan:157",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_AddTexture",
|
||||
"ret": "VkDescriptorSet",
|
||||
"signature": "(VkSampler,VkImageView,VkImageLayout)",
|
||||
@@ -1580,7 +1624,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||
"location": "imgui_impl_vulkan:144",
|
||||
"location": "imgui_impl_vulkan:149",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||
"ret": "void",
|
||||
"signature": "(const ImGui_ImplVulkan_PipelineInfo*)",
|
||||
@@ -1602,7 +1646,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_Init",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_Init",
|
||||
"location": "imgui_impl_vulkan:135",
|
||||
"location": "imgui_impl_vulkan:140",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_Init",
|
||||
"ret": "bool",
|
||||
"signature": "(ImGui_ImplVulkan_InitInfo*)",
|
||||
@@ -1634,7 +1678,7 @@
|
||||
"user_data": "nullptr"
|
||||
},
|
||||
"funcname": "ImGui_ImplVulkan_LoadFunctions",
|
||||
"location": "imgui_impl_vulkan:157",
|
||||
"location": "imgui_impl_vulkan:162",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_LoadFunctions",
|
||||
"ret": "bool",
|
||||
"signature": "(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)",
|
||||
@@ -1651,7 +1695,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_NewFrame",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_NewFrame",
|
||||
"location": "imgui_impl_vulkan:137",
|
||||
"location": "imgui_impl_vulkan:142",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_NewFrame",
|
||||
"ret": "void",
|
||||
"signature": "()",
|
||||
@@ -1673,7 +1717,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_RemoveTexture",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_RemoveTexture",
|
||||
"location": "imgui_impl_vulkan:153",
|
||||
"location": "imgui_impl_vulkan:158",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_RemoveTexture",
|
||||
"ret": "void",
|
||||
"signature": "(VkDescriptorSet)",
|
||||
@@ -1705,7 +1749,7 @@
|
||||
"pipeline": "0ULL"
|
||||
},
|
||||
"funcname": "ImGui_ImplVulkan_RenderDrawData",
|
||||
"location": "imgui_impl_vulkan:138",
|
||||
"location": "imgui_impl_vulkan:143",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_RenderDrawData",
|
||||
"ret": "void",
|
||||
"signature": "(ImDrawData*,VkCommandBuffer,VkPipeline)",
|
||||
@@ -1727,7 +1771,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||
"location": "imgui_impl_vulkan:139",
|
||||
"location": "imgui_impl_vulkan:144",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||
"ret": "void",
|
||||
"signature": "(uint32_t)",
|
||||
@@ -1744,7 +1788,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_Shutdown",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_Shutdown",
|
||||
"location": "imgui_impl_vulkan:136",
|
||||
"location": "imgui_impl_vulkan:141",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_Shutdown",
|
||||
"ret": "void",
|
||||
"signature": "()",
|
||||
@@ -1766,7 +1810,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_UpdateTexture",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_UpdateTexture",
|
||||
"location": "imgui_impl_vulkan:147",
|
||||
"location": "imgui_impl_vulkan:152",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_UpdateTexture",
|
||||
"ret": "void",
|
||||
"signature": "(ImTextureData*)",
|
||||
|
||||
@@ -15,7 +15,7 @@ local t={
|
||||
cimguiname="ImGui_ImplGlfw_CharCallback",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplGlfw_CharCallback",
|
||||
location="imgui_impl_glfw:61",
|
||||
location="imgui_impl_glfw:62",
|
||||
ov_cimguiname="ImGui_ImplGlfw_CharCallback",
|
||||
ret="void",
|
||||
signature="(GLFWwindow*,unsigned int)",
|
||||
@@ -37,7 +37,7 @@ local t={
|
||||
cimguiname="ImGui_ImplGlfw_CursorEnterCallback",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplGlfw_CursorEnterCallback",
|
||||
location="imgui_impl_glfw:56",
|
||||
location="imgui_impl_glfw:57",
|
||||
ov_cimguiname="ImGui_ImplGlfw_CursorEnterCallback",
|
||||
ret="void",
|
||||
signature="(GLFWwindow*,int)",
|
||||
@@ -62,7 +62,7 @@ local t={
|
||||
cimguiname="ImGui_ImplGlfw_CursorPosCallback",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplGlfw_CursorPosCallback",
|
||||
location="imgui_impl_glfw:57",
|
||||
location="imgui_impl_glfw:58",
|
||||
ov_cimguiname="ImGui_ImplGlfw_CursorPosCallback",
|
||||
ret="void",
|
||||
signature="(GLFWwindow*,double,double)",
|
||||
@@ -81,7 +81,7 @@ local t={
|
||||
cimguiname="ImGui_ImplGlfw_GetContentScaleForMonitor",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplGlfw_GetContentScaleForMonitor",
|
||||
location="imgui_impl_glfw:67",
|
||||
location="imgui_impl_glfw:68",
|
||||
ov_cimguiname="ImGui_ImplGlfw_GetContentScaleForMonitor",
|
||||
ret="float",
|
||||
signature="(GLFWmonitor*)",
|
||||
@@ -100,7 +100,7 @@ local t={
|
||||
cimguiname="ImGui_ImplGlfw_GetContentScaleForWindow",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplGlfw_GetContentScaleForWindow",
|
||||
location="imgui_impl_glfw:66",
|
||||
location="imgui_impl_glfw:67",
|
||||
ov_cimguiname="ImGui_ImplGlfw_GetContentScaleForWindow",
|
||||
ret="float",
|
||||
signature="(GLFWwindow*)",
|
||||
@@ -122,7 +122,7 @@ local t={
|
||||
cimguiname="ImGui_ImplGlfw_InitForOpenGL",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplGlfw_InitForOpenGL",
|
||||
location="imgui_impl_glfw:32",
|
||||
location="imgui_impl_glfw:33",
|
||||
ov_cimguiname="ImGui_ImplGlfw_InitForOpenGL",
|
||||
ret="bool",
|
||||
signature="(GLFWwindow*,bool)",
|
||||
@@ -144,7 +144,7 @@ local t={
|
||||
cimguiname="ImGui_ImplGlfw_InitForOther",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplGlfw_InitForOther",
|
||||
location="imgui_impl_glfw:34",
|
||||
location="imgui_impl_glfw:35",
|
||||
ov_cimguiname="ImGui_ImplGlfw_InitForOther",
|
||||
ret="bool",
|
||||
signature="(GLFWwindow*,bool)",
|
||||
@@ -166,7 +166,7 @@ local t={
|
||||
cimguiname="ImGui_ImplGlfw_InitForVulkan",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplGlfw_InitForVulkan",
|
||||
location="imgui_impl_glfw:33",
|
||||
location="imgui_impl_glfw:34",
|
||||
ov_cimguiname="ImGui_ImplGlfw_InitForVulkan",
|
||||
ret="bool",
|
||||
signature="(GLFWwindow*,bool)",
|
||||
@@ -185,7 +185,7 @@ local t={
|
||||
cimguiname="ImGui_ImplGlfw_InstallCallbacks",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplGlfw_InstallCallbacks",
|
||||
location="imgui_impl_glfw:47",
|
||||
location="imgui_impl_glfw:48",
|
||||
ov_cimguiname="ImGui_ImplGlfw_InstallCallbacks",
|
||||
ret="void",
|
||||
signature="(GLFWwindow*)",
|
||||
@@ -216,7 +216,7 @@ local t={
|
||||
cimguiname="ImGui_ImplGlfw_KeyCallback",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplGlfw_KeyCallback",
|
||||
location="imgui_impl_glfw:60",
|
||||
location="imgui_impl_glfw:61",
|
||||
ov_cimguiname="ImGui_ImplGlfw_KeyCallback",
|
||||
ret="void",
|
||||
signature="(GLFWwindow*,int,int,int,int)",
|
||||
@@ -238,7 +238,7 @@ local t={
|
||||
cimguiname="ImGui_ImplGlfw_MonitorCallback",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplGlfw_MonitorCallback",
|
||||
location="imgui_impl_glfw:62",
|
||||
location="imgui_impl_glfw:63",
|
||||
ov_cimguiname="ImGui_ImplGlfw_MonitorCallback",
|
||||
ret="void",
|
||||
signature="(GLFWmonitor*,int)",
|
||||
@@ -266,7 +266,7 @@ local t={
|
||||
cimguiname="ImGui_ImplGlfw_MouseButtonCallback",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplGlfw_MouseButtonCallback",
|
||||
location="imgui_impl_glfw:58",
|
||||
location="imgui_impl_glfw:59",
|
||||
ov_cimguiname="ImGui_ImplGlfw_MouseButtonCallback",
|
||||
ret="void",
|
||||
signature="(GLFWwindow*,int,int,int)",
|
||||
@@ -282,7 +282,7 @@ local t={
|
||||
cimguiname="ImGui_ImplGlfw_NewFrame",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplGlfw_NewFrame",
|
||||
location="imgui_impl_glfw:36",
|
||||
location="imgui_impl_glfw:37",
|
||||
ov_cimguiname="ImGui_ImplGlfw_NewFrame",
|
||||
ret="void",
|
||||
signature="()",
|
||||
@@ -301,7 +301,7 @@ local t={
|
||||
cimguiname="ImGui_ImplGlfw_RestoreCallbacks",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplGlfw_RestoreCallbacks",
|
||||
location="imgui_impl_glfw:48",
|
||||
location="imgui_impl_glfw:49",
|
||||
ov_cimguiname="ImGui_ImplGlfw_RestoreCallbacks",
|
||||
ret="void",
|
||||
signature="(GLFWwindow*)",
|
||||
@@ -326,7 +326,7 @@ local t={
|
||||
cimguiname="ImGui_ImplGlfw_ScrollCallback",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplGlfw_ScrollCallback",
|
||||
location="imgui_impl_glfw:59",
|
||||
location="imgui_impl_glfw:60",
|
||||
ov_cimguiname="ImGui_ImplGlfw_ScrollCallback",
|
||||
ret="void",
|
||||
signature="(GLFWwindow*,double,double)",
|
||||
@@ -345,7 +345,7 @@ local t={
|
||||
cimguiname="ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
||||
location="imgui_impl_glfw:52",
|
||||
location="imgui_impl_glfw:53",
|
||||
ov_cimguiname="ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
||||
ret="void",
|
||||
signature="(bool)",
|
||||
@@ -361,7 +361,7 @@ local t={
|
||||
cimguiname="ImGui_ImplGlfw_Shutdown",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplGlfw_Shutdown",
|
||||
location="imgui_impl_glfw:35",
|
||||
location="imgui_impl_glfw:36",
|
||||
ov_cimguiname="ImGui_ImplGlfw_Shutdown",
|
||||
ret="void",
|
||||
signature="()",
|
||||
@@ -380,7 +380,7 @@ local t={
|
||||
cimguiname="ImGui_ImplGlfw_Sleep",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplGlfw_Sleep",
|
||||
location="imgui_impl_glfw:65",
|
||||
location="imgui_impl_glfw:66",
|
||||
ov_cimguiname="ImGui_ImplGlfw_Sleep",
|
||||
ret="void",
|
||||
signature="(int)",
|
||||
@@ -402,7 +402,7 @@ local t={
|
||||
cimguiname="ImGui_ImplGlfw_WindowFocusCallback",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplGlfw_WindowFocusCallback",
|
||||
location="imgui_impl_glfw:55",
|
||||
location="imgui_impl_glfw:56",
|
||||
ov_cimguiname="ImGui_ImplGlfw_WindowFocusCallback",
|
||||
ret="void",
|
||||
signature="(GLFWwindow*,int)",
|
||||
@@ -868,6 +868,25 @@ local t={
|
||||
signature="(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)",
|
||||
stname=""},
|
||||
["(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)"]=nil},
|
||||
ImGui_ImplSDL2_SetMouseCaptureMode={
|
||||
[1]={
|
||||
args="(ImGui_ImplSDL2_MouseCaptureMode mode)",
|
||||
argsT={
|
||||
[1]={
|
||||
name="mode",
|
||||
type="ImGui_ImplSDL2_MouseCaptureMode"}},
|
||||
argsoriginal="(ImGui_ImplSDL2_MouseCaptureMode mode)",
|
||||
call_args="(mode)",
|
||||
call_args_old="(mode)",
|
||||
cimguiname="ImGui_ImplSDL2_SetMouseCaptureMode",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplSDL2_SetMouseCaptureMode",
|
||||
location="imgui_impl_sdl2:55",
|
||||
ov_cimguiname="ImGui_ImplSDL2_SetMouseCaptureMode",
|
||||
ret="void",
|
||||
signature="(ImGui_ImplSDL2_MouseCaptureMode)",
|
||||
stname=""},
|
||||
["(ImGui_ImplSDL2_MouseCaptureMode)"]=nil},
|
||||
ImGui_ImplSDL2_Shutdown={
|
||||
[1]={
|
||||
args="()",
|
||||
@@ -1085,6 +1104,25 @@ local t={
|
||||
signature="(ImGui_ImplSDL3_GamepadMode,SDL_Gamepad**,int)",
|
||||
stname=""},
|
||||
["(ImGui_ImplSDL3_GamepadMode,SDL_Gamepad**,int)"]=nil},
|
||||
ImGui_ImplSDL3_SetMouseCaptureMode={
|
||||
[1]={
|
||||
args="(ImGui_ImplSDL3_MouseCaptureMode mode)",
|
||||
argsT={
|
||||
[1]={
|
||||
name="mode",
|
||||
type="ImGui_ImplSDL3_MouseCaptureMode"}},
|
||||
argsoriginal="(ImGui_ImplSDL3_MouseCaptureMode mode)",
|
||||
call_args="(mode)",
|
||||
call_args_old="(mode)",
|
||||
cimguiname="ImGui_ImplSDL3_SetMouseCaptureMode",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplSDL3_SetMouseCaptureMode",
|
||||
location="imgui_impl_sdl3:52",
|
||||
ov_cimguiname="ImGui_ImplSDL3_SetMouseCaptureMode",
|
||||
ret="void",
|
||||
signature="(ImGui_ImplSDL3_MouseCaptureMode)",
|
||||
stname=""},
|
||||
["(ImGui_ImplSDL3_MouseCaptureMode)"]=nil},
|
||||
ImGui_ImplSDL3_Shutdown={
|
||||
[1]={
|
||||
args="()",
|
||||
@@ -1141,7 +1179,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
location="imgui_impl_vulkan:195",
|
||||
location="imgui_impl_vulkan:199",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
ret="void",
|
||||
signature="(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)",
|
||||
@@ -1169,7 +1207,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_DestroyWindow",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_DestroyWindow",
|
||||
location="imgui_impl_vulkan:196",
|
||||
location="imgui_impl_vulkan:200",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_DestroyWindow",
|
||||
ret="void",
|
||||
signature="(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)",
|
||||
@@ -1188,7 +1226,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
location="imgui_impl_vulkan:201",
|
||||
location="imgui_impl_vulkan:205",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
ret="int",
|
||||
signature="(VkPresentModeKHR)",
|
||||
@@ -1207,7 +1245,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
location="imgui_impl_vulkan:199",
|
||||
location="imgui_impl_vulkan:203",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
ret="VkPhysicalDevice",
|
||||
signature="(VkInstance)",
|
||||
@@ -1235,7 +1273,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||
location="imgui_impl_vulkan:198",
|
||||
location="imgui_impl_vulkan:202",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||
ret="VkPresentModeKHR",
|
||||
signature="(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)",
|
||||
@@ -1254,7 +1292,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
location="imgui_impl_vulkan:200",
|
||||
location="imgui_impl_vulkan:204",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
ret="uint32_t",
|
||||
signature="(VkPhysicalDevice)",
|
||||
@@ -1285,7 +1323,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
location="imgui_impl_vulkan:197",
|
||||
location="imgui_impl_vulkan:201",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
ret="VkSurfaceFormatKHR",
|
||||
signature="(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)",
|
||||
@@ -1302,7 +1340,7 @@ local t={
|
||||
constructor=true,
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_Window",
|
||||
location="imgui_impl_vulkan:244",
|
||||
location="imgui_impl_vulkan:251",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window",
|
||||
signature="()",
|
||||
stname="ImGui_ImplVulkanH_Window"},
|
||||
@@ -1318,7 +1356,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_Window_destroy",
|
||||
defaults={},
|
||||
destructor=true,
|
||||
location="imgui_impl_vulkan:244",
|
||||
location="imgui_impl_vulkan:251",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_Window_destroy",
|
||||
ret="void",
|
||||
signature="(ImGui_ImplVulkanH_Window*)",
|
||||
@@ -1343,7 +1381,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_AddTexture",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_AddTexture",
|
||||
location="imgui_impl_vulkan:152",
|
||||
location="imgui_impl_vulkan:157",
|
||||
ov_cimguiname="ImGui_ImplVulkan_AddTexture",
|
||||
ret="VkDescriptorSet",
|
||||
signature="(VkSampler,VkImageView,VkImageLayout)",
|
||||
@@ -1362,7 +1400,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||
location="imgui_impl_vulkan:144",
|
||||
location="imgui_impl_vulkan:149",
|
||||
ov_cimguiname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||
ret="void",
|
||||
signature="(const ImGui_ImplVulkan_PipelineInfo*)",
|
||||
@@ -1381,7 +1419,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_Init",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_Init",
|
||||
location="imgui_impl_vulkan:135",
|
||||
location="imgui_impl_vulkan:140",
|
||||
ov_cimguiname="ImGui_ImplVulkan_Init",
|
||||
ret="bool",
|
||||
signature="(ImGui_ImplVulkan_InitInfo*)",
|
||||
@@ -1407,7 +1445,7 @@ local t={
|
||||
defaults={
|
||||
user_data="nullptr"},
|
||||
funcname="ImGui_ImplVulkan_LoadFunctions",
|
||||
location="imgui_impl_vulkan:157",
|
||||
location="imgui_impl_vulkan:162",
|
||||
ov_cimguiname="ImGui_ImplVulkan_LoadFunctions",
|
||||
ret="bool",
|
||||
signature="(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)",
|
||||
@@ -1423,7 +1461,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_NewFrame",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_NewFrame",
|
||||
location="imgui_impl_vulkan:137",
|
||||
location="imgui_impl_vulkan:142",
|
||||
ov_cimguiname="ImGui_ImplVulkan_NewFrame",
|
||||
ret="void",
|
||||
signature="()",
|
||||
@@ -1442,7 +1480,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_RemoveTexture",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_RemoveTexture",
|
||||
location="imgui_impl_vulkan:153",
|
||||
location="imgui_impl_vulkan:158",
|
||||
ov_cimguiname="ImGui_ImplVulkan_RemoveTexture",
|
||||
ret="void",
|
||||
signature="(VkDescriptorSet)",
|
||||
@@ -1468,7 +1506,7 @@ local t={
|
||||
defaults={
|
||||
pipeline="0ULL"},
|
||||
funcname="ImGui_ImplVulkan_RenderDrawData",
|
||||
location="imgui_impl_vulkan:138",
|
||||
location="imgui_impl_vulkan:143",
|
||||
ov_cimguiname="ImGui_ImplVulkan_RenderDrawData",
|
||||
ret="void",
|
||||
signature="(ImDrawData*,VkCommandBuffer,VkPipeline)",
|
||||
@@ -1487,7 +1525,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_SetMinImageCount",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_SetMinImageCount",
|
||||
location="imgui_impl_vulkan:139",
|
||||
location="imgui_impl_vulkan:144",
|
||||
ov_cimguiname="ImGui_ImplVulkan_SetMinImageCount",
|
||||
ret="void",
|
||||
signature="(uint32_t)",
|
||||
@@ -1503,7 +1541,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_Shutdown",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_Shutdown",
|
||||
location="imgui_impl_vulkan:136",
|
||||
location="imgui_impl_vulkan:141",
|
||||
ov_cimguiname="ImGui_ImplVulkan_Shutdown",
|
||||
ret="void",
|
||||
signature="()",
|
||||
@@ -1522,7 +1560,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_UpdateTexture",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_UpdateTexture",
|
||||
location="imgui_impl_vulkan:147",
|
||||
location="imgui_impl_vulkan:152",
|
||||
ov_cimguiname="ImGui_ImplVulkan_UpdateTexture",
|
||||
ret="void",
|
||||
signature="(ImTextureData*)",
|
||||
@@ -1572,6 +1610,7 @@ t.ImGui_ImplSDL2_InitForVulkan["(SDL_Window*)"]=t.ImGui_ImplSDL2_InitForVulkan[1
|
||||
t.ImGui_ImplSDL2_NewFrame["()"]=t.ImGui_ImplSDL2_NewFrame[1]
|
||||
t.ImGui_ImplSDL2_ProcessEvent["(const SDL_Event*)"]=t.ImGui_ImplSDL2_ProcessEvent[1]
|
||||
t.ImGui_ImplSDL2_SetGamepadMode["(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)"]=t.ImGui_ImplSDL2_SetGamepadMode[1]
|
||||
t.ImGui_ImplSDL2_SetMouseCaptureMode["(ImGui_ImplSDL2_MouseCaptureMode)"]=t.ImGui_ImplSDL2_SetMouseCaptureMode[1]
|
||||
t.ImGui_ImplSDL2_Shutdown["()"]=t.ImGui_ImplSDL2_Shutdown[1]
|
||||
t.ImGui_ImplSDL3_InitForD3D["(SDL_Window*)"]=t.ImGui_ImplSDL3_InitForD3D[1]
|
||||
t.ImGui_ImplSDL3_InitForMetal["(SDL_Window*)"]=t.ImGui_ImplSDL3_InitForMetal[1]
|
||||
@@ -1583,6 +1622,7 @@ t.ImGui_ImplSDL3_InitForVulkan["(SDL_Window*)"]=t.ImGui_ImplSDL3_InitForVulkan[1
|
||||
t.ImGui_ImplSDL3_NewFrame["()"]=t.ImGui_ImplSDL3_NewFrame[1]
|
||||
t.ImGui_ImplSDL3_ProcessEvent["(const SDL_Event*)"]=t.ImGui_ImplSDL3_ProcessEvent[1]
|
||||
t.ImGui_ImplSDL3_SetGamepadMode["(ImGui_ImplSDL3_GamepadMode,SDL_Gamepad**,int)"]=t.ImGui_ImplSDL3_SetGamepadMode[1]
|
||||
t.ImGui_ImplSDL3_SetMouseCaptureMode["(ImGui_ImplSDL3_MouseCaptureMode)"]=t.ImGui_ImplSDL3_SetMouseCaptureMode[1]
|
||||
t.ImGui_ImplSDL3_Shutdown["()"]=t.ImGui_ImplSDL3_Shutdown[1]
|
||||
t.ImGui_ImplVulkanH_CreateOrResizeWindow["(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)"]=t.ImGui_ImplVulkanH_CreateOrResizeWindow[1]
|
||||
t.ImGui_ImplVulkanH_DestroyWindow["(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)"]=t.ImGui_ImplVulkanH_DestroyWindow[1]
|
||||
|
||||
@@ -792,23 +792,28 @@
|
||||
},
|
||||
{
|
||||
"calc_value": 2048,
|
||||
"name": "ImGuiColorEditFlags_AlphaOpaque",
|
||||
"name": "ImGuiColorEditFlags_NoColorMarkers",
|
||||
"value": "1 << 11"
|
||||
},
|
||||
{
|
||||
"calc_value": 4096,
|
||||
"name": "ImGuiColorEditFlags_AlphaNoBg",
|
||||
"name": "ImGuiColorEditFlags_AlphaOpaque",
|
||||
"value": "1 << 12"
|
||||
},
|
||||
{
|
||||
"calc_value": 8192,
|
||||
"name": "ImGuiColorEditFlags_AlphaPreviewHalf",
|
||||
"name": "ImGuiColorEditFlags_AlphaNoBg",
|
||||
"value": "1 << 13"
|
||||
},
|
||||
{
|
||||
"calc_value": 65536,
|
||||
"calc_value": 16384,
|
||||
"name": "ImGuiColorEditFlags_AlphaPreviewHalf",
|
||||
"value": "1 << 14"
|
||||
},
|
||||
{
|
||||
"calc_value": 262144,
|
||||
"name": "ImGuiColorEditFlags_AlphaBar",
|
||||
"value": "1 << 16"
|
||||
"value": "1 << 18"
|
||||
},
|
||||
{
|
||||
"calc_value": 524288,
|
||||
@@ -866,7 +871,7 @@
|
||||
"value": "ImGuiColorEditFlags_Uint8 | ImGuiColorEditFlags_DisplayRGB | ImGuiColorEditFlags_InputRGB | ImGuiColorEditFlags_PickerHueBar"
|
||||
},
|
||||
{
|
||||
"calc_value": 14338,
|
||||
"calc_value": 28674,
|
||||
"name": "ImGuiColorEditFlags_AlphaMask_",
|
||||
"value": "ImGuiColorEditFlags_NoAlpha | ImGuiColorEditFlags_AlphaOpaque | ImGuiColorEditFlags_AlphaNoBg | ImGuiColorEditFlags_AlphaPreviewHalf"
|
||||
},
|
||||
@@ -1218,8 +1223,13 @@
|
||||
},
|
||||
{
|
||||
"calc_value": 2097152,
|
||||
"name": "ImGuiDebugLogFlags_OutputToTestEngine",
|
||||
"name": "ImGuiDebugLogFlags_OutputToDebugger",
|
||||
"value": "1 << 21"
|
||||
},
|
||||
{
|
||||
"calc_value": 4194304,
|
||||
"name": "ImGuiDebugLogFlags_OutputToTestEngine",
|
||||
"value": "1 << 22"
|
||||
}
|
||||
],
|
||||
"ImGuiDir": [
|
||||
@@ -1944,11 +1954,6 @@
|
||||
}
|
||||
],
|
||||
"ImGuiItemFlagsPrivate_": [
|
||||
{
|
||||
"calc_value": 1024,
|
||||
"name": "ImGuiItemFlags_Disabled",
|
||||
"value": "1 << 10"
|
||||
},
|
||||
{
|
||||
"calc_value": 2048,
|
||||
"name": "ImGuiItemFlags_ReadOnly",
|
||||
@@ -2040,6 +2045,11 @@
|
||||
"calc_value": 32,
|
||||
"name": "ImGuiItemFlags_AllowDuplicateId",
|
||||
"value": "1 << 5"
|
||||
},
|
||||
{
|
||||
"calc_value": 64,
|
||||
"name": "ImGuiItemFlags_Disabled",
|
||||
"value": "1 << 6"
|
||||
}
|
||||
],
|
||||
"ImGuiItemStatusFlags_": [
|
||||
@@ -3408,6 +3418,11 @@
|
||||
"calc_value": 16,
|
||||
"name": "ImGuiNextItemDataFlags_HasStorageID",
|
||||
"value": "1 << 4"
|
||||
},
|
||||
{
|
||||
"calc_value": 32,
|
||||
"name": "ImGuiNextItemDataFlags_HasColorMarker",
|
||||
"value": "1 << 5"
|
||||
}
|
||||
],
|
||||
"ImGuiNextWindowDataFlags_": [
|
||||
@@ -3523,29 +3538,19 @@
|
||||
"value": "0"
|
||||
},
|
||||
{
|
||||
"calc_value": 0,
|
||||
"calc_value": 4,
|
||||
"name": "ImGuiPopupFlags_MouseButtonLeft",
|
||||
"value": "0"
|
||||
"value": "1 << 2"
|
||||
},
|
||||
{
|
||||
"calc_value": 1,
|
||||
"calc_value": 8,
|
||||
"name": "ImGuiPopupFlags_MouseButtonRight",
|
||||
"value": "1"
|
||||
"value": "2 << 2"
|
||||
},
|
||||
{
|
||||
"calc_value": 2,
|
||||
"calc_value": 12,
|
||||
"name": "ImGuiPopupFlags_MouseButtonMiddle",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"calc_value": 31,
|
||||
"name": "ImGuiPopupFlags_MouseButtonMask_",
|
||||
"value": "0x1F"
|
||||
},
|
||||
{
|
||||
"calc_value": 1,
|
||||
"name": "ImGuiPopupFlags_MouseButtonDefault_",
|
||||
"value": "1"
|
||||
"value": "3 << 2"
|
||||
},
|
||||
{
|
||||
"calc_value": 32,
|
||||
@@ -3576,6 +3581,21 @@
|
||||
"calc_value": 3072,
|
||||
"name": "ImGuiPopupFlags_AnyPopup",
|
||||
"value": "ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel"
|
||||
},
|
||||
{
|
||||
"calc_value": 2,
|
||||
"name": "ImGuiPopupFlags_MouseButtonShift_",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"calc_value": 12,
|
||||
"name": "ImGuiPopupFlags_MouseButtonMask_",
|
||||
"value": "0x0C"
|
||||
},
|
||||
{
|
||||
"calc_value": 3,
|
||||
"name": "ImGuiPopupFlags_InvalidMask_",
|
||||
"value": "0x03"
|
||||
}
|
||||
],
|
||||
"ImGuiPopupPositionPolicy": [
|
||||
@@ -3818,6 +3838,11 @@
|
||||
"name": "ImGuiSliderFlags_NoSpeedTweaks",
|
||||
"value": "1 << 11"
|
||||
},
|
||||
{
|
||||
"calc_value": 4096,
|
||||
"name": "ImGuiSliderFlags_ColorMarkers",
|
||||
"value": "1 << 12"
|
||||
},
|
||||
{
|
||||
"calc_value": 1536,
|
||||
"name": "ImGuiSliderFlags_AlwaysClamp",
|
||||
@@ -3964,88 +3989,93 @@
|
||||
},
|
||||
{
|
||||
"calc_value": 23,
|
||||
"name": "ImGuiStyleVar_ImageBorderSize",
|
||||
"name": "ImGuiStyleVar_ImageRounding",
|
||||
"value": "23"
|
||||
},
|
||||
{
|
||||
"calc_value": 24,
|
||||
"name": "ImGuiStyleVar_TabRounding",
|
||||
"name": "ImGuiStyleVar_ImageBorderSize",
|
||||
"value": "24"
|
||||
},
|
||||
{
|
||||
"calc_value": 25,
|
||||
"name": "ImGuiStyleVar_TabBorderSize",
|
||||
"name": "ImGuiStyleVar_TabRounding",
|
||||
"value": "25"
|
||||
},
|
||||
{
|
||||
"calc_value": 26,
|
||||
"name": "ImGuiStyleVar_TabMinWidthBase",
|
||||
"name": "ImGuiStyleVar_TabBorderSize",
|
||||
"value": "26"
|
||||
},
|
||||
{
|
||||
"calc_value": 27,
|
||||
"name": "ImGuiStyleVar_TabMinWidthShrink",
|
||||
"name": "ImGuiStyleVar_TabMinWidthBase",
|
||||
"value": "27"
|
||||
},
|
||||
{
|
||||
"calc_value": 28,
|
||||
"name": "ImGuiStyleVar_TabBarBorderSize",
|
||||
"name": "ImGuiStyleVar_TabMinWidthShrink",
|
||||
"value": "28"
|
||||
},
|
||||
{
|
||||
"calc_value": 29,
|
||||
"name": "ImGuiStyleVar_TabBarOverlineSize",
|
||||
"name": "ImGuiStyleVar_TabBarBorderSize",
|
||||
"value": "29"
|
||||
},
|
||||
{
|
||||
"calc_value": 30,
|
||||
"name": "ImGuiStyleVar_TableAngledHeadersAngle",
|
||||
"name": "ImGuiStyleVar_TabBarOverlineSize",
|
||||
"value": "30"
|
||||
},
|
||||
{
|
||||
"calc_value": 31,
|
||||
"name": "ImGuiStyleVar_TableAngledHeadersTextAlign",
|
||||
"name": "ImGuiStyleVar_TableAngledHeadersAngle",
|
||||
"value": "31"
|
||||
},
|
||||
{
|
||||
"calc_value": 32,
|
||||
"name": "ImGuiStyleVar_TreeLinesSize",
|
||||
"name": "ImGuiStyleVar_TableAngledHeadersTextAlign",
|
||||
"value": "32"
|
||||
},
|
||||
{
|
||||
"calc_value": 33,
|
||||
"name": "ImGuiStyleVar_TreeLinesRounding",
|
||||
"name": "ImGuiStyleVar_TreeLinesSize",
|
||||
"value": "33"
|
||||
},
|
||||
{
|
||||
"calc_value": 34,
|
||||
"name": "ImGuiStyleVar_ButtonTextAlign",
|
||||
"name": "ImGuiStyleVar_TreeLinesRounding",
|
||||
"value": "34"
|
||||
},
|
||||
{
|
||||
"calc_value": 35,
|
||||
"name": "ImGuiStyleVar_SelectableTextAlign",
|
||||
"name": "ImGuiStyleVar_ButtonTextAlign",
|
||||
"value": "35"
|
||||
},
|
||||
{
|
||||
"calc_value": 36,
|
||||
"name": "ImGuiStyleVar_SeparatorTextBorderSize",
|
||||
"name": "ImGuiStyleVar_SelectableTextAlign",
|
||||
"value": "36"
|
||||
},
|
||||
{
|
||||
"calc_value": 37,
|
||||
"name": "ImGuiStyleVar_SeparatorTextAlign",
|
||||
"name": "ImGuiStyleVar_SeparatorTextBorderSize",
|
||||
"value": "37"
|
||||
},
|
||||
{
|
||||
"calc_value": 38,
|
||||
"name": "ImGuiStyleVar_SeparatorTextPadding",
|
||||
"name": "ImGuiStyleVar_SeparatorTextAlign",
|
||||
"value": "38"
|
||||
},
|
||||
{
|
||||
"calc_value": 39,
|
||||
"name": "ImGuiStyleVar_COUNT",
|
||||
"name": "ImGuiStyleVar_SeparatorTextPadding",
|
||||
"value": "39"
|
||||
},
|
||||
{
|
||||
"calc_value": 40,
|
||||
"name": "ImGuiStyleVar_COUNT",
|
||||
"value": "40"
|
||||
}
|
||||
],
|
||||
"ImGuiTabBarFlagsPrivate_": [
|
||||
@@ -4985,6 +5015,23 @@
|
||||
"name": "ImTextureStatus_WantDestroy",
|
||||
"value": "4"
|
||||
}
|
||||
],
|
||||
"ImWcharClass": [
|
||||
{
|
||||
"calc_value": 0,
|
||||
"name": "ImWcharClass_Blank",
|
||||
"value": "0"
|
||||
},
|
||||
{
|
||||
"calc_value": 1,
|
||||
"name": "ImWcharClass_Punct",
|
||||
"value": "1"
|
||||
},
|
||||
{
|
||||
"calc_value": 2,
|
||||
"name": "ImWcharClass_Other",
|
||||
"value": "2"
|
||||
}
|
||||
]
|
||||
},
|
||||
"enumtypes": {
|
||||
@@ -4996,210 +5043,211 @@
|
||||
"ImGuiSortDirection": "ImU8"
|
||||
},
|
||||
"locations": {
|
||||
"ImBitVector": "imgui_internal:652",
|
||||
"ImColor": "imgui:2936",
|
||||
"ImDrawChannel": "imgui:3185",
|
||||
"ImDrawCmd": "imgui:3141",
|
||||
"ImDrawCmdHeader": "imgui:3177",
|
||||
"ImDrawData": "imgui:3406",
|
||||
"ImDrawDataBuilder": "imgui_internal:880",
|
||||
"ImDrawFlags_": "imgui:3210",
|
||||
"ImDrawList": "imgui:3248",
|
||||
"ImDrawListFlags_": "imgui:3230",
|
||||
"ImDrawListSharedData": "imgui_internal:853",
|
||||
"ImDrawListSplitter": "imgui:3193",
|
||||
"ImDrawTextFlags_": "imgui_internal:434",
|
||||
"ImDrawVert": "imgui:3162",
|
||||
"ImFont": "imgui:3827",
|
||||
"ImFontAtlas": "imgui:3630",
|
||||
"ImFontAtlasBuilder": "imgui_internal:3833",
|
||||
"ImFontAtlasFlags_": "imgui:3603",
|
||||
"ImFontAtlasPostProcessData": "imgui_internal:3806",
|
||||
"ImFontAtlasRect": "imgui:3593",
|
||||
"ImFontAtlasRectEntry": "imgui_internal:3798",
|
||||
"ImFontBaked": "imgui:3779",
|
||||
"ImFontConfig": "imgui:3515",
|
||||
"ImFontFlags_": "imgui:3814",
|
||||
"ImFontGlyph": "imgui:3555",
|
||||
"ImFontGlyphRangesBuilder": "imgui:3571",
|
||||
"ImFontLoader": "imgui_internal:3747",
|
||||
"ImFontStackData": "imgui_internal:888",
|
||||
"ImGuiActivateFlags_": "imgui_internal:1674",
|
||||
"ImGuiAxis": "imgui_internal:1138",
|
||||
"ImGuiBackendFlags_": "imgui:1715",
|
||||
"ImGuiBoxSelectState": "imgui_internal:1865",
|
||||
"ImGuiButtonFlagsPrivate_": "imgui_internal:1025",
|
||||
"ImGuiButtonFlags_": "imgui:1852",
|
||||
"ImGuiChildFlags_": "imgui:1201",
|
||||
"ImGuiCol_": "imgui:1726",
|
||||
"ImGuiColorEditFlags_": "imgui:1863",
|
||||
"ImGuiColorMod": "imgui_internal:908",
|
||||
"ImGuiComboFlagsPrivate_": "imgui_internal:1052",
|
||||
"ImGuiComboFlags_": "imgui:1366",
|
||||
"ImGuiComboPreviewData": "imgui_internal:1152",
|
||||
"ImGuiCond_": "imgui:1977",
|
||||
"ImGuiConfigFlags_": "imgui:1695",
|
||||
"ImGuiContext": "imgui_internal:2177",
|
||||
"ImGuiContextHook": "imgui_internal:2162",
|
||||
"ImGuiContextHookType": "imgui_internal:2160",
|
||||
"ImGuiDataTypeInfo": "imgui_internal:934",
|
||||
"ImGuiDataTypePrivate_": "imgui_internal:943",
|
||||
"ImGuiDataTypeStorage": "imgui_internal:928",
|
||||
"ImGuiDataType_": "imgui:1501",
|
||||
"ImGuiDeactivatedItemData": "imgui_internal:1442",
|
||||
"ImGuiDebugAllocEntry": "imgui_internal:2085",
|
||||
"ImGuiDebugAllocInfo": "imgui_internal:2092",
|
||||
"ImGuiDebugItemPathQuery": "imgui_internal:2131",
|
||||
"ImGuiDebugLogFlags_": "imgui_internal:2063",
|
||||
"ImGuiDir": "imgui:1519",
|
||||
"ImGuiDragDropFlags_": "imgui:1472",
|
||||
"ImGuiErrorRecoveryState": "imgui_internal:1398",
|
||||
"ImGuiFocusRequestFlags_": "imgui_internal:1098",
|
||||
"ImGuiFocusScopeData": "imgui_internal:1762",
|
||||
"ImGuiFocusedFlags_": "imgui:1420",
|
||||
"ImBitVector": "imgui_internal:659",
|
||||
"ImColor": "imgui:2952",
|
||||
"ImDrawChannel": "imgui:3201",
|
||||
"ImDrawCmd": "imgui:3157",
|
||||
"ImDrawCmdHeader": "imgui:3193",
|
||||
"ImDrawData": "imgui:3422",
|
||||
"ImDrawDataBuilder": "imgui_internal:887",
|
||||
"ImDrawFlags_": "imgui:3226",
|
||||
"ImDrawList": "imgui:3264",
|
||||
"ImDrawListFlags_": "imgui:3246",
|
||||
"ImDrawListSharedData": "imgui_internal:860",
|
||||
"ImDrawListSplitter": "imgui:3209",
|
||||
"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",
|
||||
"ImFontStackData": "imgui_internal:895",
|
||||
"ImGuiActivateFlags_": "imgui_internal:1683",
|
||||
"ImGuiAxis": "imgui_internal:1144",
|
||||
"ImGuiBackendFlags_": "imgui:1723",
|
||||
"ImGuiBoxSelectState": "imgui_internal:1874",
|
||||
"ImGuiButtonFlagsPrivate_": "imgui_internal:1031",
|
||||
"ImGuiButtonFlags_": "imgui:1861",
|
||||
"ImGuiChildFlags_": "imgui:1212",
|
||||
"ImGuiCol_": "imgui:1734",
|
||||
"ImGuiColorEditFlags_": "imgui:1872",
|
||||
"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",
|
||||
"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",
|
||||
"ImGuiFreeTypeLoaderFlags_": "imgui_freetype:29",
|
||||
"ImGuiGroupData": "imgui_internal:1165",
|
||||
"ImGuiHoveredFlagsPrivate_": "imgui_internal:1008",
|
||||
"ImGuiHoveredFlags_": "imgui:1434",
|
||||
"ImGuiIDStackTool": "imgui_internal:2145",
|
||||
"ImGuiIO": "imgui:2379",
|
||||
"ImGuiInputEvent": "imgui_internal:1535",
|
||||
"ImGuiInputEventAppFocused": "imgui_internal:1533",
|
||||
"ImGuiInputEventKey": "imgui_internal:1531",
|
||||
"ImGuiInputEventMouseButton": "imgui_internal:1530",
|
||||
"ImGuiInputEventMousePos": "imgui_internal:1528",
|
||||
"ImGuiInputEventMouseWheel": "imgui_internal:1529",
|
||||
"ImGuiInputEventText": "imgui_internal:1532",
|
||||
"ImGuiInputEventType": "imgui_internal:1505",
|
||||
"ImGuiInputFlagsPrivate_": "imgui_internal:1601",
|
||||
"ImGuiInputFlags_": "imgui:1672",
|
||||
"ImGuiInputSource": "imgui_internal:1517",
|
||||
"ImGuiInputTextCallbackData": "imgui:2620",
|
||||
"ImGuiInputTextDeactivatedState": "imgui_internal:1202",
|
||||
"ImGuiInputTextFlagsPrivate_": "imgui_internal:1016",
|
||||
"ImGuiInputTextFlags_": "imgui:1235",
|
||||
"ImGuiInputTextState": "imgui_internal:1224",
|
||||
"ImGuiItemFlagsPrivate_": "imgui_internal:956",
|
||||
"ImGuiItemFlags_": "imgui:1222",
|
||||
"ImGuiItemStatusFlags_": "imgui_internal:981",
|
||||
"ImGuiKey": "imgui:1543",
|
||||
"ImGuiKeyData": "imgui:2371",
|
||||
"ImGuiKeyOwnerData": "imgui_internal:1588",
|
||||
"ImGuiKeyRoutingData": "imgui_internal:1562",
|
||||
"ImGuiKeyRoutingTable": "imgui_internal:1576",
|
||||
"ImGuiLastItemData": "imgui_internal:1367",
|
||||
"ImGuiLayoutType_": "imgui_internal:1119",
|
||||
"ImGuiListClipper": "imgui:2835",
|
||||
"ImGuiListClipperData": "imgui_internal:1658",
|
||||
"ImGuiListClipperFlags_": "imgui:2809",
|
||||
"ImGuiListClipperRange": "imgui_internal:1645",
|
||||
"ImGuiLocEntry": "imgui_internal:2036",
|
||||
"ImGuiLocKey": "imgui_internal:2021",
|
||||
"ImGuiLogFlags_": "imgui_internal:1126",
|
||||
"ImGuiMenuColumns": "imgui_internal:1184",
|
||||
"ImGuiMetricsConfig": "imgui_internal:2102",
|
||||
"ImGuiMouseButton_": "imgui:1935",
|
||||
"ImGuiMouseCursor_": "imgui:1945",
|
||||
"ImGuiMouseSource": "imgui:1966",
|
||||
"ImGuiMultiSelectFlags_": "imgui:2994",
|
||||
"ImGuiMultiSelectIO": "imgui:3022",
|
||||
"ImGuiMultiSelectState": "imgui_internal:1922",
|
||||
"ImGuiMultiSelectTempData": "imgui_internal:1897",
|
||||
"ImGuiNavItemData": "imgui_internal:1745",
|
||||
"ImGuiNavLayer": "imgui_internal:1737",
|
||||
"ImGuiNavMoveFlags_": "imgui_internal:1715",
|
||||
"ImGuiNavRenderCursorFlags_": "imgui_internal:1700",
|
||||
"ImGuiNextItemData": "imgui_internal:1346",
|
||||
"ImGuiNextItemDataFlags_": "imgui_internal:1336",
|
||||
"ImGuiNextWindowData": "imgui_internal:1309",
|
||||
"ImGuiNextWindowDataFlags_": "imgui_internal:1292",
|
||||
"ImGuiOldColumnData": "imgui_internal:1830",
|
||||
"ImGuiOldColumnFlags_": "imgui_internal:1810",
|
||||
"ImGuiOldColumns": "imgui_internal:1840",
|
||||
"ImGuiOnceUponAFrame": "imgui:2698",
|
||||
"ImGuiPayload": "imgui:2663",
|
||||
"ImGuiPlatformIO": "imgui:3938",
|
||||
"ImGuiPlatformImeData": "imgui:3995",
|
||||
"ImGuiPlotType": "imgui_internal:1145",
|
||||
"ImGuiPopupData": "imgui_internal:1462",
|
||||
"ImGuiPopupFlags_": "imgui:1330",
|
||||
"ImGuiPopupPositionPolicy": "imgui_internal:1454",
|
||||
"ImGuiPtrOrIndex": "imgui_internal:1432",
|
||||
"ImGuiScrollFlags_": "imgui_internal:1686",
|
||||
"ImGuiSelectableFlagsPrivate_": "imgui_internal:1065",
|
||||
"ImGuiSelectableFlags_": "imgui:1348",
|
||||
"ImGuiSelectionBasicStorage": "imgui:3068",
|
||||
"ImGuiSelectionExternalStorage": "imgui:3091",
|
||||
"ImGuiSelectionRequest": "imgui:3042",
|
||||
"ImGuiSelectionRequestType": "imgui:3034",
|
||||
"ImGuiSeparatorFlags_": "imgui_internal:1087",
|
||||
"ImGuiSettingsHandler": "imgui_internal:2001",
|
||||
"ImGuiShrinkWidthItem": "imgui_internal:1425",
|
||||
"ImGuiSizeCallbackData": "imgui:2654",
|
||||
"ImGuiSliderFlagsPrivate_": "imgui_internal:1058",
|
||||
"ImGuiSliderFlags_": "imgui:1919",
|
||||
"ImGuiSortDirection": "imgui:1530",
|
||||
"ImGuiStackLevelInfo": "imgui_internal:2120",
|
||||
"ImGuiStorage": "imgui:2771",
|
||||
"ImGuiStoragePair": "imgui:2754",
|
||||
"ImGuiStyle": "imgui:2264",
|
||||
"ImGuiStyleMod": "imgui_internal:915",
|
||||
"ImGuiStyleVarInfo": "imgui_internal:899",
|
||||
"ImGuiStyleVar_": "imgui:1806",
|
||||
"ImGuiTabBar": "imgui_internal:2794",
|
||||
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2757",
|
||||
"ImGuiTabBarFlags_": "imgui:1381",
|
||||
"ImGuiTabItem": "imgui_internal:2775",
|
||||
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2765",
|
||||
"ImGuiTabItemFlags_": "imgui:1405",
|
||||
"ImGuiTable": "imgui_internal:2939",
|
||||
"ImGuiTableBgTarget_": "imgui:2118",
|
||||
"ImGuiTableCellData": "imgui_internal:2907",
|
||||
"ImGuiTableColumn": "imgui_internal:2847",
|
||||
"ImGuiTableColumnFlags_": "imgui:2065",
|
||||
"ImGuiTableColumnSettings": "imgui_internal:3088",
|
||||
"ImGuiTableColumnSortSpecs": "imgui:2140",
|
||||
"ImGuiTableFlags_": "imgui:2012",
|
||||
"ImGuiTableHeaderData": "imgui_internal:2916",
|
||||
"ImGuiTableInstanceData": "imgui_internal:2926",
|
||||
"ImGuiTableRowFlags_": "imgui:2103",
|
||||
"ImGuiTableSettings": "imgui_internal:3112",
|
||||
"ImGuiTableSortSpecs": "imgui:2130",
|
||||
"ImGuiTableTempData": "imgui_internal:3064",
|
||||
"ImGuiTextBuffer": "imgui:2733",
|
||||
"ImGuiTextFilter": "imgui:2706",
|
||||
"ImGuiTextFlags_": "imgui_internal:1105",
|
||||
"ImGuiTextIndex": "imgui_internal:805",
|
||||
"ImGuiTextRange": "imgui:2716",
|
||||
"ImGuiTooltipFlags_": "imgui_internal:1111",
|
||||
"ImGuiTreeNodeFlagsPrivate_": "imgui_internal:1078",
|
||||
"ImGuiTreeNodeFlags_": "imgui:1286",
|
||||
"ImGuiTreeNodeStackData": "imgui_internal:1386",
|
||||
"ImGuiTypingSelectFlags_": "imgui_internal:1773",
|
||||
"ImGuiTypingSelectRequest": "imgui_internal:1781",
|
||||
"ImGuiTypingSelectState": "imgui_internal:1792",
|
||||
"ImGuiViewport": "imgui:3912",
|
||||
"ImGuiViewportFlags_": "imgui:3897",
|
||||
"ImGuiViewportP": "imgui_internal:1950",
|
||||
"ImGuiWindow": "imgui_internal:2621",
|
||||
"ImGuiWindowBgClickFlags_": "imgui_internal:1286",
|
||||
"ImGuiWindowFlags_": "imgui:1152",
|
||||
"ImGuiWindowRefreshFlags_": "imgui_internal:1277",
|
||||
"ImGuiWindowSettings": "imgui_internal:1987",
|
||||
"ImGuiWindowStackData": "imgui_internal:1416",
|
||||
"ImGuiWindowTempData": "imgui_internal:2568",
|
||||
"ImRect": "imgui_internal:573",
|
||||
"ImTextureData": "imgui:3471",
|
||||
"ImTextureFormat": "imgui:3439",
|
||||
"ImTextureRect": "imgui:3458",
|
||||
"ImGuiGroupData": "imgui_internal:1171",
|
||||
"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",
|
||||
"ImGuiInputTextFlagsPrivate_": "imgui_internal:1022",
|
||||
"ImGuiInputTextFlags_": "imgui:1247",
|
||||
"ImGuiInputTextState": "imgui_internal:1230",
|
||||
"ImGuiItemFlagsPrivate_": "imgui_internal:963",
|
||||
"ImGuiItemFlags_": "imgui:1233",
|
||||
"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",
|
||||
"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",
|
||||
"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",
|
||||
"ImRect": "imgui_internal:581",
|
||||
"ImTextureData": "imgui:3487",
|
||||
"ImTextureFormat": "imgui:3455",
|
||||
"ImTextureRect": "imgui:3474",
|
||||
"ImTextureRef": "imgui:365",
|
||||
"ImTextureStatus": "imgui:3446",
|
||||
"ImVec1": "imgui_internal:547",
|
||||
"ImTextureStatus": "imgui:3462",
|
||||
"ImVec1": "imgui_internal:555",
|
||||
"ImVec2": "imgui:295",
|
||||
"ImVec2i": "imgui_internal:555",
|
||||
"ImVec2ih": "imgui_internal:563",
|
||||
"ImVec2i": "imgui_internal:563",
|
||||
"ImVec2ih": "imgui_internal:571",
|
||||
"ImVec4": "imgui:308",
|
||||
"stbrp_context_opaque": "imgui_internal:3830"
|
||||
"ImWcharClass": "imgui_internal:444",
|
||||
"stbrp_context_opaque": "imgui_internal:3859"
|
||||
},
|
||||
"nonPOD": {
|
||||
"ImBitArray": true,
|
||||
@@ -6064,10 +6112,6 @@
|
||||
"name": "PixelSnapH",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "PixelSnapV",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "OversampleH",
|
||||
"type": "ImS8"
|
||||
@@ -6124,6 +6168,10 @@
|
||||
"name": "RasterizerDensity",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "ExtraSizeScale",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "Flags",
|
||||
"type": "ImFontFlags"
|
||||
@@ -6998,6 +7046,10 @@
|
||||
"name": "NavJustMovedToHasSelectionData",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "ConfigNavEnableTabbing",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "ConfigNavWindowingWithGamepad",
|
||||
"type": "bool"
|
||||
@@ -8421,13 +8473,25 @@
|
||||
"type": "void*"
|
||||
},
|
||||
{
|
||||
"name": "EventChar",
|
||||
"type": "ImWchar"
|
||||
"name": "ID",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "EventKey",
|
||||
"type": "ImGuiKey"
|
||||
},
|
||||
{
|
||||
"name": "EventChar",
|
||||
"type": "ImWchar"
|
||||
},
|
||||
{
|
||||
"name": "EventActivated",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "BufDirty",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "Buf",
|
||||
"type": "char*"
|
||||
@@ -8440,10 +8504,6 @@
|
||||
"name": "BufSize",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "BufDirty",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "CursorPos",
|
||||
"type": "int"
|
||||
@@ -9069,6 +9129,10 @@
|
||||
{
|
||||
"name": "StorageId",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "ColorMarker",
|
||||
"type": "ImU32"
|
||||
}
|
||||
],
|
||||
"ImGuiNextWindowData": [
|
||||
@@ -9684,6 +9748,10 @@
|
||||
"name": "LogSliderDeadzone",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "ImageRounding",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "ImageBorderSize",
|
||||
"type": "float"
|
||||
@@ -9752,6 +9820,10 @@
|
||||
"name": "DragDropTargetPadding",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "ColorMarkerSize",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "ColorButtonPosition",
|
||||
"type": "ImGuiDir"
|
||||
@@ -9895,6 +9967,10 @@
|
||||
"name": "NextSelectedTabId",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "NextScrollToTabId",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "VisibleTabId",
|
||||
"type": "ImGuiID"
|
||||
@@ -11456,10 +11532,6 @@
|
||||
"name": "LastTimeActive",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "ItemWidthDefault",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "StateStorage",
|
||||
"type": "ImGuiStorage"
|
||||
@@ -11759,6 +11831,10 @@
|
||||
"name": "ItemWidth",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "ItemWidthDefault",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "TextWrapPos",
|
||||
"type": "float"
|
||||
@@ -11944,7 +12020,7 @@
|
||||
"templated_structs": {
|
||||
"ImBitArray": [
|
||||
{
|
||||
"name": "Storage[(BITCOUNT+31)>>5]",
|
||||
"name": "Data[(BITCOUNT+31)>>5]",
|
||||
"type": "ImU32"
|
||||
}
|
||||
],
|
||||
@@ -12126,7 +12202,7 @@
|
||||
"ImPool": "T",
|
||||
"ImSpan": "T",
|
||||
"ImSpanAllocator": "int CHUNKS",
|
||||
"ImStableVector": "typename T, int BLOCK_SIZE",
|
||||
"ImStableVector": "typename T, int BLOCKSIZE",
|
||||
"ImVector": "T"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user