From e55db9964851a7692bfa883fa2f79e48949fdf0d Mon Sep 17 00:00:00 2001 From: Joonas Javanainen Date: Thu, 12 Nov 2020 22:36:52 +0200 Subject: [PATCH] Upgrade to imgui 1.79 --- CHANGELOG.markdown | 1 + README.markdown | 2 +- imgui-sys/src/bindings.rs | 1250 +++++----- imgui-sys/src/wasm_bindings.rs | 1255 +++++----- imgui-sys/third-party/cimgui.cpp | 39 +- imgui-sys/third-party/cimgui.h | 104 +- imgui-sys/third-party/cimgui_impl.h | 5 +- imgui-sys/third-party/definitions.json | 2295 +++++++++--------- imgui-sys/third-party/definitions.lua | 1510 ++++++------ imgui-sys/third-party/imgui | 2 +- imgui-sys/third-party/impl_definitions.json | 122 +- imgui-sys/third-party/impl_definitions.lua | 62 +- imgui-sys/third-party/overloads.txt | 224 +- imgui-sys/third-party/structs_and_enums.json | 418 ++-- imgui-sys/third-party/structs_and_enums.lua | 465 ++-- src/fonts/font.rs | 2 - src/lib.rs | 2 +- src/style.rs | 7 +- src/widget/slider.rs | 2 +- src/widget/tab.rs | 3 + 20 files changed, 3998 insertions(+), 3772 deletions(-) diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown index 2e1fee0..ad6226a 100644 --- a/CHANGELOG.markdown +++ b/CHANGELOG.markdown @@ -4,6 +4,7 @@ ### Changed +- Upgrade to cimgui / imgui 1.79 - Upgrade to winit 0.23 - Bump minimum Rust version to 1.41 diff --git a/README.markdown b/README.markdown index a9bc5b5..f89e493 100644 --- a/README.markdown +++ b/README.markdown @@ -4,7 +4,7 @@ Minimum Rust version: 1.41 -Wrapped Dear ImGui version: 1.78 +Wrapped Dear ImGui version: 1.79 [![Build Status](https://github.com/Gekkio/imgui-rs/workflows/ci/badge.svg)](https://github.com/Gekkio/imgui-rs/actions) [![Latest release on crates.io](https://meritbadge.herokuapp.com/imgui)](https://crates.io/crates/imgui) diff --git a/imgui-sys/src/bindings.rs b/imgui-sys/src/bindings.rs index 171e2cc..f1ef1e9 100644 --- a/imgui-sys/src/bindings.rs +++ b/imgui-sys/src/bindings.rs @@ -141,110 +141,165 @@ pub type ImDrawCallback = ::std::option::Option< pub type ImDrawIdx = ::std::os::raw::c_ushort; #[repr(C)] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_float { +pub struct ImVector_ImDrawChannel { pub Size: ::std::os::raw::c_int, pub Capacity: ::std::os::raw::c_int, - pub Data: *mut f32, + pub Data: *mut ImDrawChannel, } #[test] -fn bindgen_test_layout_ImVector_float() { +fn bindgen_test_layout_ImVector_ImDrawChannel() { assert_eq!( - ::std::mem::size_of::(), + ::std::mem::size_of::(), 16usize, - concat!("Size of: ", stringify!(ImVector_float)) + concat!("Size of: ", stringify!(ImVector_ImDrawChannel)) ); assert_eq!( - ::std::mem::align_of::(), + ::std::mem::align_of::(), 8usize, - concat!("Alignment of ", stringify!(ImVector_float)) + concat!("Alignment of ", stringify!(ImVector_ImDrawChannel)) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, 0usize, concat!( "Offset of field: ", - stringify!(ImVector_float), + stringify!(ImVector_ImDrawChannel), "::", stringify!(Size) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, 4usize, concat!( "Offset of field: ", - stringify!(ImVector_float), + stringify!(ImVector_ImDrawChannel), "::", stringify!(Capacity) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, 8usize, concat!( "Offset of field: ", - stringify!(ImVector_float), + stringify!(ImVector_ImDrawChannel), "::", stringify!(Data) ) ); } -impl Default for ImVector_float { +impl Default for ImVector_ImDrawChannel { fn default() -> Self { unsafe { ::std::mem::zeroed() } } } #[repr(C)] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImWchar { +pub struct ImVector_ImDrawCmd { pub Size: ::std::os::raw::c_int, pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImWchar, + pub Data: *mut ImDrawCmd, } #[test] -fn bindgen_test_layout_ImVector_ImWchar() { +fn bindgen_test_layout_ImVector_ImDrawCmd() { assert_eq!( - ::std::mem::size_of::(), + ::std::mem::size_of::(), 16usize, - concat!("Size of: ", stringify!(ImVector_ImWchar)) + concat!("Size of: ", stringify!(ImVector_ImDrawCmd)) ); assert_eq!( - ::std::mem::align_of::(), + ::std::mem::align_of::(), 8usize, - concat!("Alignment of ", stringify!(ImVector_ImWchar)) + concat!("Alignment of ", stringify!(ImVector_ImDrawCmd)) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, 0usize, concat!( "Offset of field: ", - stringify!(ImVector_ImWchar), + stringify!(ImVector_ImDrawCmd), "::", stringify!(Size) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, 4usize, concat!( "Offset of field: ", - stringify!(ImVector_ImWchar), + stringify!(ImVector_ImDrawCmd), "::", stringify!(Capacity) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, 8usize, concat!( "Offset of field: ", - stringify!(ImVector_ImWchar), + stringify!(ImVector_ImDrawCmd), "::", stringify!(Data) ) ); } -impl Default for ImVector_ImWchar { +impl Default for ImVector_ImDrawCmd { + fn default() -> Self { + unsafe { ::std::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] +pub struct ImVector_ImDrawIdx { + pub Size: ::std::os::raw::c_int, + pub Capacity: ::std::os::raw::c_int, + pub Data: *mut ImDrawIdx, +} +#[test] +fn bindgen_test_layout_ImVector_ImDrawIdx() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ImVector_ImDrawIdx)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ImVector_ImDrawIdx)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImDrawIdx), + "::", + stringify!(Size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImDrawIdx), + "::", + stringify!(Capacity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImDrawIdx), + "::", + stringify!(Data) + ) + ); +} +impl Default for ImVector_ImDrawIdx { fn default() -> Self { unsafe { ::std::mem::zeroed() } } @@ -306,334 +361,55 @@ impl Default for ImVector_ImDrawVert { } #[repr(C)] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImFontGlyph { +pub struct ImVector_ImFontPtr { pub Size: ::std::os::raw::c_int, pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImFontGlyph, + pub Data: *mut *mut ImFont, } #[test] -fn bindgen_test_layout_ImVector_ImFontGlyph() { +fn bindgen_test_layout_ImVector_ImFontPtr() { assert_eq!( - ::std::mem::size_of::(), + ::std::mem::size_of::(), 16usize, - concat!("Size of: ", stringify!(ImVector_ImFontGlyph)) + concat!("Size of: ", stringify!(ImVector_ImFontPtr)) ); assert_eq!( - ::std::mem::align_of::(), + ::std::mem::align_of::(), 8usize, - concat!("Alignment of ", stringify!(ImVector_ImFontGlyph)) + concat!("Alignment of ", stringify!(ImVector_ImFontPtr)) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, 0usize, concat!( "Offset of field: ", - stringify!(ImVector_ImFontGlyph), + stringify!(ImVector_ImFontPtr), "::", stringify!(Size) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, 4usize, concat!( "Offset of field: ", - stringify!(ImVector_ImFontGlyph), + stringify!(ImVector_ImFontPtr), "::", stringify!(Capacity) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, 8usize, concat!( "Offset of field: ", - stringify!(ImVector_ImFontGlyph), + stringify!(ImVector_ImFontPtr), "::", stringify!(Data) ) ); } -impl Default for ImVector_ImFontGlyph { - fn default() -> Self { - unsafe { ::std::mem::zeroed() } - } -} -#[repr(C)] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImGuiTextRange { - pub Size: ::std::os::raw::c_int, - pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImGuiTextRange, -} -#[test] -fn bindgen_test_layout_ImVector_ImGuiTextRange() { - assert_eq!( - ::std::mem::size_of::(), - 16usize, - concat!("Size of: ", stringify!(ImVector_ImGuiTextRange)) - ); - assert_eq!( - ::std::mem::align_of::(), - 8usize, - concat!("Alignment of ", stringify!(ImVector_ImGuiTextRange)) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImGuiTextRange), - "::", - stringify!(Size) - ) - ); - assert_eq!( - unsafe { - &(*(::std::ptr::null::())).Capacity as *const _ as usize - }, - 4usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImGuiTextRange), - "::", - stringify!(Capacity) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, - 8usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImGuiTextRange), - "::", - stringify!(Data) - ) - ); -} -impl Default for ImVector_ImGuiTextRange { - fn default() -> Self { - unsafe { ::std::mem::zeroed() } - } -} -#[repr(C)] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImGuiStoragePair { - pub Size: ::std::os::raw::c_int, - pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImGuiStoragePair, -} -#[test] -fn bindgen_test_layout_ImVector_ImGuiStoragePair() { - assert_eq!( - ::std::mem::size_of::(), - 16usize, - concat!("Size of: ", stringify!(ImVector_ImGuiStoragePair)) - ); - assert_eq!( - ::std::mem::align_of::(), - 8usize, - concat!("Alignment of ", stringify!(ImVector_ImGuiStoragePair)) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImGuiStoragePair), - "::", - stringify!(Size) - ) - ); - assert_eq!( - unsafe { - &(*(::std::ptr::null::())).Capacity as *const _ as usize - }, - 4usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImGuiStoragePair), - "::", - stringify!(Capacity) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, - 8usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImGuiStoragePair), - "::", - stringify!(Data) - ) - ); -} -impl Default for ImVector_ImGuiStoragePair { - fn default() -> Self { - unsafe { ::std::mem::zeroed() } - } -} -#[repr(C)] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImDrawChannel { - pub Size: ::std::os::raw::c_int, - pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImDrawChannel, -} -#[test] -fn bindgen_test_layout_ImVector_ImDrawChannel() { - assert_eq!( - ::std::mem::size_of::(), - 16usize, - concat!("Size of: ", stringify!(ImVector_ImDrawChannel)) - ); - assert_eq!( - ::std::mem::align_of::(), - 8usize, - concat!("Alignment of ", stringify!(ImVector_ImDrawChannel)) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImDrawChannel), - "::", - stringify!(Size) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, - 4usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImDrawChannel), - "::", - stringify!(Capacity) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, - 8usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImDrawChannel), - "::", - stringify!(Data) - ) - ); -} -impl Default for ImVector_ImDrawChannel { - fn default() -> Self { - unsafe { ::std::mem::zeroed() } - } -} -#[repr(C)] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_char { - pub Size: ::std::os::raw::c_int, - pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ::std::os::raw::c_char, -} -#[test] -fn bindgen_test_layout_ImVector_char() { - assert_eq!( - ::std::mem::size_of::(), - 16usize, - concat!("Size of: ", stringify!(ImVector_char)) - ); - assert_eq!( - ::std::mem::align_of::(), - 8usize, - concat!("Alignment of ", stringify!(ImVector_char)) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImVector_char), - "::", - stringify!(Size) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, - 4usize, - concat!( - "Offset of field: ", - stringify!(ImVector_char), - "::", - stringify!(Capacity) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, - 8usize, - concat!( - "Offset of field: ", - stringify!(ImVector_char), - "::", - stringify!(Data) - ) - ); -} -impl Default for ImVector_char { - fn default() -> Self { - unsafe { ::std::mem::zeroed() } - } -} -#[repr(C)] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImU32 { - pub Size: ::std::os::raw::c_int, - pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImU32, -} -#[test] -fn bindgen_test_layout_ImVector_ImU32() { - assert_eq!( - ::std::mem::size_of::(), - 16usize, - concat!("Size of: ", stringify!(ImVector_ImU32)) - ); - assert_eq!( - ::std::mem::align_of::(), - 8usize, - concat!("Alignment of ", stringify!(ImVector_ImU32)) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImU32), - "::", - stringify!(Size) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, - 4usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImU32), - "::", - stringify!(Capacity) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, - 8usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImU32), - "::", - stringify!(Data) - ) - ); -} -impl Default for ImVector_ImU32 { +impl Default for ImVector_ImFontPtr { fn default() -> Self { unsafe { ::std::mem::zeroed() } } @@ -701,61 +477,6 @@ impl Default for ImVector_ImFontAtlasCustomRect { } #[repr(C)] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImTextureID { - pub Size: ::std::os::raw::c_int, - pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImTextureID, -} -#[test] -fn bindgen_test_layout_ImVector_ImTextureID() { - assert_eq!( - ::std::mem::size_of::(), - 16usize, - concat!("Size of: ", stringify!(ImVector_ImTextureID)) - ); - assert_eq!( - ::std::mem::align_of::(), - 8usize, - concat!("Alignment of ", stringify!(ImVector_ImTextureID)) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImTextureID), - "::", - stringify!(Size) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, - 4usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImTextureID), - "::", - stringify!(Capacity) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, - 8usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImTextureID), - "::", - stringify!(Data) - ) - ); -} -impl Default for ImVector_ImTextureID { - fn default() -> Self { - unsafe { ::std::mem::zeroed() } - } -} -#[repr(C)] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] pub struct ImVector_ImFontConfig { pub Size: ::std::os::raw::c_int, pub Capacity: ::std::os::raw::c_int, @@ -811,110 +532,334 @@ impl Default for ImVector_ImFontConfig { } #[repr(C)] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImFontPtr { +pub struct ImVector_ImFontGlyph { pub Size: ::std::os::raw::c_int, pub Capacity: ::std::os::raw::c_int, - pub Data: *mut *mut ImFont, + pub Data: *mut ImFontGlyph, } #[test] -fn bindgen_test_layout_ImVector_ImFontPtr() { +fn bindgen_test_layout_ImVector_ImFontGlyph() { assert_eq!( - ::std::mem::size_of::(), + ::std::mem::size_of::(), 16usize, - concat!("Size of: ", stringify!(ImVector_ImFontPtr)) + concat!("Size of: ", stringify!(ImVector_ImFontGlyph)) ); assert_eq!( - ::std::mem::align_of::(), + ::std::mem::align_of::(), 8usize, - concat!("Alignment of ", stringify!(ImVector_ImFontPtr)) + concat!("Alignment of ", stringify!(ImVector_ImFontGlyph)) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, 0usize, concat!( "Offset of field: ", - stringify!(ImVector_ImFontPtr), + stringify!(ImVector_ImFontGlyph), "::", stringify!(Size) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, 4usize, concat!( "Offset of field: ", - stringify!(ImVector_ImFontPtr), + stringify!(ImVector_ImFontGlyph), "::", stringify!(Capacity) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, 8usize, concat!( "Offset of field: ", - stringify!(ImVector_ImFontPtr), + stringify!(ImVector_ImFontGlyph), "::", stringify!(Data) ) ); } -impl Default for ImVector_ImFontPtr { +impl Default for ImVector_ImFontGlyph { fn default() -> Self { unsafe { ::std::mem::zeroed() } } } #[repr(C)] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImDrawCmd { +pub struct ImVector_ImGuiStoragePair { pub Size: ::std::os::raw::c_int, pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImDrawCmd, + pub Data: *mut ImGuiStoragePair, } #[test] -fn bindgen_test_layout_ImVector_ImDrawCmd() { +fn bindgen_test_layout_ImVector_ImGuiStoragePair() { assert_eq!( - ::std::mem::size_of::(), + ::std::mem::size_of::(), 16usize, - concat!("Size of: ", stringify!(ImVector_ImDrawCmd)) + concat!("Size of: ", stringify!(ImVector_ImGuiStoragePair)) ); assert_eq!( - ::std::mem::align_of::(), + ::std::mem::align_of::(), 8usize, - concat!("Alignment of ", stringify!(ImVector_ImDrawCmd)) + concat!("Alignment of ", stringify!(ImVector_ImGuiStoragePair)) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, 0usize, concat!( "Offset of field: ", - stringify!(ImVector_ImDrawCmd), + stringify!(ImVector_ImGuiStoragePair), "::", stringify!(Size) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + unsafe { + &(*(::std::ptr::null::())).Capacity as *const _ as usize + }, 4usize, concat!( "Offset of field: ", - stringify!(ImVector_ImDrawCmd), + stringify!(ImVector_ImGuiStoragePair), "::", stringify!(Capacity) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, 8usize, concat!( "Offset of field: ", - stringify!(ImVector_ImDrawCmd), + stringify!(ImVector_ImGuiStoragePair), "::", stringify!(Data) ) ); } -impl Default for ImVector_ImDrawCmd { +impl Default for ImVector_ImGuiStoragePair { + fn default() -> Self { + unsafe { ::std::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] +pub struct ImVector_ImGuiTextRange { + pub Size: ::std::os::raw::c_int, + pub Capacity: ::std::os::raw::c_int, + pub Data: *mut ImGuiTextRange, +} +#[test] +fn bindgen_test_layout_ImVector_ImGuiTextRange() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ImVector_ImGuiTextRange)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ImVector_ImGuiTextRange)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImGuiTextRange), + "::", + stringify!(Size) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).Capacity as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImGuiTextRange), + "::", + stringify!(Capacity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImGuiTextRange), + "::", + stringify!(Data) + ) + ); +} +impl Default for ImVector_ImGuiTextRange { + fn default() -> Self { + unsafe { ::std::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] +pub struct ImVector_ImTextureID { + pub Size: ::std::os::raw::c_int, + pub Capacity: ::std::os::raw::c_int, + pub Data: *mut ImTextureID, +} +#[test] +fn bindgen_test_layout_ImVector_ImTextureID() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ImVector_ImTextureID)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ImVector_ImTextureID)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImTextureID), + "::", + stringify!(Size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImTextureID), + "::", + stringify!(Capacity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImTextureID), + "::", + stringify!(Data) + ) + ); +} +impl Default for ImVector_ImTextureID { + fn default() -> Self { + unsafe { ::std::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] +pub struct ImVector_ImU32 { + pub Size: ::std::os::raw::c_int, + pub Capacity: ::std::os::raw::c_int, + pub Data: *mut ImU32, +} +#[test] +fn bindgen_test_layout_ImVector_ImU32() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ImVector_ImU32)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ImVector_ImU32)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImU32), + "::", + stringify!(Size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImU32), + "::", + stringify!(Capacity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImU32), + "::", + stringify!(Data) + ) + ); +} +impl Default for ImVector_ImU32 { + fn default() -> Self { + unsafe { ::std::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] +pub struct ImVector_ImVec2 { + pub Size: ::std::os::raw::c_int, + pub Capacity: ::std::os::raw::c_int, + pub Data: *mut ImVec2, +} +#[test] +fn bindgen_test_layout_ImVector_ImVec2() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ImVector_ImVec2)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ImVector_ImVec2)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImVec2), + "::", + stringify!(Size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImVec2), + "::", + stringify!(Capacity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImVec2), + "::", + stringify!(Data) + ) + ); +} +impl Default for ImVector_ImVec2 { fn default() -> Self { unsafe { ::std::mem::zeroed() } } @@ -976,110 +921,165 @@ impl Default for ImVector_ImVec4 { } #[repr(C)] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImDrawIdx { +pub struct ImVector_ImWchar { pub Size: ::std::os::raw::c_int, pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImDrawIdx, + pub Data: *mut ImWchar, } #[test] -fn bindgen_test_layout_ImVector_ImDrawIdx() { +fn bindgen_test_layout_ImVector_ImWchar() { assert_eq!( - ::std::mem::size_of::(), + ::std::mem::size_of::(), 16usize, - concat!("Size of: ", stringify!(ImVector_ImDrawIdx)) + concat!("Size of: ", stringify!(ImVector_ImWchar)) ); assert_eq!( - ::std::mem::align_of::(), + ::std::mem::align_of::(), 8usize, - concat!("Alignment of ", stringify!(ImVector_ImDrawIdx)) + concat!("Alignment of ", stringify!(ImVector_ImWchar)) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, 0usize, concat!( "Offset of field: ", - stringify!(ImVector_ImDrawIdx), + stringify!(ImVector_ImWchar), "::", stringify!(Size) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, 4usize, concat!( "Offset of field: ", - stringify!(ImVector_ImDrawIdx), + stringify!(ImVector_ImWchar), "::", stringify!(Capacity) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, 8usize, concat!( "Offset of field: ", - stringify!(ImVector_ImDrawIdx), + stringify!(ImVector_ImWchar), "::", stringify!(Data) ) ); } -impl Default for ImVector_ImDrawIdx { +impl Default for ImVector_ImWchar { fn default() -> Self { unsafe { ::std::mem::zeroed() } } } #[repr(C)] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImVec2 { +pub struct ImVector_char { pub Size: ::std::os::raw::c_int, pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImVec2, + pub Data: *mut ::std::os::raw::c_char, } #[test] -fn bindgen_test_layout_ImVector_ImVec2() { +fn bindgen_test_layout_ImVector_char() { assert_eq!( - ::std::mem::size_of::(), + ::std::mem::size_of::(), 16usize, - concat!("Size of: ", stringify!(ImVector_ImVec2)) + concat!("Size of: ", stringify!(ImVector_char)) ); assert_eq!( - ::std::mem::align_of::(), + ::std::mem::align_of::(), 8usize, - concat!("Alignment of ", stringify!(ImVector_ImVec2)) + concat!("Alignment of ", stringify!(ImVector_char)) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, 0usize, concat!( "Offset of field: ", - stringify!(ImVector_ImVec2), + stringify!(ImVector_char), "::", stringify!(Size) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, 4usize, concat!( "Offset of field: ", - stringify!(ImVector_ImVec2), + stringify!(ImVector_char), "::", stringify!(Capacity) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, 8usize, concat!( "Offset of field: ", - stringify!(ImVector_ImVec2), + stringify!(ImVector_char), "::", stringify!(Data) ) ); } -impl Default for ImVector_ImVec2 { +impl Default for ImVector_char { + fn default() -> Self { + unsafe { ::std::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] +pub struct ImVector_float { + pub Size: ::std::os::raw::c_int, + pub Capacity: ::std::os::raw::c_int, + pub Data: *mut f32, +} +#[test] +fn bindgen_test_layout_ImVector_float() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ImVector_float)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ImVector_float)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImVector_float), + "::", + stringify!(Size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ImVector_float), + "::", + stringify!(Capacity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ImVector_float), + "::", + stringify!(Data) + ) + ); +} +impl Default for ImVector_float { fn default() -> Self { unsafe { ::std::mem::zeroed() } } @@ -1205,6 +1205,7 @@ pub const ImGuiInputTextFlags_Password: ImGuiInputTextFlags_ = 32768; pub const ImGuiInputTextFlags_NoUndoRedo: ImGuiInputTextFlags_ = 65536; pub const ImGuiInputTextFlags_CharsScientific: ImGuiInputTextFlags_ = 131072; pub const ImGuiInputTextFlags_CallbackResize: ImGuiInputTextFlags_ = 262144; +pub const ImGuiInputTextFlags_CallbackEdit: ImGuiInputTextFlags_ = 524288; pub const ImGuiInputTextFlags_Multiline: ImGuiInputTextFlags_ = 1048576; pub const ImGuiInputTextFlags_NoMarkEdited: ImGuiInputTextFlags_ = 2097152; pub type ImGuiInputTextFlags_ = ::std::os::raw::c_uint; @@ -1272,6 +1273,9 @@ pub const ImGuiTabItemFlags_SetSelected: ImGuiTabItemFlags_ = 2; pub const ImGuiTabItemFlags_NoCloseWithMiddleMouseButton: ImGuiTabItemFlags_ = 4; pub const ImGuiTabItemFlags_NoPushId: ImGuiTabItemFlags_ = 8; pub const ImGuiTabItemFlags_NoTooltip: ImGuiTabItemFlags_ = 16; +pub const ImGuiTabItemFlags_NoReorder: ImGuiTabItemFlags_ = 32; +pub const ImGuiTabItemFlags_Leading: ImGuiTabItemFlags_ = 64; +pub const ImGuiTabItemFlags_Trailing: ImGuiTabItemFlags_ = 128; pub type ImGuiTabItemFlags_ = ::std::os::raw::c_uint; pub const ImGuiFocusedFlags_None: ImGuiFocusedFlags_ = 0; pub const ImGuiFocusedFlags_ChildWindows: ImGuiFocusedFlags_ = 1; @@ -1504,7 +1508,7 @@ pub const ImGuiColorEditFlags__PickerMask: ImGuiColorEditFlags_ = 100663296; pub const ImGuiColorEditFlags__InputMask: ImGuiColorEditFlags_ = 402653184; pub type ImGuiColorEditFlags_ = ::std::os::raw::c_uint; pub const ImGuiSliderFlags_None: ImGuiSliderFlags_ = 0; -pub const ImGuiSliderFlags_ClampOnInput: ImGuiSliderFlags_ = 16; +pub const ImGuiSliderFlags_AlwaysClamp: ImGuiSliderFlags_ = 16; pub const ImGuiSliderFlags_Logarithmic: ImGuiSliderFlags_ = 32; pub const ImGuiSliderFlags_NoRoundToFormat: ImGuiSliderFlags_ = 64; pub const ImGuiSliderFlags_NoInput: ImGuiSliderFlags_ = 128; @@ -1562,7 +1566,7 @@ pub struct ImGuiStyle { pub LogSliderDeadzone: f32, pub TabRounding: f32, pub TabBorderSize: f32, - pub TabMinWidthForUnselectedCloseButton: f32, + pub TabMinWidthForCloseButton: f32, pub ColorButtonPosition: ImGuiDir, pub ButtonTextAlign: ImVec2, pub SelectableTextAlign: ImVec2, @@ -1852,15 +1856,14 @@ fn bindgen_test_layout_ImGuiStyle() { ); assert_eq!( unsafe { - &(*(::std::ptr::null::())).TabMinWidthForUnselectedCloseButton as *const _ - as usize + &(*(::std::ptr::null::())).TabMinWidthForCloseButton as *const _ as usize }, 132usize, concat!( "Offset of field: ", stringify!(ImGuiStyle), "::", - stringify!(TabMinWidthForUnselectedCloseButton) + stringify!(TabMinWidthForCloseButton) ) ); assert_eq!( @@ -1997,7 +2000,7 @@ impl Default for ImGuiStyle { } impl ::std::fmt::Debug for ImGuiStyle { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { - write ! (f , "ImGuiStyle {{ Alpha: {:?}, WindowPadding: {:?}, WindowRounding: {:?}, WindowBorderSize: {:?}, WindowMinSize: {:?}, WindowTitleAlign: {:?}, WindowMenuButtonPosition: {:?}, ChildRounding: {:?}, ChildBorderSize: {:?}, PopupRounding: {:?}, PopupBorderSize: {:?}, FramePadding: {:?}, FrameRounding: {:?}, FrameBorderSize: {:?}, ItemSpacing: {:?}, ItemInnerSpacing: {:?}, TouchExtraPadding: {:?}, IndentSpacing: {:?}, ColumnsMinSpacing: {:?}, ScrollbarSize: {:?}, ScrollbarRounding: {:?}, GrabMinSize: {:?}, GrabRounding: {:?}, LogSliderDeadzone: {:?}, TabRounding: {:?}, TabBorderSize: {:?}, TabMinWidthForUnselectedCloseButton: {:?}, ColorButtonPosition: {:?}, ButtonTextAlign: {:?}, SelectableTextAlign: {:?}, DisplayWindowPadding: {:?}, DisplaySafeAreaPadding: {:?}, MouseCursorScale: {:?}, AntiAliasedLines: {:?}, AntiAliasedLinesUseTex: {:?}, AntiAliasedFill: {:?}, CurveTessellationTol: {:?}, CircleSegmentMaxError: {:?}, Colors: [{}] }}" , self . Alpha , self . WindowPadding , self . WindowRounding , self . WindowBorderSize , self . WindowMinSize , self . WindowTitleAlign , self . WindowMenuButtonPosition , self . ChildRounding , self . ChildBorderSize , self . PopupRounding , self . PopupBorderSize , self . FramePadding , self . FrameRounding , self . FrameBorderSize , self . ItemSpacing , self . ItemInnerSpacing , self . TouchExtraPadding , self . IndentSpacing , self . ColumnsMinSpacing , self . ScrollbarSize , self . ScrollbarRounding , self . GrabMinSize , self . GrabRounding , self . LogSliderDeadzone , self . TabRounding , self . TabBorderSize , self . TabMinWidthForUnselectedCloseButton , self . ColorButtonPosition , self . ButtonTextAlign , self . SelectableTextAlign , self . DisplayWindowPadding , self . DisplaySafeAreaPadding , self . MouseCursorScale , self . AntiAliasedLines , self . AntiAliasedLinesUseTex , self . AntiAliasedFill , self . CurveTessellationTol , self . CircleSegmentMaxError , self . Colors . iter () . enumerate () . map (| (i , v) | format ! ("{}{:?}" , if i > 0 { ", " } else { "" } , v)) . collect :: < String > ()) + write ! (f , "ImGuiStyle {{ Alpha: {:?}, WindowPadding: {:?}, WindowRounding: {:?}, WindowBorderSize: {:?}, WindowMinSize: {:?}, WindowTitleAlign: {:?}, WindowMenuButtonPosition: {:?}, ChildRounding: {:?}, ChildBorderSize: {:?}, PopupRounding: {:?}, PopupBorderSize: {:?}, FramePadding: {:?}, FrameRounding: {:?}, FrameBorderSize: {:?}, ItemSpacing: {:?}, ItemInnerSpacing: {:?}, TouchExtraPadding: {:?}, IndentSpacing: {:?}, ColumnsMinSpacing: {:?}, ScrollbarSize: {:?}, ScrollbarRounding: {:?}, GrabMinSize: {:?}, GrabRounding: {:?}, LogSliderDeadzone: {:?}, TabRounding: {:?}, TabBorderSize: {:?}, TabMinWidthForCloseButton: {:?}, ColorButtonPosition: {:?}, ButtonTextAlign: {:?}, SelectableTextAlign: {:?}, DisplayWindowPadding: {:?}, DisplaySafeAreaPadding: {:?}, MouseCursorScale: {:?}, AntiAliasedLines: {:?}, AntiAliasedLinesUseTex: {:?}, AntiAliasedFill: {:?}, CurveTessellationTol: {:?}, CircleSegmentMaxError: {:?}, Colors: [{}] }}" , self . Alpha , self . WindowPadding , self . WindowRounding , self . WindowBorderSize , self . WindowMinSize , self . WindowTitleAlign , self . WindowMenuButtonPosition , self . ChildRounding , self . ChildBorderSize , self . PopupRounding , self . PopupBorderSize , self . FramePadding , self . FrameRounding , self . FrameBorderSize , self . ItemSpacing , self . ItemInnerSpacing , self . TouchExtraPadding , self . IndentSpacing , self . ColumnsMinSpacing , self . ScrollbarSize , self . ScrollbarRounding , self . GrabMinSize , self . GrabRounding , self . LogSliderDeadzone , self . TabRounding , self . TabBorderSize , self . TabMinWidthForCloseButton , self . ColorButtonPosition , self . ButtonTextAlign , self . SelectableTextAlign , self . DisplayWindowPadding , self . DisplaySafeAreaPadding , self . MouseCursorScale , self . AntiAliasedLines , self . AntiAliasedLinesUseTex , self . AntiAliasedFill , self . CurveTessellationTol , self . CircleSegmentMaxError , self . Colors . iter () . enumerate () . map (| (i , v) | format ! ("{}{:?}" , if i > 0 { ", " } else { "" } , v)) . collect :: < String > ()) } } #[repr(C)] @@ -3322,6 +3325,50 @@ fn bindgen_test_layout_ImGuiOnceUponAFrame() { ); } #[repr(C)] +#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] +pub struct ImGuiTextRange { + pub b: *const ::std::os::raw::c_char, + pub e: *const ::std::os::raw::c_char, +} +#[test] +fn bindgen_test_layout_ImGuiTextRange() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ImGuiTextRange)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ImGuiTextRange)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).b as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImGuiTextRange), + "::", + stringify!(b) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).e as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ImGuiTextRange), + "::", + stringify!(e) + ) + ); +} +impl Default for ImGuiTextRange { + fn default() -> Self { + unsafe { ::std::mem::zeroed() } + } +} +#[repr(C)] #[derive(Copy, Clone)] pub struct ImGuiTextFilter { pub InputBuf: [::std::os::raw::c_char; 256usize], @@ -3425,6 +3472,116 @@ impl Default for ImGuiTextBuffer { } } #[repr(C)] +#[derive(Copy, Clone)] +pub struct ImGuiStoragePair { + pub key: ImGuiID, + pub __bindgen_anon_1: ImGuiStoragePair__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union ImGuiStoragePair__bindgen_ty_1 { + pub val_i: ::std::os::raw::c_int, + pub val_f: f32, + pub val_p: *mut ::std::os::raw::c_void, + _bindgen_union_align: u64, +} +#[test] +fn bindgen_test_layout_ImGuiStoragePair__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(ImGuiStoragePair__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ImGuiStoragePair__bindgen_ty_1)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).val_i as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImGuiStoragePair__bindgen_ty_1), + "::", + stringify!(val_i) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).val_f as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImGuiStoragePair__bindgen_ty_1), + "::", + stringify!(val_f) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).val_p as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImGuiStoragePair__bindgen_ty_1), + "::", + stringify!(val_p) + ) + ); +} +impl Default for ImGuiStoragePair__bindgen_ty_1 { + fn default() -> Self { + unsafe { ::std::mem::zeroed() } + } +} +impl ::std::fmt::Debug for ImGuiStoragePair__bindgen_ty_1 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!(f, "ImGuiStoragePair__bindgen_ty_1 {{ union }}") + } +} +#[test] +fn bindgen_test_layout_ImGuiStoragePair() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ImGuiStoragePair)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ImGuiStoragePair)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).key as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImGuiStoragePair), + "::", + stringify!(key) + ) + ); +} +impl Default for ImGuiStoragePair { + fn default() -> Self { + unsafe { ::std::mem::zeroed() } + } +} +impl ::std::fmt::Debug for ImGuiStoragePair { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!( + f, + "ImGuiStoragePair {{ key: {:?}, __bindgen_anon_1: {:?} }}", + self.key, self.__bindgen_anon_1 + ) + } +} +#[repr(C)] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] pub struct ImGuiStorage { pub Data: ImVector_ImGuiStoragePair, @@ -4892,7 +5049,6 @@ pub struct ImFont { pub IndexLookup: ImVector_ImWchar, pub Glyphs: ImVector_ImFontGlyph, pub FallbackGlyph: *const ImFontGlyph, - pub DisplayOffset: ImVec2, pub ContainerAtlas: *mut ImFontAtlas, pub ConfigData: *const ImFontConfig, pub ConfigDataCount: ::std::os::raw::c_short, @@ -4909,7 +5065,7 @@ pub struct ImFont { fn bindgen_test_layout_ImFont() { assert_eq!( ::std::mem::size_of::(), - 120usize, + 112usize, concat!("Size of: ", stringify!(ImFont)) ); assert_eq!( @@ -4977,19 +5133,9 @@ fn bindgen_test_layout_ImFont() { stringify!(FallbackGlyph) ) ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).DisplayOffset as *const _ as usize }, - 64usize, - concat!( - "Offset of field: ", - stringify!(ImFont), - "::", - stringify!(DisplayOffset) - ) - ); assert_eq!( unsafe { &(*(::std::ptr::null::())).ContainerAtlas as *const _ as usize }, - 72usize, + 64usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -4999,7 +5145,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).ConfigData as *const _ as usize }, - 80usize, + 72usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5009,7 +5155,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).ConfigDataCount as *const _ as usize }, - 88usize, + 80usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5019,7 +5165,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).FallbackChar as *const _ as usize }, - 90usize, + 82usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5029,7 +5175,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).EllipsisChar as *const _ as usize }, - 92usize, + 84usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5039,7 +5185,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).DirtyLookupTables as *const _ as usize }, - 94usize, + 86usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5049,7 +5195,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).Scale as *const _ as usize }, - 96usize, + 88usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5059,7 +5205,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).Ascent as *const _ as usize }, - 100usize, + 92usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5069,7 +5215,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).Descent as *const _ as usize }, - 104usize, + 96usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5079,7 +5225,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).MetricsTotalSurface as *const _ as usize }, - 108usize, + 100usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5089,7 +5235,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).Used4kPagesMap as *const _ as usize }, - 112usize, + 104usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5103,160 +5249,6 @@ impl Default for ImFont { unsafe { ::std::mem::zeroed() } } } -#[repr(C)] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImGuiTextRange { - pub b: *const ::std::os::raw::c_char, - pub e: *const ::std::os::raw::c_char, -} -#[test] -fn bindgen_test_layout_ImGuiTextRange() { - assert_eq!( - ::std::mem::size_of::(), - 16usize, - concat!("Size of: ", stringify!(ImGuiTextRange)) - ); - assert_eq!( - ::std::mem::align_of::(), - 8usize, - concat!("Alignment of ", stringify!(ImGuiTextRange)) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).b as *const _ as usize }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImGuiTextRange), - "::", - stringify!(b) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).e as *const _ as usize }, - 8usize, - concat!( - "Offset of field: ", - stringify!(ImGuiTextRange), - "::", - stringify!(e) - ) - ); -} -impl Default for ImGuiTextRange { - fn default() -> Self { - unsafe { ::std::mem::zeroed() } - } -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct ImGuiStoragePair { - pub key: ImGuiID, - pub __bindgen_anon_1: ImGuiStoragePair__bindgen_ty_1, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub union ImGuiStoragePair__bindgen_ty_1 { - pub val_i: ::std::os::raw::c_int, - pub val_f: f32, - pub val_p: *mut ::std::os::raw::c_void, - _bindgen_union_align: u64, -} -#[test] -fn bindgen_test_layout_ImGuiStoragePair__bindgen_ty_1() { - assert_eq!( - ::std::mem::size_of::(), - 8usize, - concat!("Size of: ", stringify!(ImGuiStoragePair__bindgen_ty_1)) - ); - assert_eq!( - ::std::mem::align_of::(), - 8usize, - concat!("Alignment of ", stringify!(ImGuiStoragePair__bindgen_ty_1)) - ); - assert_eq!( - unsafe { - &(*(::std::ptr::null::())).val_i as *const _ as usize - }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImGuiStoragePair__bindgen_ty_1), - "::", - stringify!(val_i) - ) - ); - assert_eq!( - unsafe { - &(*(::std::ptr::null::())).val_f as *const _ as usize - }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImGuiStoragePair__bindgen_ty_1), - "::", - stringify!(val_f) - ) - ); - assert_eq!( - unsafe { - &(*(::std::ptr::null::())).val_p as *const _ as usize - }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImGuiStoragePair__bindgen_ty_1), - "::", - stringify!(val_p) - ) - ); -} -impl Default for ImGuiStoragePair__bindgen_ty_1 { - fn default() -> Self { - unsafe { ::std::mem::zeroed() } - } -} -impl ::std::fmt::Debug for ImGuiStoragePair__bindgen_ty_1 { - fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { - write!(f, "ImGuiStoragePair__bindgen_ty_1 {{ union }}") - } -} -#[test] -fn bindgen_test_layout_ImGuiStoragePair() { - assert_eq!( - ::std::mem::size_of::(), - 16usize, - concat!("Size of: ", stringify!(ImGuiStoragePair)) - ); - assert_eq!( - ::std::mem::align_of::(), - 8usize, - concat!("Alignment of ", stringify!(ImGuiStoragePair)) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).key as *const _ as usize }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImGuiStoragePair), - "::", - stringify!(key) - ) - ); -} -impl Default for ImGuiStoragePair { - fn default() -> Self { - unsafe { ::std::mem::zeroed() } - } -} -impl ::std::fmt::Debug for ImGuiStoragePair { - fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { - write!( - f, - "ImGuiStoragePair {{ key: {:?}, __bindgen_anon_1: {:?} }}", - self.key, self.__bindgen_anon_1 - ) - } -} extern "C" { pub fn ImVec2_ImVec2Nil() -> *mut ImVec2; } @@ -6512,10 +6504,10 @@ extern "C" { pub fn igOpenPopup(str_id: *const ::std::os::raw::c_char, popup_flags: ImGuiPopupFlags); } extern "C" { - pub fn igOpenPopupContextItem( + pub fn igOpenPopupOnItemClick( str_id: *const ::std::os::raw::c_char, popup_flags: ImGuiPopupFlags, - ) -> bool; + ); } extern "C" { pub fn igCloseCurrentPopup(); @@ -6581,6 +6573,9 @@ extern "C" { extern "C" { pub fn igEndTabItem(); } +extern "C" { + pub fn igTabItemButton(label: *const ::std::os::raw::c_char, flags: ImGuiTabItemFlags) -> bool; +} extern "C" { pub fn igSetTabItemClosed(tab_or_docked_window_label: *const ::std::os::raw::c_char); } @@ -6944,6 +6939,12 @@ extern "C" { text_end: *const ::std::os::raw::c_char, ); } +extern "C" { + pub fn ImGuiInputTextCallbackData_SelectAll(self_: *mut ImGuiInputTextCallbackData); +} +extern "C" { + pub fn ImGuiInputTextCallbackData_ClearSelection(self_: *mut ImGuiInputTextCallbackData); +} extern "C" { pub fn ImGuiInputTextCallbackData_HasSelection(self_: *mut ImGuiInputTextCallbackData) -> bool; } @@ -7155,17 +7156,11 @@ extern "C" { pub fn ImGuiStorage_BuildSortByKey(self_: *mut ImGuiStorage); } extern "C" { - pub fn ImGuiListClipper_ImGuiListClipper( - items_count: ::std::os::raw::c_int, - items_height: f32, - ) -> *mut ImGuiListClipper; + pub fn ImGuiListClipper_ImGuiListClipper() -> *mut ImGuiListClipper; } extern "C" { pub fn ImGuiListClipper_destroy(self_: *mut ImGuiListClipper); } -extern "C" { - pub fn ImGuiListClipper_Step(self_: *mut ImGuiListClipper) -> bool; -} extern "C" { pub fn ImGuiListClipper_Begin( self_: *mut ImGuiListClipper, @@ -7176,6 +7171,9 @@ extern "C" { extern "C" { pub fn ImGuiListClipper_End(self_: *mut ImGuiListClipper); } +extern "C" { + pub fn ImGuiListClipper_Step(self_: *mut ImGuiListClipper) -> bool; +} extern "C" { pub fn ImColor_ImColorNil() -> *mut ImColor; } @@ -7203,7 +7201,7 @@ extern "C" { pub fn ImColor_SetHSV(self_: *mut ImColor, h: f32, s: f32, v: f32, a: f32); } extern "C" { - pub fn ImColor_HSV(pOut: *mut ImColor, self_: *mut ImColor, h: f32, s: f32, v: f32, a: f32); + pub fn ImColor_HSV(pOut: *mut ImColor, h: f32, s: f32, v: f32, a: f32); } extern "C" { pub fn ImDrawCmd_ImDrawCmd() -> *mut ImDrawCmd; @@ -7932,7 +7930,7 @@ extern "C" { extern "C" { pub fn ImFont_AddGlyph( self_: *mut ImFont, - src_cfg: *mut ImFontConfig, + src_cfg: *const ImFontConfig, c: ImWchar, x0: f32, y0: f32, diff --git a/imgui-sys/src/wasm_bindings.rs b/imgui-sys/src/wasm_bindings.rs index 0391eb0..62523cf 100644 --- a/imgui-sys/src/wasm_bindings.rs +++ b/imgui-sys/src/wasm_bindings.rs @@ -141,110 +141,165 @@ pub type ImDrawCallback = ::std::option::Option< pub type ImDrawIdx = ::std::os::raw::c_ushort; #[repr(C)] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_float { +pub struct ImVector_ImDrawChannel { pub Size: ::std::os::raw::c_int, pub Capacity: ::std::os::raw::c_int, - pub Data: *mut f32, + pub Data: *mut ImDrawChannel, } #[test] -fn bindgen_test_layout_ImVector_float() { +fn bindgen_test_layout_ImVector_ImDrawChannel() { assert_eq!( - ::std::mem::size_of::(), + ::std::mem::size_of::(), 16usize, - concat!("Size of: ", stringify!(ImVector_float)) + concat!("Size of: ", stringify!(ImVector_ImDrawChannel)) ); assert_eq!( - ::std::mem::align_of::(), + ::std::mem::align_of::(), 8usize, - concat!("Alignment of ", stringify!(ImVector_float)) + concat!("Alignment of ", stringify!(ImVector_ImDrawChannel)) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, 0usize, concat!( "Offset of field: ", - stringify!(ImVector_float), + stringify!(ImVector_ImDrawChannel), "::", stringify!(Size) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, 4usize, concat!( "Offset of field: ", - stringify!(ImVector_float), + stringify!(ImVector_ImDrawChannel), "::", stringify!(Capacity) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, 8usize, concat!( "Offset of field: ", - stringify!(ImVector_float), + stringify!(ImVector_ImDrawChannel), "::", stringify!(Data) ) ); } -impl Default for ImVector_float { +impl Default for ImVector_ImDrawChannel { fn default() -> Self { unsafe { ::std::mem::zeroed() } } } #[repr(C)] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImWchar { +pub struct ImVector_ImDrawCmd { pub Size: ::std::os::raw::c_int, pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImWchar, + pub Data: *mut ImDrawCmd, } #[test] -fn bindgen_test_layout_ImVector_ImWchar() { +fn bindgen_test_layout_ImVector_ImDrawCmd() { assert_eq!( - ::std::mem::size_of::(), + ::std::mem::size_of::(), 16usize, - concat!("Size of: ", stringify!(ImVector_ImWchar)) + concat!("Size of: ", stringify!(ImVector_ImDrawCmd)) ); assert_eq!( - ::std::mem::align_of::(), + ::std::mem::align_of::(), 8usize, - concat!("Alignment of ", stringify!(ImVector_ImWchar)) + concat!("Alignment of ", stringify!(ImVector_ImDrawCmd)) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, 0usize, concat!( "Offset of field: ", - stringify!(ImVector_ImWchar), + stringify!(ImVector_ImDrawCmd), "::", stringify!(Size) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, 4usize, concat!( "Offset of field: ", - stringify!(ImVector_ImWchar), + stringify!(ImVector_ImDrawCmd), "::", stringify!(Capacity) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, 8usize, concat!( "Offset of field: ", - stringify!(ImVector_ImWchar), + stringify!(ImVector_ImDrawCmd), "::", stringify!(Data) ) ); } -impl Default for ImVector_ImWchar { +impl Default for ImVector_ImDrawCmd { + fn default() -> Self { + unsafe { ::std::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] +pub struct ImVector_ImDrawIdx { + pub Size: ::std::os::raw::c_int, + pub Capacity: ::std::os::raw::c_int, + pub Data: *mut ImDrawIdx, +} +#[test] +fn bindgen_test_layout_ImVector_ImDrawIdx() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ImVector_ImDrawIdx)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ImVector_ImDrawIdx)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImDrawIdx), + "::", + stringify!(Size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImDrawIdx), + "::", + stringify!(Capacity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImDrawIdx), + "::", + stringify!(Data) + ) + ); +} +impl Default for ImVector_ImDrawIdx { fn default() -> Self { unsafe { ::std::mem::zeroed() } } @@ -306,334 +361,55 @@ impl Default for ImVector_ImDrawVert { } #[repr(C)] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImFontGlyph { +pub struct ImVector_ImFontPtr { pub Size: ::std::os::raw::c_int, pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImFontGlyph, + pub Data: *mut *mut ImFont, } #[test] -fn bindgen_test_layout_ImVector_ImFontGlyph() { +fn bindgen_test_layout_ImVector_ImFontPtr() { assert_eq!( - ::std::mem::size_of::(), + ::std::mem::size_of::(), 16usize, - concat!("Size of: ", stringify!(ImVector_ImFontGlyph)) + concat!("Size of: ", stringify!(ImVector_ImFontPtr)) ); assert_eq!( - ::std::mem::align_of::(), + ::std::mem::align_of::(), 8usize, - concat!("Alignment of ", stringify!(ImVector_ImFontGlyph)) + concat!("Alignment of ", stringify!(ImVector_ImFontPtr)) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, 0usize, concat!( "Offset of field: ", - stringify!(ImVector_ImFontGlyph), + stringify!(ImVector_ImFontPtr), "::", stringify!(Size) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, 4usize, concat!( "Offset of field: ", - stringify!(ImVector_ImFontGlyph), + stringify!(ImVector_ImFontPtr), "::", stringify!(Capacity) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, 8usize, concat!( "Offset of field: ", - stringify!(ImVector_ImFontGlyph), + stringify!(ImVector_ImFontPtr), "::", stringify!(Data) ) ); } -impl Default for ImVector_ImFontGlyph { - fn default() -> Self { - unsafe { ::std::mem::zeroed() } - } -} -#[repr(C)] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImGuiTextRange { - pub Size: ::std::os::raw::c_int, - pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImGuiTextRange, -} -#[test] -fn bindgen_test_layout_ImVector_ImGuiTextRange() { - assert_eq!( - ::std::mem::size_of::(), - 16usize, - concat!("Size of: ", stringify!(ImVector_ImGuiTextRange)) - ); - assert_eq!( - ::std::mem::align_of::(), - 8usize, - concat!("Alignment of ", stringify!(ImVector_ImGuiTextRange)) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImGuiTextRange), - "::", - stringify!(Size) - ) - ); - assert_eq!( - unsafe { - &(*(::std::ptr::null::())).Capacity as *const _ as usize - }, - 4usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImGuiTextRange), - "::", - stringify!(Capacity) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, - 8usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImGuiTextRange), - "::", - stringify!(Data) - ) - ); -} -impl Default for ImVector_ImGuiTextRange { - fn default() -> Self { - unsafe { ::std::mem::zeroed() } - } -} -#[repr(C)] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImGuiStoragePair { - pub Size: ::std::os::raw::c_int, - pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImGuiStoragePair, -} -#[test] -fn bindgen_test_layout_ImVector_ImGuiStoragePair() { - assert_eq!( - ::std::mem::size_of::(), - 16usize, - concat!("Size of: ", stringify!(ImVector_ImGuiStoragePair)) - ); - assert_eq!( - ::std::mem::align_of::(), - 8usize, - concat!("Alignment of ", stringify!(ImVector_ImGuiStoragePair)) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImGuiStoragePair), - "::", - stringify!(Size) - ) - ); - assert_eq!( - unsafe { - &(*(::std::ptr::null::())).Capacity as *const _ as usize - }, - 4usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImGuiStoragePair), - "::", - stringify!(Capacity) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, - 8usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImGuiStoragePair), - "::", - stringify!(Data) - ) - ); -} -impl Default for ImVector_ImGuiStoragePair { - fn default() -> Self { - unsafe { ::std::mem::zeroed() } - } -} -#[repr(C)] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImDrawChannel { - pub Size: ::std::os::raw::c_int, - pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImDrawChannel, -} -#[test] -fn bindgen_test_layout_ImVector_ImDrawChannel() { - assert_eq!( - ::std::mem::size_of::(), - 16usize, - concat!("Size of: ", stringify!(ImVector_ImDrawChannel)) - ); - assert_eq!( - ::std::mem::align_of::(), - 8usize, - concat!("Alignment of ", stringify!(ImVector_ImDrawChannel)) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImDrawChannel), - "::", - stringify!(Size) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, - 4usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImDrawChannel), - "::", - stringify!(Capacity) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, - 8usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImDrawChannel), - "::", - stringify!(Data) - ) - ); -} -impl Default for ImVector_ImDrawChannel { - fn default() -> Self { - unsafe { ::std::mem::zeroed() } - } -} -#[repr(C)] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_char { - pub Size: ::std::os::raw::c_int, - pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ::std::os::raw::c_char, -} -#[test] -fn bindgen_test_layout_ImVector_char() { - assert_eq!( - ::std::mem::size_of::(), - 16usize, - concat!("Size of: ", stringify!(ImVector_char)) - ); - assert_eq!( - ::std::mem::align_of::(), - 8usize, - concat!("Alignment of ", stringify!(ImVector_char)) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImVector_char), - "::", - stringify!(Size) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, - 4usize, - concat!( - "Offset of field: ", - stringify!(ImVector_char), - "::", - stringify!(Capacity) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, - 8usize, - concat!( - "Offset of field: ", - stringify!(ImVector_char), - "::", - stringify!(Data) - ) - ); -} -impl Default for ImVector_char { - fn default() -> Self { - unsafe { ::std::mem::zeroed() } - } -} -#[repr(C)] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImU32 { - pub Size: ::std::os::raw::c_int, - pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImU32, -} -#[test] -fn bindgen_test_layout_ImVector_ImU32() { - assert_eq!( - ::std::mem::size_of::(), - 16usize, - concat!("Size of: ", stringify!(ImVector_ImU32)) - ); - assert_eq!( - ::std::mem::align_of::(), - 8usize, - concat!("Alignment of ", stringify!(ImVector_ImU32)) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImU32), - "::", - stringify!(Size) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, - 4usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImU32), - "::", - stringify!(Capacity) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, - 8usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImU32), - "::", - stringify!(Data) - ) - ); -} -impl Default for ImVector_ImU32 { +impl Default for ImVector_ImFontPtr { fn default() -> Self { unsafe { ::std::mem::zeroed() } } @@ -701,61 +477,6 @@ impl Default for ImVector_ImFontAtlasCustomRect { } #[repr(C)] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImTextureID { - pub Size: ::std::os::raw::c_int, - pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImTextureID, -} -#[test] -fn bindgen_test_layout_ImVector_ImTextureID() { - assert_eq!( - ::std::mem::size_of::(), - 16usize, - concat!("Size of: ", stringify!(ImVector_ImTextureID)) - ); - assert_eq!( - ::std::mem::align_of::(), - 8usize, - concat!("Alignment of ", stringify!(ImVector_ImTextureID)) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImTextureID), - "::", - stringify!(Size) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, - 4usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImTextureID), - "::", - stringify!(Capacity) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, - 8usize, - concat!( - "Offset of field: ", - stringify!(ImVector_ImTextureID), - "::", - stringify!(Data) - ) - ); -} -impl Default for ImVector_ImTextureID { - fn default() -> Self { - unsafe { ::std::mem::zeroed() } - } -} -#[repr(C)] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] pub struct ImVector_ImFontConfig { pub Size: ::std::os::raw::c_int, pub Capacity: ::std::os::raw::c_int, @@ -811,110 +532,334 @@ impl Default for ImVector_ImFontConfig { } #[repr(C)] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImFontPtr { +pub struct ImVector_ImFontGlyph { pub Size: ::std::os::raw::c_int, pub Capacity: ::std::os::raw::c_int, - pub Data: *mut *mut ImFont, + pub Data: *mut ImFontGlyph, } #[test] -fn bindgen_test_layout_ImVector_ImFontPtr() { +fn bindgen_test_layout_ImVector_ImFontGlyph() { assert_eq!( - ::std::mem::size_of::(), + ::std::mem::size_of::(), 16usize, - concat!("Size of: ", stringify!(ImVector_ImFontPtr)) + concat!("Size of: ", stringify!(ImVector_ImFontGlyph)) ); assert_eq!( - ::std::mem::align_of::(), + ::std::mem::align_of::(), 8usize, - concat!("Alignment of ", stringify!(ImVector_ImFontPtr)) + concat!("Alignment of ", stringify!(ImVector_ImFontGlyph)) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, 0usize, concat!( "Offset of field: ", - stringify!(ImVector_ImFontPtr), + stringify!(ImVector_ImFontGlyph), "::", stringify!(Size) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, 4usize, concat!( "Offset of field: ", - stringify!(ImVector_ImFontPtr), + stringify!(ImVector_ImFontGlyph), "::", stringify!(Capacity) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, 8usize, concat!( "Offset of field: ", - stringify!(ImVector_ImFontPtr), + stringify!(ImVector_ImFontGlyph), "::", stringify!(Data) ) ); } -impl Default for ImVector_ImFontPtr { +impl Default for ImVector_ImFontGlyph { fn default() -> Self { unsafe { ::std::mem::zeroed() } } } #[repr(C)] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImDrawCmd { +pub struct ImVector_ImGuiStoragePair { pub Size: ::std::os::raw::c_int, pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImDrawCmd, + pub Data: *mut ImGuiStoragePair, } #[test] -fn bindgen_test_layout_ImVector_ImDrawCmd() { +fn bindgen_test_layout_ImVector_ImGuiStoragePair() { assert_eq!( - ::std::mem::size_of::(), + ::std::mem::size_of::(), 16usize, - concat!("Size of: ", stringify!(ImVector_ImDrawCmd)) + concat!("Size of: ", stringify!(ImVector_ImGuiStoragePair)) ); assert_eq!( - ::std::mem::align_of::(), + ::std::mem::align_of::(), 8usize, - concat!("Alignment of ", stringify!(ImVector_ImDrawCmd)) + concat!("Alignment of ", stringify!(ImVector_ImGuiStoragePair)) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, 0usize, concat!( "Offset of field: ", - stringify!(ImVector_ImDrawCmd), + stringify!(ImVector_ImGuiStoragePair), "::", stringify!(Size) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + unsafe { + &(*(::std::ptr::null::())).Capacity as *const _ as usize + }, 4usize, concat!( "Offset of field: ", - stringify!(ImVector_ImDrawCmd), + stringify!(ImVector_ImGuiStoragePair), "::", stringify!(Capacity) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, 8usize, concat!( "Offset of field: ", - stringify!(ImVector_ImDrawCmd), + stringify!(ImVector_ImGuiStoragePair), "::", stringify!(Data) ) ); } -impl Default for ImVector_ImDrawCmd { +impl Default for ImVector_ImGuiStoragePair { + fn default() -> Self { + unsafe { ::std::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] +pub struct ImVector_ImGuiTextRange { + pub Size: ::std::os::raw::c_int, + pub Capacity: ::std::os::raw::c_int, + pub Data: *mut ImGuiTextRange, +} +#[test] +fn bindgen_test_layout_ImVector_ImGuiTextRange() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ImVector_ImGuiTextRange)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ImVector_ImGuiTextRange)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImGuiTextRange), + "::", + stringify!(Size) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).Capacity as *const _ as usize + }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImGuiTextRange), + "::", + stringify!(Capacity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImGuiTextRange), + "::", + stringify!(Data) + ) + ); +} +impl Default for ImVector_ImGuiTextRange { + fn default() -> Self { + unsafe { ::std::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] +pub struct ImVector_ImTextureID { + pub Size: ::std::os::raw::c_int, + pub Capacity: ::std::os::raw::c_int, + pub Data: *mut ImTextureID, +} +#[test] +fn bindgen_test_layout_ImVector_ImTextureID() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ImVector_ImTextureID)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ImVector_ImTextureID)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImTextureID), + "::", + stringify!(Size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImTextureID), + "::", + stringify!(Capacity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImTextureID), + "::", + stringify!(Data) + ) + ); +} +impl Default for ImVector_ImTextureID { + fn default() -> Self { + unsafe { ::std::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] +pub struct ImVector_ImU32 { + pub Size: ::std::os::raw::c_int, + pub Capacity: ::std::os::raw::c_int, + pub Data: *mut ImU32, +} +#[test] +fn bindgen_test_layout_ImVector_ImU32() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ImVector_ImU32)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ImVector_ImU32)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImU32), + "::", + stringify!(Size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImU32), + "::", + stringify!(Capacity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImU32), + "::", + stringify!(Data) + ) + ); +} +impl Default for ImVector_ImU32 { + fn default() -> Self { + unsafe { ::std::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] +pub struct ImVector_ImVec2 { + pub Size: ::std::os::raw::c_int, + pub Capacity: ::std::os::raw::c_int, + pub Data: *mut ImVec2, +} +#[test] +fn bindgen_test_layout_ImVector_ImVec2() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ImVector_ImVec2)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ImVector_ImVec2)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImVec2), + "::", + stringify!(Size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImVec2), + "::", + stringify!(Capacity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ImVector_ImVec2), + "::", + stringify!(Data) + ) + ); +} +impl Default for ImVector_ImVec2 { fn default() -> Self { unsafe { ::std::mem::zeroed() } } @@ -976,110 +921,165 @@ impl Default for ImVector_ImVec4 { } #[repr(C)] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImDrawIdx { +pub struct ImVector_ImWchar { pub Size: ::std::os::raw::c_int, pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImDrawIdx, + pub Data: *mut ImWchar, } #[test] -fn bindgen_test_layout_ImVector_ImDrawIdx() { +fn bindgen_test_layout_ImVector_ImWchar() { assert_eq!( - ::std::mem::size_of::(), + ::std::mem::size_of::(), 16usize, - concat!("Size of: ", stringify!(ImVector_ImDrawIdx)) + concat!("Size of: ", stringify!(ImVector_ImWchar)) ); assert_eq!( - ::std::mem::align_of::(), + ::std::mem::align_of::(), 8usize, - concat!("Alignment of ", stringify!(ImVector_ImDrawIdx)) + concat!("Alignment of ", stringify!(ImVector_ImWchar)) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, 0usize, concat!( "Offset of field: ", - stringify!(ImVector_ImDrawIdx), + stringify!(ImVector_ImWchar), "::", stringify!(Size) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, 4usize, concat!( "Offset of field: ", - stringify!(ImVector_ImDrawIdx), + stringify!(ImVector_ImWchar), "::", stringify!(Capacity) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, 8usize, concat!( "Offset of field: ", - stringify!(ImVector_ImDrawIdx), + stringify!(ImVector_ImWchar), "::", stringify!(Data) ) ); } -impl Default for ImVector_ImDrawIdx { +impl Default for ImVector_ImWchar { fn default() -> Self { unsafe { ::std::mem::zeroed() } } } #[repr(C)] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImVector_ImVec2 { +pub struct ImVector_char { pub Size: ::std::os::raw::c_int, pub Capacity: ::std::os::raw::c_int, - pub Data: *mut ImVec2, + pub Data: *mut ::std::os::raw::c_char, } #[test] -fn bindgen_test_layout_ImVector_ImVec2() { +fn bindgen_test_layout_ImVector_char() { assert_eq!( - ::std::mem::size_of::(), + ::std::mem::size_of::(), 16usize, - concat!("Size of: ", stringify!(ImVector_ImVec2)) + concat!("Size of: ", stringify!(ImVector_char)) ); assert_eq!( - ::std::mem::align_of::(), + ::std::mem::align_of::(), 8usize, - concat!("Alignment of ", stringify!(ImVector_ImVec2)) + concat!("Alignment of ", stringify!(ImVector_char)) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, 0usize, concat!( "Offset of field: ", - stringify!(ImVector_ImVec2), + stringify!(ImVector_char), "::", stringify!(Size) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, 4usize, concat!( "Offset of field: ", - stringify!(ImVector_ImVec2), + stringify!(ImVector_char), "::", stringify!(Capacity) ) ); assert_eq!( - unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, 8usize, concat!( "Offset of field: ", - stringify!(ImVector_ImVec2), + stringify!(ImVector_char), "::", stringify!(Data) ) ); } -impl Default for ImVector_ImVec2 { +impl Default for ImVector_char { + fn default() -> Self { + unsafe { ::std::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] +pub struct ImVector_float { + pub Size: ::std::os::raw::c_int, + pub Capacity: ::std::os::raw::c_int, + pub Data: *mut f32, +} +#[test] +fn bindgen_test_layout_ImVector_float() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ImVector_float)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ImVector_float)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Size as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImVector_float), + "::", + stringify!(Size) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Capacity as *const _ as usize }, + 4usize, + concat!( + "Offset of field: ", + stringify!(ImVector_float), + "::", + stringify!(Capacity) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).Data as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ImVector_float), + "::", + stringify!(Data) + ) + ); +} +impl Default for ImVector_float { fn default() -> Self { unsafe { ::std::mem::zeroed() } } @@ -1205,6 +1205,7 @@ pub const ImGuiInputTextFlags_Password: ImGuiInputTextFlags_ = 32768; pub const ImGuiInputTextFlags_NoUndoRedo: ImGuiInputTextFlags_ = 65536; pub const ImGuiInputTextFlags_CharsScientific: ImGuiInputTextFlags_ = 131072; pub const ImGuiInputTextFlags_CallbackResize: ImGuiInputTextFlags_ = 262144; +pub const ImGuiInputTextFlags_CallbackEdit: ImGuiInputTextFlags_ = 524288; pub const ImGuiInputTextFlags_Multiline: ImGuiInputTextFlags_ = 1048576; pub const ImGuiInputTextFlags_NoMarkEdited: ImGuiInputTextFlags_ = 2097152; pub type ImGuiInputTextFlags_ = ::std::os::raw::c_uint; @@ -1272,6 +1273,9 @@ pub const ImGuiTabItemFlags_SetSelected: ImGuiTabItemFlags_ = 2; pub const ImGuiTabItemFlags_NoCloseWithMiddleMouseButton: ImGuiTabItemFlags_ = 4; pub const ImGuiTabItemFlags_NoPushId: ImGuiTabItemFlags_ = 8; pub const ImGuiTabItemFlags_NoTooltip: ImGuiTabItemFlags_ = 16; +pub const ImGuiTabItemFlags_NoReorder: ImGuiTabItemFlags_ = 32; +pub const ImGuiTabItemFlags_Leading: ImGuiTabItemFlags_ = 64; +pub const ImGuiTabItemFlags_Trailing: ImGuiTabItemFlags_ = 128; pub type ImGuiTabItemFlags_ = ::std::os::raw::c_uint; pub const ImGuiFocusedFlags_None: ImGuiFocusedFlags_ = 0; pub const ImGuiFocusedFlags_ChildWindows: ImGuiFocusedFlags_ = 1; @@ -1504,7 +1508,7 @@ pub const ImGuiColorEditFlags__PickerMask: ImGuiColorEditFlags_ = 100663296; pub const ImGuiColorEditFlags__InputMask: ImGuiColorEditFlags_ = 402653184; pub type ImGuiColorEditFlags_ = ::std::os::raw::c_uint; pub const ImGuiSliderFlags_None: ImGuiSliderFlags_ = 0; -pub const ImGuiSliderFlags_ClampOnInput: ImGuiSliderFlags_ = 16; +pub const ImGuiSliderFlags_AlwaysClamp: ImGuiSliderFlags_ = 16; pub const ImGuiSliderFlags_Logarithmic: ImGuiSliderFlags_ = 32; pub const ImGuiSliderFlags_NoRoundToFormat: ImGuiSliderFlags_ = 64; pub const ImGuiSliderFlags_NoInput: ImGuiSliderFlags_ = 128; @@ -1562,7 +1566,7 @@ pub struct ImGuiStyle { pub LogSliderDeadzone: f32, pub TabRounding: f32, pub TabBorderSize: f32, - pub TabMinWidthForUnselectedCloseButton: f32, + pub TabMinWidthForCloseButton: f32, pub ColorButtonPosition: ImGuiDir, pub ButtonTextAlign: ImVec2, pub SelectableTextAlign: ImVec2, @@ -1852,15 +1856,14 @@ fn bindgen_test_layout_ImGuiStyle() { ); assert_eq!( unsafe { - &(*(::std::ptr::null::())).TabMinWidthForUnselectedCloseButton as *const _ - as usize + &(*(::std::ptr::null::())).TabMinWidthForCloseButton as *const _ as usize }, 132usize, concat!( "Offset of field: ", stringify!(ImGuiStyle), "::", - stringify!(TabMinWidthForUnselectedCloseButton) + stringify!(TabMinWidthForCloseButton) ) ); assert_eq!( @@ -1997,7 +2000,7 @@ impl Default for ImGuiStyle { } impl ::std::fmt::Debug for ImGuiStyle { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { - write ! (f , "ImGuiStyle {{ Alpha: {:?}, WindowPadding: {:?}, WindowRounding: {:?}, WindowBorderSize: {:?}, WindowMinSize: {:?}, WindowTitleAlign: {:?}, WindowMenuButtonPosition: {:?}, ChildRounding: {:?}, ChildBorderSize: {:?}, PopupRounding: {:?}, PopupBorderSize: {:?}, FramePadding: {:?}, FrameRounding: {:?}, FrameBorderSize: {:?}, ItemSpacing: {:?}, ItemInnerSpacing: {:?}, TouchExtraPadding: {:?}, IndentSpacing: {:?}, ColumnsMinSpacing: {:?}, ScrollbarSize: {:?}, ScrollbarRounding: {:?}, GrabMinSize: {:?}, GrabRounding: {:?}, LogSliderDeadzone: {:?}, TabRounding: {:?}, TabBorderSize: {:?}, TabMinWidthForUnselectedCloseButton: {:?}, ColorButtonPosition: {:?}, ButtonTextAlign: {:?}, SelectableTextAlign: {:?}, DisplayWindowPadding: {:?}, DisplaySafeAreaPadding: {:?}, MouseCursorScale: {:?}, AntiAliasedLines: {:?}, AntiAliasedLinesUseTex: {:?}, AntiAliasedFill: {:?}, CurveTessellationTol: {:?}, CircleSegmentMaxError: {:?}, Colors: [{}] }}" , self . Alpha , self . WindowPadding , self . WindowRounding , self . WindowBorderSize , self . WindowMinSize , self . WindowTitleAlign , self . WindowMenuButtonPosition , self . ChildRounding , self . ChildBorderSize , self . PopupRounding , self . PopupBorderSize , self . FramePadding , self . FrameRounding , self . FrameBorderSize , self . ItemSpacing , self . ItemInnerSpacing , self . TouchExtraPadding , self . IndentSpacing , self . ColumnsMinSpacing , self . ScrollbarSize , self . ScrollbarRounding , self . GrabMinSize , self . GrabRounding , self . LogSliderDeadzone , self . TabRounding , self . TabBorderSize , self . TabMinWidthForUnselectedCloseButton , self . ColorButtonPosition , self . ButtonTextAlign , self . SelectableTextAlign , self . DisplayWindowPadding , self . DisplaySafeAreaPadding , self . MouseCursorScale , self . AntiAliasedLines , self . AntiAliasedLinesUseTex , self . AntiAliasedFill , self . CurveTessellationTol , self . CircleSegmentMaxError , self . Colors . iter () . enumerate () . map (| (i , v) | format ! ("{}{:?}" , if i > 0 { ", " } else { "" } , v)) . collect :: < String > ()) + write ! (f , "ImGuiStyle {{ Alpha: {:?}, WindowPadding: {:?}, WindowRounding: {:?}, WindowBorderSize: {:?}, WindowMinSize: {:?}, WindowTitleAlign: {:?}, WindowMenuButtonPosition: {:?}, ChildRounding: {:?}, ChildBorderSize: {:?}, PopupRounding: {:?}, PopupBorderSize: {:?}, FramePadding: {:?}, FrameRounding: {:?}, FrameBorderSize: {:?}, ItemSpacing: {:?}, ItemInnerSpacing: {:?}, TouchExtraPadding: {:?}, IndentSpacing: {:?}, ColumnsMinSpacing: {:?}, ScrollbarSize: {:?}, ScrollbarRounding: {:?}, GrabMinSize: {:?}, GrabRounding: {:?}, LogSliderDeadzone: {:?}, TabRounding: {:?}, TabBorderSize: {:?}, TabMinWidthForCloseButton: {:?}, ColorButtonPosition: {:?}, ButtonTextAlign: {:?}, SelectableTextAlign: {:?}, DisplayWindowPadding: {:?}, DisplaySafeAreaPadding: {:?}, MouseCursorScale: {:?}, AntiAliasedLines: {:?}, AntiAliasedLinesUseTex: {:?}, AntiAliasedFill: {:?}, CurveTessellationTol: {:?}, CircleSegmentMaxError: {:?}, Colors: [{}] }}" , self . Alpha , self . WindowPadding , self . WindowRounding , self . WindowBorderSize , self . WindowMinSize , self . WindowTitleAlign , self . WindowMenuButtonPosition , self . ChildRounding , self . ChildBorderSize , self . PopupRounding , self . PopupBorderSize , self . FramePadding , self . FrameRounding , self . FrameBorderSize , self . ItemSpacing , self . ItemInnerSpacing , self . TouchExtraPadding , self . IndentSpacing , self . ColumnsMinSpacing , self . ScrollbarSize , self . ScrollbarRounding , self . GrabMinSize , self . GrabRounding , self . LogSliderDeadzone , self . TabRounding , self . TabBorderSize , self . TabMinWidthForCloseButton , self . ColorButtonPosition , self . ButtonTextAlign , self . SelectableTextAlign , self . DisplayWindowPadding , self . DisplaySafeAreaPadding , self . MouseCursorScale , self . AntiAliasedLines , self . AntiAliasedLinesUseTex , self . AntiAliasedFill , self . CurveTessellationTol , self . CircleSegmentMaxError , self . Colors . iter () . enumerate () . map (| (i , v) | format ! ("{}{:?}" , if i > 0 { ", " } else { "" } , v)) . collect :: < String > ()) } } #[repr(C)] @@ -3322,6 +3325,50 @@ fn bindgen_test_layout_ImGuiOnceUponAFrame() { ); } #[repr(C)] +#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] +pub struct ImGuiTextRange { + pub b: *const ::std::os::raw::c_char, + pub e: *const ::std::os::raw::c_char, +} +#[test] +fn bindgen_test_layout_ImGuiTextRange() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ImGuiTextRange)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ImGuiTextRange)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).b as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImGuiTextRange), + "::", + stringify!(b) + ) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).e as *const _ as usize }, + 8usize, + concat!( + "Offset of field: ", + stringify!(ImGuiTextRange), + "::", + stringify!(e) + ) + ); +} +impl Default for ImGuiTextRange { + fn default() -> Self { + unsafe { ::std::mem::zeroed() } + } +} +#[repr(C)] #[derive(Copy, Clone)] pub struct ImGuiTextFilter { pub InputBuf: [::std::os::raw::c_char; 256usize], @@ -3425,6 +3472,116 @@ impl Default for ImGuiTextBuffer { } } #[repr(C)] +#[derive(Copy, Clone)] +pub struct ImGuiStoragePair { + pub key: ImGuiID, + pub __bindgen_anon_1: ImGuiStoragePair__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union ImGuiStoragePair__bindgen_ty_1 { + pub val_i: ::std::os::raw::c_int, + pub val_f: f32, + pub val_p: *mut ::std::os::raw::c_void, + _bindgen_union_align: u64, +} +#[test] +fn bindgen_test_layout_ImGuiStoragePair__bindgen_ty_1() { + assert_eq!( + ::std::mem::size_of::(), + 8usize, + concat!("Size of: ", stringify!(ImGuiStoragePair__bindgen_ty_1)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ImGuiStoragePair__bindgen_ty_1)) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).val_i as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImGuiStoragePair__bindgen_ty_1), + "::", + stringify!(val_i) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).val_f as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImGuiStoragePair__bindgen_ty_1), + "::", + stringify!(val_f) + ) + ); + assert_eq!( + unsafe { + &(*(::std::ptr::null::())).val_p as *const _ as usize + }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImGuiStoragePair__bindgen_ty_1), + "::", + stringify!(val_p) + ) + ); +} +impl Default for ImGuiStoragePair__bindgen_ty_1 { + fn default() -> Self { + unsafe { ::std::mem::zeroed() } + } +} +impl ::std::fmt::Debug for ImGuiStoragePair__bindgen_ty_1 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!(f, "ImGuiStoragePair__bindgen_ty_1 {{ union }}") + } +} +#[test] +fn bindgen_test_layout_ImGuiStoragePair() { + assert_eq!( + ::std::mem::size_of::(), + 16usize, + concat!("Size of: ", stringify!(ImGuiStoragePair)) + ); + assert_eq!( + ::std::mem::align_of::(), + 8usize, + concat!("Alignment of ", stringify!(ImGuiStoragePair)) + ); + assert_eq!( + unsafe { &(*(::std::ptr::null::())).key as *const _ as usize }, + 0usize, + concat!( + "Offset of field: ", + stringify!(ImGuiStoragePair), + "::", + stringify!(key) + ) + ); +} +impl Default for ImGuiStoragePair { + fn default() -> Self { + unsafe { ::std::mem::zeroed() } + } +} +impl ::std::fmt::Debug for ImGuiStoragePair { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!( + f, + "ImGuiStoragePair {{ key: {:?}, __bindgen_anon_1: {:?} }}", + self.key, self.__bindgen_anon_1 + ) + } +} +#[repr(C)] #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] pub struct ImGuiStorage { pub Data: ImVector_ImGuiStoragePair, @@ -4892,7 +5049,6 @@ pub struct ImFont { pub IndexLookup: ImVector_ImWchar, pub Glyphs: ImVector_ImFontGlyph, pub FallbackGlyph: *const ImFontGlyph, - pub DisplayOffset: ImVec2, pub ContainerAtlas: *mut ImFontAtlas, pub ConfigData: *const ImFontConfig, pub ConfigDataCount: ::std::os::raw::c_short, @@ -4909,7 +5065,7 @@ pub struct ImFont { fn bindgen_test_layout_ImFont() { assert_eq!( ::std::mem::size_of::(), - 120usize, + 112usize, concat!("Size of: ", stringify!(ImFont)) ); assert_eq!( @@ -4977,19 +5133,9 @@ fn bindgen_test_layout_ImFont() { stringify!(FallbackGlyph) ) ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).DisplayOffset as *const _ as usize }, - 64usize, - concat!( - "Offset of field: ", - stringify!(ImFont), - "::", - stringify!(DisplayOffset) - ) - ); assert_eq!( unsafe { &(*(::std::ptr::null::())).ContainerAtlas as *const _ as usize }, - 72usize, + 64usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -4999,7 +5145,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).ConfigData as *const _ as usize }, - 80usize, + 72usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5009,7 +5155,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).ConfigDataCount as *const _ as usize }, - 88usize, + 80usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5019,7 +5165,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).FallbackChar as *const _ as usize }, - 90usize, + 82usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5029,7 +5175,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).EllipsisChar as *const _ as usize }, - 92usize, + 84usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5039,7 +5185,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).DirtyLookupTables as *const _ as usize }, - 94usize, + 86usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5049,7 +5195,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).Scale as *const _ as usize }, - 96usize, + 88usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5059,7 +5205,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).Ascent as *const _ as usize }, - 100usize, + 92usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5069,7 +5215,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).Descent as *const _ as usize }, - 104usize, + 96usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5079,7 +5225,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).MetricsTotalSurface as *const _ as usize }, - 108usize, + 100usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5089,7 +5235,7 @@ fn bindgen_test_layout_ImFont() { ); assert_eq!( unsafe { &(*(::std::ptr::null::())).Used4kPagesMap as *const _ as usize }, - 112usize, + 104usize, concat!( "Offset of field: ", stringify!(ImFont), @@ -5103,160 +5249,6 @@ impl Default for ImFont { unsafe { ::std::mem::zeroed() } } } -#[repr(C)] -#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -pub struct ImGuiTextRange { - pub b: *const ::std::os::raw::c_char, - pub e: *const ::std::os::raw::c_char, -} -#[test] -fn bindgen_test_layout_ImGuiTextRange() { - assert_eq!( - ::std::mem::size_of::(), - 16usize, - concat!("Size of: ", stringify!(ImGuiTextRange)) - ); - assert_eq!( - ::std::mem::align_of::(), - 8usize, - concat!("Alignment of ", stringify!(ImGuiTextRange)) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).b as *const _ as usize }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImGuiTextRange), - "::", - stringify!(b) - ) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).e as *const _ as usize }, - 8usize, - concat!( - "Offset of field: ", - stringify!(ImGuiTextRange), - "::", - stringify!(e) - ) - ); -} -impl Default for ImGuiTextRange { - fn default() -> Self { - unsafe { ::std::mem::zeroed() } - } -} -#[repr(C)] -#[derive(Copy, Clone)] -pub struct ImGuiStoragePair { - pub key: ImGuiID, - pub __bindgen_anon_1: ImGuiStoragePair__bindgen_ty_1, -} -#[repr(C)] -#[derive(Copy, Clone)] -pub union ImGuiStoragePair__bindgen_ty_1 { - pub val_i: ::std::os::raw::c_int, - pub val_f: f32, - pub val_p: *mut ::std::os::raw::c_void, - _bindgen_union_align: u64, -} -#[test] -fn bindgen_test_layout_ImGuiStoragePair__bindgen_ty_1() { - assert_eq!( - ::std::mem::size_of::(), - 8usize, - concat!("Size of: ", stringify!(ImGuiStoragePair__bindgen_ty_1)) - ); - assert_eq!( - ::std::mem::align_of::(), - 8usize, - concat!("Alignment of ", stringify!(ImGuiStoragePair__bindgen_ty_1)) - ); - assert_eq!( - unsafe { - &(*(::std::ptr::null::())).val_i as *const _ as usize - }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImGuiStoragePair__bindgen_ty_1), - "::", - stringify!(val_i) - ) - ); - assert_eq!( - unsafe { - &(*(::std::ptr::null::())).val_f as *const _ as usize - }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImGuiStoragePair__bindgen_ty_1), - "::", - stringify!(val_f) - ) - ); - assert_eq!( - unsafe { - &(*(::std::ptr::null::())).val_p as *const _ as usize - }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImGuiStoragePair__bindgen_ty_1), - "::", - stringify!(val_p) - ) - ); -} -impl Default for ImGuiStoragePair__bindgen_ty_1 { - fn default() -> Self { - unsafe { ::std::mem::zeroed() } - } -} -impl ::std::fmt::Debug for ImGuiStoragePair__bindgen_ty_1 { - fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { - write!(f, "ImGuiStoragePair__bindgen_ty_1 {{ union }}") - } -} -#[test] -fn bindgen_test_layout_ImGuiStoragePair() { - assert_eq!( - ::std::mem::size_of::(), - 16usize, - concat!("Size of: ", stringify!(ImGuiStoragePair)) - ); - assert_eq!( - ::std::mem::align_of::(), - 8usize, - concat!("Alignment of ", stringify!(ImGuiStoragePair)) - ); - assert_eq!( - unsafe { &(*(::std::ptr::null::())).key as *const _ as usize }, - 0usize, - concat!( - "Offset of field: ", - stringify!(ImGuiStoragePair), - "::", - stringify!(key) - ) - ); -} -impl Default for ImGuiStoragePair { - fn default() -> Self { - unsafe { ::std::mem::zeroed() } - } -} -impl ::std::fmt::Debug for ImGuiStoragePair { - fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { - write!( - f, - "ImGuiStoragePair {{ key: {:?}, __bindgen_anon_1: {:?} }}", - self.key, self.__bindgen_anon_1 - ) - } -} #[link(wasm_import_module = "imgui-sys-v0")] extern "C" { pub fn ImVec2_ImVec2Nil() -> *mut ImVec2; @@ -6754,10 +6746,10 @@ extern "C" { } #[link(wasm_import_module = "imgui-sys-v0")] extern "C" { - pub fn igOpenPopupContextItem( + pub fn igOpenPopupOnItemClick( str_id: *const ::std::os::raw::c_char, popup_flags: ImGuiPopupFlags, - ) -> bool; + ); } #[link(wasm_import_module = "imgui-sys-v0")] extern "C" { @@ -6841,6 +6833,10 @@ extern "C" { pub fn igEndTabItem(); } #[link(wasm_import_module = "imgui-sys-v0")] +extern "C" { + pub fn igTabItemButton(label: *const ::std::os::raw::c_char, flags: ImGuiTabItemFlags) -> bool; +} +#[link(wasm_import_module = "imgui-sys-v0")] extern "C" { pub fn igSetTabItemClosed(tab_or_docked_window_label: *const ::std::os::raw::c_char); } @@ -7300,6 +7296,14 @@ extern "C" { ); } #[link(wasm_import_module = "imgui-sys-v0")] +extern "C" { + pub fn ImGuiInputTextCallbackData_SelectAll(self_: *mut ImGuiInputTextCallbackData); +} +#[link(wasm_import_module = "imgui-sys-v0")] +extern "C" { + pub fn ImGuiInputTextCallbackData_ClearSelection(self_: *mut ImGuiInputTextCallbackData); +} +#[link(wasm_import_module = "imgui-sys-v0")] extern "C" { pub fn ImGuiInputTextCallbackData_HasSelection(self_: *mut ImGuiInputTextCallbackData) -> bool; } @@ -7561,20 +7565,13 @@ extern "C" { } #[link(wasm_import_module = "imgui-sys-v0")] extern "C" { - pub fn ImGuiListClipper_ImGuiListClipper( - items_count: ::std::os::raw::c_int, - items_height: f32, - ) -> *mut ImGuiListClipper; + pub fn ImGuiListClipper_ImGuiListClipper() -> *mut ImGuiListClipper; } #[link(wasm_import_module = "imgui-sys-v0")] extern "C" { pub fn ImGuiListClipper_destroy(self_: *mut ImGuiListClipper); } #[link(wasm_import_module = "imgui-sys-v0")] -extern "C" { - pub fn ImGuiListClipper_Step(self_: *mut ImGuiListClipper) -> bool; -} -#[link(wasm_import_module = "imgui-sys-v0")] extern "C" { pub fn ImGuiListClipper_Begin( self_: *mut ImGuiListClipper, @@ -7587,6 +7584,10 @@ extern "C" { pub fn ImGuiListClipper_End(self_: *mut ImGuiListClipper); } #[link(wasm_import_module = "imgui-sys-v0")] +extern "C" { + pub fn ImGuiListClipper_Step(self_: *mut ImGuiListClipper) -> bool; +} +#[link(wasm_import_module = "imgui-sys-v0")] extern "C" { pub fn ImColor_ImColorNil() -> *mut ImColor; } @@ -7621,7 +7622,7 @@ extern "C" { } #[link(wasm_import_module = "imgui-sys-v0")] extern "C" { - pub fn ImColor_HSV(pOut: *mut ImColor, self_: *mut ImColor, h: f32, s: f32, v: f32, a: f32); + pub fn ImColor_HSV(pOut: *mut ImColor, h: f32, s: f32, v: f32, a: f32); } #[link(wasm_import_module = "imgui-sys-v0")] extern "C" { @@ -8481,7 +8482,7 @@ extern "C" { extern "C" { pub fn ImFont_AddGlyph( self_: *mut ImFont, - src_cfg: *mut ImFontConfig, + src_cfg: *const ImFontConfig, c: ImWchar, x0: f32, y0: f32, diff --git a/imgui-sys/third-party/cimgui.cpp b/imgui-sys/third-party/cimgui.cpp index 866016c..9d3ffdf 100644 --- a/imgui-sys/third-party/cimgui.cpp +++ b/imgui-sys/third-party/cimgui.cpp @@ -1,7 +1,10 @@ //This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui -//based on imgui.h file version "1.78" from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.79" from Dear ImGui https://github.com/ocornut/imgui #include "./imgui/imgui.h" +#ifdef CIMGUI_FREETYPE +#include "./imgui/misc/freetype/imgui_freetype.h" +#endif #include "./imgui/imgui_internal.h" #include "cimgui.h" @@ -1052,9 +1055,9 @@ CIMGUI_API void igOpenPopup(const char* str_id,ImGuiPopupFlags popup_flags) { return ImGui::OpenPopup(str_id,popup_flags); } -CIMGUI_API bool igOpenPopupContextItem(const char* str_id,ImGuiPopupFlags popup_flags) +CIMGUI_API void igOpenPopupOnItemClick(const char* str_id,ImGuiPopupFlags popup_flags) { - return ImGui::OpenPopupContextItem(str_id,popup_flags); + return ImGui::OpenPopupOnItemClick(str_id,popup_flags); } CIMGUI_API void igCloseCurrentPopup() { @@ -1124,6 +1127,10 @@ CIMGUI_API void igEndTabItem() { return ImGui::EndTabItem(); } +CIMGUI_API bool igTabItemButton(const char* label,ImGuiTabItemFlags flags) +{ + return ImGui::TabItemButton(label,flags); +} CIMGUI_API void igSetTabItemClosed(const char* tab_or_docked_window_label) { return ImGui::SetTabItemClosed(tab_or_docked_window_label); @@ -1508,6 +1515,14 @@ CIMGUI_API void ImGuiInputTextCallbackData_InsertChars(ImGuiInputTextCallbackDat { return self->InsertChars(pos,text,text_end); } +CIMGUI_API void ImGuiInputTextCallbackData_SelectAll(ImGuiInputTextCallbackData* self) +{ + return self->SelectAll(); +} +CIMGUI_API void ImGuiInputTextCallbackData_ClearSelection(ImGuiInputTextCallbackData* self) +{ + return self->ClearSelection(); +} CIMGUI_API bool ImGuiInputTextCallbackData_HasSelection(ImGuiInputTextCallbackData* self) { return self->HasSelection(); @@ -1712,18 +1727,14 @@ CIMGUI_API void ImGuiStorage_BuildSortByKey(ImGuiStorage* self) { return self->BuildSortByKey(); } -CIMGUI_API ImGuiListClipper* ImGuiListClipper_ImGuiListClipper(int items_count,float items_height) +CIMGUI_API ImGuiListClipper* ImGuiListClipper_ImGuiListClipper(void) { - return IM_NEW(ImGuiListClipper)(items_count,items_height); + return IM_NEW(ImGuiListClipper)(); } CIMGUI_API void ImGuiListClipper_destroy(ImGuiListClipper* self) { IM_DELETE(self); } -CIMGUI_API bool ImGuiListClipper_Step(ImGuiListClipper* self) -{ - return self->Step(); -} CIMGUI_API void ImGuiListClipper_Begin(ImGuiListClipper* self,int items_count,float items_height) { return self->Begin(items_count,items_height); @@ -1732,6 +1743,10 @@ CIMGUI_API void ImGuiListClipper_End(ImGuiListClipper* self) { return self->End(); } +CIMGUI_API bool ImGuiListClipper_Step(ImGuiListClipper* self) +{ + return self->Step(); +} CIMGUI_API ImColor* ImColor_ImColorNil(void) { return IM_NEW(ImColor)(); @@ -1760,9 +1775,9 @@ CIMGUI_API void ImColor_SetHSV(ImColor* self,float h,float s,float v,float a) { return self->SetHSV(h,s,v,a); } -CIMGUI_API void ImColor_HSV(ImColor *pOut,ImColor* self,float h,float s,float v,float a) +CIMGUI_API void ImColor_HSV(ImColor *pOut,float h,float s,float v,float a) { - *pOut = self->HSV(h,s,v,a); + *pOut = ImColor::HSV(h,s,v,a); } CIMGUI_API ImDrawCmd* ImDrawCmd_ImDrawCmd(void) { @@ -2284,7 +2299,7 @@ CIMGUI_API void ImFont_GrowIndex(ImFont* self,int new_size) { return self->GrowIndex(new_size); } -CIMGUI_API void ImFont_AddGlyph(ImFont* self,ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x) +CIMGUI_API void ImFont_AddGlyph(ImFont* self,const ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x) { return self->AddGlyph(src_cfg,c,x0,y0,x1,y1,u0,v0,u1,v1,advance_x); } diff --git a/imgui-sys/third-party/cimgui.h b/imgui-sys/third-party/cimgui.h index 06686ce..3e41139 100644 --- a/imgui-sys/third-party/cimgui.h +++ b/imgui-sys/third-party/cimgui.h @@ -1,5 +1,5 @@ //This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui -//based on imgui.h file version "1.78" from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.79" from Dear ImGui https://github.com/ocornut/imgui #ifndef CIMGUI_INCLUDED #define CIMGUI_INCLUDED #include @@ -41,9 +41,9 @@ typedef unsigned __int64 ImU64; #ifdef CIMGUI_DEFINE_ENUMS_AND_STRUCTS +typedef struct ImFontAtlasCustomRect ImFontAtlasCustomRect; typedef struct ImGuiStoragePair ImGuiStoragePair; typedef struct ImGuiTextRange ImGuiTextRange; -typedef struct ImFontAtlasCustomRect ImFontAtlasCustomRect; typedef struct ImVec4 ImVec4; typedef struct ImVec2 ImVec2; typedef struct ImGuiTextFilter ImGuiTextFilter; @@ -70,6 +70,7 @@ typedef struct ImDrawList ImDrawList; typedef struct ImDrawData ImDrawData; typedef struct ImDrawCmd ImDrawCmd; typedef struct ImDrawChannel ImDrawChannel; + struct ImDrawChannel; struct ImDrawCmd; struct ImDrawData; @@ -141,23 +142,23 @@ typedef uint64_t ImU64; typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); typedef unsigned short ImDrawIdx; typedef struct ImVector{int Size;int Capacity;void* Data;} ImVector; -typedef struct ImVector_float {int Size;int Capacity;float* Data;} ImVector_float; -typedef struct ImVector_ImWchar {int Size;int Capacity;ImWchar* Data;} ImVector_ImWchar; -typedef struct ImVector_ImDrawVert {int Size;int Capacity;ImDrawVert* Data;} ImVector_ImDrawVert; -typedef struct ImVector_ImFontGlyph {int Size;int Capacity;ImFontGlyph* Data;} ImVector_ImFontGlyph; -typedef struct ImVector_ImGuiTextRange {int Size;int Capacity;ImGuiTextRange* Data;} ImVector_ImGuiTextRange; -typedef struct ImVector_ImGuiStoragePair {int Size;int Capacity;ImGuiStoragePair* Data;} ImVector_ImGuiStoragePair; typedef struct ImVector_ImDrawChannel {int Size;int Capacity;ImDrawChannel* Data;} ImVector_ImDrawChannel; -typedef struct ImVector_char {int Size;int Capacity;char* Data;} ImVector_char; -typedef struct ImVector_ImU32 {int Size;int Capacity;ImU32* Data;} ImVector_ImU32; -typedef struct ImVector_ImFontAtlasCustomRect {int Size;int Capacity;ImFontAtlasCustomRect* Data;} ImVector_ImFontAtlasCustomRect; -typedef struct ImVector_ImTextureID {int Size;int Capacity;ImTextureID* Data;} ImVector_ImTextureID; -typedef struct ImVector_ImFontConfig {int Size;int Capacity;ImFontConfig* Data;} ImVector_ImFontConfig; -typedef struct ImVector_ImFontPtr {int Size;int Capacity;ImFont** Data;} ImVector_ImFontPtr; typedef struct ImVector_ImDrawCmd {int Size;int Capacity;ImDrawCmd* Data;} ImVector_ImDrawCmd; -typedef struct ImVector_ImVec4 {int Size;int Capacity;ImVec4* Data;} ImVector_ImVec4; typedef struct ImVector_ImDrawIdx {int Size;int Capacity;ImDrawIdx* Data;} ImVector_ImDrawIdx; +typedef struct ImVector_ImDrawVert {int Size;int Capacity;ImDrawVert* Data;} ImVector_ImDrawVert; +typedef struct ImVector_ImFontPtr {int Size;int Capacity;ImFont** Data;} ImVector_ImFontPtr; +typedef struct ImVector_ImFontAtlasCustomRect {int Size;int Capacity;ImFontAtlasCustomRect* Data;} ImVector_ImFontAtlasCustomRect; +typedef struct ImVector_ImFontConfig {int Size;int Capacity;ImFontConfig* Data;} ImVector_ImFontConfig; +typedef struct ImVector_ImFontGlyph {int Size;int Capacity;ImFontGlyph* Data;} ImVector_ImFontGlyph; +typedef struct ImVector_ImGuiStoragePair {int Size;int Capacity;ImGuiStoragePair* Data;} ImVector_ImGuiStoragePair; +typedef struct ImVector_ImGuiTextRange {int Size;int Capacity;ImGuiTextRange* Data;} ImVector_ImGuiTextRange; +typedef struct ImVector_ImTextureID {int Size;int Capacity;ImTextureID* Data;} ImVector_ImTextureID; +typedef struct ImVector_ImU32 {int Size;int Capacity;ImU32* Data;} ImVector_ImU32; typedef struct ImVector_ImVec2 {int Size;int Capacity;ImVec2* Data;} ImVector_ImVec2; +typedef struct ImVector_ImVec4 {int Size;int Capacity;ImVec4* Data;} ImVector_ImVec4; +typedef struct ImVector_ImWchar {int Size;int Capacity;ImWchar* Data;} ImVector_ImWchar; +typedef struct ImVector_char {int Size;int Capacity;char* Data;} ImVector_char; +typedef struct ImVector_float {int Size;int Capacity;float* Data;} ImVector_float; struct ImVec2 { @@ -220,6 +221,7 @@ typedef enum { ImGuiInputTextFlags_NoUndoRedo = 1 << 16, ImGuiInputTextFlags_CharsScientific = 1 << 17, ImGuiInputTextFlags_CallbackResize = 1 << 18, + ImGuiInputTextFlags_CallbackEdit = 1 << 19, ImGuiInputTextFlags_Multiline = 1 << 20, ImGuiInputTextFlags_NoMarkEdited = 1 << 21 }ImGuiInputTextFlags_; @@ -292,7 +294,10 @@ typedef enum { ImGuiTabItemFlags_SetSelected = 1 << 1, ImGuiTabItemFlags_NoCloseWithMiddleMouseButton = 1 << 2, ImGuiTabItemFlags_NoPushId = 1 << 3, - ImGuiTabItemFlags_NoTooltip = 1 << 4 + ImGuiTabItemFlags_NoTooltip = 1 << 4, + ImGuiTabItemFlags_NoReorder = 1 << 5, + ImGuiTabItemFlags_Leading = 1 << 6, + ImGuiTabItemFlags_Trailing = 1 << 7 }ImGuiTabItemFlags_; typedef enum { ImGuiFocusedFlags_None = 0, @@ -540,7 +545,7 @@ typedef enum { }ImGuiColorEditFlags_; typedef enum { ImGuiSliderFlags_None = 0, - ImGuiSliderFlags_ClampOnInput = 1 << 4, + ImGuiSliderFlags_AlwaysClamp = 1 << 4, ImGuiSliderFlags_Logarithmic = 1 << 5, ImGuiSliderFlags_NoRoundToFormat = 1 << 6, ImGuiSliderFlags_NoInput = 1 << 7, @@ -600,7 +605,7 @@ struct ImGuiStyle float LogSliderDeadzone; float TabRounding; float TabBorderSize; - float TabMinWidthForUnselectedCloseButton; + float TabMinWidthForCloseButton; ImGuiDir ColorButtonPosition; ImVec2 ButtonTextAlign; ImVec2 SelectableTextAlign; @@ -734,6 +739,11 @@ struct ImGuiOnceUponAFrame { int RefFrame; }; +struct ImGuiTextRange +{ + const char* b; + const char* e; +}; struct ImGuiTextFilter { char InputBuf[256]; @@ -744,13 +754,19 @@ struct ImGuiTextBuffer { ImVector_char Buf; }; +struct ImGuiStoragePair +{ + ImGuiID key; + union { int val_i; float val_f; void* val_p; }; +}; struct ImGuiStorage { ImVector_ImGuiStoragePair Data; }; struct ImGuiListClipper { - int DisplayStart, DisplayEnd; + int DisplayStart; + int DisplayEnd; int ItemsCount; int StepNo; float ItemsHeight; @@ -911,7 +927,6 @@ struct ImFont ImVector_ImWchar IndexLookup; ImVector_ImFontGlyph Glyphs; const ImFontGlyph* FallbackGlyph; - ImVec2 DisplayOffset; ImFontAtlas* ContainerAtlas; const ImFontConfig* ConfigData; short ConfigDataCount; @@ -923,16 +938,6 @@ struct ImFont int MetricsTotalSurface; ImU8 Used4kPagesMap[(0xFFFF +1)/4096/8]; }; -struct ImGuiTextRange -{ - const char* b; - const char* e; -}; -struct ImGuiStoragePair -{ - ImGuiID key; - union { int val_i; float val_f; void* val_p; }; -}; #else struct GLFWwindow; struct SDL_Window; @@ -942,23 +947,23 @@ typedef union SDL_Event SDL_Event; #ifndef CIMGUI_DEFINE_ENUMS_AND_STRUCTS typedef ImGuiStorage::ImGuiStoragePair ImGuiStoragePair; typedef ImGuiTextFilter::ImGuiTextRange ImGuiTextRange; -typedef ImVector ImVector_float; -typedef ImVector ImVector_ImWchar; -typedef ImVector ImVector_ImDrawVert; -typedef ImVector ImVector_ImFontGlyph; -typedef ImVector ImVector_ImGuiTextRange; -typedef ImVector ImVector_ImGuiStoragePair; typedef ImVector ImVector_ImDrawChannel; -typedef ImVector ImVector_char; -typedef ImVector ImVector_ImU32; -typedef ImVector ImVector_ImFontAtlasCustomRect; -typedef ImVector ImVector_ImTextureID; -typedef ImVector ImVector_ImFontConfig; -typedef ImVector ImVector_ImFontPtr; typedef ImVector ImVector_ImDrawCmd; -typedef ImVector ImVector_ImVec4; typedef ImVector ImVector_ImDrawIdx; +typedef ImVector ImVector_ImDrawVert; +typedef ImVector ImVector_ImFontPtr; +typedef ImVector ImVector_ImFontAtlasCustomRect; +typedef ImVector ImVector_ImFontConfig; +typedef ImVector ImVector_ImFontGlyph; +typedef ImVector ImVector_ImGuiStoragePair; +typedef ImVector ImVector_ImGuiTextRange; +typedef ImVector ImVector_ImTextureID; +typedef ImVector ImVector_ImU32; typedef ImVector ImVector_ImVec2; +typedef ImVector ImVector_ImVec4; +typedef ImVector ImVector_ImWchar; +typedef ImVector ImVector_char; +typedef ImVector ImVector_float; #endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS CIMGUI_API ImVec2* ImVec2_ImVec2Nil(void); CIMGUI_API void ImVec2_destroy(ImVec2* self); @@ -1212,7 +1217,7 @@ CIMGUI_API bool igBeginPopup(const char* str_id,ImGuiWindowFlags flags); CIMGUI_API bool igBeginPopupModal(const char* name,bool* p_open,ImGuiWindowFlags flags); CIMGUI_API void igEndPopup(void); CIMGUI_API void igOpenPopup(const char* str_id,ImGuiPopupFlags popup_flags); -CIMGUI_API bool igOpenPopupContextItem(const char* str_id,ImGuiPopupFlags popup_flags); +CIMGUI_API void igOpenPopupOnItemClick(const char* str_id,ImGuiPopupFlags popup_flags); CIMGUI_API void igCloseCurrentPopup(void); CIMGUI_API bool igBeginPopupContextItem(const char* str_id,ImGuiPopupFlags popup_flags); CIMGUI_API bool igBeginPopupContextWindow(const char* str_id,ImGuiPopupFlags popup_flags); @@ -1230,6 +1235,7 @@ CIMGUI_API bool igBeginTabBar(const char* str_id,ImGuiTabBarFlags flags); CIMGUI_API void igEndTabBar(void); CIMGUI_API bool igBeginTabItem(const char* label,bool* p_open,ImGuiTabItemFlags flags); CIMGUI_API void igEndTabItem(void); +CIMGUI_API bool igTabItemButton(const char* label,ImGuiTabItemFlags flags); CIMGUI_API void igSetTabItemClosed(const char* tab_or_docked_window_label); CIMGUI_API void igLogToTTY(int auto_open_depth); CIMGUI_API void igLogToFile(int auto_open_depth,const char* filename); @@ -1326,6 +1332,8 @@ CIMGUI_API ImGuiInputTextCallbackData* ImGuiInputTextCallbackData_ImGuiInputText CIMGUI_API void ImGuiInputTextCallbackData_destroy(ImGuiInputTextCallbackData* self); CIMGUI_API void ImGuiInputTextCallbackData_DeleteChars(ImGuiInputTextCallbackData* self,int pos,int bytes_count); CIMGUI_API void ImGuiInputTextCallbackData_InsertChars(ImGuiInputTextCallbackData* self,int pos,const char* text,const char* text_end); +CIMGUI_API void ImGuiInputTextCallbackData_SelectAll(ImGuiInputTextCallbackData* self); +CIMGUI_API void ImGuiInputTextCallbackData_ClearSelection(ImGuiInputTextCallbackData* self); CIMGUI_API bool ImGuiInputTextCallbackData_HasSelection(ImGuiInputTextCallbackData* self); CIMGUI_API ImGuiPayload* ImGuiPayload_ImGuiPayload(void); CIMGUI_API void ImGuiPayload_destroy(ImGuiPayload* self); @@ -1377,11 +1385,11 @@ CIMGUI_API float* ImGuiStorage_GetFloatRef(ImGuiStorage* self,ImGuiID key,float CIMGUI_API void** ImGuiStorage_GetVoidPtrRef(ImGuiStorage* self,ImGuiID key,void* default_val); CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self,int val); CIMGUI_API void ImGuiStorage_BuildSortByKey(ImGuiStorage* self); -CIMGUI_API ImGuiListClipper* ImGuiListClipper_ImGuiListClipper(int items_count,float items_height); +CIMGUI_API ImGuiListClipper* ImGuiListClipper_ImGuiListClipper(void); CIMGUI_API void ImGuiListClipper_destroy(ImGuiListClipper* self); -CIMGUI_API bool ImGuiListClipper_Step(ImGuiListClipper* self); CIMGUI_API void ImGuiListClipper_Begin(ImGuiListClipper* self,int items_count,float items_height); CIMGUI_API void ImGuiListClipper_End(ImGuiListClipper* self); +CIMGUI_API bool ImGuiListClipper_Step(ImGuiListClipper* self); CIMGUI_API ImColor* ImColor_ImColorNil(void); CIMGUI_API void ImColor_destroy(ImColor* self); CIMGUI_API ImColor* ImColor_ImColorInt(int r,int g,int b,int a); @@ -1389,7 +1397,7 @@ CIMGUI_API ImColor* ImColor_ImColorU32(ImU32 rgba); CIMGUI_API ImColor* ImColor_ImColorFloat(float r,float g,float b,float a); CIMGUI_API ImColor* ImColor_ImColorVec4(const ImVec4 col); CIMGUI_API void ImColor_SetHSV(ImColor* self,float h,float s,float v,float a); -CIMGUI_API void ImColor_HSV(ImColor *pOut,ImColor* self,float h,float s,float v,float a); +CIMGUI_API void ImColor_HSV(ImColor *pOut,float h,float s,float v,float a); CIMGUI_API ImDrawCmd* ImDrawCmd_ImDrawCmd(void); CIMGUI_API void ImDrawCmd_destroy(ImDrawCmd* self); CIMGUI_API ImDrawListSplitter* ImDrawListSplitter_ImDrawListSplitter(void); @@ -1520,7 +1528,7 @@ CIMGUI_API void ImFont_RenderText(ImFont* self,ImDrawList* draw_list,float size, CIMGUI_API void ImFont_BuildLookupTable(ImFont* self); CIMGUI_API void ImFont_ClearOutputData(ImFont* self); CIMGUI_API void ImFont_GrowIndex(ImFont* self,int new_size); -CIMGUI_API void ImFont_AddGlyph(ImFont* self,ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x); +CIMGUI_API void ImFont_AddGlyph(ImFont* self,const ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x); CIMGUI_API void ImFont_AddRemapChar(ImFont* self,ImWchar dst,ImWchar src,bool overwrite_dst); CIMGUI_API void ImFont_SetGlyphVisible(ImFont* self,ImWchar c,bool visible); CIMGUI_API void ImFont_SetFallbackChar(ImFont* self,ImWchar c); diff --git a/imgui-sys/third-party/cimgui_impl.h b/imgui-sys/third-party/cimgui_impl.h index 68e4b87..5320a09 100644 --- a/imgui-sys/third-party/cimgui_impl.h +++ b/imgui-sys/third-party/cimgui_impl.h @@ -1,6 +1,9 @@ typedef struct SDL_Window SDL_Window; typedef struct GLFWwindow GLFWwindow; -struct GLFWwindow;struct SDL_Window; + +struct GLFWwindow; + +struct SDL_Window; typedef union SDL_Event SDL_Event;CIMGUI_API bool ImGui_ImplGlfw_InitForOpenGL(GLFWwindow* window,bool install_callbacks); CIMGUI_API bool ImGui_ImplGlfw_InitForVulkan(GLFWwindow* window,bool install_callbacks); CIMGUI_API void ImGui_ImplGlfw_Shutdown(); diff --git a/imgui-sys/third-party/definitions.json b/imgui-sys/third-party/definitions.json index c5c6745..e9cbe00 100644 --- a/imgui-sys/third-party/definitions.json +++ b/imgui-sys/third-party/definitions.json @@ -1,16 +1,12 @@ { "ImColor_HSV": [ { - "args": "(ImColor *pOut,ImColor* self,float h,float s,float v,float a)", + "args": "(ImColor *pOut,float h,float s,float v,float a)", "argsT": [ { "name": "pOut", "type": "ImColor*" }, - { - "name": "self", - "type": "ImColor*" - }, { "name": "h", "type": "float" @@ -35,7 +31,8 @@ "a": "1.0f" }, "funcname": "HSV", - "location": "imgui", + "is_static_function": true, + "location": "imgui:1967", "nonUDT": 1, "ov_cimguiname": "ImColor_HSV", "ret": "void", @@ -51,9 +48,9 @@ "call_args": "()", "cimguiname": "ImColor_ImColor", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImColor", - "location": "imgui", + "location": "imgui:1957", "ov_cimguiname": "ImColor_ImColorNil", "signature": "()", "stname": "ImColor" @@ -86,7 +83,7 @@ "a": "255" }, "funcname": "ImColor", - "location": "imgui", + "location": "imgui:1958", "ov_cimguiname": "ImColor_ImColorInt", "signature": "(int,int,int,int)", "stname": "ImColor" @@ -103,9 +100,9 @@ "call_args": "(rgba)", "cimguiname": "ImColor_ImColor", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImColor", - "location": "imgui", + "location": "imgui:1959", "ov_cimguiname": "ImColor_ImColorU32", "signature": "(ImU32)", "stname": "ImColor" @@ -138,7 +135,7 @@ "a": "1.0f" }, "funcname": "ImColor", - "location": "imgui", + "location": "imgui:1960", "ov_cimguiname": "ImColor_ImColorFloat", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -155,9 +152,9 @@ "call_args": "(col)", "cimguiname": "ImColor_ImColor", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImColor", - "location": "imgui", + "location": "imgui:1961", "ov_cimguiname": "ImColor_ImColorVec4", "signature": "(const ImVec4)", "stname": "ImColor" @@ -195,7 +192,7 @@ "a": "1.0f" }, "funcname": "SetHSV", - "location": "imgui", + "location": "imgui:1966", "ov_cimguiname": "ImColor_SetHSV", "ret": "void", "signature": "(float,float,float,float)", @@ -213,7 +210,7 @@ ], "call_args": "(self)", "cimguiname": "ImColor_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImColor_destroy", "ret": "void", @@ -229,9 +226,9 @@ "call_args": "()", "cimguiname": "ImDrawCmd_ImDrawCmd", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImDrawCmd", - "location": "imgui", + "location": "imgui:2012", "ov_cimguiname": "ImDrawCmd_ImDrawCmd", "signature": "()", "stname": "ImDrawCmd" @@ -248,7 +245,7 @@ ], "call_args": "(self)", "cimguiname": "ImDrawCmd_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImDrawCmd_destroy", "ret": "void", @@ -268,9 +265,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawData_Clear", - "defaults": [], + "defaults": {}, "funcname": "Clear", - "location": "imgui", + "location": "imgui:2223", "ov_cimguiname": "ImDrawData_Clear", "ret": "void", "signature": "()", @@ -289,9 +286,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawData_DeIndexAllBuffers", - "defaults": [], + "defaults": {}, "funcname": "DeIndexAllBuffers", - "location": "imgui", + "location": "imgui:2224", "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", "ret": "void", "signature": "()", @@ -306,9 +303,9 @@ "call_args": "()", "cimguiname": "ImDrawData_ImDrawData", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImDrawData", - "location": "imgui", + "location": "imgui:2221", "ov_cimguiname": "ImDrawData_ImDrawData", "signature": "()", "stname": "ImDrawData" @@ -330,9 +327,9 @@ "argsoriginal": "(const ImVec2& fb_scale)", "call_args": "(fb_scale)", "cimguiname": "ImDrawData_ScaleClipRects", - "defaults": [], + "defaults": {}, "funcname": "ScaleClipRects", - "location": "imgui", + "location": "imgui:2225", "ov_cimguiname": "ImDrawData_ScaleClipRects", "ret": "void", "signature": "(const ImVec2)", @@ -350,9 +347,11 @@ ], "call_args": "(self)", "cimguiname": "ImDrawData_destroy", - "defaults": [], + "defaults": {}, "destructor": true, + "location": "imgui:2222", "ov_cimguiname": "ImDrawData_destroy", + "realdestructor": true, "ret": "void", "signature": "(ImDrawData*)", "stname": "ImDrawData" @@ -370,9 +369,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawListSplitter_Clear", - "defaults": [], + "defaults": {}, "funcname": "Clear", - "location": "imgui", + "location": "imgui:2055", "ov_cimguiname": "ImDrawListSplitter_Clear", "ret": "void", "signature": "()", @@ -391,9 +390,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawListSplitter_ClearFreeMemory", - "defaults": [], + "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui", + "location": "imgui:2056", "ov_cimguiname": "ImDrawListSplitter_ClearFreeMemory", "ret": "void", "signature": "()", @@ -408,9 +407,9 @@ "call_args": "()", "cimguiname": "ImDrawListSplitter_ImDrawListSplitter", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImDrawListSplitter", - "location": "imgui", + "location": "imgui:2053", "ov_cimguiname": "ImDrawListSplitter_ImDrawListSplitter", "signature": "()", "stname": "ImDrawListSplitter" @@ -432,9 +431,9 @@ "argsoriginal": "(ImDrawList* draw_list)", "call_args": "(draw_list)", "cimguiname": "ImDrawListSplitter_Merge", - "defaults": [], + "defaults": {}, "funcname": "Merge", - "location": "imgui", + "location": "imgui:2058", "ov_cimguiname": "ImDrawListSplitter_Merge", "ret": "void", "signature": "(ImDrawList*)", @@ -461,9 +460,9 @@ "argsoriginal": "(ImDrawList* draw_list,int channel_idx)", "call_args": "(draw_list,channel_idx)", "cimguiname": "ImDrawListSplitter_SetCurrentChannel", - "defaults": [], + "defaults": {}, "funcname": "SetCurrentChannel", - "location": "imgui", + "location": "imgui:2059", "ov_cimguiname": "ImDrawListSplitter_SetCurrentChannel", "ret": "void", "signature": "(ImDrawList*,int)", @@ -490,9 +489,9 @@ "argsoriginal": "(ImDrawList* draw_list,int count)", "call_args": "(draw_list,count)", "cimguiname": "ImDrawListSplitter_Split", - "defaults": [], + "defaults": {}, "funcname": "Split", - "location": "imgui", + "location": "imgui:2057", "ov_cimguiname": "ImDrawListSplitter_Split", "ret": "void", "signature": "(ImDrawList*,int)", @@ -510,9 +509,11 @@ ], "call_args": "(self)", "cimguiname": "ImDrawListSplitter_destroy", - "defaults": [], + "defaults": {}, "destructor": true, + "location": "imgui:2054", "ov_cimguiname": "ImDrawListSplitter_destroy", + "realdestructor": true, "ret": "void", "signature": "(ImDrawListSplitter*)", "stname": "ImDrawListSplitter" @@ -562,7 +563,7 @@ "num_segments": "0" }, "funcname": "AddBezierCurve", - "location": "imgui", + "location": "imgui:2149", "ov_cimguiname": "ImDrawList_AddBezierCurve", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -589,9 +590,9 @@ "argsoriginal": "(ImDrawCallback callback,void* callback_data)", "call_args": "(callback,callback_data)", "cimguiname": "ImDrawList_AddCallback", - "defaults": [], + "defaults": {}, "funcname": "AddCallback", - "location": "imgui", + "location": "imgui:2171", "ov_cimguiname": "ImDrawList_AddCallback", "ret": "void", "signature": "(ImDrawCallback,void*)", @@ -635,7 +636,7 @@ "thickness": "1.0f" }, "funcname": "AddCircle", - "location": "imgui", + "location": "imgui:2141", "ov_cimguiname": "ImDrawList_AddCircle", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -674,7 +675,7 @@ "num_segments": "0" }, "funcname": "AddCircleFilled", - "location": "imgui", + "location": "imgui:2142", "ov_cimguiname": "ImDrawList_AddCircleFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -705,9 +706,9 @@ "argsoriginal": "(const ImVec2* points,int num_points,ImU32 col)", "call_args": "(points,num_points,col)", "cimguiname": "ImDrawList_AddConvexPolyFilled", - "defaults": [], + "defaults": {}, "funcname": "AddConvexPolyFilled", - "location": "imgui", + "location": "imgui:2148", "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -726,9 +727,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_AddDrawCmd", - "defaults": [], + "defaults": {}, "funcname": "AddDrawCmd", - "location": "imgui", + "location": "imgui:2172", "ov_cimguiname": "ImDrawList_AddDrawCmd", "ret": "void", "signature": "()", @@ -772,12 +773,12 @@ "call_args": "(user_texture_id,p_min,p_max,uv_min,uv_max,col)", "cimguiname": "ImDrawList_AddImage", "defaults": { - "col": "(((ImU32)(255)<<24)|((ImU32)(255)<<16)|((ImU32)(255)<<8)|((ImU32)(255)<<0))", + "col": "4294967295", "uv_max": "ImVec2(1,1)", "uv_min": "ImVec2(0,0)" }, "funcname": "AddImage", - "location": "imgui", + "location": "imgui:2155", "ov_cimguiname": "ImDrawList_AddImage", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -837,14 +838,14 @@ "call_args": "(user_texture_id,p1,p2,p3,p4,uv1,uv2,uv3,uv4,col)", "cimguiname": "ImDrawList_AddImageQuad", "defaults": { - "col": "(((ImU32)(255)<<24)|((ImU32)(255)<<16)|((ImU32)(255)<<8)|((ImU32)(255)<<0))", + "col": "4294967295", "uv1": "ImVec2(0,0)", "uv2": "ImVec2(1,0)", "uv3": "ImVec2(1,1)", "uv4": "ImVec2(0,1)" }, "funcname": "AddImageQuad", - "location": "imgui", + "location": "imgui:2156", "ov_cimguiname": "ImDrawList_AddImageQuad", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -899,7 +900,7 @@ "rounding_corners": "ImDrawCornerFlags_All" }, "funcname": "AddImageRounded", - "location": "imgui", + "location": "imgui:2157", "ov_cimguiname": "ImDrawList_AddImageRounded", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawCornerFlags)", @@ -938,7 +939,7 @@ "thickness": "1.0f" }, "funcname": "AddLine", - "location": "imgui", + "location": "imgui:2133", "ov_cimguiname": "ImDrawList_AddLine", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float)", @@ -981,7 +982,7 @@ "thickness": "1.0f" }, "funcname": "AddNgon", - "location": "imgui", + "location": "imgui:2143", "ov_cimguiname": "ImDrawList_AddNgon", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1016,9 +1017,9 @@ "argsoriginal": "(const ImVec2& center,float radius,ImU32 col,int num_segments)", "call_args": "(center,radius,col,num_segments)", "cimguiname": "ImDrawList_AddNgonFilled", - "defaults": [], + "defaults": {}, "funcname": "AddNgonFilled", - "location": "imgui", + "location": "imgui:2144", "ov_cimguiname": "ImDrawList_AddNgonFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1057,9 +1058,9 @@ "argsoriginal": "(const ImVec2* points,int num_points,ImU32 col,bool closed,float thickness)", "call_args": "(points,num_points,col,closed,thickness)", "cimguiname": "ImDrawList_AddPolyline", - "defaults": [], + "defaults": {}, "funcname": "AddPolyline", - "location": "imgui", + "location": "imgui:2147", "ov_cimguiname": "ImDrawList_AddPolyline", "ret": "void", "signature": "(const ImVec2*,int,ImU32,bool,float)", @@ -1106,7 +1107,7 @@ "thickness": "1.0f" }, "funcname": "AddQuad", - "location": "imgui", + "location": "imgui:2137", "ov_cimguiname": "ImDrawList_AddQuad", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -1145,9 +1146,9 @@ "argsoriginal": "(const ImVec2& p1,const ImVec2& p2,const ImVec2& p3,const ImVec2& p4,ImU32 col)", "call_args": "(p1,p2,p3,p4,col)", "cimguiname": "ImDrawList_AddQuadFilled", - "defaults": [], + "defaults": {}, "funcname": "AddQuadFilled", - "location": "imgui", + "location": "imgui:2138", "ov_cimguiname": "ImDrawList_AddQuadFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1196,7 +1197,7 @@ "thickness": "1.0f" }, "funcname": "AddRect", - "location": "imgui", + "location": "imgui:2134", "ov_cimguiname": "ImDrawList_AddRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawCornerFlags,float)", @@ -1240,7 +1241,7 @@ "rounding_corners": "ImDrawCornerFlags_All" }, "funcname": "AddRectFilled", - "location": "imgui", + "location": "imgui:2135", "ov_cimguiname": "ImDrawList_AddRectFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawCornerFlags)", @@ -1283,9 +1284,9 @@ "argsoriginal": "(const ImVec2& p_min,const ImVec2& p_max,ImU32 col_upr_left,ImU32 col_upr_right,ImU32 col_bot_right,ImU32 col_bot_left)", "call_args": "(p_min,p_max,col_upr_left,col_upr_right,col_bot_right,col_bot_left)", "cimguiname": "ImDrawList_AddRectFilledMultiColor", - "defaults": [], + "defaults": {}, "funcname": "AddRectFilledMultiColor", - "location": "imgui", + "location": "imgui:2136", "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", @@ -1321,10 +1322,10 @@ "call_args": "(pos,col,text_begin,text_end)", "cimguiname": "ImDrawList_AddText", "defaults": { - "text_end": "((void*)0)" + "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui", + "location": "imgui:2145", "ov_cimguiname": "ImDrawList_AddTextVec2", "ret": "void", "signature": "(const ImVec2,ImU32,const char*,const char*)", @@ -1374,12 +1375,12 @@ "call_args": "(font,font_size,pos,col,text_begin,text_end,wrap_width,cpu_fine_clip_rect)", "cimguiname": "ImDrawList_AddText", "defaults": { - "cpu_fine_clip_rect": "((void*)0)", - "text_end": "((void*)0)", + "cpu_fine_clip_rect": "NULL", + "text_end": "NULL", "wrap_width": "0.0f" }, "funcname": "AddText", - "location": "imgui", + "location": "imgui:2146", "ov_cimguiname": "ImDrawList_AddTextFontPtr", "ret": "void", "signature": "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)", @@ -1422,7 +1423,7 @@ "thickness": "1.0f" }, "funcname": "AddTriangle", - "location": "imgui", + "location": "imgui:2139", "ov_cimguiname": "ImDrawList_AddTriangle", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -1457,9 +1458,9 @@ "argsoriginal": "(const ImVec2& p1,const ImVec2& p2,const ImVec2& p3,ImU32 col)", "call_args": "(p1,p2,p3,col)", "cimguiname": "ImDrawList_AddTriangleFilled", - "defaults": [], + "defaults": {}, "funcname": "AddTriangleFilled", - "location": "imgui", + "location": "imgui:2140", "ov_cimguiname": "ImDrawList_AddTriangleFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1478,9 +1479,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_ChannelsMerge", - "defaults": [], + "defaults": {}, "funcname": "ChannelsMerge", - "location": "imgui", + "location": "imgui:2182", "ov_cimguiname": "ImDrawList_ChannelsMerge", "ret": "void", "signature": "()", @@ -1503,9 +1504,9 @@ "argsoriginal": "(int n)", "call_args": "(n)", "cimguiname": "ImDrawList_ChannelsSetCurrent", - "defaults": [], + "defaults": {}, "funcname": "ChannelsSetCurrent", - "location": "imgui", + "location": "imgui:2183", "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", "ret": "void", "signature": "(int)", @@ -1528,9 +1529,9 @@ "argsoriginal": "(int count)", "call_args": "(count)", "cimguiname": "ImDrawList_ChannelsSplit", - "defaults": [], + "defaults": {}, "funcname": "ChannelsSplit", - "location": "imgui", + "location": "imgui:2181", "ov_cimguiname": "ImDrawList_ChannelsSplit", "ret": "void", "signature": "(int)", @@ -1549,9 +1550,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_CloneOutput", - "defaults": [], + "defaults": {}, "funcname": "CloneOutput", - "location": "imgui", + "location": "imgui:2173", "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", "signature": "()const", @@ -1574,9 +1575,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_GetClipRectMax", - "defaults": [], + "defaults": {}, "funcname": "GetClipRectMax", - "location": "imgui", + "location": "imgui:2125", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "void", @@ -1600,9 +1601,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_GetClipRectMin", - "defaults": [], + "defaults": {}, "funcname": "GetClipRectMin", - "location": "imgui", + "location": "imgui:2124", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "void", @@ -1623,9 +1624,9 @@ "call_args": "(shared_data)", "cimguiname": "ImDrawList_ImDrawList", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImDrawList", - "location": "imgui", + "location": "imgui:2116", "ov_cimguiname": "ImDrawList_ImDrawList", "signature": "(const ImDrawListSharedData*)", "stname": "ImDrawList" @@ -1667,7 +1668,7 @@ "num_segments": "10" }, "funcname": "PathArcTo", - "location": "imgui", + "location": "imgui:2165", "ov_cimguiname": "ImDrawList_PathArcTo", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -1702,9 +1703,9 @@ "argsoriginal": "(const ImVec2& center,float radius,int a_min_of_12,int a_max_of_12)", "call_args": "(center,radius,a_min_of_12,a_max_of_12)", "cimguiname": "ImDrawList_PathArcToFast", - "defaults": [], + "defaults": {}, "funcname": "PathArcToFast", - "location": "imgui", + "location": "imgui:2166", "ov_cimguiname": "ImDrawList_PathArcToFast", "ret": "void", "signature": "(const ImVec2,float,int,int)", @@ -1743,7 +1744,7 @@ "num_segments": "0" }, "funcname": "PathBezierCurveTo", - "location": "imgui", + "location": "imgui:2167", "ov_cimguiname": "ImDrawList_PathBezierCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,int)", @@ -1762,9 +1763,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_PathClear", - "defaults": [], + "defaults": {}, "funcname": "PathClear", - "location": "imgui", + "location": "imgui:2160", "ov_cimguiname": "ImDrawList_PathClear", "ret": "void", "signature": "()", @@ -1787,9 +1788,9 @@ "argsoriginal": "(ImU32 col)", "call_args": "(col)", "cimguiname": "ImDrawList_PathFillConvex", - "defaults": [], + "defaults": {}, "funcname": "PathFillConvex", - "location": "imgui", + "location": "imgui:2163", "ov_cimguiname": "ImDrawList_PathFillConvex", "ret": "void", "signature": "(ImU32)", @@ -1812,9 +1813,9 @@ "argsoriginal": "(const ImVec2& pos)", "call_args": "(pos)", "cimguiname": "ImDrawList_PathLineTo", - "defaults": [], + "defaults": {}, "funcname": "PathLineTo", - "location": "imgui", + "location": "imgui:2161", "ov_cimguiname": "ImDrawList_PathLineTo", "ret": "void", "signature": "(const ImVec2)", @@ -1837,9 +1838,9 @@ "argsoriginal": "(const ImVec2& pos)", "call_args": "(pos)", "cimguiname": "ImDrawList_PathLineToMergeDuplicate", - "defaults": [], + "defaults": {}, "funcname": "PathLineToMergeDuplicate", - "location": "imgui", + "location": "imgui:2162", "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", "ret": "void", "signature": "(const ImVec2)", @@ -1879,7 +1880,7 @@ "rounding_corners": "ImDrawCornerFlags_All" }, "funcname": "PathRect", - "location": "imgui", + "location": "imgui:2168", "ov_cimguiname": "ImDrawList_PathRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,ImDrawCornerFlags)", @@ -1914,7 +1915,7 @@ "thickness": "1.0f" }, "funcname": "PathStroke", - "location": "imgui", + "location": "imgui:2164", "ov_cimguiname": "ImDrawList_PathStroke", "ret": "void", "signature": "(ImU32,bool,float)", @@ -1933,9 +1934,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_PopClipRect", - "defaults": [], + "defaults": {}, "funcname": "PopClipRect", - "location": "imgui", + "location": "imgui:2121", "ov_cimguiname": "ImDrawList_PopClipRect", "ret": "void", "signature": "()", @@ -1954,9 +1955,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_PopTextureID", - "defaults": [], + "defaults": {}, "funcname": "PopTextureID", - "location": "imgui", + "location": "imgui:2123", "ov_cimguiname": "ImDrawList_PopTextureID", "ret": "void", "signature": "()", @@ -2011,9 +2012,9 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,const ImVec2& c,const ImVec2& d,const ImVec2& uv_a,const ImVec2& uv_b,const ImVec2& uv_c,const ImVec2& uv_d,ImU32 col)", "call_args": "(a,b,c,d,uv_a,uv_b,uv_c,uv_d,col)", "cimguiname": "ImDrawList_PrimQuadUV", - "defaults": [], + "defaults": {}, "funcname": "PrimQuadUV", - "location": "imgui", + "location": "imgui:2192", "ov_cimguiname": "ImDrawList_PrimQuadUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2044,9 +2045,9 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,ImU32 col)", "call_args": "(a,b,col)", "cimguiname": "ImDrawList_PrimRect", - "defaults": [], + "defaults": {}, "funcname": "PrimRect", - "location": "imgui", + "location": "imgui:2190", "ov_cimguiname": "ImDrawList_PrimRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2085,9 +2086,9 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,const ImVec2& uv_a,const ImVec2& uv_b,ImU32 col)", "call_args": "(a,b,uv_a,uv_b,col)", "cimguiname": "ImDrawList_PrimRectUV", - "defaults": [], + "defaults": {}, "funcname": "PrimRectUV", - "location": "imgui", + "location": "imgui:2191", "ov_cimguiname": "ImDrawList_PrimRectUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2114,9 +2115,9 @@ "argsoriginal": "(int idx_count,int vtx_count)", "call_args": "(idx_count,vtx_count)", "cimguiname": "ImDrawList_PrimReserve", - "defaults": [], + "defaults": {}, "funcname": "PrimReserve", - "location": "imgui", + "location": "imgui:2188", "ov_cimguiname": "ImDrawList_PrimReserve", "ret": "void", "signature": "(int,int)", @@ -2143,9 +2144,9 @@ "argsoriginal": "(int idx_count,int vtx_count)", "call_args": "(idx_count,vtx_count)", "cimguiname": "ImDrawList_PrimUnreserve", - "defaults": [], + "defaults": {}, "funcname": "PrimUnreserve", - "location": "imgui", + "location": "imgui:2189", "ov_cimguiname": "ImDrawList_PrimUnreserve", "ret": "void", "signature": "(int,int)", @@ -2176,9 +2177,9 @@ "argsoriginal": "(const ImVec2& pos,const ImVec2& uv,ImU32 col)", "call_args": "(pos,uv,col)", "cimguiname": "ImDrawList_PrimVtx", - "defaults": [], + "defaults": {}, "funcname": "PrimVtx", - "location": "imgui", + "location": "imgui:2195", "ov_cimguiname": "ImDrawList_PrimVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2201,9 +2202,9 @@ "argsoriginal": "(ImDrawIdx idx)", "call_args": "(idx)", "cimguiname": "ImDrawList_PrimWriteIdx", - "defaults": [], + "defaults": {}, "funcname": "PrimWriteIdx", - "location": "imgui", + "location": "imgui:2194", "ov_cimguiname": "ImDrawList_PrimWriteIdx", "ret": "void", "signature": "(ImDrawIdx)", @@ -2234,9 +2235,9 @@ "argsoriginal": "(const ImVec2& pos,const ImVec2& uv,ImU32 col)", "call_args": "(pos,uv,col)", "cimguiname": "ImDrawList_PrimWriteVtx", - "defaults": [], + "defaults": {}, "funcname": "PrimWriteVtx", - "location": "imgui", + "location": "imgui:2193", "ov_cimguiname": "ImDrawList_PrimWriteVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2271,7 +2272,7 @@ "intersect_with_current_clip_rect": "false" }, "funcname": "PushClipRect", - "location": "imgui", + "location": "imgui:2119", "ov_cimguiname": "ImDrawList_PushClipRect", "ret": "void", "signature": "(ImVec2,ImVec2,bool)", @@ -2290,9 +2291,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_PushClipRectFullScreen", - "defaults": [], + "defaults": {}, "funcname": "PushClipRectFullScreen", - "location": "imgui", + "location": "imgui:2120", "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", "ret": "void", "signature": "()", @@ -2315,9 +2316,9 @@ "argsoriginal": "(ImTextureID texture_id)", "call_args": "(texture_id)", "cimguiname": "ImDrawList_PushTextureID", - "defaults": [], + "defaults": {}, "funcname": "PushTextureID", - "location": "imgui", + "location": "imgui:2122", "ov_cimguiname": "ImDrawList_PushTextureID", "ret": "void", "signature": "(ImTextureID)", @@ -2336,9 +2337,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList__ClearFreeMemory", - "defaults": [], + "defaults": {}, "funcname": "_ClearFreeMemory", - "location": "imgui", + "location": "imgui:2199", "ov_cimguiname": "ImDrawList__ClearFreeMemory", "ret": "void", "signature": "()", @@ -2357,9 +2358,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList__OnChangedClipRect", - "defaults": [], + "defaults": {}, "funcname": "_OnChangedClipRect", - "location": "imgui", + "location": "imgui:2201", "ov_cimguiname": "ImDrawList__OnChangedClipRect", "ret": "void", "signature": "()", @@ -2378,9 +2379,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList__OnChangedTextureID", - "defaults": [], + "defaults": {}, "funcname": "_OnChangedTextureID", - "location": "imgui", + "location": "imgui:2202", "ov_cimguiname": "ImDrawList__OnChangedTextureID", "ret": "void", "signature": "()", @@ -2399,9 +2400,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList__OnChangedVtxOffset", - "defaults": [], + "defaults": {}, "funcname": "_OnChangedVtxOffset", - "location": "imgui", + "location": "imgui:2203", "ov_cimguiname": "ImDrawList__OnChangedVtxOffset", "ret": "void", "signature": "()", @@ -2420,9 +2421,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList__PopUnusedDrawCmd", - "defaults": [], + "defaults": {}, "funcname": "_PopUnusedDrawCmd", - "location": "imgui", + "location": "imgui:2200", "ov_cimguiname": "ImDrawList__PopUnusedDrawCmd", "ret": "void", "signature": "()", @@ -2441,9 +2442,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList__ResetForNewFrame", - "defaults": [], + "defaults": {}, "funcname": "_ResetForNewFrame", - "location": "imgui", + "location": "imgui:2198", "ov_cimguiname": "ImDrawList__ResetForNewFrame", "ret": "void", "signature": "()", @@ -2461,9 +2462,11 @@ ], "call_args": "(self)", "cimguiname": "ImDrawList_destroy", - "defaults": [], + "defaults": {}, "destructor": true, + "location": "imgui:2118", "ov_cimguiname": "ImDrawList_destroy", + "realdestructor": true, "ret": "void", "signature": "(ImDrawList*)", "stname": "ImDrawList" @@ -2477,9 +2480,9 @@ "call_args": "()", "cimguiname": "ImFontAtlasCustomRect_ImFontAtlasCustomRect", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImFontAtlasCustomRect", - "location": "imgui", + "location": "imgui:2295", "ov_cimguiname": "ImFontAtlasCustomRect_ImFontAtlasCustomRect", "signature": "()", "stname": "ImFontAtlasCustomRect" @@ -2497,9 +2500,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlasCustomRect_IsPacked", - "defaults": [], + "defaults": {}, "funcname": "IsPacked", - "location": "imgui", + "location": "imgui:2296", "ov_cimguiname": "ImFontAtlasCustomRect_IsPacked", "ret": "bool", "signature": "()const", @@ -2517,7 +2520,7 @@ ], "call_args": "(self)", "cimguiname": "ImFontAtlasCustomRect_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImFontAtlasCustomRect_destroy", "ret": "void", @@ -2565,7 +2568,7 @@ "offset": "ImVec2(0,0)" }, "funcname": "AddCustomRectFontGlyph", - "location": "imgui", + "location": "imgui:2378", "ov_cimguiname": "ImFontAtlas_AddCustomRectFontGlyph", "ret": "int", "signature": "(ImFont*,ImWchar,int,int,float,const ImVec2)", @@ -2592,9 +2595,9 @@ "argsoriginal": "(int width,int height)", "call_args": "(width,height)", "cimguiname": "ImFontAtlas_AddCustomRectRegular", - "defaults": [], + "defaults": {}, "funcname": "AddCustomRectRegular", - "location": "imgui", + "location": "imgui:2377", "ov_cimguiname": "ImFontAtlas_AddCustomRectRegular", "ret": "int", "signature": "(int,int)", @@ -2617,9 +2620,9 @@ "argsoriginal": "(const ImFontConfig* font_cfg)", "call_args": "(font_cfg)", "cimguiname": "ImFontAtlas_AddFont", - "defaults": [], + "defaults": {}, "funcname": "AddFont", - "location": "imgui", + "location": "imgui:2329", "ov_cimguiname": "ImFontAtlas_AddFont", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -2643,10 +2646,10 @@ "call_args": "(font_cfg)", "cimguiname": "ImFontAtlas_AddFontDefault", "defaults": { - "font_cfg": "((void*)0)" + "font_cfg": "NULL" }, "funcname": "AddFontDefault", - "location": "imgui", + "location": "imgui:2330", "ov_cimguiname": "ImFontAtlas_AddFontDefault", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -2682,11 +2685,11 @@ "call_args": "(filename,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromFileTTF", "defaults": { - "font_cfg": "((void*)0)", - "glyph_ranges": "((void*)0)" + "font_cfg": "NULL", + "glyph_ranges": "NULL" }, "funcname": "AddFontFromFileTTF", - "location": "imgui", + "location": "imgui:2331", "ov_cimguiname": "ImFontAtlas_AddFontFromFileTTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -2722,11 +2725,11 @@ "call_args": "(compressed_font_data_base85,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "defaults": { - "font_cfg": "((void*)0)", - "glyph_ranges": "((void*)0)" + "font_cfg": "NULL", + "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedBase85TTF", - "location": "imgui", + "location": "imgui:2334", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -2766,11 +2769,11 @@ "call_args": "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "defaults": { - "font_cfg": "((void*)0)", - "glyph_ranges": "((void*)0)" + "font_cfg": "NULL", + "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedTTF", - "location": "imgui", + "location": "imgui:2333", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "ret": "ImFont*", "signature": "(const void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -2810,11 +2813,11 @@ "call_args": "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "defaults": { - "font_cfg": "((void*)0)", - "glyph_ranges": "((void*)0)" + "font_cfg": "NULL", + "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryTTF", - "location": "imgui", + "location": "imgui:2332", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "ret": "ImFont*", "signature": "(void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -2833,9 +2836,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_Build", - "defaults": [], + "defaults": {}, "funcname": "Build", - "location": "imgui", + "location": "imgui:2345", "ov_cimguiname": "ImFontAtlas_Build", "ret": "bool", "signature": "()", @@ -2866,9 +2869,9 @@ "argsoriginal": "(const ImFontAtlasCustomRect* rect,ImVec2* out_uv_min,ImVec2* out_uv_max)", "call_args": "(rect,out_uv_min,out_uv_max)", "cimguiname": "ImFontAtlas_CalcCustomRectUV", - "defaults": [], + "defaults": {}, "funcname": "CalcCustomRectUV", - "location": "imgui", + "location": "imgui:2382", "ov_cimguiname": "ImFontAtlas_CalcCustomRectUV", "ret": "void", "signature": "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const", @@ -2887,9 +2890,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_Clear", - "defaults": [], + "defaults": {}, "funcname": "Clear", - "location": "imgui", + "location": "imgui:2338", "ov_cimguiname": "ImFontAtlas_Clear", "ret": "void", "signature": "()", @@ -2908,9 +2911,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_ClearFonts", - "defaults": [], + "defaults": {}, "funcname": "ClearFonts", - "location": "imgui", + "location": "imgui:2337", "ov_cimguiname": "ImFontAtlas_ClearFonts", "ret": "void", "signature": "()", @@ -2929,9 +2932,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_ClearInputData", - "defaults": [], + "defaults": {}, "funcname": "ClearInputData", - "location": "imgui", + "location": "imgui:2335", "ov_cimguiname": "ImFontAtlas_ClearInputData", "ret": "void", "signature": "()", @@ -2950,9 +2953,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_ClearTexData", - "defaults": [], + "defaults": {}, "funcname": "ClearTexData", - "location": "imgui", + "location": "imgui:2336", "ov_cimguiname": "ImFontAtlas_ClearTexData", "ret": "void", "signature": "()", @@ -2975,9 +2978,9 @@ "argsoriginal": "(int index)", "call_args": "(index)", "cimguiname": "ImFontAtlas_GetCustomRectByIndex", - "defaults": [], + "defaults": {}, "funcname": "GetCustomRectByIndex", - "location": "imgui", + "location": "imgui:2379", "ov_cimguiname": "ImFontAtlas_GetCustomRectByIndex", "ret": "ImFontAtlasCustomRect*", "signature": "(int)", @@ -2996,9 +2999,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", - "defaults": [], + "defaults": {}, "funcname": "GetGlyphRangesChineseFull", - "location": "imgui", + "location": "imgui:2361", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "ret": "const ImWchar*", "signature": "()", @@ -3017,9 +3020,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", - "defaults": [], + "defaults": {}, "funcname": "GetGlyphRangesChineseSimplifiedCommon", - "location": "imgui", + "location": "imgui:2362", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "ret": "const ImWchar*", "signature": "()", @@ -3038,9 +3041,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", - "defaults": [], + "defaults": {}, "funcname": "GetGlyphRangesCyrillic", - "location": "imgui", + "location": "imgui:2363", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "ret": "const ImWchar*", "signature": "()", @@ -3059,9 +3062,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesDefault", - "defaults": [], + "defaults": {}, "funcname": "GetGlyphRangesDefault", - "location": "imgui", + "location": "imgui:2358", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "ret": "const ImWchar*", "signature": "()", @@ -3080,9 +3083,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", - "defaults": [], + "defaults": {}, "funcname": "GetGlyphRangesJapanese", - "location": "imgui", + "location": "imgui:2360", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "ret": "const ImWchar*", "signature": "()", @@ -3101,9 +3104,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesKorean", - "defaults": [], + "defaults": {}, "funcname": "GetGlyphRangesKorean", - "location": "imgui", + "location": "imgui:2359", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "ret": "const ImWchar*", "signature": "()", @@ -3122,9 +3125,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesThai", - "defaults": [], + "defaults": {}, "funcname": "GetGlyphRangesThai", - "location": "imgui", + "location": "imgui:2364", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesThai", "ret": "const ImWchar*", "signature": "()", @@ -3143,9 +3146,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", - "defaults": [], + "defaults": {}, "funcname": "GetGlyphRangesVietnamese", - "location": "imgui", + "location": "imgui:2365", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "ret": "const ImWchar*", "signature": "()", @@ -3184,9 +3187,9 @@ "argsoriginal": "(ImGuiMouseCursor cursor,ImVec2* out_offset,ImVec2* out_size,ImVec2 out_uv_border[2],ImVec2 out_uv_fill[2])", "call_args": "(cursor,out_offset,out_size,out_uv_border,out_uv_fill)", "cimguiname": "ImFontAtlas_GetMouseCursorTexData", - "defaults": [], + "defaults": {}, "funcname": "GetMouseCursorTexData", - "location": "imgui", + "location": "imgui:2383", "ov_cimguiname": "ImFontAtlas_GetMouseCursorTexData", "ret": "bool", "signature": "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])", @@ -3222,10 +3225,10 @@ "call_args": "(out_pixels,out_width,out_height,out_bytes_per_pixel)", "cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "defaults": { - "out_bytes_per_pixel": "((void*)0)" + "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsAlpha8", - "location": "imgui", + "location": "imgui:2346", "ov_cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -3261,10 +3264,10 @@ "call_args": "(out_pixels,out_width,out_height,out_bytes_per_pixel)", "cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "defaults": { - "out_bytes_per_pixel": "((void*)0)" + "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsRGBA32", - "location": "imgui", + "location": "imgui:2347", "ov_cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -3279,9 +3282,9 @@ "call_args": "()", "cimguiname": "ImFontAtlas_ImFontAtlas", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImFontAtlas", - "location": "imgui", + "location": "imgui:2327", "ov_cimguiname": "ImFontAtlas_ImFontAtlas", "signature": "()", "stname": "ImFontAtlas" @@ -3299,9 +3302,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_IsBuilt", - "defaults": [], + "defaults": {}, "funcname": "IsBuilt", - "location": "imgui", + "location": "imgui:2348", "ov_cimguiname": "ImFontAtlas_IsBuilt", "ret": "bool", "signature": "()const", @@ -3324,9 +3327,9 @@ "argsoriginal": "(ImTextureID id)", "call_args": "(id)", "cimguiname": "ImFontAtlas_SetTexID", - "defaults": [], + "defaults": {}, "funcname": "SetTexID", - "location": "imgui", + "location": "imgui:2349", "ov_cimguiname": "ImFontAtlas_SetTexID", "ret": "void", "signature": "(ImTextureID)", @@ -3344,9 +3347,11 @@ ], "call_args": "(self)", "cimguiname": "ImFontAtlas_destroy", - "defaults": [], + "defaults": {}, "destructor": true, + "location": "imgui:2328", "ov_cimguiname": "ImFontAtlas_destroy", + "realdestructor": true, "ret": "void", "signature": "(ImFontAtlas*)", "stname": "ImFontAtlas" @@ -3360,9 +3365,9 @@ "call_args": "()", "cimguiname": "ImFontConfig_ImFontConfig", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImFontConfig", - "location": "imgui", + "location": "imgui:2256", "ov_cimguiname": "ImFontConfig_ImFontConfig", "signature": "()", "stname": "ImFontConfig" @@ -3379,7 +3384,7 @@ ], "call_args": "(self)", "cimguiname": "ImFontConfig_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImFontConfig_destroy", "ret": "void", @@ -3403,9 +3408,9 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFontGlyphRangesBuilder_AddChar", - "defaults": [], + "defaults": {}, "funcname": "AddChar", - "location": "imgui", + "location": "imgui:2280", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", "ret": "void", "signature": "(ImWchar)", @@ -3428,9 +3433,9 @@ "argsoriginal": "(const ImWchar* ranges)", "call_args": "(ranges)", "cimguiname": "ImFontGlyphRangesBuilder_AddRanges", - "defaults": [], + "defaults": {}, "funcname": "AddRanges", - "location": "imgui", + "location": "imgui:2282", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "ret": "void", "signature": "(const ImWchar*)", @@ -3458,10 +3463,10 @@ "call_args": "(text,text_end)", "cimguiname": "ImFontGlyphRangesBuilder_AddText", "defaults": { - "text_end": "((void*)0)" + "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui", + "location": "imgui:2281", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddText", "ret": "void", "signature": "(const char*,const char*)", @@ -3484,9 +3489,9 @@ "argsoriginal": "(ImVector* out_ranges)", "call_args": "(out_ranges)", "cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", - "defaults": [], + "defaults": {}, "funcname": "BuildRanges", - "location": "imgui", + "location": "imgui:2283", "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "ret": "void", "signature": "(ImVector_ImWchar*)", @@ -3505,9 +3510,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontGlyphRangesBuilder_Clear", - "defaults": [], + "defaults": {}, "funcname": "Clear", - "location": "imgui", + "location": "imgui:2277", "ov_cimguiname": "ImFontGlyphRangesBuilder_Clear", "ret": "void", "signature": "()", @@ -3530,9 +3535,9 @@ "argsoriginal": "(size_t n)", "call_args": "(n)", "cimguiname": "ImFontGlyphRangesBuilder_GetBit", - "defaults": [], + "defaults": {}, "funcname": "GetBit", - "location": "imgui", + "location": "imgui:2278", "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", "ret": "bool", "signature": "(size_t)const", @@ -3547,9 +3552,9 @@ "call_args": "()", "cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImFontGlyphRangesBuilder", - "location": "imgui", + "location": "imgui:2276", "ov_cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "signature": "()", "stname": "ImFontGlyphRangesBuilder" @@ -3571,9 +3576,9 @@ "argsoriginal": "(size_t n)", "call_args": "(n)", "cimguiname": "ImFontGlyphRangesBuilder_SetBit", - "defaults": [], + "defaults": {}, "funcname": "SetBit", - "location": "imgui", + "location": "imgui:2279", "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", "ret": "void", "signature": "(size_t)", @@ -3591,7 +3596,7 @@ ], "call_args": "(self)", "cimguiname": "ImFontGlyphRangesBuilder_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImFontGlyphRangesBuilder_destroy", "ret": "void", @@ -3601,7 +3606,7 @@ ], "ImFont_AddGlyph": [ { - "args": "(ImFont* self,ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x)", + "args": "(ImFont* self,const ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x)", "argsT": [ { "name": "self", @@ -3609,7 +3614,7 @@ }, { "name": "src_cfg", - "type": "ImFontConfig*" + "type": "const ImFontConfig*" }, { "name": "c", @@ -3652,15 +3657,15 @@ "type": "float" } ], - "argsoriginal": "(ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x)", + "argsoriginal": "(const ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x)", "call_args": "(src_cfg,c,x0,y0,x1,y1,u0,v0,u1,v1,advance_x)", "cimguiname": "ImFont_AddGlyph", - "defaults": [], + "defaults": {}, "funcname": "AddGlyph", - "location": "imgui", + "location": "imgui:2464", "ov_cimguiname": "ImFont_AddGlyph", "ret": "void", - "signature": "(ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)", + "signature": "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)", "stname": "ImFont" } ], @@ -3692,7 +3697,7 @@ "overwrite_dst": "true" }, "funcname": "AddRemapChar", - "location": "imgui", + "location": "imgui:2465", "ov_cimguiname": "ImFont_AddRemapChar", "ret": "void", "signature": "(ImWchar,ImWchar,bool)", @@ -3711,9 +3716,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFont_BuildLookupTable", - "defaults": [], + "defaults": {}, "funcname": "BuildLookupTable", - "location": "imgui", + "location": "imgui:2461", "ov_cimguiname": "ImFont_BuildLookupTable", "ret": "void", "signature": "()", @@ -3761,11 +3766,11 @@ "call_args": "(size,max_width,wrap_width,text_begin,text_end,remaining)", "cimguiname": "ImFont_CalcTextSizeA", "defaults": { - "remaining": "((void*)0)", - "text_end": "((void*)0)" + "remaining": "NULL", + "text_end": "NULL" }, "funcname": "CalcTextSizeA", - "location": "imgui", + "location": "imgui:2455", "nonUDT": 1, "ov_cimguiname": "ImFont_CalcTextSizeA", "ret": "void", @@ -3801,9 +3806,9 @@ "argsoriginal": "(float scale,const char* text,const char* text_end,float wrap_width)", "call_args": "(scale,text,text_end,wrap_width)", "cimguiname": "ImFont_CalcWordWrapPositionA", - "defaults": [], + "defaults": {}, "funcname": "CalcWordWrapPositionA", - "location": "imgui", + "location": "imgui:2456", "ov_cimguiname": "ImFont_CalcWordWrapPositionA", "ret": "const char*", "signature": "(float,const char*,const char*,float)const", @@ -3822,9 +3827,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFont_ClearOutputData", - "defaults": [], + "defaults": {}, "funcname": "ClearOutputData", - "location": "imgui", + "location": "imgui:2462", "ov_cimguiname": "ImFont_ClearOutputData", "ret": "void", "signature": "()", @@ -3847,9 +3852,9 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFont_FindGlyph", - "defaults": [], + "defaults": {}, "funcname": "FindGlyph", - "location": "imgui", + "location": "imgui:2447", "ov_cimguiname": "ImFont_FindGlyph", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -3872,9 +3877,9 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFont_FindGlyphNoFallback", - "defaults": [], + "defaults": {}, "funcname": "FindGlyphNoFallback", - "location": "imgui", + "location": "imgui:2448", "ov_cimguiname": "ImFont_FindGlyphNoFallback", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -3897,9 +3902,9 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFont_GetCharAdvance", - "defaults": [], + "defaults": {}, "funcname": "GetCharAdvance", - "location": "imgui", + "location": "imgui:2449", "ov_cimguiname": "ImFont_GetCharAdvance", "ret": "float", "signature": "(ImWchar)const", @@ -3918,9 +3923,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFont_GetDebugName", - "defaults": [], + "defaults": {}, "funcname": "GetDebugName", - "location": "imgui", + "location": "imgui:2451", "ov_cimguiname": "ImFont_GetDebugName", "ret": "const char*", "signature": "()const", @@ -3943,9 +3948,9 @@ "argsoriginal": "(int new_size)", "call_args": "(new_size)", "cimguiname": "ImFont_GrowIndex", - "defaults": [], + "defaults": {}, "funcname": "GrowIndex", - "location": "imgui", + "location": "imgui:2463", "ov_cimguiname": "ImFont_GrowIndex", "ret": "void", "signature": "(int)", @@ -3960,9 +3965,9 @@ "call_args": "()", "cimguiname": "ImFont_ImFont", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImFont", - "location": "imgui", + "location": "imgui:2445", "ov_cimguiname": "ImFont_ImFont", "signature": "()", "stname": "ImFont" @@ -3988,9 +3993,9 @@ "argsoriginal": "(unsigned int c_begin,unsigned int c_last)", "call_args": "(c_begin,c_last)", "cimguiname": "ImFont_IsGlyphRangeUnused", - "defaults": [], + "defaults": {}, "funcname": "IsGlyphRangeUnused", - "location": "imgui", + "location": "imgui:2468", "ov_cimguiname": "ImFont_IsGlyphRangeUnused", "ret": "bool", "signature": "(unsigned int,unsigned int)", @@ -4009,9 +4014,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFont_IsLoaded", - "defaults": [], + "defaults": {}, "funcname": "IsLoaded", - "location": "imgui", + "location": "imgui:2450", "ov_cimguiname": "ImFont_IsLoaded", "ret": "bool", "signature": "()const", @@ -4050,9 +4055,9 @@ "argsoriginal": "(ImDrawList* draw_list,float size,ImVec2 pos,ImU32 col,ImWchar c)", "call_args": "(draw_list,size,pos,col,c)", "cimguiname": "ImFont_RenderChar", - "defaults": [], + "defaults": {}, "funcname": "RenderChar", - "location": "imgui", + "location": "imgui:2457", "ov_cimguiname": "ImFont_RenderChar", "ret": "void", "signature": "(ImDrawList*,float,ImVec2,ImU32,ImWchar)const", @@ -4112,7 +4117,7 @@ "wrap_width": "0.0f" }, "funcname": "RenderText", - "location": "imgui", + "location": "imgui:2458", "ov_cimguiname": "ImFont_RenderText", "ret": "void", "signature": "(ImDrawList*,float,ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const", @@ -4135,9 +4140,9 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFont_SetFallbackChar", - "defaults": [], + "defaults": {}, "funcname": "SetFallbackChar", - "location": "imgui", + "location": "imgui:2467", "ov_cimguiname": "ImFont_SetFallbackChar", "ret": "void", "signature": "(ImWchar)", @@ -4164,9 +4169,9 @@ "argsoriginal": "(ImWchar c,bool visible)", "call_args": "(c,visible)", "cimguiname": "ImFont_SetGlyphVisible", - "defaults": [], + "defaults": {}, "funcname": "SetGlyphVisible", - "location": "imgui", + "location": "imgui:2466", "ov_cimguiname": "ImFont_SetGlyphVisible", "ret": "void", "signature": "(ImWchar,bool)", @@ -4184,9 +4189,11 @@ ], "call_args": "(self)", "cimguiname": "ImFont_destroy", - "defaults": [], + "defaults": {}, "destructor": true, + "location": "imgui:2446", "ov_cimguiname": "ImFont_destroy", + "realdestructor": true, "ret": "void", "signature": "(ImFont*)", "stname": "ImFont" @@ -4208,9 +4215,9 @@ "argsoriginal": "(unsigned int c)", "call_args": "(c)", "cimguiname": "ImGuiIO_AddInputCharacter", - "defaults": [], + "defaults": {}, "funcname": "AddInputCharacter", - "location": "imgui", + "location": "imgui:1589", "ov_cimguiname": "ImGuiIO_AddInputCharacter", "ret": "void", "signature": "(unsigned int)", @@ -4233,9 +4240,9 @@ "argsoriginal": "(ImWchar16 c)", "call_args": "(c)", "cimguiname": "ImGuiIO_AddInputCharacterUTF16", - "defaults": [], + "defaults": {}, "funcname": "AddInputCharacterUTF16", - "location": "imgui", + "location": "imgui:1590", "ov_cimguiname": "ImGuiIO_AddInputCharacterUTF16", "ret": "void", "signature": "(ImWchar16)", @@ -4258,9 +4265,9 @@ "argsoriginal": "(const char* str)", "call_args": "(str)", "cimguiname": "ImGuiIO_AddInputCharactersUTF8", - "defaults": [], + "defaults": {}, "funcname": "AddInputCharactersUTF8", - "location": "imgui", + "location": "imgui:1591", "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", "ret": "void", "signature": "(const char*)", @@ -4279,9 +4286,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiIO_ClearInputCharacters", - "defaults": [], + "defaults": {}, "funcname": "ClearInputCharacters", - "location": "imgui", + "location": "imgui:1592", "ov_cimguiname": "ImGuiIO_ClearInputCharacters", "ret": "void", "signature": "()", @@ -4296,9 +4303,9 @@ "call_args": "()", "cimguiname": "ImGuiIO_ImGuiIO", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiIO", - "location": "imgui", + "location": "imgui:1640", "ov_cimguiname": "ImGuiIO_ImGuiIO", "signature": "()", "stname": "ImGuiIO" @@ -4315,7 +4322,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiIO_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiIO_destroy", "ret": "void", @@ -4323,6 +4330,27 @@ "stname": "ImGuiIO" } ], + "ImGuiInputTextCallbackData_ClearSelection": [ + { + "args": "(ImGuiInputTextCallbackData* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextCallbackData*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextCallbackData_ClearSelection", + "defaults": {}, + "funcname": "ClearSelection", + "location": "imgui:1681", + "ov_cimguiname": "ImGuiInputTextCallbackData_ClearSelection", + "ret": "void", + "signature": "()", + "stname": "ImGuiInputTextCallbackData" + } + ], "ImGuiInputTextCallbackData_DeleteChars": [ { "args": "(ImGuiInputTextCallbackData* self,int pos,int bytes_count)", @@ -4343,9 +4371,9 @@ "argsoriginal": "(int pos,int bytes_count)", "call_args": "(pos,bytes_count)", "cimguiname": "ImGuiInputTextCallbackData_DeleteChars", - "defaults": [], + "defaults": {}, "funcname": "DeleteChars", - "location": "imgui", + "location": "imgui:1678", "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "ret": "void", "signature": "(int,int)", @@ -4364,9 +4392,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiInputTextCallbackData_HasSelection", - "defaults": [], + "defaults": {}, "funcname": "HasSelection", - "location": "imgui", + "location": "imgui:1682", "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", "signature": "()const", @@ -4381,9 +4409,9 @@ "call_args": "()", "cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiInputTextCallbackData", - "location": "imgui", + "location": "imgui:1677", "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "signature": "()", "stname": "ImGuiInputTextCallbackData" @@ -4414,16 +4442,37 @@ "call_args": "(pos,text,text_end)", "cimguiname": "ImGuiInputTextCallbackData_InsertChars", "defaults": { - "text_end": "((void*)0)" + "text_end": "NULL" }, "funcname": "InsertChars", - "location": "imgui", + "location": "imgui:1679", "ov_cimguiname": "ImGuiInputTextCallbackData_InsertChars", "ret": "void", "signature": "(int,const char*,const char*)", "stname": "ImGuiInputTextCallbackData" } ], + "ImGuiInputTextCallbackData_SelectAll": [ + { + "args": "(ImGuiInputTextCallbackData* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextCallbackData*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextCallbackData_SelectAll", + "defaults": {}, + "funcname": "SelectAll", + "location": "imgui:1680", + "ov_cimguiname": "ImGuiInputTextCallbackData_SelectAll", + "ret": "void", + "signature": "()", + "stname": "ImGuiInputTextCallbackData" + } + ], "ImGuiInputTextCallbackData_destroy": [ { "args": "(ImGuiInputTextCallbackData* self)", @@ -4435,7 +4484,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiInputTextCallbackData_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiInputTextCallbackData_destroy", "ret": "void", @@ -4467,7 +4516,7 @@ "items_height": "-1.0f" }, "funcname": "Begin", - "location": "imgui", + "location": "imgui:1921", "ov_cimguiname": "ImGuiListClipper_Begin", "ret": "void", "signature": "(int,float)", @@ -4486,9 +4535,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiListClipper_End", - "defaults": [], + "defaults": {}, "funcname": "End", - "location": "imgui", + "location": "imgui:1922", "ov_cimguiname": "ImGuiListClipper_End", "ret": "void", "signature": "()", @@ -4497,29 +4546,17 @@ ], "ImGuiListClipper_ImGuiListClipper": [ { - "args": "(int items_count,float items_height)", - "argsT": [ - { - "name": "items_count", - "type": "int" - }, - { - "name": "items_height", - "type": "float" - } - ], - "argsoriginal": "(int items_count=-1,float items_height=-1.0f)", - "call_args": "(items_count,items_height)", + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", "cimguiname": "ImGuiListClipper_ImGuiListClipper", "constructor": true, - "defaults": { - "items_count": "-1", - "items_height": "-1.0f" - }, + "defaults": {}, "funcname": "ImGuiListClipper", - "location": "imgui", + "location": "imgui:1916", "ov_cimguiname": "ImGuiListClipper_ImGuiListClipper", - "signature": "(int,float)", + "signature": "()", "stname": "ImGuiListClipper" } ], @@ -4535,9 +4572,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiListClipper_Step", - "defaults": [], + "defaults": {}, "funcname": "Step", - "location": "imgui", + "location": "imgui:1923", "ov_cimguiname": "ImGuiListClipper_Step", "ret": "bool", "signature": "()", @@ -4555,9 +4592,11 @@ ], "call_args": "(self)", "cimguiname": "ImGuiListClipper_destroy", - "defaults": [], + "defaults": {}, "destructor": true, + "location": "imgui:1917", "ov_cimguiname": "ImGuiListClipper_destroy", + "realdestructor": true, "ret": "void", "signature": "(ImGuiListClipper*)", "stname": "ImGuiListClipper" @@ -4571,9 +4610,9 @@ "call_args": "()", "cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiOnceUponAFrame", - "location": "imgui", + "location": "imgui:1785", "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "signature": "()", "stname": "ImGuiOnceUponAFrame" @@ -4590,7 +4629,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiOnceUponAFrame_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiOnceUponAFrame_destroy", "ret": "void", @@ -4610,9 +4649,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiPayload_Clear", - "defaults": [], + "defaults": {}, "funcname": "Clear", - "location": "imgui", + "location": "imgui:1711", "ov_cimguiname": "ImGuiPayload_Clear", "ret": "void", "signature": "()", @@ -4627,9 +4666,9 @@ "call_args": "()", "cimguiname": "ImGuiPayload_ImGuiPayload", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiPayload", - "location": "imgui", + "location": "imgui:1710", "ov_cimguiname": "ImGuiPayload_ImGuiPayload", "signature": "()", "stname": "ImGuiPayload" @@ -4651,9 +4690,9 @@ "argsoriginal": "(const char* type)", "call_args": "(type)", "cimguiname": "ImGuiPayload_IsDataType", - "defaults": [], + "defaults": {}, "funcname": "IsDataType", - "location": "imgui", + "location": "imgui:1712", "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", "signature": "(const char*)const", @@ -4672,9 +4711,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiPayload_IsDelivery", - "defaults": [], + "defaults": {}, "funcname": "IsDelivery", - "location": "imgui", + "location": "imgui:1714", "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", "signature": "()const", @@ -4693,9 +4732,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiPayload_IsPreview", - "defaults": [], + "defaults": {}, "funcname": "IsPreview", - "location": "imgui", + "location": "imgui:1713", "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", "signature": "()const", @@ -4713,7 +4752,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiPayload_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiPayload_destroy", "ret": "void", @@ -4738,9 +4777,9 @@ "call_args": "(_key,_val_i)", "cimguiname": "ImGuiStoragePair_ImGuiStoragePair", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui", + "location": "imgui:1852", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePairInt", "signature": "(ImGuiID,int)", "stname": "ImGuiStoragePair" @@ -4761,9 +4800,9 @@ "call_args": "(_key,_val_f)", "cimguiname": "ImGuiStoragePair_ImGuiStoragePair", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui", + "location": "imgui:1853", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePairFloat", "signature": "(ImGuiID,float)", "stname": "ImGuiStoragePair" @@ -4784,9 +4823,9 @@ "call_args": "(_key,_val_p)", "cimguiname": "ImGuiStoragePair_ImGuiStoragePair", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui", + "location": "imgui:1854", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePairPtr", "signature": "(ImGuiID,void*)", "stname": "ImGuiStoragePair" @@ -4803,7 +4842,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiStoragePair_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiStoragePair_destroy", "ret": "void", @@ -4823,9 +4862,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiStorage_BuildSortByKey", - "defaults": [], + "defaults": {}, "funcname": "BuildSortByKey", - "location": "imgui", + "location": "imgui:1885", "ov_cimguiname": "ImGuiStorage_BuildSortByKey", "ret": "void", "signature": "()", @@ -4844,9 +4883,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiStorage_Clear", - "defaults": [], + "defaults": {}, "funcname": "Clear", - "location": "imgui", + "location": "imgui:1862", "ov_cimguiname": "ImGuiStorage_Clear", "ret": "void", "signature": "()", @@ -4877,7 +4916,7 @@ "default_val": "false" }, "funcname": "GetBool", - "location": "imgui", + "location": "imgui:1865", "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", "signature": "(ImGuiID,bool)const", @@ -4908,7 +4947,7 @@ "default_val": "false" }, "funcname": "GetBoolRef", - "location": "imgui", + "location": "imgui:1877", "ov_cimguiname": "ImGuiStorage_GetBoolRef", "ret": "bool*", "signature": "(ImGuiID,bool)", @@ -4939,7 +4978,7 @@ "default_val": "0.0f" }, "funcname": "GetFloat", - "location": "imgui", + "location": "imgui:1867", "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", "signature": "(ImGuiID,float)const", @@ -4970,7 +5009,7 @@ "default_val": "0.0f" }, "funcname": "GetFloatRef", - "location": "imgui", + "location": "imgui:1878", "ov_cimguiname": "ImGuiStorage_GetFloatRef", "ret": "float*", "signature": "(ImGuiID,float)", @@ -5001,7 +5040,7 @@ "default_val": "0" }, "funcname": "GetInt", - "location": "imgui", + "location": "imgui:1863", "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", "signature": "(ImGuiID,int)const", @@ -5032,7 +5071,7 @@ "default_val": "0" }, "funcname": "GetIntRef", - "location": "imgui", + "location": "imgui:1876", "ov_cimguiname": "ImGuiStorage_GetIntRef", "ret": "int*", "signature": "(ImGuiID,int)", @@ -5055,9 +5094,9 @@ "argsoriginal": "(ImGuiID key)", "call_args": "(key)", "cimguiname": "ImGuiStorage_GetVoidPtr", - "defaults": [], + "defaults": {}, "funcname": "GetVoidPtr", - "location": "imgui", + "location": "imgui:1869", "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", "signature": "(ImGuiID)const", @@ -5085,10 +5124,10 @@ "call_args": "(key,default_val)", "cimguiname": "ImGuiStorage_GetVoidPtrRef", "defaults": { - "default_val": "((void*)0)" + "default_val": "NULL" }, "funcname": "GetVoidPtrRef", - "location": "imgui", + "location": "imgui:1879", "ov_cimguiname": "ImGuiStorage_GetVoidPtrRef", "ret": "void**", "signature": "(ImGuiID,void*)", @@ -5111,9 +5150,9 @@ "argsoriginal": "(int val)", "call_args": "(val)", "cimguiname": "ImGuiStorage_SetAllInt", - "defaults": [], + "defaults": {}, "funcname": "SetAllInt", - "location": "imgui", + "location": "imgui:1882", "ov_cimguiname": "ImGuiStorage_SetAllInt", "ret": "void", "signature": "(int)", @@ -5140,9 +5179,9 @@ "argsoriginal": "(ImGuiID key,bool val)", "call_args": "(key,val)", "cimguiname": "ImGuiStorage_SetBool", - "defaults": [], + "defaults": {}, "funcname": "SetBool", - "location": "imgui", + "location": "imgui:1866", "ov_cimguiname": "ImGuiStorage_SetBool", "ret": "void", "signature": "(ImGuiID,bool)", @@ -5169,9 +5208,9 @@ "argsoriginal": "(ImGuiID key,float val)", "call_args": "(key,val)", "cimguiname": "ImGuiStorage_SetFloat", - "defaults": [], + "defaults": {}, "funcname": "SetFloat", - "location": "imgui", + "location": "imgui:1868", "ov_cimguiname": "ImGuiStorage_SetFloat", "ret": "void", "signature": "(ImGuiID,float)", @@ -5198,9 +5237,9 @@ "argsoriginal": "(ImGuiID key,int val)", "call_args": "(key,val)", "cimguiname": "ImGuiStorage_SetInt", - "defaults": [], + "defaults": {}, "funcname": "SetInt", - "location": "imgui", + "location": "imgui:1864", "ov_cimguiname": "ImGuiStorage_SetInt", "ret": "void", "signature": "(ImGuiID,int)", @@ -5227,9 +5266,9 @@ "argsoriginal": "(ImGuiID key,void* val)", "call_args": "(key,val)", "cimguiname": "ImGuiStorage_SetVoidPtr", - "defaults": [], + "defaults": {}, "funcname": "SetVoidPtr", - "location": "imgui", + "location": "imgui:1870", "ov_cimguiname": "ImGuiStorage_SetVoidPtr", "ret": "void", "signature": "(ImGuiID,void*)", @@ -5244,9 +5283,9 @@ "call_args": "()", "cimguiname": "ImGuiStyle_ImGuiStyle", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiStyle", - "location": "imgui", + "location": "imgui:1496", "ov_cimguiname": "ImGuiStyle_ImGuiStyle", "signature": "()", "stname": "ImGuiStyle" @@ -5268,9 +5307,9 @@ "argsoriginal": "(float scale_factor)", "call_args": "(scale_factor)", "cimguiname": "ImGuiStyle_ScaleAllSizes", - "defaults": [], + "defaults": {}, "funcname": "ScaleAllSizes", - "location": "imgui", + "location": "imgui:1497", "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", "ret": "void", "signature": "(float)", @@ -5288,7 +5327,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiStyle_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiStyle_destroy", "ret": "void", @@ -5304,9 +5343,9 @@ "call_args": "()", "cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiTextBuffer", - "location": "imgui", + "location": "imgui:1823", "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "signature": "()", "stname": "ImGuiTextBuffer" @@ -5333,10 +5372,10 @@ "call_args": "(str,str_end)", "cimguiname": "ImGuiTextBuffer_append", "defaults": { - "str_end": "((void*)0)" + "str_end": "NULL" }, "funcname": "append", - "location": "imgui", + "location": "imgui:1832", "ov_cimguiname": "ImGuiTextBuffer_append", "ret": "void", "signature": "(const char*,const char*)", @@ -5363,10 +5402,10 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "ImGuiTextBuffer_appendf", - "defaults": [], + "defaults": {}, "funcname": "appendf", "isvararg": "...)", - "location": "imgui", + "location": "imgui:1833", "manual": true, "ov_cimguiname": "ImGuiTextBuffer_appendf", "ret": "void", @@ -5394,9 +5433,9 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "ImGuiTextBuffer_appendfv", - "defaults": [], + "defaults": {}, "funcname": "appendfv", - "location": "imgui", + "location": "imgui:1834", "ov_cimguiname": "ImGuiTextBuffer_appendfv", "ret": "void", "signature": "(const char*,va_list)", @@ -5415,9 +5454,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_begin", - "defaults": [], + "defaults": {}, "funcname": "begin", - "location": "imgui", + "location": "imgui:1825", "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", "signature": "()const", @@ -5436,9 +5475,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_c_str", - "defaults": [], + "defaults": {}, "funcname": "c_str", - "location": "imgui", + "location": "imgui:1831", "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", "signature": "()const", @@ -5457,9 +5496,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_clear", - "defaults": [], + "defaults": {}, "funcname": "clear", - "location": "imgui", + "location": "imgui:1829", "ov_cimguiname": "ImGuiTextBuffer_clear", "ret": "void", "signature": "()", @@ -5477,7 +5516,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiTextBuffer_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiTextBuffer_destroy", "ret": "void", @@ -5497,9 +5536,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_empty", - "defaults": [], + "defaults": {}, "funcname": "empty", - "location": "imgui", + "location": "imgui:1828", "ov_cimguiname": "ImGuiTextBuffer_empty", "ret": "bool", "signature": "()const", @@ -5518,9 +5557,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_end", - "defaults": [], + "defaults": {}, "funcname": "end", - "location": "imgui", + "location": "imgui:1826", "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", "signature": "()const", @@ -5543,9 +5582,9 @@ "argsoriginal": "(int capacity)", "call_args": "(capacity)", "cimguiname": "ImGuiTextBuffer_reserve", - "defaults": [], + "defaults": {}, "funcname": "reserve", - "location": "imgui", + "location": "imgui:1830", "ov_cimguiname": "ImGuiTextBuffer_reserve", "ret": "void", "signature": "(int)", @@ -5564,9 +5603,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_size", - "defaults": [], + "defaults": {}, "funcname": "size", - "location": "imgui", + "location": "imgui:1827", "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", "signature": "()const", @@ -5585,9 +5624,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextFilter_Build", - "defaults": [], + "defaults": {}, "funcname": "Build", - "location": "imgui", + "location": "imgui:1796", "ov_cimguiname": "ImGuiTextFilter_Build", "ret": "void", "signature": "()", @@ -5606,9 +5645,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextFilter_Clear", - "defaults": [], + "defaults": {}, "funcname": "Clear", - "location": "imgui", + "location": "imgui:1797", "ov_cimguiname": "ImGuiTextFilter_Clear", "ret": "void", "signature": "()", @@ -5640,7 +5679,7 @@ "width": "0.0f" }, "funcname": "Draw", - "location": "imgui", + "location": "imgui:1794", "ov_cimguiname": "ImGuiTextFilter_Draw", "ret": "bool", "signature": "(const char*,float)", @@ -5664,7 +5703,7 @@ "default_filter": "\"\"" }, "funcname": "ImGuiTextFilter", - "location": "imgui", + "location": "imgui:1793", "ov_cimguiname": "ImGuiTextFilter_ImGuiTextFilter", "signature": "(const char*)", "stname": "ImGuiTextFilter" @@ -5682,9 +5721,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextFilter_IsActive", - "defaults": [], + "defaults": {}, "funcname": "IsActive", - "location": "imgui", + "location": "imgui:1798", "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", "signature": "()const", @@ -5712,10 +5751,10 @@ "call_args": "(text,text_end)", "cimguiname": "ImGuiTextFilter_PassFilter", "defaults": { - "text_end": "((void*)0)" + "text_end": "NULL" }, "funcname": "PassFilter", - "location": "imgui", + "location": "imgui:1795", "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", "signature": "(const char*,const char*)const", @@ -5733,7 +5772,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiTextFilter_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiTextFilter_destroy", "ret": "void", @@ -5749,9 +5788,9 @@ "call_args": "()", "cimguiname": "ImGuiTextRange_ImGuiTextRange", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui", + "location": "imgui:1806", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRangeNil", "signature": "()", "stname": "ImGuiTextRange" @@ -5772,9 +5811,9 @@ "call_args": "(_b,_e)", "cimguiname": "ImGuiTextRange_ImGuiTextRange", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui", + "location": "imgui:1807", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRangeStr", "signature": "(const char*,const char*)", "stname": "ImGuiTextRange" @@ -5791,7 +5830,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiTextRange_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiTextRange_destroy", "ret": "void", @@ -5811,9 +5850,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextRange_empty", - "defaults": [], + "defaults": {}, "funcname": "empty", - "location": "imgui", + "location": "imgui:1808", "ov_cimguiname": "ImGuiTextRange_empty", "ret": "bool", "signature": "()const", @@ -5840,9 +5879,9 @@ "argsoriginal": "(char separator,ImVector* out)", "call_args": "(separator,out)", "cimguiname": "ImGuiTextRange_split", - "defaults": [], + "defaults": {}, "funcname": "split", - "location": "imgui", + "location": "imgui:1809", "ov_cimguiname": "ImGuiTextRange_split", "ret": "void", "signature": "(char,ImVector_ImGuiTextRange*)const", @@ -5857,9 +5896,9 @@ "call_args": "()", "cimguiname": "ImVec2_ImVec2", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImVec2", - "location": "imgui", + "location": "imgui:214", "ov_cimguiname": "ImVec2_ImVec2Nil", "signature": "()", "stname": "ImVec2" @@ -5880,9 +5919,9 @@ "call_args": "(_x,_y)", "cimguiname": "ImVec2_ImVec2", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImVec2", - "location": "imgui", + "location": "imgui:215", "ov_cimguiname": "ImVec2_ImVec2Float", "signature": "(float,float)", "stname": "ImVec2" @@ -5899,7 +5938,7 @@ ], "call_args": "(self)", "cimguiname": "ImVec2_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImVec2_destroy", "ret": "void", @@ -5915,9 +5954,9 @@ "call_args": "()", "cimguiname": "ImVec4_ImVec4", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImVec4", - "location": "imgui", + "location": "imgui:227", "ov_cimguiname": "ImVec4_ImVec4Nil", "signature": "()", "stname": "ImVec4" @@ -5946,9 +5985,9 @@ "call_args": "(_x,_y,_z,_w)", "cimguiname": "ImVec4_ImVec4", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImVec4", - "location": "imgui", + "location": "imgui:228", "ov_cimguiname": "ImVec4_ImVec4Float", "signature": "(float,float,float,float)", "stname": "ImVec4" @@ -5965,7 +6004,7 @@ ], "call_args": "(self)", "cimguiname": "ImVec4_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImVec4_destroy", "ret": "void", @@ -5981,9 +6020,9 @@ "call_args": "()", "cimguiname": "ImVector_ImVector", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImVector", - "location": "imgui", + "location": "imgui:1401", "ov_cimguiname": "ImVector_ImVectorNil", "signature": "()", "stname": "ImVector", @@ -6001,9 +6040,9 @@ "call_args": "(src)", "cimguiname": "ImVector_ImVector", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImVector", - "location": "imgui", + "location": "imgui:1402", "ov_cimguiname": "ImVector_ImVectorVector", "signature": "(const ImVector)", "stname": "ImVector", @@ -6026,9 +6065,9 @@ "argsoriginal": "(int sz)", "call_args": "(sz)", "cimguiname": "ImVector__grow_capacity", - "defaults": [], + "defaults": {}, "funcname": "_grow_capacity", - "location": "imgui", + "location": "imgui:1425", "ov_cimguiname": "ImVector__grow_capacity", "ret": "int", "signature": "(int)const", @@ -6048,9 +6087,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_back", - "defaults": [], + "defaults": {}, "funcname": "back", - "location": "imgui", + "location": "imgui:1421", "ov_cimguiname": "ImVector_backNil", "ret": "T*", "retref": "&", @@ -6069,9 +6108,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_back", - "defaults": [], + "defaults": {}, "funcname": "back", - "location": "imgui", + "location": "imgui:1422", "ov_cimguiname": "ImVector_back_const", "ret": "const T*", "retref": "&", @@ -6092,9 +6131,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_begin", - "defaults": [], + "defaults": {}, "funcname": "begin", - "location": "imgui", + "location": "imgui:1415", "ov_cimguiname": "ImVector_beginNil", "ret": "T*", "signature": "()", @@ -6112,9 +6151,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_begin", - "defaults": [], + "defaults": {}, "funcname": "begin", - "location": "imgui", + "location": "imgui:1416", "ov_cimguiname": "ImVector_begin_const", "ret": "const T*", "signature": "()const", @@ -6134,9 +6173,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_capacity", - "defaults": [], + "defaults": {}, "funcname": "capacity", - "location": "imgui", + "location": "imgui:1410", "ov_cimguiname": "ImVector_capacity", "ret": "int", "signature": "()const", @@ -6156,9 +6195,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_clear", - "defaults": [], + "defaults": {}, "funcname": "clear", - "location": "imgui", + "location": "imgui:1414", "ov_cimguiname": "ImVector_clear", "ret": "void", "signature": "()", @@ -6182,9 +6221,9 @@ "argsoriginal": "(const T& v)", "call_args": "(v)", "cimguiname": "ImVector_contains", - "defaults": [], + "defaults": {}, "funcname": "contains", - "location": "imgui", + "location": "imgui:1439", "ov_cimguiname": "ImVector_contains", "ret": "bool", "signature": "(const T)const", @@ -6203,9 +6242,11 @@ ], "call_args": "(self)", "cimguiname": "ImVector_destroy", - "defaults": [], + "defaults": {}, "destructor": true, + "location": "imgui:1404", "ov_cimguiname": "ImVector_destroy", + "realdestructor": true, "ret": "void", "signature": "(ImVector*)", "stname": "ImVector", @@ -6224,9 +6265,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_empty", - "defaults": [], + "defaults": {}, "funcname": "empty", - "location": "imgui", + "location": "imgui:1406", "ov_cimguiname": "ImVector_empty", "ret": "bool", "signature": "()const", @@ -6246,9 +6287,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_end", - "defaults": [], + "defaults": {}, "funcname": "end", - "location": "imgui", + "location": "imgui:1417", "ov_cimguiname": "ImVector_endNil", "ret": "T*", "signature": "()", @@ -6266,9 +6307,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_end", - "defaults": [], + "defaults": {}, "funcname": "end", - "location": "imgui", + "location": "imgui:1418", "ov_cimguiname": "ImVector_end_const", "ret": "const T*", "signature": "()const", @@ -6292,9 +6333,9 @@ "argsoriginal": "(const T* it)", "call_args": "(it)", "cimguiname": "ImVector_erase", - "defaults": [], + "defaults": {}, "funcname": "erase", - "location": "imgui", + "location": "imgui:1435", "ov_cimguiname": "ImVector_eraseNil", "ret": "T*", "signature": "(const T*)", @@ -6320,9 +6361,9 @@ "argsoriginal": "(const T* it,const T* it_last)", "call_args": "(it,it_last)", "cimguiname": "ImVector_erase", - "defaults": [], + "defaults": {}, "funcname": "erase", - "location": "imgui", + "location": "imgui:1436", "ov_cimguiname": "ImVector_eraseTPtr", "ret": "T*", "signature": "(const T*,const T*)", @@ -6346,9 +6387,9 @@ "argsoriginal": "(const T* it)", "call_args": "(it)", "cimguiname": "ImVector_erase_unsorted", - "defaults": [], + "defaults": {}, "funcname": "erase_unsorted", - "location": "imgui", + "location": "imgui:1437", "ov_cimguiname": "ImVector_erase_unsorted", "ret": "T*", "signature": "(const T*)", @@ -6372,9 +6413,9 @@ "argsoriginal": "(const T& v)", "call_args": "(v)", "cimguiname": "ImVector_find", - "defaults": [], + "defaults": {}, "funcname": "find", - "location": "imgui", + "location": "imgui:1440", "ov_cimguiname": "ImVector_findNil", "ret": "T*", "signature": "(const T)", @@ -6396,9 +6437,9 @@ "argsoriginal": "(const T& v)", "call_args": "(v)", "cimguiname": "ImVector_find", - "defaults": [], + "defaults": {}, "funcname": "find", - "location": "imgui", + "location": "imgui:1441", "ov_cimguiname": "ImVector_find_const", "ret": "const T*", "signature": "(const T)const", @@ -6422,9 +6463,9 @@ "argsoriginal": "(const T& v)", "call_args": "(v)", "cimguiname": "ImVector_find_erase", - "defaults": [], + "defaults": {}, "funcname": "find_erase", - "location": "imgui", + "location": "imgui:1442", "ov_cimguiname": "ImVector_find_erase", "ret": "bool", "signature": "(const T)", @@ -6448,9 +6489,9 @@ "argsoriginal": "(const T& v)", "call_args": "(v)", "cimguiname": "ImVector_find_erase_unsorted", - "defaults": [], + "defaults": {}, "funcname": "find_erase_unsorted", - "location": "imgui", + "location": "imgui:1443", "ov_cimguiname": "ImVector_find_erase_unsorted", "ret": "bool", "signature": "(const T)", @@ -6470,9 +6511,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_front", - "defaults": [], + "defaults": {}, "funcname": "front", - "location": "imgui", + "location": "imgui:1419", "ov_cimguiname": "ImVector_frontNil", "ret": "T*", "retref": "&", @@ -6491,9 +6532,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_front", - "defaults": [], + "defaults": {}, "funcname": "front", - "location": "imgui", + "location": "imgui:1420", "ov_cimguiname": "ImVector_front_const", "ret": "const T*", "retref": "&", @@ -6518,9 +6559,9 @@ "argsoriginal": "(const T* it)", "call_args": "(it)", "cimguiname": "ImVector_index_from_ptr", - "defaults": [], + "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui", + "location": "imgui:1444", "ov_cimguiname": "ImVector_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -6548,9 +6589,9 @@ "argsoriginal": "(const T* it,const T& v)", "call_args": "(it,v)", "cimguiname": "ImVector_insert", - "defaults": [], + "defaults": {}, "funcname": "insert", - "location": "imgui", + "location": "imgui:1438", "ov_cimguiname": "ImVector_insert", "ret": "T*", "signature": "(const T*,const T)", @@ -6558,6 +6599,28 @@ "templated": true } ], + "ImVector_max_size": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_max_size", + "defaults": {}, + "funcname": "max_size", + "location": "imgui:1409", + "ov_cimguiname": "ImVector_max_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector", + "templated": true + } + ], "ImVector_pop_back": [ { "args": "(ImVector* self)", @@ -6570,9 +6633,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_pop_back", - "defaults": [], + "defaults": {}, "funcname": "pop_back", - "location": "imgui", + "location": "imgui:1433", "ov_cimguiname": "ImVector_pop_back", "ret": "void", "signature": "()", @@ -6596,9 +6659,9 @@ "argsoriginal": "(const T& v)", "call_args": "(v)", "cimguiname": "ImVector_push_back", - "defaults": [], + "defaults": {}, "funcname": "push_back", - "location": "imgui", + "location": "imgui:1432", "ov_cimguiname": "ImVector_push_back", "ret": "void", "signature": "(const T)", @@ -6622,9 +6685,9 @@ "argsoriginal": "(const T& v)", "call_args": "(v)", "cimguiname": "ImVector_push_front", - "defaults": [], + "defaults": {}, "funcname": "push_front", - "location": "imgui", + "location": "imgui:1434", "ov_cimguiname": "ImVector_push_front", "ret": "void", "signature": "(const T)", @@ -6648,9 +6711,9 @@ "argsoriginal": "(int new_capacity)", "call_args": "(new_capacity)", "cimguiname": "ImVector_reserve", - "defaults": [], + "defaults": {}, "funcname": "reserve", - "location": "imgui", + "location": "imgui:1429", "ov_cimguiname": "ImVector_reserve", "ret": "void", "signature": "(int)", @@ -6674,9 +6737,9 @@ "argsoriginal": "(int new_size)", "call_args": "(new_size)", "cimguiname": "ImVector_resize", - "defaults": [], + "defaults": {}, "funcname": "resize", - "location": "imgui", + "location": "imgui:1426", "ov_cimguiname": "ImVector_resizeNil", "ret": "void", "signature": "(int)", @@ -6702,9 +6765,9 @@ "argsoriginal": "(int new_size,const T& v)", "call_args": "(new_size,v)", "cimguiname": "ImVector_resize", - "defaults": [], + "defaults": {}, "funcname": "resize", - "location": "imgui", + "location": "imgui:1427", "ov_cimguiname": "ImVector_resizeT", "ret": "void", "signature": "(int,const T)", @@ -6728,9 +6791,9 @@ "argsoriginal": "(int new_size)", "call_args": "(new_size)", "cimguiname": "ImVector_shrink", - "defaults": [], + "defaults": {}, "funcname": "shrink", - "location": "imgui", + "location": "imgui:1428", "ov_cimguiname": "ImVector_shrink", "ret": "void", "signature": "(int)", @@ -6750,9 +6813,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_size", - "defaults": [], + "defaults": {}, "funcname": "size", - "location": "imgui", + "location": "imgui:1407", "ov_cimguiname": "ImVector_size", "ret": "int", "signature": "()const", @@ -6772,9 +6835,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_size_in_bytes", - "defaults": [], + "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui", + "location": "imgui:1408", "ov_cimguiname": "ImVector_size_in_bytes", "ret": "int", "signature": "()const", @@ -6799,12 +6862,12 @@ "argsoriginal": "(ImVector& rhs)", "call_args": "(*rhs)", "cimguiname": "ImVector_swap", - "defaults": [], + "defaults": {}, "funcname": "swap", - "location": "imgui", + "location": "imgui:1423", "ov_cimguiname": "ImVector_swap", "ret": "void", - "signature": "(ImVector)", + "signature": "(ImVector*)", "stname": "ImVector", "templated": true } @@ -6829,7 +6892,7 @@ "flags": "0" }, "funcname": "AcceptDragDropPayload", - "location": "imgui", + "location": "imgui:677", "namespace": "ImGui", "ov_cimguiname": "igAcceptDragDropPayload", "ret": "const ImGuiPayload*", @@ -6844,9 +6907,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igAlignTextToFramePadding", - "defaults": [], + "defaults": {}, "funcname": "AlignTextToFramePadding", - "location": "imgui", + "location": "imgui:400", "namespace": "ImGui", "ov_cimguiname": "igAlignTextToFramePadding", "ret": "void", @@ -6870,9 +6933,9 @@ "argsoriginal": "(const char* str_id,ImGuiDir dir)", "call_args": "(str_id,dir)", "cimguiname": "igArrowButton", - "defaults": [], + "defaults": {}, "funcname": "ArrowButton", - "location": "imgui", + "location": "imgui:443", "namespace": "ImGui", "ov_cimguiname": "igArrowButton", "ret": "bool", @@ -6902,10 +6965,10 @@ "cimguiname": "igBegin", "defaults": { "flags": "0", - "p_open": "((void*)0)" + "p_open": "NULL" }, "funcname": "Begin", - "location": "imgui", + "location": "imgui:284", "namespace": "ImGui", "ov_cimguiname": "igBegin", "ret": "bool", @@ -6943,7 +7006,7 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginChild", - "location": "imgui", + "location": "imgui:292", "namespace": "ImGui", "ov_cimguiname": "igBeginChildStr", "ret": "bool", @@ -6979,7 +7042,7 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginChild", - "location": "imgui", + "location": "imgui:293", "namespace": "ImGui", "ov_cimguiname": "igBeginChildID", "ret": "bool", @@ -7011,7 +7074,7 @@ "flags": "0" }, "funcname": "BeginChildFrame", - "location": "imgui", + "location": "imgui:723", "namespace": "ImGui", "ov_cimguiname": "igBeginChildFrame", "ret": "bool", @@ -7043,7 +7106,7 @@ "flags": "0" }, "funcname": "BeginCombo", - "location": "imgui", + "location": "imgui:456", "namespace": "ImGui", "ov_cimguiname": "igBeginCombo", "ret": "bool", @@ -7067,7 +7130,7 @@ "flags": "0" }, "funcname": "BeginDragDropSource", - "location": "imgui", + "location": "imgui:673", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropSource", "ret": "bool", @@ -7082,9 +7145,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginDragDropTarget", - "defaults": [], + "defaults": {}, "funcname": "BeginDragDropTarget", - "location": "imgui", + "location": "imgui:676", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTarget", "ret": "bool", @@ -7099,9 +7162,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginGroup", - "defaults": [], + "defaults": {}, "funcname": "BeginGroup", - "location": "imgui", + "location": "imgui:389", "namespace": "ImGui", "ov_cimguiname": "igBeginGroup", "ret": "void", @@ -7116,9 +7179,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginMainMenuBar", - "defaults": [], + "defaults": {}, "funcname": "BeginMainMenuBar", - "location": "imgui", + "location": "imgui:588", "namespace": "ImGui", "ov_cimguiname": "igBeginMainMenuBar", "ret": "bool", @@ -7146,7 +7209,7 @@ "enabled": "true" }, "funcname": "BeginMenu", - "location": "imgui", + "location": "imgui:590", "namespace": "ImGui", "ov_cimguiname": "igBeginMenu", "ret": "bool", @@ -7161,9 +7224,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginMenuBar", - "defaults": [], + "defaults": {}, "funcname": "BeginMenuBar", - "location": "imgui", + "location": "imgui:586", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuBar", "ret": "bool", @@ -7191,7 +7254,7 @@ "flags": "0" }, "funcname": "BeginPopup", - "location": "imgui", + "location": "imgui:613", "namespace": "ImGui", "ov_cimguiname": "igBeginPopup", "ret": "bool", @@ -7217,10 +7280,10 @@ "cimguiname": "igBeginPopupContextItem", "defaults": { "popup_flags": "1", - "str_id": "((void*)0)" + "str_id": "NULL" }, "funcname": "BeginPopupContextItem", - "location": "imgui", + "location": "imgui:630", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextItem", "ret": "bool", @@ -7246,10 +7309,10 @@ "cimguiname": "igBeginPopupContextVoid", "defaults": { "popup_flags": "1", - "str_id": "((void*)0)" + "str_id": "NULL" }, "funcname": "BeginPopupContextVoid", - "location": "imgui", + "location": "imgui:632", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextVoid", "ret": "bool", @@ -7275,10 +7338,10 @@ "cimguiname": "igBeginPopupContextWindow", "defaults": { "popup_flags": "1", - "str_id": "((void*)0)" + "str_id": "NULL" }, "funcname": "BeginPopupContextWindow", - "location": "imgui", + "location": "imgui:631", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextWindow", "ret": "bool", @@ -7308,10 +7371,10 @@ "cimguiname": "igBeginPopupModal", "defaults": { "flags": "0", - "p_open": "((void*)0)" + "p_open": "NULL" }, "funcname": "BeginPopupModal", - "location": "imgui", + "location": "imgui:614", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupModal", "ret": "bool", @@ -7339,7 +7402,7 @@ "flags": "0" }, "funcname": "BeginTabBar", - "location": "imgui", + "location": "imgui:654", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBar", "ret": "bool", @@ -7369,10 +7432,10 @@ "cimguiname": "igBeginTabItem", "defaults": { "flags": "0", - "p_open": "((void*)0)" + "p_open": "NULL" }, "funcname": "BeginTabItem", - "location": "imgui", + "location": "imgui:656", "namespace": "ImGui", "ov_cimguiname": "igBeginTabItem", "ret": "bool", @@ -7387,9 +7450,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginTooltip", - "defaults": [], + "defaults": {}, "funcname": "BeginTooltip", - "location": "imgui", + "location": "imgui:597", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltip", "ret": "void", @@ -7404,9 +7467,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBullet", - "defaults": [], + "defaults": {}, "funcname": "Bullet", - "location": "imgui", + "location": "imgui:451", "namespace": "ImGui", "ov_cimguiname": "igBullet", "ret": "void", @@ -7430,10 +7493,10 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igBulletText", - "defaults": [], + "defaults": {}, "funcname": "BulletText", "isvararg": "...)", - "location": "imgui", + "location": "imgui:434", "namespace": "ImGui", "ov_cimguiname": "igBulletText", "ret": "void", @@ -7457,9 +7520,9 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igBulletTextV", - "defaults": [], + "defaults": {}, "funcname": "BulletTextV", - "location": "imgui", + "location": "imgui:435", "namespace": "ImGui", "ov_cimguiname": "igBulletTextV", "ret": "void", @@ -7487,7 +7550,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Button", - "location": "imgui", + "location": "imgui:440", "namespace": "ImGui", "ov_cimguiname": "igButton", "ret": "bool", @@ -7502,9 +7565,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igCalcItemWidth", - "defaults": [], + "defaults": {}, "funcname": "CalcItemWidth", - "location": "imgui", + "location": "imgui:367", "namespace": "ImGui", "ov_cimguiname": "igCalcItemWidth", "ret": "float", @@ -7536,9 +7599,9 @@ "argsoriginal": "(int items_count,float items_height,int* out_items_display_start,int* out_items_display_end)", "call_args": "(items_count,items_height,out_items_display_start,out_items_display_end)", "cimguiname": "igCalcListClipping", - "defaults": [], + "defaults": {}, "funcname": "CalcListClipping", - "location": "imgui", + "location": "imgui:722", "namespace": "ImGui", "ov_cimguiname": "igCalcListClipping", "ret": "void", @@ -7576,11 +7639,11 @@ "cimguiname": "igCalcTextSize", "defaults": { "hide_text_after_double_hash": "false", - "text_end": "((void*)0)", + "text_end": "NULL", "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", - "location": "imgui", + "location": "imgui:727", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcTextSize", @@ -7605,7 +7668,7 @@ "want_capture_keyboard_value": "true" }, "funcname": "CaptureKeyboardFromApp", - "location": "imgui", + "location": "imgui:743", "namespace": "ImGui", "ov_cimguiname": "igCaptureKeyboardFromApp", "ret": "void", @@ -7629,7 +7692,7 @@ "want_capture_mouse_value": "true" }, "funcname": "CaptureMouseFromApp", - "location": "imgui", + "location": "imgui:763", "namespace": "ImGui", "ov_cimguiname": "igCaptureMouseFromApp", "ret": "void", @@ -7653,9 +7716,9 @@ "argsoriginal": "(const char* label,bool* v)", "call_args": "(label,v)", "cimguiname": "igCheckbox", - "defaults": [], + "defaults": {}, "funcname": "Checkbox", - "location": "imgui", + "location": "imgui:446", "namespace": "ImGui", "ov_cimguiname": "igCheckbox", "ret": "bool", @@ -7683,9 +7746,9 @@ "argsoriginal": "(const char* label,unsigned int* flags,unsigned int flags_value)", "call_args": "(label,flags,flags_value)", "cimguiname": "igCheckboxFlags", - "defaults": [], + "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui", + "location": "imgui:447", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags", "ret": "bool", @@ -7700,9 +7763,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igCloseCurrentPopup", - "defaults": [], + "defaults": {}, "funcname": "CloseCurrentPopup", - "location": "imgui", + "location": "imgui:624", "namespace": "ImGui", "ov_cimguiname": "igCloseCurrentPopup", "ret": "void", @@ -7730,7 +7793,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui", + "location": "imgui:551", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeaderTreeNodeFlags", "ret": "bool", @@ -7760,7 +7823,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui", + "location": "imgui:552", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeaderBoolPtr", "ret": "bool", @@ -7797,7 +7860,7 @@ "size": "ImVec2(0,0)" }, "funcname": "ColorButton", - "location": "imgui", + "location": "imgui:532", "namespace": "ImGui", "ov_cimguiname": "igColorButton", "ret": "bool", @@ -7817,9 +7880,9 @@ "argsoriginal": "(const ImVec4& in)", "call_args": "(in)", "cimguiname": "igColorConvertFloat4ToU32", - "defaults": [], + "defaults": {}, "funcname": "ColorConvertFloat4ToU32", - "location": "imgui", + "location": "imgui:731", "namespace": "ImGui", "ov_cimguiname": "igColorConvertFloat4ToU32", "ret": "ImU32", @@ -7862,13 +7925,13 @@ "argsoriginal": "(float h,float s,float v,float& out_r,float& out_g,float& out_b)", "call_args": "(h,s,v,*out_r,*out_g,*out_b)", "cimguiname": "igColorConvertHSVtoRGB", - "defaults": [], + "defaults": {}, "funcname": "ColorConvertHSVtoRGB", - "location": "imgui", + "location": "imgui:733", "namespace": "ImGui", "ov_cimguiname": "igColorConvertHSVtoRGB", "ret": "void", - "signature": "(float,float,float,float,float,float)", + "signature": "(float,float,float,float*,float*,float*)", "stname": "" } ], @@ -7907,13 +7970,13 @@ "argsoriginal": "(float r,float g,float b,float& out_h,float& out_s,float& out_v)", "call_args": "(r,g,b,*out_h,*out_s,*out_v)", "cimguiname": "igColorConvertRGBtoHSV", - "defaults": [], + "defaults": {}, "funcname": "ColorConvertRGBtoHSV", - "location": "imgui", + "location": "imgui:732", "namespace": "ImGui", "ov_cimguiname": "igColorConvertRGBtoHSV", "ret": "void", - "signature": "(float,float,float,float,float,float)", + "signature": "(float,float,float,float*,float*,float*)", "stname": "" } ], @@ -7933,9 +7996,9 @@ "argsoriginal": "(ImU32 in)", "call_args": "(in)", "cimguiname": "igColorConvertU32ToFloat4", - "defaults": [], + "defaults": {}, "funcname": "ColorConvertU32ToFloat4", - "location": "imgui", + "location": "imgui:730", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igColorConvertU32ToFloat4", @@ -7968,7 +8031,7 @@ "flags": "0" }, "funcname": "ColorEdit3", - "location": "imgui", + "location": "imgui:528", "namespace": "ImGui", "ov_cimguiname": "igColorEdit3", "ret": "bool", @@ -8000,7 +8063,7 @@ "flags": "0" }, "funcname": "ColorEdit4", - "location": "imgui", + "location": "imgui:529", "namespace": "ImGui", "ov_cimguiname": "igColorEdit4", "ret": "bool", @@ -8032,7 +8095,7 @@ "flags": "0" }, "funcname": "ColorPicker3", - "location": "imgui", + "location": "imgui:530", "namespace": "ImGui", "ov_cimguiname": "igColorPicker3", "ret": "bool", @@ -8066,10 +8129,10 @@ "cimguiname": "igColorPicker4", "defaults": { "flags": "0", - "ref_col": "((void*)0)" + "ref_col": "NULL" }, "funcname": "ColorPicker4", - "location": "imgui", + "location": "imgui:531", "namespace": "ImGui", "ov_cimguiname": "igColorPicker4", "ret": "bool", @@ -8100,10 +8163,10 @@ "defaults": { "border": "true", "count": "1", - "id": "((void*)0)" + "id": "NULL" }, "funcname": "Columns", - "location": "imgui", + "location": "imgui:644", "namespace": "ImGui", "ov_cimguiname": "igColumns", "ret": "void", @@ -8143,7 +8206,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui", + "location": "imgui:458", "namespace": "ImGui", "ov_cimguiname": "igComboStr_arr", "ret": "bool", @@ -8177,7 +8240,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui", + "location": "imgui:459", "namespace": "ImGui", "ov_cimguiname": "igComboStr", "ret": "bool", @@ -8221,7 +8284,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui", + "location": "imgui:460", "namespace": "ImGui", "ov_cimguiname": "igComboFnBoolPtr", "ret": "bool", @@ -8242,10 +8305,10 @@ "call_args": "(shared_font_atlas)", "cimguiname": "igCreateContext", "defaults": { - "shared_font_atlas": "((void*)0)" + "shared_font_atlas": "NULL" }, "funcname": "CreateContext", - "location": "imgui", + "location": "imgui:244", "namespace": "ImGui", "ov_cimguiname": "igCreateContext", "ret": "ImGuiContext*", @@ -8289,9 +8352,9 @@ "argsoriginal": "(const char* version_str,size_t sz_io,size_t sz_style,size_t sz_vec2,size_t sz_vec4,size_t sz_drawvert,size_t sz_drawidx)", "call_args": "(version_str,sz_io,sz_style,sz_vec2,sz_vec4,sz_drawvert,sz_drawidx)", "cimguiname": "igDebugCheckVersionAndDataLayout", - "defaults": [], + "defaults": {}, "funcname": "DebugCheckVersionAndDataLayout", - "location": "imgui", + "location": "imgui:779", "namespace": "ImGui", "ov_cimguiname": "igDebugCheckVersionAndDataLayout", "ret": "bool", @@ -8312,10 +8375,10 @@ "call_args": "(ctx)", "cimguiname": "igDestroyContext", "defaults": { - "ctx": "((void*)0)" + "ctx": "NULL" }, "funcname": "DestroyContext", - "location": "imgui", + "location": "imgui:245", "namespace": "ImGui", "ov_cimguiname": "igDestroyContext", "ret": "void", @@ -8367,7 +8430,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat", - "location": "imgui", + "location": "imgui:473", "namespace": "ImGui", "ov_cimguiname": "igDragFloat", "ret": "bool", @@ -8419,7 +8482,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat2", - "location": "imgui", + "location": "imgui:474", "namespace": "ImGui", "ov_cimguiname": "igDragFloat2", "ret": "bool", @@ -8471,7 +8534,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat3", - "location": "imgui", + "location": "imgui:475", "namespace": "ImGui", "ov_cimguiname": "igDragFloat3", "ret": "bool", @@ -8523,7 +8586,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat4", - "location": "imgui", + "location": "imgui:476", "namespace": "ImGui", "ov_cimguiname": "igDragFloat4", "ret": "bool", @@ -8578,13 +8641,13 @@ "defaults": { "flags": "0", "format": "\"%.3f\"", - "format_max": "((void*)0)", + "format_max": "NULL", "v_max": "0.0f", "v_min": "0.0f", "v_speed": "1.0f" }, "funcname": "DragFloatRange2", - "location": "imgui", + "location": "imgui:477", "namespace": "ImGui", "ov_cimguiname": "igDragFloatRange2", "ret": "bool", @@ -8636,7 +8699,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt", - "location": "imgui", + "location": "imgui:478", "namespace": "ImGui", "ov_cimguiname": "igDragInt", "ret": "bool", @@ -8688,7 +8751,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt2", - "location": "imgui", + "location": "imgui:479", "namespace": "ImGui", "ov_cimguiname": "igDragInt2", "ret": "bool", @@ -8740,7 +8803,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt3", - "location": "imgui", + "location": "imgui:480", "namespace": "ImGui", "ov_cimguiname": "igDragInt3", "ret": "bool", @@ -8792,7 +8855,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt4", - "location": "imgui", + "location": "imgui:481", "namespace": "ImGui", "ov_cimguiname": "igDragInt4", "ret": "bool", @@ -8847,13 +8910,13 @@ "defaults": { "flags": "0", "format": "\"%d\"", - "format_max": "((void*)0)", + "format_max": "NULL", "v_max": "0", "v_min": "0", "v_speed": "1.0f" }, "funcname": "DragIntRange2", - "location": "imgui", + "location": "imgui:482", "namespace": "ImGui", "ov_cimguiname": "igDragIntRange2", "ret": "bool", @@ -8903,12 +8966,12 @@ "cimguiname": "igDragScalar", "defaults": { "flags": "0", - "format": "((void*)0)", - "p_max": "((void*)0)", - "p_min": "((void*)0)" + "format": "NULL", + "p_max": "NULL", + "p_min": "NULL" }, "funcname": "DragScalar", - "location": "imgui", + "location": "imgui:483", "namespace": "ImGui", "ov_cimguiname": "igDragScalar", "ret": "bool", @@ -8962,12 +9025,12 @@ "cimguiname": "igDragScalarN", "defaults": { "flags": "0", - "format": "((void*)0)", - "p_max": "((void*)0)", - "p_min": "((void*)0)" + "format": "NULL", + "p_max": "NULL", + "p_min": "NULL" }, "funcname": "DragScalarN", - "location": "imgui", + "location": "imgui:484", "namespace": "ImGui", "ov_cimguiname": "igDragScalarN", "ret": "bool", @@ -8987,9 +9050,9 @@ "argsoriginal": "(const ImVec2& size)", "call_args": "(size)", "cimguiname": "igDummy", - "defaults": [], + "defaults": {}, "funcname": "Dummy", - "location": "imgui", + "location": "imgui:386", "namespace": "ImGui", "ov_cimguiname": "igDummy", "ret": "void", @@ -9004,9 +9067,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEnd", - "defaults": [], + "defaults": {}, "funcname": "End", - "location": "imgui", + "location": "imgui:285", "namespace": "ImGui", "ov_cimguiname": "igEnd", "ret": "void", @@ -9021,9 +9084,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndChild", - "defaults": [], + "defaults": {}, "funcname": "EndChild", - "location": "imgui", + "location": "imgui:294", "namespace": "ImGui", "ov_cimguiname": "igEndChild", "ret": "void", @@ -9038,9 +9101,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndChildFrame", - "defaults": [], + "defaults": {}, "funcname": "EndChildFrame", - "location": "imgui", + "location": "imgui:724", "namespace": "ImGui", "ov_cimguiname": "igEndChildFrame", "ret": "void", @@ -9055,9 +9118,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndCombo", - "defaults": [], + "defaults": {}, "funcname": "EndCombo", - "location": "imgui", + "location": "imgui:457", "namespace": "ImGui", "ov_cimguiname": "igEndCombo", "ret": "void", @@ -9072,9 +9135,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndDragDropSource", - "defaults": [], + "defaults": {}, "funcname": "EndDragDropSource", - "location": "imgui", + "location": "imgui:675", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropSource", "ret": "void", @@ -9089,9 +9152,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndDragDropTarget", - "defaults": [], + "defaults": {}, "funcname": "EndDragDropTarget", - "location": "imgui", + "location": "imgui:678", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropTarget", "ret": "void", @@ -9106,9 +9169,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndFrame", - "defaults": [], + "defaults": {}, "funcname": "EndFrame", - "location": "imgui", + "location": "imgui:253", "namespace": "ImGui", "ov_cimguiname": "igEndFrame", "ret": "void", @@ -9123,9 +9186,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndGroup", - "defaults": [], + "defaults": {}, "funcname": "EndGroup", - "location": "imgui", + "location": "imgui:390", "namespace": "ImGui", "ov_cimguiname": "igEndGroup", "ret": "void", @@ -9140,9 +9203,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndMainMenuBar", - "defaults": [], + "defaults": {}, "funcname": "EndMainMenuBar", - "location": "imgui", + "location": "imgui:589", "namespace": "ImGui", "ov_cimguiname": "igEndMainMenuBar", "ret": "void", @@ -9157,9 +9220,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndMenu", - "defaults": [], + "defaults": {}, "funcname": "EndMenu", - "location": "imgui", + "location": "imgui:591", "namespace": "ImGui", "ov_cimguiname": "igEndMenu", "ret": "void", @@ -9174,9 +9237,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndMenuBar", - "defaults": [], + "defaults": {}, "funcname": "EndMenuBar", - "location": "imgui", + "location": "imgui:587", "namespace": "ImGui", "ov_cimguiname": "igEndMenuBar", "ret": "void", @@ -9191,9 +9254,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndPopup", - "defaults": [], + "defaults": {}, "funcname": "EndPopup", - "location": "imgui", + "location": "imgui:615", "namespace": "ImGui", "ov_cimguiname": "igEndPopup", "ret": "void", @@ -9208,9 +9271,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndTabBar", - "defaults": [], + "defaults": {}, "funcname": "EndTabBar", - "location": "imgui", + "location": "imgui:655", "namespace": "ImGui", "ov_cimguiname": "igEndTabBar", "ret": "void", @@ -9225,9 +9288,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndTabItem", - "defaults": [], + "defaults": {}, "funcname": "EndTabItem", - "location": "imgui", + "location": "imgui:657", "namespace": "ImGui", "ov_cimguiname": "igEndTabItem", "ret": "void", @@ -9242,9 +9305,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndTooltip", - "defaults": [], + "defaults": {}, "funcname": "EndTooltip", - "location": "imgui", + "location": "imgui:598", "namespace": "ImGui", "ov_cimguiname": "igEndTooltip", "ret": "void", @@ -9259,9 +9322,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetBackgroundDrawList", - "defaults": [], + "defaults": {}, "funcname": "GetBackgroundDrawList", - "location": "imgui", + "location": "imgui:716", "namespace": "ImGui", "ov_cimguiname": "igGetBackgroundDrawList", "ret": "ImDrawList*", @@ -9276,9 +9339,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetClipboardText", - "defaults": [], + "defaults": {}, "funcname": "GetClipboardText", - "location": "imgui", + "location": "imgui:767", "namespace": "ImGui", "ov_cimguiname": "igGetClipboardText", "ret": "const char*", @@ -9306,7 +9369,7 @@ "alpha_mul": "1.0f" }, "funcname": "GetColorU32", - "location": "imgui", + "location": "imgui:359", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32Col", "ret": "ImU32", @@ -9324,9 +9387,9 @@ "argsoriginal": "(const ImVec4& col)", "call_args": "(col)", "cimguiname": "igGetColorU32", - "defaults": [], + "defaults": {}, "funcname": "GetColorU32", - "location": "imgui", + "location": "imgui:360", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32Vec4", "ret": "ImU32", @@ -9344,9 +9407,9 @@ "argsoriginal": "(ImU32 col)", "call_args": "(col)", "cimguiname": "igGetColorU32", - "defaults": [], + "defaults": {}, "funcname": "GetColorU32", - "location": "imgui", + "location": "imgui:361", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32U32", "ret": "ImU32", @@ -9361,9 +9424,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetColumnIndex", - "defaults": [], + "defaults": {}, "funcname": "GetColumnIndex", - "location": "imgui", + "location": "imgui:646", "namespace": "ImGui", "ov_cimguiname": "igGetColumnIndex", "ret": "int", @@ -9387,7 +9450,7 @@ "column_index": "-1" }, "funcname": "GetColumnOffset", - "location": "imgui", + "location": "imgui:649", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffset", "ret": "float", @@ -9411,7 +9474,7 @@ "column_index": "-1" }, "funcname": "GetColumnWidth", - "location": "imgui", + "location": "imgui:647", "namespace": "ImGui", "ov_cimguiname": "igGetColumnWidth", "ret": "float", @@ -9426,9 +9489,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetColumnsCount", - "defaults": [], + "defaults": {}, "funcname": "GetColumnsCount", - "location": "imgui", + "location": "imgui:651", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsCount", "ret": "int", @@ -9448,9 +9511,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetContentRegionAvail", - "defaults": [], + "defaults": {}, "funcname": "GetContentRegionAvail", - "location": "imgui", + "location": "imgui:329", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionAvail", @@ -9471,9 +9534,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetContentRegionMax", - "defaults": [], + "defaults": {}, "funcname": "GetContentRegionMax", - "location": "imgui", + "location": "imgui:328", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionMax", @@ -9489,9 +9552,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCurrentContext", - "defaults": [], + "defaults": {}, "funcname": "GetCurrentContext", - "location": "imgui", + "location": "imgui:246", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentContext", "ret": "ImGuiContext*", @@ -9511,9 +9574,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorPos", - "defaults": [], + "defaults": {}, "funcname": "GetCursorPos", - "location": "imgui", + "location": "imgui:391", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorPos", @@ -9529,9 +9592,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorPosX", - "defaults": [], + "defaults": {}, "funcname": "GetCursorPosX", - "location": "imgui", + "location": "imgui:392", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosX", "ret": "float", @@ -9546,9 +9609,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorPosY", - "defaults": [], + "defaults": {}, "funcname": "GetCursorPosY", - "location": "imgui", + "location": "imgui:393", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosY", "ret": "float", @@ -9568,9 +9631,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorScreenPos", - "defaults": [], + "defaults": {}, "funcname": "GetCursorScreenPos", - "location": "imgui", + "location": "imgui:398", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorScreenPos", @@ -9591,9 +9654,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorStartPos", - "defaults": [], + "defaults": {}, "funcname": "GetCursorStartPos", - "location": "imgui", + "location": "imgui:397", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorStartPos", @@ -9609,9 +9672,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetDragDropPayload", - "defaults": [], + "defaults": {}, "funcname": "GetDragDropPayload", - "location": "imgui", + "location": "imgui:679", "namespace": "ImGui", "ov_cimguiname": "igGetDragDropPayload", "ret": "const ImGuiPayload*", @@ -9626,9 +9689,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetDrawData", - "defaults": [], + "defaults": {}, "funcname": "GetDrawData", - "location": "imgui", + "location": "imgui:255", "namespace": "ImGui", "ov_cimguiname": "igGetDrawData", "ret": "ImDrawData*", @@ -9643,9 +9706,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetDrawListSharedData", - "defaults": [], + "defaults": {}, "funcname": "GetDrawListSharedData", - "location": "imgui", + "location": "imgui:718", "namespace": "ImGui", "ov_cimguiname": "igGetDrawListSharedData", "ret": "ImDrawListSharedData*", @@ -9660,9 +9723,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFont", - "defaults": [], + "defaults": {}, "funcname": "GetFont", - "location": "imgui", + "location": "imgui:356", "namespace": "ImGui", "ov_cimguiname": "igGetFont", "ret": "ImFont*", @@ -9677,9 +9740,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFontSize", - "defaults": [], + "defaults": {}, "funcname": "GetFontSize", - "location": "imgui", + "location": "imgui:357", "namespace": "ImGui", "ov_cimguiname": "igGetFontSize", "ret": "float", @@ -9699,9 +9762,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFontTexUvWhitePixel", - "defaults": [], + "defaults": {}, "funcname": "GetFontTexUvWhitePixel", - "location": "imgui", + "location": "imgui:358", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetFontTexUvWhitePixel", @@ -9717,9 +9780,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetForegroundDrawList", - "defaults": [], + "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui", + "location": "imgui:717", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList", "ret": "ImDrawList*", @@ -9734,9 +9797,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFrameCount", - "defaults": [], + "defaults": {}, "funcname": "GetFrameCount", - "location": "imgui", + "location": "imgui:715", "namespace": "ImGui", "ov_cimguiname": "igGetFrameCount", "ret": "int", @@ -9751,9 +9814,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFrameHeight", - "defaults": [], + "defaults": {}, "funcname": "GetFrameHeight", - "location": "imgui", + "location": "imgui:403", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeight", "ret": "float", @@ -9768,9 +9831,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFrameHeightWithSpacing", - "defaults": [], + "defaults": {}, "funcname": "GetFrameHeightWithSpacing", - "location": "imgui", + "location": "imgui:404", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeightWithSpacing", "ret": "float", @@ -9790,9 +9853,9 @@ "argsoriginal": "(const char* str_id)", "call_args": "(str_id)", "cimguiname": "igGetID", - "defaults": [], + "defaults": {}, "funcname": "GetID", - "location": "imgui", + "location": "imgui:418", "namespace": "ImGui", "ov_cimguiname": "igGetIDStr", "ret": "ImGuiID", @@ -9814,9 +9877,9 @@ "argsoriginal": "(const char* str_id_begin,const char* str_id_end)", "call_args": "(str_id_begin,str_id_end)", "cimguiname": "igGetID", - "defaults": [], + "defaults": {}, "funcname": "GetID", - "location": "imgui", + "location": "imgui:419", "namespace": "ImGui", "ov_cimguiname": "igGetIDStrStr", "ret": "ImGuiID", @@ -9834,9 +9897,9 @@ "argsoriginal": "(const void* ptr_id)", "call_args": "(ptr_id)", "cimguiname": "igGetID", - "defaults": [], + "defaults": {}, "funcname": "GetID", - "location": "imgui", + "location": "imgui:420", "namespace": "ImGui", "ov_cimguiname": "igGetIDPtr", "ret": "ImGuiID", @@ -9851,9 +9914,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetIO", - "defaults": [], + "defaults": {}, "funcname": "GetIO", - "location": "imgui", + "location": "imgui:250", "namespace": "ImGui", "ov_cimguiname": "igGetIO", "ret": "ImGuiIO*", @@ -9874,9 +9937,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectMax", - "defaults": [], + "defaults": {}, "funcname": "GetItemRectMax", - "location": "imgui", + "location": "imgui:707", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMax", @@ -9897,9 +9960,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectMin", - "defaults": [], + "defaults": {}, "funcname": "GetItemRectMin", - "location": "imgui", + "location": "imgui:706", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMin", @@ -9920,9 +9983,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectSize", - "defaults": [], + "defaults": {}, "funcname": "GetItemRectSize", - "location": "imgui", + "location": "imgui:708", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectSize", @@ -9943,9 +10006,9 @@ "argsoriginal": "(ImGuiKey imgui_key)", "call_args": "(imgui_key)", "cimguiname": "igGetKeyIndex", - "defaults": [], + "defaults": {}, "funcname": "GetKeyIndex", - "location": "imgui", + "location": "imgui:738", "namespace": "ImGui", "ov_cimguiname": "igGetKeyIndex", "ret": "int", @@ -9973,9 +10036,9 @@ "argsoriginal": "(int key_index,float repeat_delay,float rate)", "call_args": "(key_index,repeat_delay,rate)", "cimguiname": "igGetKeyPressedAmount", - "defaults": [], + "defaults": {}, "funcname": "GetKeyPressedAmount", - "location": "imgui", + "location": "imgui:742", "namespace": "ImGui", "ov_cimguiname": "igGetKeyPressedAmount", "ret": "int", @@ -9990,9 +10053,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMouseCursor", - "defaults": [], + "defaults": {}, "funcname": "GetMouseCursor", - "location": "imgui", + "location": "imgui:761", "namespace": "ImGui", "ov_cimguiname": "igGetMouseCursor", "ret": "ImGuiMouseCursor", @@ -10025,7 +10088,7 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", - "location": "imgui", + "location": "imgui:759", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMouseDragDelta", @@ -10046,9 +10109,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMousePos", - "defaults": [], + "defaults": {}, "funcname": "GetMousePos", - "location": "imgui", + "location": "imgui:756", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePos", @@ -10069,9 +10132,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMousePosOnOpeningCurrentPopup", - "defaults": [], + "defaults": {}, "funcname": "GetMousePosOnOpeningCurrentPopup", - "location": "imgui", + "location": "imgui:757", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup", @@ -10087,9 +10150,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetScrollMaxX", - "defaults": [], + "defaults": {}, "funcname": "GetScrollMaxX", - "location": "imgui", + "location": "imgui:337", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxX", "ret": "float", @@ -10104,9 +10167,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetScrollMaxY", - "defaults": [], + "defaults": {}, "funcname": "GetScrollMaxY", - "location": "imgui", + "location": "imgui:338", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxY", "ret": "float", @@ -10121,9 +10184,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetScrollX", - "defaults": [], + "defaults": {}, "funcname": "GetScrollX", - "location": "imgui", + "location": "imgui:335", "namespace": "ImGui", "ov_cimguiname": "igGetScrollX", "ret": "float", @@ -10138,9 +10201,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetScrollY", - "defaults": [], + "defaults": {}, "funcname": "GetScrollY", - "location": "imgui", + "location": "imgui:336", "namespace": "ImGui", "ov_cimguiname": "igGetScrollY", "ret": "float", @@ -10155,9 +10218,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetStateStorage", - "defaults": [], + "defaults": {}, "funcname": "GetStateStorage", - "location": "imgui", + "location": "imgui:721", "namespace": "ImGui", "ov_cimguiname": "igGetStateStorage", "ret": "ImGuiStorage*", @@ -10172,9 +10235,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetStyle", - "defaults": [], + "defaults": {}, "funcname": "GetStyle", - "location": "imgui", + "location": "imgui:251", "namespace": "ImGui", "ov_cimguiname": "igGetStyle", "ret": "ImGuiStyle*", @@ -10195,9 +10258,9 @@ "argsoriginal": "(ImGuiCol idx)", "call_args": "(idx)", "cimguiname": "igGetStyleColorName", - "defaults": [], + "defaults": {}, "funcname": "GetStyleColorName", - "location": "imgui", + "location": "imgui:719", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorName", "ret": "const char*", @@ -10217,9 +10280,9 @@ "argsoriginal": "(ImGuiCol idx)", "call_args": "(idx)", "cimguiname": "igGetStyleColorVec4", - "defaults": [], + "defaults": {}, "funcname": "GetStyleColorVec4", - "location": "imgui", + "location": "imgui:355", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorVec4", "ret": "const ImVec4*", @@ -10235,9 +10298,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetTextLineHeight", - "defaults": [], + "defaults": {}, "funcname": "GetTextLineHeight", - "location": "imgui", + "location": "imgui:401", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeight", "ret": "float", @@ -10252,9 +10315,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetTextLineHeightWithSpacing", - "defaults": [], + "defaults": {}, "funcname": "GetTextLineHeightWithSpacing", - "location": "imgui", + "location": "imgui:402", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeightWithSpacing", "ret": "float", @@ -10269,9 +10332,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetTime", - "defaults": [], + "defaults": {}, "funcname": "GetTime", - "location": "imgui", + "location": "imgui:714", "namespace": "ImGui", "ov_cimguiname": "igGetTime", "ret": "double", @@ -10286,9 +10349,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetTreeNodeToLabelSpacing", - "defaults": [], + "defaults": {}, "funcname": "GetTreeNodeToLabelSpacing", - "location": "imgui", + "location": "imgui:550", "namespace": "ImGui", "ov_cimguiname": "igGetTreeNodeToLabelSpacing", "ret": "float", @@ -10303,9 +10366,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetVersion", - "defaults": [], + "defaults": {}, "funcname": "GetVersion", - "location": "imgui", + "location": "imgui:265", "namespace": "ImGui", "ov_cimguiname": "igGetVersion", "ret": "const char*", @@ -10325,9 +10388,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionMax", - "defaults": [], + "defaults": {}, "funcname": "GetWindowContentRegionMax", - "location": "imgui", + "location": "imgui:331", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowContentRegionMax", @@ -10348,9 +10411,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionMin", - "defaults": [], + "defaults": {}, "funcname": "GetWindowContentRegionMin", - "location": "imgui", + "location": "imgui:330", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowContentRegionMin", @@ -10366,9 +10429,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionWidth", - "defaults": [], + "defaults": {}, "funcname": "GetWindowContentRegionWidth", - "location": "imgui", + "location": "imgui:332", "namespace": "ImGui", "ov_cimguiname": "igGetWindowContentRegionWidth", "ret": "float", @@ -10383,9 +10446,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowDrawList", - "defaults": [], + "defaults": {}, "funcname": "GetWindowDrawList", - "location": "imgui", + "location": "imgui:302", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDrawList", "ret": "ImDrawList*", @@ -10400,9 +10463,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowHeight", - "defaults": [], + "defaults": {}, "funcname": "GetWindowHeight", - "location": "imgui", + "location": "imgui:306", "namespace": "ImGui", "ov_cimguiname": "igGetWindowHeight", "ret": "float", @@ -10422,9 +10485,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowPos", - "defaults": [], + "defaults": {}, "funcname": "GetWindowPos", - "location": "imgui", + "location": "imgui:303", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowPos", @@ -10445,9 +10508,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowSize", - "defaults": [], + "defaults": {}, "funcname": "GetWindowSize", - "location": "imgui", + "location": "imgui:304", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowSize", @@ -10463,9 +10526,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowWidth", - "defaults": [], + "defaults": {}, "funcname": "GetWindowWidth", - "location": "imgui", + "location": "imgui:305", "namespace": "ImGui", "ov_cimguiname": "igGetWindowWidth", "ret": "float", @@ -10512,7 +10575,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "Image", - "location": "imgui", + "location": "imgui:444", "namespace": "ImGui", "ov_cimguiname": "igImage", "ret": "void", @@ -10564,7 +10627,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "ImageButton", - "location": "imgui", + "location": "imgui:445", "namespace": "ImGui", "ov_cimguiname": "igImageButton", "ret": "bool", @@ -10588,7 +10651,7 @@ "indent_w": "0.0f" }, "funcname": "Indent", - "location": "imgui", + "location": "imgui:387", "namespace": "ImGui", "ov_cimguiname": "igIndent", "ret": "void", @@ -10635,7 +10698,7 @@ "step_fast": "0.0" }, "funcname": "InputDouble", - "location": "imgui", + "location": "imgui:521", "namespace": "ImGui", "ov_cimguiname": "igInputDouble", "ret": "bool", @@ -10682,7 +10745,7 @@ "step_fast": "0.0f" }, "funcname": "InputFloat", - "location": "imgui", + "location": "imgui:513", "namespace": "ImGui", "ov_cimguiname": "igInputFloat", "ret": "bool", @@ -10719,7 +10782,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat2", - "location": "imgui", + "location": "imgui:514", "namespace": "ImGui", "ov_cimguiname": "igInputFloat2", "ret": "bool", @@ -10756,7 +10819,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat3", - "location": "imgui", + "location": "imgui:515", "namespace": "ImGui", "ov_cimguiname": "igInputFloat3", "ret": "bool", @@ -10793,7 +10856,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat4", - "location": "imgui", + "location": "imgui:516", "namespace": "ImGui", "ov_cimguiname": "igInputFloat4", "ret": "bool", @@ -10835,7 +10898,7 @@ "step_fast": "100" }, "funcname": "InputInt", - "location": "imgui", + "location": "imgui:517", "namespace": "ImGui", "ov_cimguiname": "igInputInt", "ret": "bool", @@ -10867,7 +10930,7 @@ "flags": "0" }, "funcname": "InputInt2", - "location": "imgui", + "location": "imgui:518", "namespace": "ImGui", "ov_cimguiname": "igInputInt2", "ret": "bool", @@ -10899,7 +10962,7 @@ "flags": "0" }, "funcname": "InputInt3", - "location": "imgui", + "location": "imgui:519", "namespace": "ImGui", "ov_cimguiname": "igInputInt3", "ret": "bool", @@ -10931,7 +10994,7 @@ "flags": "0" }, "funcname": "InputInt4", - "location": "imgui", + "location": "imgui:520", "namespace": "ImGui", "ov_cimguiname": "igInputInt4", "ret": "bool", @@ -10977,12 +11040,12 @@ "cimguiname": "igInputScalar", "defaults": { "flags": "0", - "format": "((void*)0)", - "p_step": "((void*)0)", - "p_step_fast": "((void*)0)" + "format": "NULL", + "p_step": "NULL", + "p_step_fast": "NULL" }, "funcname": "InputScalar", - "location": "imgui", + "location": "imgui:522", "namespace": "ImGui", "ov_cimguiname": "igInputScalar", "ret": "bool", @@ -11032,12 +11095,12 @@ "cimguiname": "igInputScalarN", "defaults": { "flags": "0", - "format": "((void*)0)", - "p_step": "((void*)0)", - "p_step_fast": "((void*)0)" + "format": "NULL", + "p_step": "NULL", + "p_step_fast": "NULL" }, "funcname": "InputScalarN", - "location": "imgui", + "location": "imgui:523", "namespace": "ImGui", "ov_cimguiname": "igInputScalarN", "ret": "bool", @@ -11078,12 +11141,12 @@ "call_args": "(label,buf,buf_size,flags,callback,user_data)", "cimguiname": "igInputText", "defaults": { - "callback": "((void*)0)", + "callback": "NULL", "flags": "0", - "user_data": "((void*)0)" + "user_data": "NULL" }, "funcname": "InputText", - "location": "imgui", + "location": "imgui:510", "namespace": "ImGui", "ov_cimguiname": "igInputText", "ret": "bool", @@ -11128,13 +11191,13 @@ "call_args": "(label,buf,buf_size,size,flags,callback,user_data)", "cimguiname": "igInputTextMultiline", "defaults": { - "callback": "((void*)0)", + "callback": "NULL", "flags": "0", "size": "ImVec2(0,0)", - "user_data": "((void*)0)" + "user_data": "NULL" }, "funcname": "InputTextMultiline", - "location": "imgui", + "location": "imgui:511", "namespace": "ImGui", "ov_cimguiname": "igInputTextMultiline", "ret": "bool", @@ -11179,12 +11242,12 @@ "call_args": "(label,hint,buf,buf_size,flags,callback,user_data)", "cimguiname": "igInputTextWithHint", "defaults": { - "callback": "((void*)0)", + "callback": "NULL", "flags": "0", - "user_data": "((void*)0)" + "user_data": "NULL" }, "funcname": "InputTextWithHint", - "location": "imgui", + "location": "imgui:512", "namespace": "ImGui", "ov_cimguiname": "igInputTextWithHint", "ret": "bool", @@ -11216,7 +11279,7 @@ "flags": "0" }, "funcname": "InvisibleButton", - "location": "imgui", + "location": "imgui:442", "namespace": "ImGui", "ov_cimguiname": "igInvisibleButton", "ret": "bool", @@ -11231,9 +11294,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsAnyItemActive", - "defaults": [], + "defaults": {}, "funcname": "IsAnyItemActive", - "location": "imgui", + "location": "imgui:704", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemActive", "ret": "bool", @@ -11248,9 +11311,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsAnyItemFocused", - "defaults": [], + "defaults": {}, "funcname": "IsAnyItemFocused", - "location": "imgui", + "location": "imgui:705", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemFocused", "ret": "bool", @@ -11265,9 +11328,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsAnyItemHovered", - "defaults": [], + "defaults": {}, "funcname": "IsAnyItemHovered", - "location": "imgui", + "location": "imgui:703", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemHovered", "ret": "bool", @@ -11282,9 +11345,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsAnyMouseDown", - "defaults": [], + "defaults": {}, "funcname": "IsAnyMouseDown", - "location": "imgui", + "location": "imgui:755", "namespace": "ImGui", "ov_cimguiname": "igIsAnyMouseDown", "ret": "bool", @@ -11299,9 +11362,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemActivated", - "defaults": [], + "defaults": {}, "funcname": "IsItemActivated", - "location": "imgui", + "location": "imgui:699", "namespace": "ImGui", "ov_cimguiname": "igIsItemActivated", "ret": "bool", @@ -11316,9 +11379,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemActive", - "defaults": [], + "defaults": {}, "funcname": "IsItemActive", - "location": "imgui", + "location": "imgui:694", "namespace": "ImGui", "ov_cimguiname": "igIsItemActive", "ret": "bool", @@ -11342,7 +11405,7 @@ "mouse_button": "0" }, "funcname": "IsItemClicked", - "location": "imgui", + "location": "imgui:696", "namespace": "ImGui", "ov_cimguiname": "igIsItemClicked", "ret": "bool", @@ -11357,9 +11420,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemDeactivated", - "defaults": [], + "defaults": {}, "funcname": "IsItemDeactivated", - "location": "imgui", + "location": "imgui:700", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivated", "ret": "bool", @@ -11374,9 +11437,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemDeactivatedAfterEdit", - "defaults": [], + "defaults": {}, "funcname": "IsItemDeactivatedAfterEdit", - "location": "imgui", + "location": "imgui:701", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivatedAfterEdit", "ret": "bool", @@ -11391,9 +11454,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemEdited", - "defaults": [], + "defaults": {}, "funcname": "IsItemEdited", - "location": "imgui", + "location": "imgui:698", "namespace": "ImGui", "ov_cimguiname": "igIsItemEdited", "ret": "bool", @@ -11408,9 +11471,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemFocused", - "defaults": [], + "defaults": {}, "funcname": "IsItemFocused", - "location": "imgui", + "location": "imgui:695", "namespace": "ImGui", "ov_cimguiname": "igIsItemFocused", "ret": "bool", @@ -11434,7 +11497,7 @@ "flags": "0" }, "funcname": "IsItemHovered", - "location": "imgui", + "location": "imgui:693", "namespace": "ImGui", "ov_cimguiname": "igIsItemHovered", "ret": "bool", @@ -11449,9 +11512,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemToggledOpen", - "defaults": [], + "defaults": {}, "funcname": "IsItemToggledOpen", - "location": "imgui", + "location": "imgui:702", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledOpen", "ret": "bool", @@ -11466,9 +11529,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemVisible", - "defaults": [], + "defaults": {}, "funcname": "IsItemVisible", - "location": "imgui", + "location": "imgui:697", "namespace": "ImGui", "ov_cimguiname": "igIsItemVisible", "ret": "bool", @@ -11488,9 +11551,9 @@ "argsoriginal": "(int user_key_index)", "call_args": "(user_key_index)", "cimguiname": "igIsKeyDown", - "defaults": [], + "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui", + "location": "imgui:739", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown", "ret": "bool", @@ -11518,7 +11581,7 @@ "repeat": "true" }, "funcname": "IsKeyPressed", - "location": "imgui", + "location": "imgui:740", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed", "ret": "bool", @@ -11538,9 +11601,9 @@ "argsoriginal": "(int user_key_index)", "call_args": "(user_key_index)", "cimguiname": "igIsKeyReleased", - "defaults": [], + "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui", + "location": "imgui:741", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased", "ret": "bool", @@ -11568,7 +11631,7 @@ "repeat": "false" }, "funcname": "IsMouseClicked", - "location": "imgui", + "location": "imgui:750", "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked", "ret": "bool", @@ -11588,9 +11651,9 @@ "argsoriginal": "(ImGuiMouseButton button)", "call_args": "(button)", "cimguiname": "igIsMouseDoubleClicked", - "defaults": [], + "defaults": {}, "funcname": "IsMouseDoubleClicked", - "location": "imgui", + "location": "imgui:752", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked", "ret": "bool", @@ -11610,9 +11673,9 @@ "argsoriginal": "(ImGuiMouseButton button)", "call_args": "(button)", "cimguiname": "igIsMouseDown", - "defaults": [], + "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui", + "location": "imgui:749", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown", "ret": "bool", @@ -11640,7 +11703,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragging", - "location": "imgui", + "location": "imgui:758", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragging", "ret": "bool", @@ -11672,7 +11735,7 @@ "clip": "true" }, "funcname": "IsMouseHoveringRect", - "location": "imgui", + "location": "imgui:753", "namespace": "ImGui", "ov_cimguiname": "igIsMouseHoveringRect", "ret": "bool", @@ -11693,10 +11756,10 @@ "call_args": "(mouse_pos)", "cimguiname": "igIsMousePosValid", "defaults": { - "mouse_pos": "((void*)0)" + "mouse_pos": "NULL" }, "funcname": "IsMousePosValid", - "location": "imgui", + "location": "imgui:754", "namespace": "ImGui", "ov_cimguiname": "igIsMousePosValid", "ret": "bool", @@ -11716,9 +11779,9 @@ "argsoriginal": "(ImGuiMouseButton button)", "call_args": "(button)", "cimguiname": "igIsMouseReleased", - "defaults": [], + "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui", + "location": "imgui:751", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased", "ret": "bool", @@ -11746,7 +11809,7 @@ "flags": "0" }, "funcname": "IsPopupOpen", - "location": "imgui", + "location": "imgui:637", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen", "ret": "bool", @@ -11766,9 +11829,9 @@ "argsoriginal": "(const ImVec2& size)", "call_args": "(size)", "cimguiname": "igIsRectVisible", - "defaults": [], + "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui", + "location": "imgui:712", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisibleNil", "ret": "bool", @@ -11790,9 +11853,9 @@ "argsoriginal": "(const ImVec2& rect_min,const ImVec2& rect_max)", "call_args": "(rect_min,rect_max)", "cimguiname": "igIsRectVisible", - "defaults": [], + "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui", + "location": "imgui:713", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisibleVec2", "ret": "bool", @@ -11807,9 +11870,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsWindowAppearing", - "defaults": [], + "defaults": {}, "funcname": "IsWindowAppearing", - "location": "imgui", + "location": "imgui:298", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAppearing", "ret": "bool", @@ -11824,9 +11887,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsWindowCollapsed", - "defaults": [], + "defaults": {}, "funcname": "IsWindowCollapsed", - "location": "imgui", + "location": "imgui:299", "namespace": "ImGui", "ov_cimguiname": "igIsWindowCollapsed", "ret": "bool", @@ -11850,7 +11913,7 @@ "flags": "0" }, "funcname": "IsWindowFocused", - "location": "imgui", + "location": "imgui:300", "namespace": "ImGui", "ov_cimguiname": "igIsWindowFocused", "ret": "bool", @@ -11874,7 +11937,7 @@ "flags": "0" }, "funcname": "IsWindowHovered", - "location": "imgui", + "location": "imgui:301", "namespace": "ImGui", "ov_cimguiname": "igIsWindowHovered", "ret": "bool", @@ -11902,10 +11965,10 @@ "argsoriginal": "(const char* label,const char* fmt,...)", "call_args": "(label,fmt,...)", "cimguiname": "igLabelText", - "defaults": [], + "defaults": {}, "funcname": "LabelText", "isvararg": "...)", - "location": "imgui", + "location": "imgui:432", "namespace": "ImGui", "ov_cimguiname": "igLabelText", "ret": "void", @@ -11933,9 +11996,9 @@ "argsoriginal": "(const char* label,const char* fmt,va_list args)", "call_args": "(label,fmt,args)", "cimguiname": "igLabelTextV", - "defaults": [], + "defaults": {}, "funcname": "LabelTextV", - "location": "imgui", + "location": "imgui:433", "namespace": "ImGui", "ov_cimguiname": "igLabelTextV", "ret": "void", @@ -11975,7 +12038,7 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui", + "location": "imgui:563", "namespace": "ImGui", "ov_cimguiname": "igListBoxStr_arr", "ret": "bool", @@ -12019,7 +12082,7 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui", + "location": "imgui:564", "namespace": "ImGui", "ov_cimguiname": "igListBoxFnBoolPtr", "ret": "bool", @@ -12034,9 +12097,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igListBoxFooter", - "defaults": [], + "defaults": {}, "funcname": "ListBoxFooter", - "location": "imgui", + "location": "imgui:567", "namespace": "ImGui", "ov_cimguiname": "igListBoxFooter", "ret": "void", @@ -12064,7 +12127,7 @@ "size": "ImVec2(0,0)" }, "funcname": "ListBoxHeader", - "location": "imgui", + "location": "imgui:565", "namespace": "ImGui", "ov_cimguiname": "igListBoxHeaderVec2", "ret": "bool", @@ -12094,7 +12157,7 @@ "height_in_items": "-1" }, "funcname": "ListBoxHeader", - "location": "imgui", + "location": "imgui:566", "namespace": "ImGui", "ov_cimguiname": "igListBoxHeaderInt", "ret": "bool", @@ -12114,9 +12177,9 @@ "argsoriginal": "(const char* ini_filename)", "call_args": "(ini_filename)", "cimguiname": "igLoadIniSettingsFromDisk", - "defaults": [], + "defaults": {}, "funcname": "LoadIniSettingsFromDisk", - "location": "imgui", + "location": "imgui:773", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromDisk", "ret": "void", @@ -12144,7 +12207,7 @@ "ini_size": "0" }, "funcname": "LoadIniSettingsFromMemory", - "location": "imgui", + "location": "imgui:774", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromMemory", "ret": "void", @@ -12159,9 +12222,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igLogButtons", - "defaults": [], + "defaults": {}, "funcname": "LogButtons", - "location": "imgui", + "location": "imgui:667", "namespace": "ImGui", "ov_cimguiname": "igLogButtons", "ret": "void", @@ -12176,9 +12239,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igLogFinish", - "defaults": [], + "defaults": {}, "funcname": "LogFinish", - "location": "imgui", + "location": "imgui:666", "namespace": "ImGui", "ov_cimguiname": "igLogFinish", "ret": "void", @@ -12202,10 +12265,10 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igLogText", - "defaults": [], + "defaults": {}, "funcname": "LogText", "isvararg": "...)", - "location": "imgui", + "location": "imgui:668", "manual": true, "namespace": "ImGui", "ov_cimguiname": "igLogText", @@ -12230,7 +12293,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToClipboard", - "location": "imgui", + "location": "imgui:665", "namespace": "ImGui", "ov_cimguiname": "igLogToClipboard", "ret": "void", @@ -12256,10 +12319,10 @@ "cimguiname": "igLogToFile", "defaults": { "auto_open_depth": "-1", - "filename": "((void*)0)" + "filename": "NULL" }, "funcname": "LogToFile", - "location": "imgui", + "location": "imgui:664", "namespace": "ImGui", "ov_cimguiname": "igLogToFile", "ret": "void", @@ -12283,7 +12346,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToTTY", - "location": "imgui", + "location": "imgui:663", "namespace": "ImGui", "ov_cimguiname": "igLogToTTY", "ret": "void", @@ -12303,9 +12366,9 @@ "argsoriginal": "(size_t size)", "call_args": "(size)", "cimguiname": "igMemAlloc", - "defaults": [], + "defaults": {}, "funcname": "MemAlloc", - "location": "imgui", + "location": "imgui:785", "namespace": "ImGui", "ov_cimguiname": "igMemAlloc", "ret": "void*", @@ -12325,9 +12388,9 @@ "argsoriginal": "(void* ptr)", "call_args": "(ptr)", "cimguiname": "igMemFree", - "defaults": [], + "defaults": {}, "funcname": "MemFree", - "location": "imgui", + "location": "imgui:786", "namespace": "ImGui", "ov_cimguiname": "igMemFree", "ret": "void", @@ -12362,10 +12425,10 @@ "defaults": { "enabled": "true", "selected": "false", - "shortcut": "((void*)0)" + "shortcut": "NULL" }, "funcname": "MenuItem", - "location": "imgui", + "location": "imgui:592", "namespace": "ImGui", "ov_cimguiname": "igMenuItemBool", "ret": "bool", @@ -12399,7 +12462,7 @@ "enabled": "true" }, "funcname": "MenuItem", - "location": "imgui", + "location": "imgui:593", "namespace": "ImGui", "ov_cimguiname": "igMenuItemBoolPtr", "ret": "bool", @@ -12414,9 +12477,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igNewFrame", - "defaults": [], + "defaults": {}, "funcname": "NewFrame", - "location": "imgui", + "location": "imgui:252", "namespace": "ImGui", "ov_cimguiname": "igNewFrame", "ret": "void", @@ -12431,9 +12494,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igNewLine", - "defaults": [], + "defaults": {}, "funcname": "NewLine", - "location": "imgui", + "location": "imgui:384", "namespace": "ImGui", "ov_cimguiname": "igNewLine", "ret": "void", @@ -12448,9 +12511,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igNextColumn", - "defaults": [], + "defaults": {}, "funcname": "NextColumn", - "location": "imgui", + "location": "imgui:645", "namespace": "ImGui", "ov_cimguiname": "igNextColumn", "ret": "void", @@ -12478,7 +12541,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui", + "location": "imgui:622", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup", "ret": "void", @@ -12486,7 +12549,7 @@ "stname": "" } ], - "igOpenPopupContextItem": [ + "igOpenPopupOnItemClick": [ { "args": "(const char* str_id,ImGuiPopupFlags popup_flags)", "argsT": [ @@ -12501,16 +12564,16 @@ ], "argsoriginal": "(const char* str_id=((void*)0),ImGuiPopupFlags popup_flags=1)", "call_args": "(str_id,popup_flags)", - "cimguiname": "igOpenPopupContextItem", + "cimguiname": "igOpenPopupOnItemClick", "defaults": { "popup_flags": "1", - "str_id": "((void*)0)" + "str_id": "NULL" }, - "funcname": "OpenPopupContextItem", - "location": "imgui", + "funcname": "OpenPopupOnItemClick", + "location": "imgui:623", "namespace": "ImGui", - "ov_cimguiname": "igOpenPopupContextItem", - "ret": "bool", + "ov_cimguiname": "igOpenPopupOnItemClick", + "ret": "void", "signature": "(const char*,ImGuiPopupFlags)", "stname": "" } @@ -12561,14 +12624,14 @@ "cimguiname": "igPlotHistogram", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void*)0)", + "overlay_text": "NULL", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "stride": "sizeof(float)", "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui", + "location": "imgui:572", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogramFloatPtr", "ret": "void", @@ -12622,13 +12685,13 @@ "cimguiname": "igPlotHistogram", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void*)0)", + "overlay_text": "NULL", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui", + "location": "imgui:573", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogramFnFloatPtr", "ret": "void", @@ -12682,14 +12745,14 @@ "cimguiname": "igPlotLines", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void*)0)", + "overlay_text": "NULL", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "stride": "sizeof(float)", "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui", + "location": "imgui:570", "namespace": "ImGui", "ov_cimguiname": "igPlotLinesFloatPtr", "ret": "void", @@ -12743,13 +12806,13 @@ "cimguiname": "igPlotLines", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void*)0)", + "overlay_text": "NULL", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui", + "location": "imgui:571", "namespace": "ImGui", "ov_cimguiname": "igPlotLinesFnFloatPtr", "ret": "void", @@ -12764,9 +12827,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopAllowKeyboardFocus", - "defaults": [], + "defaults": {}, "funcname": "PopAllowKeyboardFocus", - "location": "imgui", + "location": "imgui:371", "namespace": "ImGui", "ov_cimguiname": "igPopAllowKeyboardFocus", "ret": "void", @@ -12781,9 +12844,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopButtonRepeat", - "defaults": [], + "defaults": {}, "funcname": "PopButtonRepeat", - "location": "imgui", + "location": "imgui:373", "namespace": "ImGui", "ov_cimguiname": "igPopButtonRepeat", "ret": "void", @@ -12798,9 +12861,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopClipRect", - "defaults": [], + "defaults": {}, "funcname": "PopClipRect", - "location": "imgui", + "location": "imgui:683", "namespace": "ImGui", "ov_cimguiname": "igPopClipRect", "ret": "void", @@ -12815,9 +12878,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopFont", - "defaults": [], + "defaults": {}, "funcname": "PopFont", - "location": "imgui", + "location": "imgui:348", "namespace": "ImGui", "ov_cimguiname": "igPopFont", "ret": "void", @@ -12832,9 +12895,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopID", - "defaults": [], + "defaults": {}, "funcname": "PopID", - "location": "imgui", + "location": "imgui:417", "namespace": "ImGui", "ov_cimguiname": "igPopID", "ret": "void", @@ -12849,9 +12912,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopItemWidth", - "defaults": [], + "defaults": {}, "funcname": "PopItemWidth", - "location": "imgui", + "location": "imgui:365", "namespace": "ImGui", "ov_cimguiname": "igPopItemWidth", "ret": "void", @@ -12875,7 +12938,7 @@ "count": "1" }, "funcname": "PopStyleColor", - "location": "imgui", + "location": "imgui:351", "namespace": "ImGui", "ov_cimguiname": "igPopStyleColor", "ret": "void", @@ -12899,7 +12962,7 @@ "count": "1" }, "funcname": "PopStyleVar", - "location": "imgui", + "location": "imgui:354", "namespace": "ImGui", "ov_cimguiname": "igPopStyleVar", "ret": "void", @@ -12914,9 +12977,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopTextWrapPos", - "defaults": [], + "defaults": {}, "funcname": "PopTextWrapPos", - "location": "imgui", + "location": "imgui:369", "namespace": "ImGui", "ov_cimguiname": "igPopTextWrapPos", "ret": "void", @@ -12945,11 +13008,11 @@ "call_args": "(fraction,size_arg,overlay)", "cimguiname": "igProgressBar", "defaults": { - "overlay": "((void*)0)", + "overlay": "NULL", "size_arg": "ImVec2(-1,0)" }, "funcname": "ProgressBar", - "location": "imgui", + "location": "imgui:450", "namespace": "ImGui", "ov_cimguiname": "igProgressBar", "ret": "void", @@ -12969,9 +13032,9 @@ "argsoriginal": "(bool allow_keyboard_focus)", "call_args": "(allow_keyboard_focus)", "cimguiname": "igPushAllowKeyboardFocus", - "defaults": [], + "defaults": {}, "funcname": "PushAllowKeyboardFocus", - "location": "imgui", + "location": "imgui:370", "namespace": "ImGui", "ov_cimguiname": "igPushAllowKeyboardFocus", "ret": "void", @@ -12991,9 +13054,9 @@ "argsoriginal": "(bool repeat)", "call_args": "(repeat)", "cimguiname": "igPushButtonRepeat", - "defaults": [], + "defaults": {}, "funcname": "PushButtonRepeat", - "location": "imgui", + "location": "imgui:372", "namespace": "ImGui", "ov_cimguiname": "igPushButtonRepeat", "ret": "void", @@ -13021,9 +13084,9 @@ "argsoriginal": "(const ImVec2& clip_rect_min,const ImVec2& clip_rect_max,bool intersect_with_current_clip_rect)", "call_args": "(clip_rect_min,clip_rect_max,intersect_with_current_clip_rect)", "cimguiname": "igPushClipRect", - "defaults": [], + "defaults": {}, "funcname": "PushClipRect", - "location": "imgui", + "location": "imgui:682", "namespace": "ImGui", "ov_cimguiname": "igPushClipRect", "ret": "void", @@ -13043,9 +13106,9 @@ "argsoriginal": "(ImFont* font)", "call_args": "(font)", "cimguiname": "igPushFont", - "defaults": [], + "defaults": {}, "funcname": "PushFont", - "location": "imgui", + "location": "imgui:347", "namespace": "ImGui", "ov_cimguiname": "igPushFont", "ret": "void", @@ -13065,9 +13128,9 @@ "argsoriginal": "(const char* str_id)", "call_args": "(str_id)", "cimguiname": "igPushID", - "defaults": [], + "defaults": {}, "funcname": "PushID", - "location": "imgui", + "location": "imgui:413", "namespace": "ImGui", "ov_cimguiname": "igPushIDStr", "ret": "void", @@ -13089,9 +13152,9 @@ "argsoriginal": "(const char* str_id_begin,const char* str_id_end)", "call_args": "(str_id_begin,str_id_end)", "cimguiname": "igPushID", - "defaults": [], + "defaults": {}, "funcname": "PushID", - "location": "imgui", + "location": "imgui:414", "namespace": "ImGui", "ov_cimguiname": "igPushIDStrStr", "ret": "void", @@ -13109,9 +13172,9 @@ "argsoriginal": "(const void* ptr_id)", "call_args": "(ptr_id)", "cimguiname": "igPushID", - "defaults": [], + "defaults": {}, "funcname": "PushID", - "location": "imgui", + "location": "imgui:415", "namespace": "ImGui", "ov_cimguiname": "igPushIDPtr", "ret": "void", @@ -13129,9 +13192,9 @@ "argsoriginal": "(int int_id)", "call_args": "(int_id)", "cimguiname": "igPushID", - "defaults": [], + "defaults": {}, "funcname": "PushID", - "location": "imgui", + "location": "imgui:416", "namespace": "ImGui", "ov_cimguiname": "igPushIDInt", "ret": "void", @@ -13151,9 +13214,9 @@ "argsoriginal": "(float item_width)", "call_args": "(item_width)", "cimguiname": "igPushItemWidth", - "defaults": [], + "defaults": {}, "funcname": "PushItemWidth", - "location": "imgui", + "location": "imgui:364", "namespace": "ImGui", "ov_cimguiname": "igPushItemWidth", "ret": "void", @@ -13177,9 +13240,9 @@ "argsoriginal": "(ImGuiCol idx,ImU32 col)", "call_args": "(idx,col)", "cimguiname": "igPushStyleColor", - "defaults": [], + "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui", + "location": "imgui:349", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColorU32", "ret": "void", @@ -13201,9 +13264,9 @@ "argsoriginal": "(ImGuiCol idx,const ImVec4& col)", "call_args": "(idx,col)", "cimguiname": "igPushStyleColor", - "defaults": [], + "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui", + "location": "imgui:350", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColorVec4", "ret": "void", @@ -13227,9 +13290,9 @@ "argsoriginal": "(ImGuiStyleVar idx,float val)", "call_args": "(idx,val)", "cimguiname": "igPushStyleVar", - "defaults": [], + "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui", + "location": "imgui:352", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVarFloat", "ret": "void", @@ -13251,9 +13314,9 @@ "argsoriginal": "(ImGuiStyleVar idx,const ImVec2& val)", "call_args": "(idx,val)", "cimguiname": "igPushStyleVar", - "defaults": [], + "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui", + "location": "imgui:353", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVarVec2", "ret": "void", @@ -13277,7 +13340,7 @@ "wrap_local_pos_x": "0.0f" }, "funcname": "PushTextWrapPos", - "location": "imgui", + "location": "imgui:368", "namespace": "ImGui", "ov_cimguiname": "igPushTextWrapPos", "ret": "void", @@ -13301,9 +13364,9 @@ "argsoriginal": "(const char* label,bool active)", "call_args": "(label,active)", "cimguiname": "igRadioButton", - "defaults": [], + "defaults": {}, "funcname": "RadioButton", - "location": "imgui", + "location": "imgui:448", "namespace": "ImGui", "ov_cimguiname": "igRadioButtonBool", "ret": "bool", @@ -13329,9 +13392,9 @@ "argsoriginal": "(const char* label,int* v,int v_button)", "call_args": "(label,v,v_button)", "cimguiname": "igRadioButton", - "defaults": [], + "defaults": {}, "funcname": "RadioButton", - "location": "imgui", + "location": "imgui:449", "namespace": "ImGui", "ov_cimguiname": "igRadioButtonIntPtr", "ret": "bool", @@ -13346,9 +13409,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igRender", - "defaults": [], + "defaults": {}, "funcname": "Render", - "location": "imgui", + "location": "imgui:254", "namespace": "ImGui", "ov_cimguiname": "igRender", "ret": "void", @@ -13372,7 +13435,7 @@ "button": "0" }, "funcname": "ResetMouseDragDelta", - "location": "imgui", + "location": "imgui:760", "namespace": "ImGui", "ov_cimguiname": "igResetMouseDragDelta", "ret": "void", @@ -13401,7 +13464,7 @@ "spacing": "-1.0f" }, "funcname": "SameLine", - "location": "imgui", + "location": "imgui:383", "namespace": "ImGui", "ov_cimguiname": "igSameLine", "ret": "void", @@ -13421,9 +13484,9 @@ "argsoriginal": "(const char* ini_filename)", "call_args": "(ini_filename)", "cimguiname": "igSaveIniSettingsToDisk", - "defaults": [], + "defaults": {}, "funcname": "SaveIniSettingsToDisk", - "location": "imgui", + "location": "imgui:775", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToDisk", "ret": "void", @@ -13444,10 +13507,10 @@ "call_args": "(out_ini_size)", "cimguiname": "igSaveIniSettingsToMemory", "defaults": { - "out_ini_size": "((void*)0)" + "out_ini_size": "NULL" }, "funcname": "SaveIniSettingsToMemory", - "location": "imgui", + "location": "imgui:776", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToMemory", "ret": "const char*", @@ -13485,7 +13548,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui", + "location": "imgui:558", "namespace": "ImGui", "ov_cimguiname": "igSelectableBool", "ret": "bool", @@ -13520,7 +13583,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui", + "location": "imgui:559", "namespace": "ImGui", "ov_cimguiname": "igSelectableBoolPtr", "ret": "bool", @@ -13535,9 +13598,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSeparator", - "defaults": [], + "defaults": {}, "funcname": "Separator", - "location": "imgui", + "location": "imgui:382", "namespace": "ImGui", "ov_cimguiname": "igSeparator", "ret": "void", @@ -13570,10 +13633,10 @@ "call_args": "(alloc_func,free_func,user_data)", "cimguiname": "igSetAllocatorFunctions", "defaults": { - "user_data": "((void*)0)" + "user_data": "NULL" }, "funcname": "SetAllocatorFunctions", - "location": "imgui", + "location": "imgui:784", "namespace": "ImGui", "ov_cimguiname": "igSetAllocatorFunctions", "ret": "void", @@ -13593,9 +13656,9 @@ "argsoriginal": "(const char* text)", "call_args": "(text)", "cimguiname": "igSetClipboardText", - "defaults": [], + "defaults": {}, "funcname": "SetClipboardText", - "location": "imgui", + "location": "imgui:768", "namespace": "ImGui", "ov_cimguiname": "igSetClipboardText", "ret": "void", @@ -13615,9 +13678,9 @@ "argsoriginal": "(ImGuiColorEditFlags flags)", "call_args": "(flags)", "cimguiname": "igSetColorEditOptions", - "defaults": [], + "defaults": {}, "funcname": "SetColorEditOptions", - "location": "imgui", + "location": "imgui:533", "namespace": "ImGui", "ov_cimguiname": "igSetColorEditOptions", "ret": "void", @@ -13641,9 +13704,9 @@ "argsoriginal": "(int column_index,float offset_x)", "call_args": "(column_index,offset_x)", "cimguiname": "igSetColumnOffset", - "defaults": [], + "defaults": {}, "funcname": "SetColumnOffset", - "location": "imgui", + "location": "imgui:650", "namespace": "ImGui", "ov_cimguiname": "igSetColumnOffset", "ret": "void", @@ -13667,9 +13730,9 @@ "argsoriginal": "(int column_index,float width)", "call_args": "(column_index,width)", "cimguiname": "igSetColumnWidth", - "defaults": [], + "defaults": {}, "funcname": "SetColumnWidth", - "location": "imgui", + "location": "imgui:648", "namespace": "ImGui", "ov_cimguiname": "igSetColumnWidth", "ret": "void", @@ -13689,9 +13752,9 @@ "argsoriginal": "(ImGuiContext* ctx)", "call_args": "(ctx)", "cimguiname": "igSetCurrentContext", - "defaults": [], + "defaults": {}, "funcname": "SetCurrentContext", - "location": "imgui", + "location": "imgui:247", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentContext", "ret": "void", @@ -13711,9 +13774,9 @@ "argsoriginal": "(const ImVec2& local_pos)", "call_args": "(local_pos)", "cimguiname": "igSetCursorPos", - "defaults": [], + "defaults": {}, "funcname": "SetCursorPos", - "location": "imgui", + "location": "imgui:394", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPos", "ret": "void", @@ -13733,9 +13796,9 @@ "argsoriginal": "(float local_x)", "call_args": "(local_x)", "cimguiname": "igSetCursorPosX", - "defaults": [], + "defaults": {}, "funcname": "SetCursorPosX", - "location": "imgui", + "location": "imgui:395", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosX", "ret": "void", @@ -13755,9 +13818,9 @@ "argsoriginal": "(float local_y)", "call_args": "(local_y)", "cimguiname": "igSetCursorPosY", - "defaults": [], + "defaults": {}, "funcname": "SetCursorPosY", - "location": "imgui", + "location": "imgui:396", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosY", "ret": "void", @@ -13777,9 +13840,9 @@ "argsoriginal": "(const ImVec2& pos)", "call_args": "(pos)", "cimguiname": "igSetCursorScreenPos", - "defaults": [], + "defaults": {}, "funcname": "SetCursorScreenPos", - "location": "imgui", + "location": "imgui:399", "namespace": "ImGui", "ov_cimguiname": "igSetCursorScreenPos", "ret": "void", @@ -13815,7 +13878,7 @@ "cond": "0" }, "funcname": "SetDragDropPayload", - "location": "imgui", + "location": "imgui:674", "namespace": "ImGui", "ov_cimguiname": "igSetDragDropPayload", "ret": "bool", @@ -13830,9 +13893,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSetItemAllowOverlap", - "defaults": [], + "defaults": {}, "funcname": "SetItemAllowOverlap", - "location": "imgui", + "location": "imgui:709", "namespace": "ImGui", "ov_cimguiname": "igSetItemAllowOverlap", "ret": "void", @@ -13847,9 +13910,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSetItemDefaultFocus", - "defaults": [], + "defaults": {}, "funcname": "SetItemDefaultFocus", - "location": "imgui", + "location": "imgui:687", "namespace": "ImGui", "ov_cimguiname": "igSetItemDefaultFocus", "ret": "void", @@ -13873,7 +13936,7 @@ "offset": "0" }, "funcname": "SetKeyboardFocusHere", - "location": "imgui", + "location": "imgui:688", "namespace": "ImGui", "ov_cimguiname": "igSetKeyboardFocusHere", "ret": "void", @@ -13893,9 +13956,9 @@ "argsoriginal": "(ImGuiMouseCursor cursor_type)", "call_args": "(cursor_type)", "cimguiname": "igSetMouseCursor", - "defaults": [], + "defaults": {}, "funcname": "SetMouseCursor", - "location": "imgui", + "location": "imgui:762", "namespace": "ImGui", "ov_cimguiname": "igSetMouseCursor", "ret": "void", @@ -13923,7 +13986,7 @@ "cond": "0" }, "funcname": "SetNextItemOpen", - "location": "imgui", + "location": "imgui:553", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemOpen", "ret": "void", @@ -13943,9 +14006,9 @@ "argsoriginal": "(float item_width)", "call_args": "(item_width)", "cimguiname": "igSetNextItemWidth", - "defaults": [], + "defaults": {}, "funcname": "SetNextItemWidth", - "location": "imgui", + "location": "imgui:366", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemWidth", "ret": "void", @@ -13965,9 +14028,9 @@ "argsoriginal": "(float alpha)", "call_args": "(alpha)", "cimguiname": "igSetNextWindowBgAlpha", - "defaults": [], + "defaults": {}, "funcname": "SetNextWindowBgAlpha", - "location": "imgui", + "location": "imgui:315", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowBgAlpha", "ret": "void", @@ -13995,7 +14058,7 @@ "cond": "0" }, "funcname": "SetNextWindowCollapsed", - "location": "imgui", + "location": "imgui:313", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowCollapsed", "ret": "void", @@ -14015,9 +14078,9 @@ "argsoriginal": "(const ImVec2& size)", "call_args": "(size)", "cimguiname": "igSetNextWindowContentSize", - "defaults": [], + "defaults": {}, "funcname": "SetNextWindowContentSize", - "location": "imgui", + "location": "imgui:312", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowContentSize", "ret": "void", @@ -14032,9 +14095,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSetNextWindowFocus", - "defaults": [], + "defaults": {}, "funcname": "SetNextWindowFocus", - "location": "imgui", + "location": "imgui:314", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowFocus", "ret": "void", @@ -14067,7 +14130,7 @@ "pivot": "ImVec2(0,0)" }, "funcname": "SetNextWindowPos", - "location": "imgui", + "location": "imgui:309", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowPos", "ret": "void", @@ -14095,7 +14158,7 @@ "cond": "0" }, "funcname": "SetNextWindowSize", - "location": "imgui", + "location": "imgui:310", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSize", "ret": "void", @@ -14128,11 +14191,11 @@ "call_args": "(size_min,size_max,custom_callback,custom_callback_data)", "cimguiname": "igSetNextWindowSizeConstraints", "defaults": { - "custom_callback": "((void*)0)", - "custom_callback_data": "((void*)0)" + "custom_callback": "NULL", + "custom_callback_data": "NULL" }, "funcname": "SetNextWindowSizeConstraints", - "location": "imgui", + "location": "imgui:311", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSizeConstraints", "ret": "void", @@ -14160,7 +14223,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollFromPosX", - "location": "imgui", + "location": "imgui:343", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX", "ret": "void", @@ -14188,7 +14251,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollFromPosY", - "location": "imgui", + "location": "imgui:344", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY", "ret": "void", @@ -14212,7 +14275,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollHereX", - "location": "imgui", + "location": "imgui:341", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereX", "ret": "void", @@ -14236,7 +14299,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollHereY", - "location": "imgui", + "location": "imgui:342", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereY", "ret": "void", @@ -14256,9 +14319,9 @@ "argsoriginal": "(float scroll_x)", "call_args": "(scroll_x)", "cimguiname": "igSetScrollX", - "defaults": [], + "defaults": {}, "funcname": "SetScrollX", - "location": "imgui", + "location": "imgui:339", "namespace": "ImGui", "ov_cimguiname": "igSetScrollX", "ret": "void", @@ -14278,9 +14341,9 @@ "argsoriginal": "(float scroll_y)", "call_args": "(scroll_y)", "cimguiname": "igSetScrollY", - "defaults": [], + "defaults": {}, "funcname": "SetScrollY", - "location": "imgui", + "location": "imgui:340", "namespace": "ImGui", "ov_cimguiname": "igSetScrollY", "ret": "void", @@ -14300,9 +14363,9 @@ "argsoriginal": "(ImGuiStorage* storage)", "call_args": "(storage)", "cimguiname": "igSetStateStorage", - "defaults": [], + "defaults": {}, "funcname": "SetStateStorage", - "location": "imgui", + "location": "imgui:720", "namespace": "ImGui", "ov_cimguiname": "igSetStateStorage", "ret": "void", @@ -14322,9 +14385,9 @@ "argsoriginal": "(const char* tab_or_docked_window_label)", "call_args": "(tab_or_docked_window_label)", "cimguiname": "igSetTabItemClosed", - "defaults": [], + "defaults": {}, "funcname": "SetTabItemClosed", - "location": "imgui", + "location": "imgui:659", "namespace": "ImGui", "ov_cimguiname": "igSetTabItemClosed", "ret": "void", @@ -14348,10 +14411,10 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igSetTooltip", - "defaults": [], + "defaults": {}, "funcname": "SetTooltip", "isvararg": "...)", - "location": "imgui", + "location": "imgui:599", "namespace": "ImGui", "ov_cimguiname": "igSetTooltip", "ret": "void", @@ -14375,9 +14438,9 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igSetTooltipV", - "defaults": [], + "defaults": {}, "funcname": "SetTooltipV", - "location": "imgui", + "location": "imgui:600", "namespace": "ImGui", "ov_cimguiname": "igSetTooltipV", "ret": "void", @@ -14405,7 +14468,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui", + "location": "imgui:318", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsedBool", "ret": "void", @@ -14435,7 +14498,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui", + "location": "imgui:323", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsedStr", "ret": "void", @@ -14450,9 +14513,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSetWindowFocus", - "defaults": [], + "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui", + "location": "imgui:319", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocusNil", "ret": "void", @@ -14470,9 +14533,9 @@ "argsoriginal": "(const char* name)", "call_args": "(name)", "cimguiname": "igSetWindowFocus", - "defaults": [], + "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui", + "location": "imgui:324", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocusStr", "ret": "void", @@ -14492,9 +14555,9 @@ "argsoriginal": "(float scale)", "call_args": "(scale)", "cimguiname": "igSetWindowFontScale", - "defaults": [], + "defaults": {}, "funcname": "SetWindowFontScale", - "location": "imgui", + "location": "imgui:320", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFontScale", "ret": "void", @@ -14522,7 +14585,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui", + "location": "imgui:316", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPosVec2", "ret": "void", @@ -14552,7 +14615,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui", + "location": "imgui:321", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPosStr", "ret": "void", @@ -14580,7 +14643,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui", + "location": "imgui:317", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSizeVec2", "ret": "void", @@ -14610,7 +14673,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui", + "location": "imgui:322", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSizeStr", "ret": "void", @@ -14631,10 +14694,10 @@ "call_args": "(p_open)", "cimguiname": "igShowAboutWindow", "defaults": { - "p_open": "((void*)0)" + "p_open": "NULL" }, "funcname": "ShowAboutWindow", - "location": "imgui", + "location": "imgui:259", "namespace": "ImGui", "ov_cimguiname": "igShowAboutWindow", "ret": "void", @@ -14655,10 +14718,10 @@ "call_args": "(p_open)", "cimguiname": "igShowDemoWindow", "defaults": { - "p_open": "((void*)0)" + "p_open": "NULL" }, "funcname": "ShowDemoWindow", - "location": "imgui", + "location": "imgui:258", "namespace": "ImGui", "ov_cimguiname": "igShowDemoWindow", "ret": "void", @@ -14678,9 +14741,9 @@ "argsoriginal": "(const char* label)", "call_args": "(label)", "cimguiname": "igShowFontSelector", - "defaults": [], + "defaults": {}, "funcname": "ShowFontSelector", - "location": "imgui", + "location": "imgui:263", "namespace": "ImGui", "ov_cimguiname": "igShowFontSelector", "ret": "void", @@ -14701,10 +14764,10 @@ "call_args": "(p_open)", "cimguiname": "igShowMetricsWindow", "defaults": { - "p_open": "((void*)0)" + "p_open": "NULL" }, "funcname": "ShowMetricsWindow", - "location": "imgui", + "location": "imgui:260", "namespace": "ImGui", "ov_cimguiname": "igShowMetricsWindow", "ret": "void", @@ -14725,10 +14788,10 @@ "call_args": "(ref)", "cimguiname": "igShowStyleEditor", "defaults": { - "ref": "((void*)0)" + "ref": "NULL" }, "funcname": "ShowStyleEditor", - "location": "imgui", + "location": "imgui:261", "namespace": "ImGui", "ov_cimguiname": "igShowStyleEditor", "ret": "void", @@ -14748,9 +14811,9 @@ "argsoriginal": "(const char* label)", "call_args": "(label)", "cimguiname": "igShowStyleSelector", - "defaults": [], + "defaults": {}, "funcname": "ShowStyleSelector", - "location": "imgui", + "location": "imgui:262", "namespace": "ImGui", "ov_cimguiname": "igShowStyleSelector", "ret": "bool", @@ -14765,9 +14828,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igShowUserGuide", - "defaults": [], + "defaults": {}, "funcname": "ShowUserGuide", - "location": "imgui", + "location": "imgui:264", "namespace": "ImGui", "ov_cimguiname": "igShowUserGuide", "ret": "void", @@ -14814,7 +14877,7 @@ "v_degrees_min": "-360.0f" }, "funcname": "SliderAngle", - "location": "imgui", + "location": "imgui:496", "namespace": "ImGui", "ov_cimguiname": "igSliderAngle", "ret": "bool", @@ -14859,7 +14922,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat", - "location": "imgui", + "location": "imgui:492", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat", "ret": "bool", @@ -14904,7 +14967,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat2", - "location": "imgui", + "location": "imgui:493", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat2", "ret": "bool", @@ -14949,7 +15012,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat3", - "location": "imgui", + "location": "imgui:494", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat3", "ret": "bool", @@ -14994,7 +15057,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat4", - "location": "imgui", + "location": "imgui:495", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat4", "ret": "bool", @@ -15039,7 +15102,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt", - "location": "imgui", + "location": "imgui:497", "namespace": "ImGui", "ov_cimguiname": "igSliderInt", "ret": "bool", @@ -15084,7 +15147,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt2", - "location": "imgui", + "location": "imgui:498", "namespace": "ImGui", "ov_cimguiname": "igSliderInt2", "ret": "bool", @@ -15129,7 +15192,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt3", - "location": "imgui", + "location": "imgui:499", "namespace": "ImGui", "ov_cimguiname": "igSliderInt3", "ret": "bool", @@ -15174,7 +15237,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt4", - "location": "imgui", + "location": "imgui:500", "namespace": "ImGui", "ov_cimguiname": "igSliderInt4", "ret": "bool", @@ -15220,10 +15283,10 @@ "cimguiname": "igSliderScalar", "defaults": { "flags": "0", - "format": "((void*)0)" + "format": "NULL" }, "funcname": "SliderScalar", - "location": "imgui", + "location": "imgui:501", "namespace": "ImGui", "ov_cimguiname": "igSliderScalar", "ret": "bool", @@ -15273,10 +15336,10 @@ "cimguiname": "igSliderScalarN", "defaults": { "flags": "0", - "format": "((void*)0)" + "format": "NULL" }, "funcname": "SliderScalarN", - "location": "imgui", + "location": "imgui:502", "namespace": "ImGui", "ov_cimguiname": "igSliderScalarN", "ret": "bool", @@ -15296,9 +15359,9 @@ "argsoriginal": "(const char* label)", "call_args": "(label)", "cimguiname": "igSmallButton", - "defaults": [], + "defaults": {}, "funcname": "SmallButton", - "location": "imgui", + "location": "imgui:441", "namespace": "ImGui", "ov_cimguiname": "igSmallButton", "ret": "bool", @@ -15313,9 +15376,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSpacing", - "defaults": [], + "defaults": {}, "funcname": "Spacing", - "location": "imgui", + "location": "imgui:385", "namespace": "ImGui", "ov_cimguiname": "igSpacing", "ret": "void", @@ -15336,10 +15399,10 @@ "call_args": "(dst)", "cimguiname": "igStyleColorsClassic", "defaults": { - "dst": "((void*)0)" + "dst": "NULL" }, "funcname": "StyleColorsClassic", - "location": "imgui", + "location": "imgui:269", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsClassic", "ret": "void", @@ -15360,10 +15423,10 @@ "call_args": "(dst)", "cimguiname": "igStyleColorsDark", "defaults": { - "dst": "((void*)0)" + "dst": "NULL" }, "funcname": "StyleColorsDark", - "location": "imgui", + "location": "imgui:268", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsDark", "ret": "void", @@ -15384,10 +15447,10 @@ "call_args": "(dst)", "cimguiname": "igStyleColorsLight", "defaults": { - "dst": "((void*)0)" + "dst": "NULL" }, "funcname": "StyleColorsLight", - "location": "imgui", + "location": "imgui:270", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsLight", "ret": "void", @@ -15395,6 +15458,34 @@ "stname": "" } ], + "igTabItemButton": [ + { + "args": "(const char* label,ImGuiTabItemFlags flags)", + "argsT": [ + { + "name": "label", + "type": "const char*" + }, + { + "name": "flags", + "type": "ImGuiTabItemFlags" + } + ], + "argsoriginal": "(const char* label,ImGuiTabItemFlags flags=0)", + "call_args": "(label,flags)", + "cimguiname": "igTabItemButton", + "defaults": { + "flags": "0" + }, + "funcname": "TabItemButton", + "location": "imgui:658", + "namespace": "ImGui", + "ov_cimguiname": "igTabItemButton", + "ret": "bool", + "signature": "(const char*,ImGuiTabItemFlags)", + "stname": "" + } + ], "igText": [ { "args": "(const char* fmt,...)", @@ -15411,10 +15502,10 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igText", - "defaults": [], + "defaults": {}, "funcname": "Text", "isvararg": "...)", - "location": "imgui", + "location": "imgui:424", "namespace": "ImGui", "ov_cimguiname": "igText", "ret": "void", @@ -15442,10 +15533,10 @@ "argsoriginal": "(const ImVec4& col,const char* fmt,...)", "call_args": "(col,fmt,...)", "cimguiname": "igTextColored", - "defaults": [], + "defaults": {}, "funcname": "TextColored", "isvararg": "...)", - "location": "imgui", + "location": "imgui:426", "namespace": "ImGui", "ov_cimguiname": "igTextColored", "ret": "void", @@ -15473,9 +15564,9 @@ "argsoriginal": "(const ImVec4& col,const char* fmt,va_list args)", "call_args": "(col,fmt,args)", "cimguiname": "igTextColoredV", - "defaults": [], + "defaults": {}, "funcname": "TextColoredV", - "location": "imgui", + "location": "imgui:427", "namespace": "ImGui", "ov_cimguiname": "igTextColoredV", "ret": "void", @@ -15499,10 +15590,10 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igTextDisabled", - "defaults": [], + "defaults": {}, "funcname": "TextDisabled", "isvararg": "...)", - "location": "imgui", + "location": "imgui:428", "namespace": "ImGui", "ov_cimguiname": "igTextDisabled", "ret": "void", @@ -15526,9 +15617,9 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igTextDisabledV", - "defaults": [], + "defaults": {}, "funcname": "TextDisabledV", - "location": "imgui", + "location": "imgui:429", "namespace": "ImGui", "ov_cimguiname": "igTextDisabledV", "ret": "void", @@ -15553,10 +15644,10 @@ "call_args": "(text,text_end)", "cimguiname": "igTextUnformatted", "defaults": { - "text_end": "((void*)0)" + "text_end": "NULL" }, "funcname": "TextUnformatted", - "location": "imgui", + "location": "imgui:423", "namespace": "ImGui", "ov_cimguiname": "igTextUnformatted", "ret": "void", @@ -15580,9 +15671,9 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igTextV", - "defaults": [], + "defaults": {}, "funcname": "TextV", - "location": "imgui", + "location": "imgui:425", "namespace": "ImGui", "ov_cimguiname": "igTextV", "ret": "void", @@ -15606,10 +15697,10 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igTextWrapped", - "defaults": [], + "defaults": {}, "funcname": "TextWrapped", "isvararg": "...)", - "location": "imgui", + "location": "imgui:430", "namespace": "ImGui", "ov_cimguiname": "igTextWrapped", "ret": "void", @@ -15633,9 +15724,9 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igTextWrappedV", - "defaults": [], + "defaults": {}, "funcname": "TextWrappedV", - "location": "imgui", + "location": "imgui:431", "namespace": "ImGui", "ov_cimguiname": "igTextWrappedV", "ret": "void", @@ -15655,9 +15746,9 @@ "argsoriginal": "(const char* label)", "call_args": "(label)", "cimguiname": "igTreeNode", - "defaults": [], + "defaults": {}, "funcname": "TreeNode", - "location": "imgui", + "location": "imgui:537", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeStr", "ret": "bool", @@ -15683,10 +15774,10 @@ "argsoriginal": "(const char* str_id,const char* fmt,...)", "call_args": "(str_id,fmt,...)", "cimguiname": "igTreeNode", - "defaults": [], + "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui", + "location": "imgui:538", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeStrStr", "ret": "bool", @@ -15712,10 +15803,10 @@ "argsoriginal": "(const void* ptr_id,const char* fmt,...)", "call_args": "(ptr_id,fmt,...)", "cimguiname": "igTreeNode", - "defaults": [], + "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui", + "location": "imgui:539", "namespace": "ImGui", "ov_cimguiname": "igTreeNodePtr", "ret": "bool", @@ -15743,7 +15834,7 @@ "flags": "0" }, "funcname": "TreeNodeEx", - "location": "imgui", + "location": "imgui:542", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExStr", "ret": "bool", @@ -15773,10 +15864,10 @@ "argsoriginal": "(const char* str_id,ImGuiTreeNodeFlags flags,const char* fmt,...)", "call_args": "(str_id,flags,fmt,...)", "cimguiname": "igTreeNodeEx", - "defaults": [], + "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui", + "location": "imgui:543", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExStrStr", "ret": "bool", @@ -15806,10 +15897,10 @@ "argsoriginal": "(const void* ptr_id,ImGuiTreeNodeFlags flags,const char* fmt,...)", "call_args": "(ptr_id,flags,fmt,...)", "cimguiname": "igTreeNodeEx", - "defaults": [], + "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui", + "location": "imgui:544", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExPtr", "ret": "bool", @@ -15841,9 +15932,9 @@ "argsoriginal": "(const char* str_id,ImGuiTreeNodeFlags flags,const char* fmt,va_list args)", "call_args": "(str_id,flags,fmt,args)", "cimguiname": "igTreeNodeExV", - "defaults": [], + "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui", + "location": "imgui:545", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExVStr", "ret": "bool", @@ -15873,9 +15964,9 @@ "argsoriginal": "(const void* ptr_id,ImGuiTreeNodeFlags flags,const char* fmt,va_list args)", "call_args": "(ptr_id,flags,fmt,args)", "cimguiname": "igTreeNodeExV", - "defaults": [], + "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui", + "location": "imgui:546", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExVPtr", "ret": "bool", @@ -15903,9 +15994,9 @@ "argsoriginal": "(const char* str_id,const char* fmt,va_list args)", "call_args": "(str_id,fmt,args)", "cimguiname": "igTreeNodeV", - "defaults": [], + "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui", + "location": "imgui:540", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeVStr", "ret": "bool", @@ -15931,9 +16022,9 @@ "argsoriginal": "(const void* ptr_id,const char* fmt,va_list args)", "call_args": "(ptr_id,fmt,args)", "cimguiname": "igTreeNodeV", - "defaults": [], + "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui", + "location": "imgui:541", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeVPtr", "ret": "bool", @@ -15948,9 +16039,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igTreePop", - "defaults": [], + "defaults": {}, "funcname": "TreePop", - "location": "imgui", + "location": "imgui:549", "namespace": "ImGui", "ov_cimguiname": "igTreePop", "ret": "void", @@ -15970,9 +16061,9 @@ "argsoriginal": "(const char* str_id)", "call_args": "(str_id)", "cimguiname": "igTreePush", - "defaults": [], + "defaults": {}, "funcname": "TreePush", - "location": "imgui", + "location": "imgui:547", "namespace": "ImGui", "ov_cimguiname": "igTreePushStr", "ret": "void", @@ -15991,10 +16082,10 @@ "call_args": "(ptr_id)", "cimguiname": "igTreePush", "defaults": { - "ptr_id": "((void*)0)" + "ptr_id": "NULL" }, "funcname": "TreePush", - "location": "imgui", + "location": "imgui:548", "namespace": "ImGui", "ov_cimguiname": "igTreePushPtr", "ret": "void", @@ -16018,7 +16109,7 @@ "indent_w": "0.0f" }, "funcname": "Unindent", - "location": "imgui", + "location": "imgui:388", "namespace": "ImGui", "ov_cimguiname": "igUnindent", "ret": "void", @@ -16067,7 +16158,7 @@ "format": "\"%.3f\"" }, "funcname": "VSliderFloat", - "location": "imgui", + "location": "imgui:503", "namespace": "ImGui", "ov_cimguiname": "igVSliderFloat", "ret": "bool", @@ -16116,7 +16207,7 @@ "format": "\"%d\"" }, "funcname": "VSliderInt", - "location": "imgui", + "location": "imgui:504", "namespace": "ImGui", "ov_cimguiname": "igVSliderInt", "ret": "bool", @@ -16166,10 +16257,10 @@ "cimguiname": "igVSliderScalar", "defaults": { "flags": "0", - "format": "((void*)0)" + "format": "NULL" }, "funcname": "VSliderScalar", - "location": "imgui", + "location": "imgui:505", "namespace": "ImGui", "ov_cimguiname": "igVSliderScalar", "ret": "bool", @@ -16193,9 +16284,9 @@ "argsoriginal": "(const char* prefix,bool b)", "call_args": "(prefix,b)", "cimguiname": "igValue", - "defaults": [], + "defaults": {}, "funcname": "Value", - "location": "imgui", + "location": "imgui:577", "namespace": "ImGui", "ov_cimguiname": "igValueBool", "ret": "void", @@ -16217,9 +16308,9 @@ "argsoriginal": "(const char* prefix,int v)", "call_args": "(prefix,v)", "cimguiname": "igValue", - "defaults": [], + "defaults": {}, "funcname": "Value", - "location": "imgui", + "location": "imgui:578", "namespace": "ImGui", "ov_cimguiname": "igValueInt", "ret": "void", @@ -16241,9 +16332,9 @@ "argsoriginal": "(const char* prefix,unsigned int v)", "call_args": "(prefix,v)", "cimguiname": "igValue", - "defaults": [], + "defaults": {}, "funcname": "Value", - "location": "imgui", + "location": "imgui:579", "namespace": "ImGui", "ov_cimguiname": "igValueUint", "ret": "void", @@ -16270,10 +16361,10 @@ "call_args": "(prefix,v,float_format)", "cimguiname": "igValue", "defaults": { - "float_format": "((void*)0)" + "float_format": "NULL" }, "funcname": "Value", - "location": "imgui", + "location": "imgui:580", "namespace": "ImGui", "ov_cimguiname": "igValueFloat", "ret": "void", diff --git a/imgui-sys/third-party/definitions.lua b/imgui-sys/third-party/definitions.lua index 37e2b85..9ee41c3 100644 --- a/imgui-sys/third-party/definitions.lua +++ b/imgui-sys/third-party/definitions.lua @@ -1,33 +1,31 @@ local defs = {} defs["ImColor_HSV"] = {} defs["ImColor_HSV"][1] = {} -defs["ImColor_HSV"][1]["args"] = "(ImColor *pOut,ImColor* self,float h,float s,float v,float a)" +defs["ImColor_HSV"][1]["args"] = "(ImColor *pOut,float h,float s,float v,float a)" defs["ImColor_HSV"][1]["argsT"] = {} defs["ImColor_HSV"][1]["argsT"][1] = {} defs["ImColor_HSV"][1]["argsT"][1]["name"] = "pOut" defs["ImColor_HSV"][1]["argsT"][1]["type"] = "ImColor*" defs["ImColor_HSV"][1]["argsT"][2] = {} -defs["ImColor_HSV"][1]["argsT"][2]["name"] = "self" -defs["ImColor_HSV"][1]["argsT"][2]["type"] = "ImColor*" +defs["ImColor_HSV"][1]["argsT"][2]["name"] = "h" +defs["ImColor_HSV"][1]["argsT"][2]["type"] = "float" defs["ImColor_HSV"][1]["argsT"][3] = {} -defs["ImColor_HSV"][1]["argsT"][3]["name"] = "h" +defs["ImColor_HSV"][1]["argsT"][3]["name"] = "s" defs["ImColor_HSV"][1]["argsT"][3]["type"] = "float" defs["ImColor_HSV"][1]["argsT"][4] = {} -defs["ImColor_HSV"][1]["argsT"][4]["name"] = "s" +defs["ImColor_HSV"][1]["argsT"][4]["name"] = "v" defs["ImColor_HSV"][1]["argsT"][4]["type"] = "float" defs["ImColor_HSV"][1]["argsT"][5] = {} -defs["ImColor_HSV"][1]["argsT"][5]["name"] = "v" +defs["ImColor_HSV"][1]["argsT"][5]["name"] = "a" defs["ImColor_HSV"][1]["argsT"][5]["type"] = "float" -defs["ImColor_HSV"][1]["argsT"][6] = {} -defs["ImColor_HSV"][1]["argsT"][6]["name"] = "a" -defs["ImColor_HSV"][1]["argsT"][6]["type"] = "float" defs["ImColor_HSV"][1]["argsoriginal"] = "(float h,float s,float v,float a=1.0f)" defs["ImColor_HSV"][1]["call_args"] = "(h,s,v,a)" defs["ImColor_HSV"][1]["cimguiname"] = "ImColor_HSV" defs["ImColor_HSV"][1]["defaults"] = {} defs["ImColor_HSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_HSV"][1]["funcname"] = "HSV" -defs["ImColor_HSV"][1]["location"] = "imgui" +defs["ImColor_HSV"][1]["is_static_function"] = true +defs["ImColor_HSV"][1]["location"] = "imgui:1967" defs["ImColor_HSV"][1]["nonUDT"] = 1 defs["ImColor_HSV"][1]["ov_cimguiname"] = "ImColor_HSV" defs["ImColor_HSV"][1]["ret"] = "void" @@ -44,7 +42,7 @@ defs["ImColor_ImColor"][1]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][1]["constructor"] = true defs["ImColor_ImColor"][1]["defaults"] = {} defs["ImColor_ImColor"][1]["funcname"] = "ImColor" -defs["ImColor_ImColor"][1]["location"] = "imgui" +defs["ImColor_ImColor"][1]["location"] = "imgui:1957" defs["ImColor_ImColor"][1]["ov_cimguiname"] = "ImColor_ImColorNil" defs["ImColor_ImColor"][1]["signature"] = "()" defs["ImColor_ImColor"][1]["stname"] = "ImColor" @@ -70,7 +68,7 @@ defs["ImColor_ImColor"][2]["constructor"] = true defs["ImColor_ImColor"][2]["defaults"] = {} defs["ImColor_ImColor"][2]["defaults"]["a"] = "255" defs["ImColor_ImColor"][2]["funcname"] = "ImColor" -defs["ImColor_ImColor"][2]["location"] = "imgui" +defs["ImColor_ImColor"][2]["location"] = "imgui:1958" defs["ImColor_ImColor"][2]["ov_cimguiname"] = "ImColor_ImColorInt" defs["ImColor_ImColor"][2]["signature"] = "(int,int,int,int)" defs["ImColor_ImColor"][2]["stname"] = "ImColor" @@ -86,7 +84,7 @@ defs["ImColor_ImColor"][3]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][3]["constructor"] = true defs["ImColor_ImColor"][3]["defaults"] = {} defs["ImColor_ImColor"][3]["funcname"] = "ImColor" -defs["ImColor_ImColor"][3]["location"] = "imgui" +defs["ImColor_ImColor"][3]["location"] = "imgui:1959" defs["ImColor_ImColor"][3]["ov_cimguiname"] = "ImColor_ImColorU32" defs["ImColor_ImColor"][3]["signature"] = "(ImU32)" defs["ImColor_ImColor"][3]["stname"] = "ImColor" @@ -112,7 +110,7 @@ defs["ImColor_ImColor"][4]["constructor"] = true defs["ImColor_ImColor"][4]["defaults"] = {} defs["ImColor_ImColor"][4]["defaults"]["a"] = "1.0f" defs["ImColor_ImColor"][4]["funcname"] = "ImColor" -defs["ImColor_ImColor"][4]["location"] = "imgui" +defs["ImColor_ImColor"][4]["location"] = "imgui:1960" defs["ImColor_ImColor"][4]["ov_cimguiname"] = "ImColor_ImColorFloat" defs["ImColor_ImColor"][4]["signature"] = "(float,float,float,float)" defs["ImColor_ImColor"][4]["stname"] = "ImColor" @@ -128,7 +126,7 @@ defs["ImColor_ImColor"][5]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][5]["constructor"] = true defs["ImColor_ImColor"][5]["defaults"] = {} defs["ImColor_ImColor"][5]["funcname"] = "ImColor" -defs["ImColor_ImColor"][5]["location"] = "imgui" +defs["ImColor_ImColor"][5]["location"] = "imgui:1961" defs["ImColor_ImColor"][5]["ov_cimguiname"] = "ImColor_ImColorVec4" defs["ImColor_ImColor"][5]["signature"] = "(const ImVec4)" defs["ImColor_ImColor"][5]["stname"] = "ImColor" @@ -162,7 +160,7 @@ defs["ImColor_SetHSV"][1]["cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["defaults"] = {} defs["ImColor_SetHSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_SetHSV"][1]["funcname"] = "SetHSV" -defs["ImColor_SetHSV"][1]["location"] = "imgui" +defs["ImColor_SetHSV"][1]["location"] = "imgui:1966" defs["ImColor_SetHSV"][1]["ov_cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["ret"] = "void" defs["ImColor_SetHSV"][1]["signature"] = "(float,float,float,float)" @@ -194,7 +192,7 @@ defs["ImDrawCmd_ImDrawCmd"][1]["cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["constructor"] = true defs["ImDrawCmd_ImDrawCmd"][1]["defaults"] = {} defs["ImDrawCmd_ImDrawCmd"][1]["funcname"] = "ImDrawCmd" -defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui" +defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:2012" defs["ImDrawCmd_ImDrawCmd"][1]["ov_cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["signature"] = "()" defs["ImDrawCmd_ImDrawCmd"][1]["stname"] = "ImDrawCmd" @@ -227,7 +225,7 @@ defs["ImDrawData_Clear"][1]["call_args"] = "()" defs["ImDrawData_Clear"][1]["cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["defaults"] = {} defs["ImDrawData_Clear"][1]["funcname"] = "Clear" -defs["ImDrawData_Clear"][1]["location"] = "imgui" +defs["ImDrawData_Clear"][1]["location"] = "imgui:2223" defs["ImDrawData_Clear"][1]["ov_cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["ret"] = "void" defs["ImDrawData_Clear"][1]["signature"] = "()" @@ -245,7 +243,7 @@ defs["ImDrawData_DeIndexAllBuffers"][1]["call_args"] = "()" defs["ImDrawData_DeIndexAllBuffers"][1]["cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["defaults"] = {} defs["ImDrawData_DeIndexAllBuffers"][1]["funcname"] = "DeIndexAllBuffers" -defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui" +defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui:2224" defs["ImDrawData_DeIndexAllBuffers"][1]["ov_cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["ret"] = "void" defs["ImDrawData_DeIndexAllBuffers"][1]["signature"] = "()" @@ -261,7 +259,7 @@ defs["ImDrawData_ImDrawData"][1]["cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["constructor"] = true defs["ImDrawData_ImDrawData"][1]["defaults"] = {} defs["ImDrawData_ImDrawData"][1]["funcname"] = "ImDrawData" -defs["ImDrawData_ImDrawData"][1]["location"] = "imgui" +defs["ImDrawData_ImDrawData"][1]["location"] = "imgui:2221" defs["ImDrawData_ImDrawData"][1]["ov_cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["signature"] = "()" defs["ImDrawData_ImDrawData"][1]["stname"] = "ImDrawData" @@ -281,7 +279,7 @@ defs["ImDrawData_ScaleClipRects"][1]["call_args"] = "(fb_scale)" defs["ImDrawData_ScaleClipRects"][1]["cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["defaults"] = {} defs["ImDrawData_ScaleClipRects"][1]["funcname"] = "ScaleClipRects" -defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui" +defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui:2225" defs["ImDrawData_ScaleClipRects"][1]["ov_cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["ret"] = "void" defs["ImDrawData_ScaleClipRects"][1]["signature"] = "(const ImVec2)" @@ -298,7 +296,9 @@ defs["ImDrawData_destroy"][1]["call_args"] = "(self)" defs["ImDrawData_destroy"][1]["cimguiname"] = "ImDrawData_destroy" defs["ImDrawData_destroy"][1]["defaults"] = {} defs["ImDrawData_destroy"][1]["destructor"] = true +defs["ImDrawData_destroy"][1]["location"] = "imgui:2222" defs["ImDrawData_destroy"][1]["ov_cimguiname"] = "ImDrawData_destroy" +defs["ImDrawData_destroy"][1]["realdestructor"] = true defs["ImDrawData_destroy"][1]["ret"] = "void" defs["ImDrawData_destroy"][1]["signature"] = "(ImDrawData*)" defs["ImDrawData_destroy"][1]["stname"] = "ImDrawData" @@ -315,7 +315,7 @@ defs["ImDrawListSplitter_Clear"][1]["call_args"] = "()" defs["ImDrawListSplitter_Clear"][1]["cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["defaults"] = {} defs["ImDrawListSplitter_Clear"][1]["funcname"] = "Clear" -defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui" +defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:2055" defs["ImDrawListSplitter_Clear"][1]["ov_cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["ret"] = "void" defs["ImDrawListSplitter_Clear"][1]["signature"] = "()" @@ -333,7 +333,7 @@ defs["ImDrawListSplitter_ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawListSplitter_ClearFreeMemory"][1]["cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawListSplitter_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui" +defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:2056" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawListSplitter_ClearFreeMemory"][1]["signature"] = "()" @@ -349,7 +349,7 @@ defs["ImDrawListSplitter_ImDrawListSplitter"][1]["cimguiname"] = "ImDrawListSpli defs["ImDrawListSplitter_ImDrawListSplitter"][1]["constructor"] = true defs["ImDrawListSplitter_ImDrawListSplitter"][1]["defaults"] = {} defs["ImDrawListSplitter_ImDrawListSplitter"][1]["funcname"] = "ImDrawListSplitter" -defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui" +defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:2053" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["ov_cimguiname"] = "ImDrawListSplitter_ImDrawListSplitter" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["signature"] = "()" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["stname"] = "ImDrawListSplitter" @@ -369,7 +369,7 @@ defs["ImDrawListSplitter_Merge"][1]["call_args"] = "(draw_list)" defs["ImDrawListSplitter_Merge"][1]["cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["defaults"] = {} defs["ImDrawListSplitter_Merge"][1]["funcname"] = "Merge" -defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui" +defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:2058" defs["ImDrawListSplitter_Merge"][1]["ov_cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["ret"] = "void" defs["ImDrawListSplitter_Merge"][1]["signature"] = "(ImDrawList*)" @@ -393,7 +393,7 @@ defs["ImDrawListSplitter_SetCurrentChannel"][1]["call_args"] = "(draw_list,chann defs["ImDrawListSplitter_SetCurrentChannel"][1]["cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["defaults"] = {} defs["ImDrawListSplitter_SetCurrentChannel"][1]["funcname"] = "SetCurrentChannel" -defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui" +defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:2059" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ov_cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ret"] = "void" defs["ImDrawListSplitter_SetCurrentChannel"][1]["signature"] = "(ImDrawList*,int)" @@ -417,7 +417,7 @@ defs["ImDrawListSplitter_Split"][1]["call_args"] = "(draw_list,count)" defs["ImDrawListSplitter_Split"][1]["cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["defaults"] = {} defs["ImDrawListSplitter_Split"][1]["funcname"] = "Split" -defs["ImDrawListSplitter_Split"][1]["location"] = "imgui" +defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:2057" defs["ImDrawListSplitter_Split"][1]["ov_cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["ret"] = "void" defs["ImDrawListSplitter_Split"][1]["signature"] = "(ImDrawList*,int)" @@ -434,7 +434,9 @@ defs["ImDrawListSplitter_destroy"][1]["call_args"] = "(self)" defs["ImDrawListSplitter_destroy"][1]["cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["defaults"] = {} defs["ImDrawListSplitter_destroy"][1]["destructor"] = true +defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:2054" defs["ImDrawListSplitter_destroy"][1]["ov_cimguiname"] = "ImDrawListSplitter_destroy" +defs["ImDrawListSplitter_destroy"][1]["realdestructor"] = true defs["ImDrawListSplitter_destroy"][1]["ret"] = "void" defs["ImDrawListSplitter_destroy"][1]["signature"] = "(ImDrawListSplitter*)" defs["ImDrawListSplitter_destroy"][1]["stname"] = "ImDrawListSplitter" @@ -473,7 +475,7 @@ defs["ImDrawList_AddBezierCurve"][1]["cimguiname"] = "ImDrawList_AddBezierCurve" defs["ImDrawList_AddBezierCurve"][1]["defaults"] = {} defs["ImDrawList_AddBezierCurve"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierCurve"][1]["funcname"] = "AddBezierCurve" -defs["ImDrawList_AddBezierCurve"][1]["location"] = "imgui" +defs["ImDrawList_AddBezierCurve"][1]["location"] = "imgui:2149" defs["ImDrawList_AddBezierCurve"][1]["ov_cimguiname"] = "ImDrawList_AddBezierCurve" defs["ImDrawList_AddBezierCurve"][1]["ret"] = "void" defs["ImDrawList_AddBezierCurve"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" @@ -497,7 +499,7 @@ defs["ImDrawList_AddCallback"][1]["call_args"] = "(callback,callback_data)" defs["ImDrawList_AddCallback"][1]["cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["defaults"] = {} defs["ImDrawList_AddCallback"][1]["funcname"] = "AddCallback" -defs["ImDrawList_AddCallback"][1]["location"] = "imgui" +defs["ImDrawList_AddCallback"][1]["location"] = "imgui:2171" defs["ImDrawList_AddCallback"][1]["ov_cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["ret"] = "void" defs["ImDrawList_AddCallback"][1]["signature"] = "(ImDrawCallback,void*)" @@ -532,7 +534,7 @@ defs["ImDrawList_AddCircle"][1]["defaults"] = {} defs["ImDrawList_AddCircle"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddCircle"][1]["funcname"] = "AddCircle" -defs["ImDrawList_AddCircle"][1]["location"] = "imgui" +defs["ImDrawList_AddCircle"][1]["location"] = "imgui:2141" defs["ImDrawList_AddCircle"][1]["ov_cimguiname"] = "ImDrawList_AddCircle" defs["ImDrawList_AddCircle"][1]["ret"] = "void" defs["ImDrawList_AddCircle"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -563,7 +565,7 @@ defs["ImDrawList_AddCircleFilled"][1]["cimguiname"] = "ImDrawList_AddCircleFille defs["ImDrawList_AddCircleFilled"][1]["defaults"] = {} defs["ImDrawList_AddCircleFilled"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircleFilled"][1]["funcname"] = "AddCircleFilled" -defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui" +defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:2142" defs["ImDrawList_AddCircleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddCircleFilled" defs["ImDrawList_AddCircleFilled"][1]["ret"] = "void" defs["ImDrawList_AddCircleFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -590,7 +592,7 @@ defs["ImDrawList_AddConvexPolyFilled"][1]["call_args"] = "(points,num_points,col defs["ImDrawList_AddConvexPolyFilled"][1]["cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["defaults"] = {} defs["ImDrawList_AddConvexPolyFilled"][1]["funcname"] = "AddConvexPolyFilled" -defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui" +defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:2148" defs["ImDrawList_AddConvexPolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["ret"] = "void" defs["ImDrawList_AddConvexPolyFilled"][1]["signature"] = "(const ImVec2*,int,ImU32)" @@ -608,7 +610,7 @@ defs["ImDrawList_AddDrawCmd"][1]["call_args"] = "()" defs["ImDrawList_AddDrawCmd"][1]["cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["defaults"] = {} defs["ImDrawList_AddDrawCmd"][1]["funcname"] = "AddDrawCmd" -defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui" +defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:2172" defs["ImDrawList_AddDrawCmd"][1]["ov_cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["ret"] = "void" defs["ImDrawList_AddDrawCmd"][1]["signature"] = "()" @@ -643,11 +645,11 @@ defs["ImDrawList_AddImage"][1]["argsoriginal"] = "(ImTextureID user_texture_id,c defs["ImDrawList_AddImage"][1]["call_args"] = "(user_texture_id,p_min,p_max,uv_min,uv_max,col)" defs["ImDrawList_AddImage"][1]["cimguiname"] = "ImDrawList_AddImage" defs["ImDrawList_AddImage"][1]["defaults"] = {} -defs["ImDrawList_AddImage"][1]["defaults"]["col"] = "(((ImU32)(255)<<24)|((ImU32)(255)<<16)|((ImU32)(255)<<8)|((ImU32)(255)<<0))" +defs["ImDrawList_AddImage"][1]["defaults"]["col"] = "4294967295" defs["ImDrawList_AddImage"][1]["defaults"]["uv_max"] = "ImVec2(1,1)" defs["ImDrawList_AddImage"][1]["defaults"]["uv_min"] = "ImVec2(0,0)" defs["ImDrawList_AddImage"][1]["funcname"] = "AddImage" -defs["ImDrawList_AddImage"][1]["location"] = "imgui" +defs["ImDrawList_AddImage"][1]["location"] = "imgui:2155" defs["ImDrawList_AddImage"][1]["ov_cimguiname"] = "ImDrawList_AddImage" defs["ImDrawList_AddImage"][1]["ret"] = "void" defs["ImDrawList_AddImage"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -694,13 +696,13 @@ defs["ImDrawList_AddImageQuad"][1]["argsoriginal"] = "(ImTextureID user_texture_ defs["ImDrawList_AddImageQuad"][1]["call_args"] = "(user_texture_id,p1,p2,p3,p4,uv1,uv2,uv3,uv4,col)" defs["ImDrawList_AddImageQuad"][1]["cimguiname"] = "ImDrawList_AddImageQuad" defs["ImDrawList_AddImageQuad"][1]["defaults"] = {} -defs["ImDrawList_AddImageQuad"][1]["defaults"]["col"] = "(((ImU32)(255)<<24)|((ImU32)(255)<<16)|((ImU32)(255)<<8)|((ImU32)(255)<<0))" +defs["ImDrawList_AddImageQuad"][1]["defaults"]["col"] = "4294967295" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv1"] = "ImVec2(0,0)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv2"] = "ImVec2(1,0)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv3"] = "ImVec2(1,1)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv4"] = "ImVec2(0,1)" defs["ImDrawList_AddImageQuad"][1]["funcname"] = "AddImageQuad" -defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui" +defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:2156" defs["ImDrawList_AddImageQuad"][1]["ov_cimguiname"] = "ImDrawList_AddImageQuad" defs["ImDrawList_AddImageQuad"][1]["ret"] = "void" defs["ImDrawList_AddImageQuad"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -743,7 +745,7 @@ defs["ImDrawList_AddImageRounded"][1]["cimguiname"] = "ImDrawList_AddImageRounde defs["ImDrawList_AddImageRounded"][1]["defaults"] = {} defs["ImDrawList_AddImageRounded"][1]["defaults"]["rounding_corners"] = "ImDrawCornerFlags_All" defs["ImDrawList_AddImageRounded"][1]["funcname"] = "AddImageRounded" -defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui" +defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:2157" defs["ImDrawList_AddImageRounded"][1]["ov_cimguiname"] = "ImDrawList_AddImageRounded" defs["ImDrawList_AddImageRounded"][1]["ret"] = "void" defs["ImDrawList_AddImageRounded"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawCornerFlags)" @@ -774,7 +776,7 @@ defs["ImDrawList_AddLine"][1]["cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["defaults"] = {} defs["ImDrawList_AddLine"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddLine"][1]["funcname"] = "AddLine" -defs["ImDrawList_AddLine"][1]["location"] = "imgui" +defs["ImDrawList_AddLine"][1]["location"] = "imgui:2133" defs["ImDrawList_AddLine"][1]["ov_cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["ret"] = "void" defs["ImDrawList_AddLine"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float)" @@ -808,7 +810,7 @@ defs["ImDrawList_AddNgon"][1]["cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["defaults"] = {} defs["ImDrawList_AddNgon"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddNgon"][1]["funcname"] = "AddNgon" -defs["ImDrawList_AddNgon"][1]["location"] = "imgui" +defs["ImDrawList_AddNgon"][1]["location"] = "imgui:2143" defs["ImDrawList_AddNgon"][1]["ov_cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["ret"] = "void" defs["ImDrawList_AddNgon"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -838,7 +840,7 @@ defs["ImDrawList_AddNgonFilled"][1]["call_args"] = "(center,radius,col,num_segme defs["ImDrawList_AddNgonFilled"][1]["cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["defaults"] = {} defs["ImDrawList_AddNgonFilled"][1]["funcname"] = "AddNgonFilled" -defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui" +defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:2144" defs["ImDrawList_AddNgonFilled"][1]["ov_cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["ret"] = "void" defs["ImDrawList_AddNgonFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -871,7 +873,7 @@ defs["ImDrawList_AddPolyline"][1]["call_args"] = "(points,num_points,col,closed, defs["ImDrawList_AddPolyline"][1]["cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["defaults"] = {} defs["ImDrawList_AddPolyline"][1]["funcname"] = "AddPolyline" -defs["ImDrawList_AddPolyline"][1]["location"] = "imgui" +defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:2147" defs["ImDrawList_AddPolyline"][1]["ov_cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["ret"] = "void" defs["ImDrawList_AddPolyline"][1]["signature"] = "(const ImVec2*,int,ImU32,bool,float)" @@ -908,7 +910,7 @@ defs["ImDrawList_AddQuad"][1]["cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["defaults"] = {} defs["ImDrawList_AddQuad"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddQuad"][1]["funcname"] = "AddQuad" -defs["ImDrawList_AddQuad"][1]["location"] = "imgui" +defs["ImDrawList_AddQuad"][1]["location"] = "imgui:2137" defs["ImDrawList_AddQuad"][1]["ov_cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["ret"] = "void" defs["ImDrawList_AddQuad"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -941,7 +943,7 @@ defs["ImDrawList_AddQuadFilled"][1]["call_args"] = "(p1,p2,p3,p4,col)" defs["ImDrawList_AddQuadFilled"][1]["cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["defaults"] = {} defs["ImDrawList_AddQuadFilled"][1]["funcname"] = "AddQuadFilled" -defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui" +defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:2138" defs["ImDrawList_AddQuadFilled"][1]["ov_cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["ret"] = "void" defs["ImDrawList_AddQuadFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -980,7 +982,7 @@ defs["ImDrawList_AddRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRect"][1]["defaults"]["rounding_corners"] = "ImDrawCornerFlags_All" defs["ImDrawList_AddRect"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddRect"][1]["funcname"] = "AddRect" -defs["ImDrawList_AddRect"][1]["location"] = "imgui" +defs["ImDrawList_AddRect"][1]["location"] = "imgui:2134" defs["ImDrawList_AddRect"][1]["ov_cimguiname"] = "ImDrawList_AddRect" defs["ImDrawList_AddRect"][1]["ret"] = "void" defs["ImDrawList_AddRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawCornerFlags,float)" @@ -1015,7 +1017,7 @@ defs["ImDrawList_AddRectFilled"][1]["defaults"] = {} defs["ImDrawList_AddRectFilled"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRectFilled"][1]["defaults"]["rounding_corners"] = "ImDrawCornerFlags_All" defs["ImDrawList_AddRectFilled"][1]["funcname"] = "AddRectFilled" -defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui" +defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:2135" defs["ImDrawList_AddRectFilled"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilled" defs["ImDrawList_AddRectFilled"][1]["ret"] = "void" defs["ImDrawList_AddRectFilled"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawCornerFlags)" @@ -1051,7 +1053,7 @@ defs["ImDrawList_AddRectFilledMultiColor"][1]["call_args"] = "(p_min,p_max,col_u defs["ImDrawList_AddRectFilledMultiColor"][1]["cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["defaults"] = {} defs["ImDrawList_AddRectFilledMultiColor"][1]["funcname"] = "AddRectFilledMultiColor" -defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui" +defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:2136" defs["ImDrawList_AddRectFilledMultiColor"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["ret"] = "void" defs["ImDrawList_AddRectFilledMultiColor"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)" @@ -1080,9 +1082,9 @@ defs["ImDrawList_AddText"][1]["argsoriginal"] = "(const ImVec2& pos,ImU32 col,co defs["ImDrawList_AddText"][1]["call_args"] = "(pos,col,text_begin,text_end)" defs["ImDrawList_AddText"][1]["cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][1]["defaults"] = {} -defs["ImDrawList_AddText"][1]["defaults"]["text_end"] = "((void*)0)" +defs["ImDrawList_AddText"][1]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][1]["funcname"] = "AddText" -defs["ImDrawList_AddText"][1]["location"] = "imgui" +defs["ImDrawList_AddText"][1]["location"] = "imgui:2145" defs["ImDrawList_AddText"][1]["ov_cimguiname"] = "ImDrawList_AddTextVec2" defs["ImDrawList_AddText"][1]["ret"] = "void" defs["ImDrawList_AddText"][1]["signature"] = "(const ImVec2,ImU32,const char*,const char*)" @@ -1121,11 +1123,11 @@ defs["ImDrawList_AddText"][2]["argsoriginal"] = "(const ImFont* font,float font_ defs["ImDrawList_AddText"][2]["call_args"] = "(font,font_size,pos,col,text_begin,text_end,wrap_width,cpu_fine_clip_rect)" defs["ImDrawList_AddText"][2]["cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][2]["defaults"] = {} -defs["ImDrawList_AddText"][2]["defaults"]["cpu_fine_clip_rect"] = "((void*)0)" -defs["ImDrawList_AddText"][2]["defaults"]["text_end"] = "((void*)0)" +defs["ImDrawList_AddText"][2]["defaults"]["cpu_fine_clip_rect"] = "NULL" +defs["ImDrawList_AddText"][2]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][2]["defaults"]["wrap_width"] = "0.0f" defs["ImDrawList_AddText"][2]["funcname"] = "AddText" -defs["ImDrawList_AddText"][2]["location"] = "imgui" +defs["ImDrawList_AddText"][2]["location"] = "imgui:2146" defs["ImDrawList_AddText"][2]["ov_cimguiname"] = "ImDrawList_AddTextFontPtr" defs["ImDrawList_AddText"][2]["ret"] = "void" defs["ImDrawList_AddText"][2]["signature"] = "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)" @@ -1160,7 +1162,7 @@ defs["ImDrawList_AddTriangle"][1]["cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["defaults"] = {} defs["ImDrawList_AddTriangle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddTriangle"][1]["funcname"] = "AddTriangle" -defs["ImDrawList_AddTriangle"][1]["location"] = "imgui" +defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:2139" defs["ImDrawList_AddTriangle"][1]["ov_cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["ret"] = "void" defs["ImDrawList_AddTriangle"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -1190,7 +1192,7 @@ defs["ImDrawList_AddTriangleFilled"][1]["call_args"] = "(p1,p2,p3,col)" defs["ImDrawList_AddTriangleFilled"][1]["cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["defaults"] = {} defs["ImDrawList_AddTriangleFilled"][1]["funcname"] = "AddTriangleFilled" -defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui" +defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:2140" defs["ImDrawList_AddTriangleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["ret"] = "void" defs["ImDrawList_AddTriangleFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1208,7 +1210,7 @@ defs["ImDrawList_ChannelsMerge"][1]["call_args"] = "()" defs["ImDrawList_ChannelsMerge"][1]["cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["defaults"] = {} defs["ImDrawList_ChannelsMerge"][1]["funcname"] = "ChannelsMerge" -defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui" +defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:2182" defs["ImDrawList_ChannelsMerge"][1]["ov_cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["ret"] = "void" defs["ImDrawList_ChannelsMerge"][1]["signature"] = "()" @@ -1229,7 +1231,7 @@ defs["ImDrawList_ChannelsSetCurrent"][1]["call_args"] = "(n)" defs["ImDrawList_ChannelsSetCurrent"][1]["cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["defaults"] = {} defs["ImDrawList_ChannelsSetCurrent"][1]["funcname"] = "ChannelsSetCurrent" -defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui" +defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:2183" defs["ImDrawList_ChannelsSetCurrent"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["ret"] = "void" defs["ImDrawList_ChannelsSetCurrent"][1]["signature"] = "(int)" @@ -1250,7 +1252,7 @@ defs["ImDrawList_ChannelsSplit"][1]["call_args"] = "(count)" defs["ImDrawList_ChannelsSplit"][1]["cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["defaults"] = {} defs["ImDrawList_ChannelsSplit"][1]["funcname"] = "ChannelsSplit" -defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui" +defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:2181" defs["ImDrawList_ChannelsSplit"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["ret"] = "void" defs["ImDrawList_ChannelsSplit"][1]["signature"] = "(int)" @@ -1268,7 +1270,7 @@ defs["ImDrawList_CloneOutput"][1]["call_args"] = "()" defs["ImDrawList_CloneOutput"][1]["cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["defaults"] = {} defs["ImDrawList_CloneOutput"][1]["funcname"] = "CloneOutput" -defs["ImDrawList_CloneOutput"][1]["location"] = "imgui" +defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:2173" defs["ImDrawList_CloneOutput"][1]["ov_cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["ret"] = "ImDrawList*" defs["ImDrawList_CloneOutput"][1]["signature"] = "()const" @@ -1289,7 +1291,7 @@ defs["ImDrawList_GetClipRectMax"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMax"][1]["cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMax"][1]["funcname"] = "GetClipRectMax" -defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui" +defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:2125" defs["ImDrawList_GetClipRectMax"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMax"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["ret"] = "void" @@ -1311,7 +1313,7 @@ defs["ImDrawList_GetClipRectMin"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMin"][1]["cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMin"][1]["funcname"] = "GetClipRectMin" -defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui" +defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:2124" defs["ImDrawList_GetClipRectMin"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMin"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["ret"] = "void" @@ -1331,7 +1333,7 @@ defs["ImDrawList_ImDrawList"][1]["cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["constructor"] = true defs["ImDrawList_ImDrawList"][1]["defaults"] = {} defs["ImDrawList_ImDrawList"][1]["funcname"] = "ImDrawList" -defs["ImDrawList_ImDrawList"][1]["location"] = "imgui" +defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:2116" defs["ImDrawList_ImDrawList"][1]["ov_cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["signature"] = "(const ImDrawListSharedData*)" defs["ImDrawList_ImDrawList"][1]["stname"] = "ImDrawList" @@ -1364,7 +1366,7 @@ defs["ImDrawList_PathArcTo"][1]["cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["defaults"] = {} defs["ImDrawList_PathArcTo"][1]["defaults"]["num_segments"] = "10" defs["ImDrawList_PathArcTo"][1]["funcname"] = "PathArcTo" -defs["ImDrawList_PathArcTo"][1]["location"] = "imgui" +defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:2165" defs["ImDrawList_PathArcTo"][1]["ov_cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["ret"] = "void" defs["ImDrawList_PathArcTo"][1]["signature"] = "(const ImVec2,float,float,float,int)" @@ -1394,7 +1396,7 @@ defs["ImDrawList_PathArcToFast"][1]["call_args"] = "(center,radius,a_min_of_12,a defs["ImDrawList_PathArcToFast"][1]["cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["defaults"] = {} defs["ImDrawList_PathArcToFast"][1]["funcname"] = "PathArcToFast" -defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui" +defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:2166" defs["ImDrawList_PathArcToFast"][1]["ov_cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["ret"] = "void" defs["ImDrawList_PathArcToFast"][1]["signature"] = "(const ImVec2,float,int,int)" @@ -1425,7 +1427,7 @@ defs["ImDrawList_PathBezierCurveTo"][1]["cimguiname"] = "ImDrawList_PathBezierCu defs["ImDrawList_PathBezierCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierCurveTo"][1]["funcname"] = "PathBezierCurveTo" -defs["ImDrawList_PathBezierCurveTo"][1]["location"] = "imgui" +defs["ImDrawList_PathBezierCurveTo"][1]["location"] = "imgui:2167" defs["ImDrawList_PathBezierCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierCurveTo" defs["ImDrawList_PathBezierCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,int)" @@ -1443,7 +1445,7 @@ defs["ImDrawList_PathClear"][1]["call_args"] = "()" defs["ImDrawList_PathClear"][1]["cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["defaults"] = {} defs["ImDrawList_PathClear"][1]["funcname"] = "PathClear" -defs["ImDrawList_PathClear"][1]["location"] = "imgui" +defs["ImDrawList_PathClear"][1]["location"] = "imgui:2160" defs["ImDrawList_PathClear"][1]["ov_cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["ret"] = "void" defs["ImDrawList_PathClear"][1]["signature"] = "()" @@ -1464,7 +1466,7 @@ defs["ImDrawList_PathFillConvex"][1]["call_args"] = "(col)" defs["ImDrawList_PathFillConvex"][1]["cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["defaults"] = {} defs["ImDrawList_PathFillConvex"][1]["funcname"] = "PathFillConvex" -defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui" +defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:2163" defs["ImDrawList_PathFillConvex"][1]["ov_cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["ret"] = "void" defs["ImDrawList_PathFillConvex"][1]["signature"] = "(ImU32)" @@ -1485,7 +1487,7 @@ defs["ImDrawList_PathLineTo"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineTo"][1]["cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["defaults"] = {} defs["ImDrawList_PathLineTo"][1]["funcname"] = "PathLineTo" -defs["ImDrawList_PathLineTo"][1]["location"] = "imgui" +defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:2161" defs["ImDrawList_PathLineTo"][1]["ov_cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["ret"] = "void" defs["ImDrawList_PathLineTo"][1]["signature"] = "(const ImVec2)" @@ -1506,7 +1508,7 @@ defs["ImDrawList_PathLineToMergeDuplicate"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineToMergeDuplicate"][1]["cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["defaults"] = {} defs["ImDrawList_PathLineToMergeDuplicate"][1]["funcname"] = "PathLineToMergeDuplicate" -defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui" +defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:2162" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ov_cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ret"] = "void" defs["ImDrawList_PathLineToMergeDuplicate"][1]["signature"] = "(const ImVec2)" @@ -1538,7 +1540,7 @@ defs["ImDrawList_PathRect"][1]["defaults"] = {} defs["ImDrawList_PathRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_PathRect"][1]["defaults"]["rounding_corners"] = "ImDrawCornerFlags_All" defs["ImDrawList_PathRect"][1]["funcname"] = "PathRect" -defs["ImDrawList_PathRect"][1]["location"] = "imgui" +defs["ImDrawList_PathRect"][1]["location"] = "imgui:2168" defs["ImDrawList_PathRect"][1]["ov_cimguiname"] = "ImDrawList_PathRect" defs["ImDrawList_PathRect"][1]["ret"] = "void" defs["ImDrawList_PathRect"][1]["signature"] = "(const ImVec2,const ImVec2,float,ImDrawCornerFlags)" @@ -1566,7 +1568,7 @@ defs["ImDrawList_PathStroke"][1]["cimguiname"] = "ImDrawList_PathStroke" defs["ImDrawList_PathStroke"][1]["defaults"] = {} defs["ImDrawList_PathStroke"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_PathStroke"][1]["funcname"] = "PathStroke" -defs["ImDrawList_PathStroke"][1]["location"] = "imgui" +defs["ImDrawList_PathStroke"][1]["location"] = "imgui:2164" defs["ImDrawList_PathStroke"][1]["ov_cimguiname"] = "ImDrawList_PathStroke" defs["ImDrawList_PathStroke"][1]["ret"] = "void" defs["ImDrawList_PathStroke"][1]["signature"] = "(ImU32,bool,float)" @@ -1584,7 +1586,7 @@ defs["ImDrawList_PopClipRect"][1]["call_args"] = "()" defs["ImDrawList_PopClipRect"][1]["cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["defaults"] = {} defs["ImDrawList_PopClipRect"][1]["funcname"] = "PopClipRect" -defs["ImDrawList_PopClipRect"][1]["location"] = "imgui" +defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:2121" defs["ImDrawList_PopClipRect"][1]["ov_cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["ret"] = "void" defs["ImDrawList_PopClipRect"][1]["signature"] = "()" @@ -1602,7 +1604,7 @@ defs["ImDrawList_PopTextureID"][1]["call_args"] = "()" defs["ImDrawList_PopTextureID"][1]["cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["defaults"] = {} defs["ImDrawList_PopTextureID"][1]["funcname"] = "PopTextureID" -defs["ImDrawList_PopTextureID"][1]["location"] = "imgui" +defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:2123" defs["ImDrawList_PopTextureID"][1]["ov_cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["ret"] = "void" defs["ImDrawList_PopTextureID"][1]["signature"] = "()" @@ -1647,7 +1649,7 @@ defs["ImDrawList_PrimQuadUV"][1]["call_args"] = "(a,b,c,d,uv_a,uv_b,uv_c,uv_d,co defs["ImDrawList_PrimQuadUV"][1]["cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["defaults"] = {} defs["ImDrawList_PrimQuadUV"][1]["funcname"] = "PrimQuadUV" -defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui" +defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:2192" defs["ImDrawList_PrimQuadUV"][1]["ov_cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["ret"] = "void" defs["ImDrawList_PrimQuadUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1674,7 +1676,7 @@ defs["ImDrawList_PrimRect"][1]["call_args"] = "(a,b,col)" defs["ImDrawList_PrimRect"][1]["cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["defaults"] = {} defs["ImDrawList_PrimRect"][1]["funcname"] = "PrimRect" -defs["ImDrawList_PrimRect"][1]["location"] = "imgui" +defs["ImDrawList_PrimRect"][1]["location"] = "imgui:2190" defs["ImDrawList_PrimRect"][1]["ov_cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["ret"] = "void" defs["ImDrawList_PrimRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -1707,7 +1709,7 @@ defs["ImDrawList_PrimRectUV"][1]["call_args"] = "(a,b,uv_a,uv_b,col)" defs["ImDrawList_PrimRectUV"][1]["cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["defaults"] = {} defs["ImDrawList_PrimRectUV"][1]["funcname"] = "PrimRectUV" -defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui" +defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:2191" defs["ImDrawList_PrimRectUV"][1]["ov_cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["ret"] = "void" defs["ImDrawList_PrimRectUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1731,7 +1733,7 @@ defs["ImDrawList_PrimReserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimReserve"][1]["cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["defaults"] = {} defs["ImDrawList_PrimReserve"][1]["funcname"] = "PrimReserve" -defs["ImDrawList_PrimReserve"][1]["location"] = "imgui" +defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:2188" defs["ImDrawList_PrimReserve"][1]["ov_cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["ret"] = "void" defs["ImDrawList_PrimReserve"][1]["signature"] = "(int,int)" @@ -1755,7 +1757,7 @@ defs["ImDrawList_PrimUnreserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimUnreserve"][1]["cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["defaults"] = {} defs["ImDrawList_PrimUnreserve"][1]["funcname"] = "PrimUnreserve" -defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui" +defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:2189" defs["ImDrawList_PrimUnreserve"][1]["ov_cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["ret"] = "void" defs["ImDrawList_PrimUnreserve"][1]["signature"] = "(int,int)" @@ -1782,7 +1784,7 @@ defs["ImDrawList_PrimVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimVtx"][1]["cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["defaults"] = {} defs["ImDrawList_PrimVtx"][1]["funcname"] = "PrimVtx" -defs["ImDrawList_PrimVtx"][1]["location"] = "imgui" +defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:2195" defs["ImDrawList_PrimVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["ret"] = "void" defs["ImDrawList_PrimVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -1803,7 +1805,7 @@ defs["ImDrawList_PrimWriteIdx"][1]["call_args"] = "(idx)" defs["ImDrawList_PrimWriteIdx"][1]["cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteIdx"][1]["funcname"] = "PrimWriteIdx" -defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui" +defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:2194" defs["ImDrawList_PrimWriteIdx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteIdx"][1]["signature"] = "(ImDrawIdx)" @@ -1830,7 +1832,7 @@ defs["ImDrawList_PrimWriteVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimWriteVtx"][1]["cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteVtx"][1]["funcname"] = "PrimWriteVtx" -defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui" +defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:2193" defs["ImDrawList_PrimWriteVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -1858,7 +1860,7 @@ defs["ImDrawList_PushClipRect"][1]["cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["defaults"] = {} defs["ImDrawList_PushClipRect"][1]["defaults"]["intersect_with_current_clip_rect"] = "false" defs["ImDrawList_PushClipRect"][1]["funcname"] = "PushClipRect" -defs["ImDrawList_PushClipRect"][1]["location"] = "imgui" +defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:2119" defs["ImDrawList_PushClipRect"][1]["ov_cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["ret"] = "void" defs["ImDrawList_PushClipRect"][1]["signature"] = "(ImVec2,ImVec2,bool)" @@ -1876,7 +1878,7 @@ defs["ImDrawList_PushClipRectFullScreen"][1]["call_args"] = "()" defs["ImDrawList_PushClipRectFullScreen"][1]["cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["defaults"] = {} defs["ImDrawList_PushClipRectFullScreen"][1]["funcname"] = "PushClipRectFullScreen" -defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui" +defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:2120" defs["ImDrawList_PushClipRectFullScreen"][1]["ov_cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["ret"] = "void" defs["ImDrawList_PushClipRectFullScreen"][1]["signature"] = "()" @@ -1897,7 +1899,7 @@ defs["ImDrawList_PushTextureID"][1]["call_args"] = "(texture_id)" defs["ImDrawList_PushTextureID"][1]["cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["defaults"] = {} defs["ImDrawList_PushTextureID"][1]["funcname"] = "PushTextureID" -defs["ImDrawList_PushTextureID"][1]["location"] = "imgui" +defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:2122" defs["ImDrawList_PushTextureID"][1]["ov_cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["ret"] = "void" defs["ImDrawList_PushTextureID"][1]["signature"] = "(ImTextureID)" @@ -1915,7 +1917,7 @@ defs["ImDrawList__ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawList__ClearFreeMemory"][1]["cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawList__ClearFreeMemory"][1]["funcname"] = "_ClearFreeMemory" -defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui" +defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:2199" defs["ImDrawList__ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawList__ClearFreeMemory"][1]["signature"] = "()" @@ -1933,7 +1935,7 @@ defs["ImDrawList__OnChangedClipRect"][1]["call_args"] = "()" defs["ImDrawList__OnChangedClipRect"][1]["cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["defaults"] = {} defs["ImDrawList__OnChangedClipRect"][1]["funcname"] = "_OnChangedClipRect" -defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui" +defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:2201" defs["ImDrawList__OnChangedClipRect"][1]["ov_cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["ret"] = "void" defs["ImDrawList__OnChangedClipRect"][1]["signature"] = "()" @@ -1951,7 +1953,7 @@ defs["ImDrawList__OnChangedTextureID"][1]["call_args"] = "()" defs["ImDrawList__OnChangedTextureID"][1]["cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["defaults"] = {} defs["ImDrawList__OnChangedTextureID"][1]["funcname"] = "_OnChangedTextureID" -defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui" +defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:2202" defs["ImDrawList__OnChangedTextureID"][1]["ov_cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["ret"] = "void" defs["ImDrawList__OnChangedTextureID"][1]["signature"] = "()" @@ -1969,7 +1971,7 @@ defs["ImDrawList__OnChangedVtxOffset"][1]["call_args"] = "()" defs["ImDrawList__OnChangedVtxOffset"][1]["cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["defaults"] = {} defs["ImDrawList__OnChangedVtxOffset"][1]["funcname"] = "_OnChangedVtxOffset" -defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui" +defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:2203" defs["ImDrawList__OnChangedVtxOffset"][1]["ov_cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["ret"] = "void" defs["ImDrawList__OnChangedVtxOffset"][1]["signature"] = "()" @@ -1987,7 +1989,7 @@ defs["ImDrawList__PopUnusedDrawCmd"][1]["call_args"] = "()" defs["ImDrawList__PopUnusedDrawCmd"][1]["cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["defaults"] = {} defs["ImDrawList__PopUnusedDrawCmd"][1]["funcname"] = "_PopUnusedDrawCmd" -defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui" +defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:2200" defs["ImDrawList__PopUnusedDrawCmd"][1]["ov_cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["ret"] = "void" defs["ImDrawList__PopUnusedDrawCmd"][1]["signature"] = "()" @@ -2005,7 +2007,7 @@ defs["ImDrawList__ResetForNewFrame"][1]["call_args"] = "()" defs["ImDrawList__ResetForNewFrame"][1]["cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["defaults"] = {} defs["ImDrawList__ResetForNewFrame"][1]["funcname"] = "_ResetForNewFrame" -defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui" +defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:2198" defs["ImDrawList__ResetForNewFrame"][1]["ov_cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["ret"] = "void" defs["ImDrawList__ResetForNewFrame"][1]["signature"] = "()" @@ -2022,7 +2024,9 @@ defs["ImDrawList_destroy"][1]["call_args"] = "(self)" defs["ImDrawList_destroy"][1]["cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["defaults"] = {} defs["ImDrawList_destroy"][1]["destructor"] = true +defs["ImDrawList_destroy"][1]["location"] = "imgui:2118" defs["ImDrawList_destroy"][1]["ov_cimguiname"] = "ImDrawList_destroy" +defs["ImDrawList_destroy"][1]["realdestructor"] = true defs["ImDrawList_destroy"][1]["ret"] = "void" defs["ImDrawList_destroy"][1]["signature"] = "(ImDrawList*)" defs["ImDrawList_destroy"][1]["stname"] = "ImDrawList" @@ -2037,7 +2041,7 @@ defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["cimguiname"] = "ImFontAt defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["constructor"] = true defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["funcname"] = "ImFontAtlasCustomRect" -defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui" +defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui:2295" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_ImFontAtlasCustomRect" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["signature"] = "()" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["stname"] = "ImFontAtlasCustomRect" @@ -2054,7 +2058,7 @@ defs["ImFontAtlasCustomRect_IsPacked"][1]["call_args"] = "()" defs["ImFontAtlasCustomRect_IsPacked"][1]["cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_IsPacked"][1]["funcname"] = "IsPacked" -defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui" +defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui:2296" defs["ImFontAtlasCustomRect_IsPacked"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["ret"] = "bool" defs["ImFontAtlasCustomRect_IsPacked"][1]["signature"] = "()const" @@ -2107,7 +2111,7 @@ defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["cimguiname"] = "ImFontAtlas_AddCu defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"]["offset"] = "ImVec2(0,0)" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["funcname"] = "AddCustomRectFontGlyph" -defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui" +defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui:2378" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectFontGlyph" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["signature"] = "(ImFont*,ImWchar,int,int,float,const ImVec2)" @@ -2131,7 +2135,7 @@ defs["ImFontAtlas_AddCustomRectRegular"][1]["call_args"] = "(width,height)" defs["ImFontAtlas_AddCustomRectRegular"][1]["cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectRegular"][1]["funcname"] = "AddCustomRectRegular" -defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui" +defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui:2377" defs["ImFontAtlas_AddCustomRectRegular"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectRegular"][1]["signature"] = "(int,int)" @@ -2152,7 +2156,7 @@ defs["ImFontAtlas_AddFont"][1]["call_args"] = "(font_cfg)" defs["ImFontAtlas_AddFont"][1]["cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["defaults"] = {} defs["ImFontAtlas_AddFont"][1]["funcname"] = "AddFont" -defs["ImFontAtlas_AddFont"][1]["location"] = "imgui" +defs["ImFontAtlas_AddFont"][1]["location"] = "imgui:2329" defs["ImFontAtlas_AddFont"][1]["ov_cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFont"][1]["signature"] = "(const ImFontConfig*)" @@ -2172,9 +2176,9 @@ defs["ImFontAtlas_AddFontDefault"][1]["argsoriginal"] = "(const ImFontConfig* fo defs["ImFontAtlas_AddFontDefault"][1]["call_args"] = "(font_cfg)" defs["ImFontAtlas_AddFontDefault"][1]["cimguiname"] = "ImFontAtlas_AddFontDefault" defs["ImFontAtlas_AddFontDefault"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontDefault"][1]["defaults"]["font_cfg"] = "((void*)0)" +defs["ImFontAtlas_AddFontDefault"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontDefault"][1]["funcname"] = "AddFontDefault" -defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui" +defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui:2330" defs["ImFontAtlas_AddFontDefault"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontDefault" defs["ImFontAtlas_AddFontDefault"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontDefault"][1]["signature"] = "(const ImFontConfig*)" @@ -2203,10 +2207,10 @@ defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsoriginal"] = "(const char* filena defs["ImFontAtlas_AddFontFromFileTTF"][1]["call_args"] = "(filename,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromFileTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromFileTTF" defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["font_cfg"] = "((void*)0)" -defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["font_cfg"] = "NULL" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromFileTTF"][1]["funcname"] = "AddFontFromFileTTF" -defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui:2331" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromFileTTF" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromFileTTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -2235,10 +2239,10 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsoriginal"] = "( defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["call_args"] = "(compressed_font_data_base85,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["font_cfg"] = "((void*)0)" -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["font_cfg"] = "NULL" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["funcname"] = "AddFontFromMemoryCompressedBase85TTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui:2334" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -2270,10 +2274,10 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsoriginal"] = "(const defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["call_args"] = "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["font_cfg"] = "((void*)0)" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["font_cfg"] = "NULL" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["funcname"] = "AddFontFromMemoryCompressedTTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui:2333" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["signature"] = "(const void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -2305,10 +2309,10 @@ defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsoriginal"] = "(void* font_data, defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["call_args"] = "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["font_cfg"] = "((void*)0)" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["font_cfg"] = "NULL" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["funcname"] = "AddFontFromMemoryTTF" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui:2332" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["signature"] = "(void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -2326,7 +2330,7 @@ defs["ImFontAtlas_Build"][1]["call_args"] = "()" defs["ImFontAtlas_Build"][1]["cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["defaults"] = {} defs["ImFontAtlas_Build"][1]["funcname"] = "Build" -defs["ImFontAtlas_Build"][1]["location"] = "imgui" +defs["ImFontAtlas_Build"][1]["location"] = "imgui:2345" defs["ImFontAtlas_Build"][1]["ov_cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["ret"] = "bool" defs["ImFontAtlas_Build"][1]["signature"] = "()" @@ -2353,7 +2357,7 @@ defs["ImFontAtlas_CalcCustomRectUV"][1]["call_args"] = "(rect,out_uv_min,out_uv_ defs["ImFontAtlas_CalcCustomRectUV"][1]["cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["defaults"] = {} defs["ImFontAtlas_CalcCustomRectUV"][1]["funcname"] = "CalcCustomRectUV" -defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui" +defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui:2382" defs["ImFontAtlas_CalcCustomRectUV"][1]["ov_cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["ret"] = "void" defs["ImFontAtlas_CalcCustomRectUV"][1]["signature"] = "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const" @@ -2371,7 +2375,7 @@ defs["ImFontAtlas_Clear"][1]["call_args"] = "()" defs["ImFontAtlas_Clear"][1]["cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["defaults"] = {} defs["ImFontAtlas_Clear"][1]["funcname"] = "Clear" -defs["ImFontAtlas_Clear"][1]["location"] = "imgui" +defs["ImFontAtlas_Clear"][1]["location"] = "imgui:2338" defs["ImFontAtlas_Clear"][1]["ov_cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["ret"] = "void" defs["ImFontAtlas_Clear"][1]["signature"] = "()" @@ -2389,7 +2393,7 @@ defs["ImFontAtlas_ClearFonts"][1]["call_args"] = "()" defs["ImFontAtlas_ClearFonts"][1]["cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["defaults"] = {} defs["ImFontAtlas_ClearFonts"][1]["funcname"] = "ClearFonts" -defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui" +defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui:2337" defs["ImFontAtlas_ClearFonts"][1]["ov_cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["ret"] = "void" defs["ImFontAtlas_ClearFonts"][1]["signature"] = "()" @@ -2407,7 +2411,7 @@ defs["ImFontAtlas_ClearInputData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearInputData"][1]["cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["defaults"] = {} defs["ImFontAtlas_ClearInputData"][1]["funcname"] = "ClearInputData" -defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui" +defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui:2335" defs["ImFontAtlas_ClearInputData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["ret"] = "void" defs["ImFontAtlas_ClearInputData"][1]["signature"] = "()" @@ -2425,7 +2429,7 @@ defs["ImFontAtlas_ClearTexData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearTexData"][1]["cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["defaults"] = {} defs["ImFontAtlas_ClearTexData"][1]["funcname"] = "ClearTexData" -defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui" +defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui:2336" defs["ImFontAtlas_ClearTexData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["ret"] = "void" defs["ImFontAtlas_ClearTexData"][1]["signature"] = "()" @@ -2446,7 +2450,7 @@ defs["ImFontAtlas_GetCustomRectByIndex"][1]["call_args"] = "(index)" defs["ImFontAtlas_GetCustomRectByIndex"][1]["cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["defaults"] = {} defs["ImFontAtlas_GetCustomRectByIndex"][1]["funcname"] = "GetCustomRectByIndex" -defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui" +defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui:2379" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ov_cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ret"] = "ImFontAtlasCustomRect*" defs["ImFontAtlas_GetCustomRectByIndex"][1]["signature"] = "(int)" @@ -2464,7 +2468,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["funcname"] = "GetGlyphRangesChineseFull" -defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui" +defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui:2361" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["signature"] = "()" @@ -2482,7 +2486,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["funcname"] = "GetGlyphRangesChineseSimplifiedCommon" -defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui" +defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui:2362" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["signature"] = "()" @@ -2500,7 +2504,7 @@ defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["funcname"] = "GetGlyphRangesCyrillic" -defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui" +defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui:2363" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["signature"] = "()" @@ -2518,7 +2522,7 @@ defs["ImFontAtlas_GetGlyphRangesDefault"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesDefault"][1]["funcname"] = "GetGlyphRangesDefault" -defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui" +defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui:2358" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["signature"] = "()" @@ -2536,7 +2540,7 @@ defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["funcname"] = "GetGlyphRangesJapanese" -defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui" +defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui:2360" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["signature"] = "()" @@ -2554,7 +2558,7 @@ defs["ImFontAtlas_GetGlyphRangesKorean"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesKorean"][1]["funcname"] = "GetGlyphRangesKorean" -defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui" +defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui:2359" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["signature"] = "()" @@ -2572,7 +2576,7 @@ defs["ImFontAtlas_GetGlyphRangesThai"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesThai"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesThai"][1]["funcname"] = "GetGlyphRangesThai" -defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui" +defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui:2364" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesThai"][1]["signature"] = "()" @@ -2590,7 +2594,7 @@ defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["funcname"] = "GetGlyphRangesVietnamese" -defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui" +defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui:2365" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["signature"] = "()" @@ -2623,7 +2627,7 @@ defs["ImFontAtlas_GetMouseCursorTexData"][1]["call_args"] = "(cursor,out_offset, defs["ImFontAtlas_GetMouseCursorTexData"][1]["cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["defaults"] = {} defs["ImFontAtlas_GetMouseCursorTexData"][1]["funcname"] = "GetMouseCursorTexData" -defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui" +defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui:2383" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ov_cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ret"] = "bool" defs["ImFontAtlas_GetMouseCursorTexData"][1]["signature"] = "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])" @@ -2652,9 +2656,9 @@ defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsoriginal"] = "(unsigned char** ou defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["call_args"] = "(out_pixels,out_width,out_height,out_bytes_per_pixel)" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["cimguiname"] = "ImFontAtlas_GetTexDataAsAlpha8" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"] = {} -defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"]["out_bytes_per_pixel"] = "((void*)0)" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"]["out_bytes_per_pixel"] = "NULL" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["funcname"] = "GetTexDataAsAlpha8" -defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui:2346" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsAlpha8" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -2683,9 +2687,9 @@ defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsoriginal"] = "(unsigned char** ou defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["call_args"] = "(out_pixels,out_width,out_height,out_bytes_per_pixel)" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["cimguiname"] = "ImFontAtlas_GetTexDataAsRGBA32" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"] = {} -defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"]["out_bytes_per_pixel"] = "((void*)0)" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"]["out_bytes_per_pixel"] = "NULL" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["funcname"] = "GetTexDataAsRGBA32" -defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui:2347" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsRGBA32" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -2701,7 +2705,7 @@ defs["ImFontAtlas_ImFontAtlas"][1]["cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["constructor"] = true defs["ImFontAtlas_ImFontAtlas"][1]["defaults"] = {} defs["ImFontAtlas_ImFontAtlas"][1]["funcname"] = "ImFontAtlas" -defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui" +defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui:2327" defs["ImFontAtlas_ImFontAtlas"][1]["ov_cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["signature"] = "()" defs["ImFontAtlas_ImFontAtlas"][1]["stname"] = "ImFontAtlas" @@ -2718,7 +2722,7 @@ defs["ImFontAtlas_IsBuilt"][1]["call_args"] = "()" defs["ImFontAtlas_IsBuilt"][1]["cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["defaults"] = {} defs["ImFontAtlas_IsBuilt"][1]["funcname"] = "IsBuilt" -defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui" +defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui:2348" defs["ImFontAtlas_IsBuilt"][1]["ov_cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["ret"] = "bool" defs["ImFontAtlas_IsBuilt"][1]["signature"] = "()const" @@ -2739,7 +2743,7 @@ defs["ImFontAtlas_SetTexID"][1]["call_args"] = "(id)" defs["ImFontAtlas_SetTexID"][1]["cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["defaults"] = {} defs["ImFontAtlas_SetTexID"][1]["funcname"] = "SetTexID" -defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui" +defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui:2349" defs["ImFontAtlas_SetTexID"][1]["ov_cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["ret"] = "void" defs["ImFontAtlas_SetTexID"][1]["signature"] = "(ImTextureID)" @@ -2756,7 +2760,9 @@ defs["ImFontAtlas_destroy"][1]["call_args"] = "(self)" defs["ImFontAtlas_destroy"][1]["cimguiname"] = "ImFontAtlas_destroy" defs["ImFontAtlas_destroy"][1]["defaults"] = {} defs["ImFontAtlas_destroy"][1]["destructor"] = true +defs["ImFontAtlas_destroy"][1]["location"] = "imgui:2328" defs["ImFontAtlas_destroy"][1]["ov_cimguiname"] = "ImFontAtlas_destroy" +defs["ImFontAtlas_destroy"][1]["realdestructor"] = true defs["ImFontAtlas_destroy"][1]["ret"] = "void" defs["ImFontAtlas_destroy"][1]["signature"] = "(ImFontAtlas*)" defs["ImFontAtlas_destroy"][1]["stname"] = "ImFontAtlas" @@ -2771,7 +2777,7 @@ defs["ImFontConfig_ImFontConfig"][1]["cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["constructor"] = true defs["ImFontConfig_ImFontConfig"][1]["defaults"] = {} defs["ImFontConfig_ImFontConfig"][1]["funcname"] = "ImFontConfig" -defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui" +defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui:2256" defs["ImFontConfig_ImFontConfig"][1]["ov_cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["signature"] = "()" defs["ImFontConfig_ImFontConfig"][1]["stname"] = "ImFontConfig" @@ -2807,7 +2813,7 @@ defs["ImFontGlyphRangesBuilder_AddChar"][1]["call_args"] = "(c)" defs["ImFontGlyphRangesBuilder_AddChar"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddChar"][1]["funcname"] = "AddChar" -defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui" +defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui:2280" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddChar"][1]["signature"] = "(ImWchar)" @@ -2828,7 +2834,7 @@ defs["ImFontGlyphRangesBuilder_AddRanges"][1]["call_args"] = "(ranges)" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddRanges"][1]["funcname"] = "AddRanges" -defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui" +defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui:2282" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["signature"] = "(const ImWchar*)" @@ -2851,9 +2857,9 @@ defs["ImFontGlyphRangesBuilder_AddText"][1]["argsoriginal"] = "(const char* text defs["ImFontGlyphRangesBuilder_AddText"][1]["call_args"] = "(text,text_end)" defs["ImFontGlyphRangesBuilder_AddText"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddText" defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"] = {} -defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"]["text_end"] = "((void*)0)" +defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"]["text_end"] = "NULL" defs["ImFontGlyphRangesBuilder_AddText"][1]["funcname"] = "AddText" -defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui" +defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui:2281" defs["ImFontGlyphRangesBuilder_AddText"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddText" defs["ImFontGlyphRangesBuilder_AddText"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddText"][1]["signature"] = "(const char*,const char*)" @@ -2874,7 +2880,7 @@ defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["call_args"] = "(out_ranges)" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["funcname"] = "BuildRanges" -defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui" +defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui:2283" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["signature"] = "(ImVector_ImWchar*)" @@ -2892,7 +2898,7 @@ defs["ImFontGlyphRangesBuilder_Clear"][1]["call_args"] = "()" defs["ImFontGlyphRangesBuilder_Clear"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_Clear"][1]["funcname"] = "Clear" -defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui" +defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui:2277" defs["ImFontGlyphRangesBuilder_Clear"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_Clear"][1]["signature"] = "()" @@ -2913,7 +2919,7 @@ defs["ImFontGlyphRangesBuilder_GetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_GetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_GetBit"][1]["funcname"] = "GetBit" -defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui" +defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui:2278" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ret"] = "bool" defs["ImFontGlyphRangesBuilder_GetBit"][1]["signature"] = "(size_t)const" @@ -2929,7 +2935,7 @@ defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["cimguiname"] = "Im defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["constructor"] = true defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["funcname"] = "ImFontGlyphRangesBuilder" -defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui" +defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui:2276" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["signature"] = "()" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -2949,7 +2955,7 @@ defs["ImFontGlyphRangesBuilder_SetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_SetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_SetBit"][1]["funcname"] = "SetBit" -defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui" +defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui:2279" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_SetBit"][1]["signature"] = "(size_t)" @@ -2973,14 +2979,14 @@ defs["ImFontGlyphRangesBuilder_destroy"][1]["stname"] = "ImFontGlyphRangesBuilde defs["ImFontGlyphRangesBuilder_destroy"]["(ImFontGlyphRangesBuilder*)"] = defs["ImFontGlyphRangesBuilder_destroy"][1] defs["ImFont_AddGlyph"] = {} defs["ImFont_AddGlyph"][1] = {} -defs["ImFont_AddGlyph"][1]["args"] = "(ImFont* self,ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x)" +defs["ImFont_AddGlyph"][1]["args"] = "(ImFont* self,const ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x)" defs["ImFont_AddGlyph"][1]["argsT"] = {} defs["ImFont_AddGlyph"][1]["argsT"][1] = {} defs["ImFont_AddGlyph"][1]["argsT"][1]["name"] = "self" defs["ImFont_AddGlyph"][1]["argsT"][1]["type"] = "ImFont*" defs["ImFont_AddGlyph"][1]["argsT"][2] = {} defs["ImFont_AddGlyph"][1]["argsT"][2]["name"] = "src_cfg" -defs["ImFont_AddGlyph"][1]["argsT"][2]["type"] = "ImFontConfig*" +defs["ImFont_AddGlyph"][1]["argsT"][2]["type"] = "const ImFontConfig*" defs["ImFont_AddGlyph"][1]["argsT"][3] = {} defs["ImFont_AddGlyph"][1]["argsT"][3]["name"] = "c" defs["ImFont_AddGlyph"][1]["argsT"][3]["type"] = "ImWchar" @@ -3011,17 +3017,17 @@ defs["ImFont_AddGlyph"][1]["argsT"][11]["type"] = "float" defs["ImFont_AddGlyph"][1]["argsT"][12] = {} defs["ImFont_AddGlyph"][1]["argsT"][12]["name"] = "advance_x" defs["ImFont_AddGlyph"][1]["argsT"][12]["type"] = "float" -defs["ImFont_AddGlyph"][1]["argsoriginal"] = "(ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x)" +defs["ImFont_AddGlyph"][1]["argsoriginal"] = "(const ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x)" defs["ImFont_AddGlyph"][1]["call_args"] = "(src_cfg,c,x0,y0,x1,y1,u0,v0,u1,v1,advance_x)" defs["ImFont_AddGlyph"][1]["cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["defaults"] = {} defs["ImFont_AddGlyph"][1]["funcname"] = "AddGlyph" -defs["ImFont_AddGlyph"][1]["location"] = "imgui" +defs["ImFont_AddGlyph"][1]["location"] = "imgui:2464" defs["ImFont_AddGlyph"][1]["ov_cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["ret"] = "void" -defs["ImFont_AddGlyph"][1]["signature"] = "(ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)" +defs["ImFont_AddGlyph"][1]["signature"] = "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)" defs["ImFont_AddGlyph"][1]["stname"] = "ImFont" -defs["ImFont_AddGlyph"]["(ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)"] = defs["ImFont_AddGlyph"][1] +defs["ImFont_AddGlyph"]["(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)"] = defs["ImFont_AddGlyph"][1] defs["ImFont_AddRemapChar"] = {} defs["ImFont_AddRemapChar"][1] = {} defs["ImFont_AddRemapChar"][1]["args"] = "(ImFont* self,ImWchar dst,ImWchar src,bool overwrite_dst)" @@ -3044,7 +3050,7 @@ defs["ImFont_AddRemapChar"][1]["cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["defaults"] = {} defs["ImFont_AddRemapChar"][1]["defaults"]["overwrite_dst"] = "true" defs["ImFont_AddRemapChar"][1]["funcname"] = "AddRemapChar" -defs["ImFont_AddRemapChar"][1]["location"] = "imgui" +defs["ImFont_AddRemapChar"][1]["location"] = "imgui:2465" defs["ImFont_AddRemapChar"][1]["ov_cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["ret"] = "void" defs["ImFont_AddRemapChar"][1]["signature"] = "(ImWchar,ImWchar,bool)" @@ -3062,7 +3068,7 @@ defs["ImFont_BuildLookupTable"][1]["call_args"] = "()" defs["ImFont_BuildLookupTable"][1]["cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["defaults"] = {} defs["ImFont_BuildLookupTable"][1]["funcname"] = "BuildLookupTable" -defs["ImFont_BuildLookupTable"][1]["location"] = "imgui" +defs["ImFont_BuildLookupTable"][1]["location"] = "imgui:2461" defs["ImFont_BuildLookupTable"][1]["ov_cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["ret"] = "void" defs["ImFont_BuildLookupTable"][1]["signature"] = "()" @@ -3100,10 +3106,10 @@ defs["ImFont_CalcTextSizeA"][1]["argsoriginal"] = "(float size,float max_width,f defs["ImFont_CalcTextSizeA"][1]["call_args"] = "(size,max_width,wrap_width,text_begin,text_end,remaining)" defs["ImFont_CalcTextSizeA"][1]["cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["defaults"] = {} -defs["ImFont_CalcTextSizeA"][1]["defaults"]["remaining"] = "((void*)0)" -defs["ImFont_CalcTextSizeA"][1]["defaults"]["text_end"] = "((void*)0)" +defs["ImFont_CalcTextSizeA"][1]["defaults"]["remaining"] = "NULL" +defs["ImFont_CalcTextSizeA"][1]["defaults"]["text_end"] = "NULL" defs["ImFont_CalcTextSizeA"][1]["funcname"] = "CalcTextSizeA" -defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui" +defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui:2455" defs["ImFont_CalcTextSizeA"][1]["nonUDT"] = 1 defs["ImFont_CalcTextSizeA"][1]["ov_cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["ret"] = "void" @@ -3134,7 +3140,7 @@ defs["ImFont_CalcWordWrapPositionA"][1]["call_args"] = "(scale,text,text_end,wra defs["ImFont_CalcWordWrapPositionA"][1]["cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["defaults"] = {} defs["ImFont_CalcWordWrapPositionA"][1]["funcname"] = "CalcWordWrapPositionA" -defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui" +defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui:2456" defs["ImFont_CalcWordWrapPositionA"][1]["ov_cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["ret"] = "const char*" defs["ImFont_CalcWordWrapPositionA"][1]["signature"] = "(float,const char*,const char*,float)const" @@ -3152,7 +3158,7 @@ defs["ImFont_ClearOutputData"][1]["call_args"] = "()" defs["ImFont_ClearOutputData"][1]["cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["defaults"] = {} defs["ImFont_ClearOutputData"][1]["funcname"] = "ClearOutputData" -defs["ImFont_ClearOutputData"][1]["location"] = "imgui" +defs["ImFont_ClearOutputData"][1]["location"] = "imgui:2462" defs["ImFont_ClearOutputData"][1]["ov_cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["ret"] = "void" defs["ImFont_ClearOutputData"][1]["signature"] = "()" @@ -3173,7 +3179,7 @@ defs["ImFont_FindGlyph"][1]["call_args"] = "(c)" defs["ImFont_FindGlyph"][1]["cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["defaults"] = {} defs["ImFont_FindGlyph"][1]["funcname"] = "FindGlyph" -defs["ImFont_FindGlyph"][1]["location"] = "imgui" +defs["ImFont_FindGlyph"][1]["location"] = "imgui:2447" defs["ImFont_FindGlyph"][1]["ov_cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyph"][1]["signature"] = "(ImWchar)const" @@ -3194,7 +3200,7 @@ defs["ImFont_FindGlyphNoFallback"][1]["call_args"] = "(c)" defs["ImFont_FindGlyphNoFallback"][1]["cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["defaults"] = {} defs["ImFont_FindGlyphNoFallback"][1]["funcname"] = "FindGlyphNoFallback" -defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui" +defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui:2448" defs["ImFont_FindGlyphNoFallback"][1]["ov_cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyphNoFallback"][1]["signature"] = "(ImWchar)const" @@ -3215,7 +3221,7 @@ defs["ImFont_GetCharAdvance"][1]["call_args"] = "(c)" defs["ImFont_GetCharAdvance"][1]["cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["defaults"] = {} defs["ImFont_GetCharAdvance"][1]["funcname"] = "GetCharAdvance" -defs["ImFont_GetCharAdvance"][1]["location"] = "imgui" +defs["ImFont_GetCharAdvance"][1]["location"] = "imgui:2449" defs["ImFont_GetCharAdvance"][1]["ov_cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["ret"] = "float" defs["ImFont_GetCharAdvance"][1]["signature"] = "(ImWchar)const" @@ -3233,7 +3239,7 @@ defs["ImFont_GetDebugName"][1]["call_args"] = "()" defs["ImFont_GetDebugName"][1]["cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["defaults"] = {} defs["ImFont_GetDebugName"][1]["funcname"] = "GetDebugName" -defs["ImFont_GetDebugName"][1]["location"] = "imgui" +defs["ImFont_GetDebugName"][1]["location"] = "imgui:2451" defs["ImFont_GetDebugName"][1]["ov_cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["ret"] = "const char*" defs["ImFont_GetDebugName"][1]["signature"] = "()const" @@ -3254,7 +3260,7 @@ defs["ImFont_GrowIndex"][1]["call_args"] = "(new_size)" defs["ImFont_GrowIndex"][1]["cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["defaults"] = {} defs["ImFont_GrowIndex"][1]["funcname"] = "GrowIndex" -defs["ImFont_GrowIndex"][1]["location"] = "imgui" +defs["ImFont_GrowIndex"][1]["location"] = "imgui:2463" defs["ImFont_GrowIndex"][1]["ov_cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["ret"] = "void" defs["ImFont_GrowIndex"][1]["signature"] = "(int)" @@ -3270,7 +3276,7 @@ defs["ImFont_ImFont"][1]["cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["constructor"] = true defs["ImFont_ImFont"][1]["defaults"] = {} defs["ImFont_ImFont"][1]["funcname"] = "ImFont" -defs["ImFont_ImFont"][1]["location"] = "imgui" +defs["ImFont_ImFont"][1]["location"] = "imgui:2445" defs["ImFont_ImFont"][1]["ov_cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["signature"] = "()" defs["ImFont_ImFont"][1]["stname"] = "ImFont" @@ -3293,7 +3299,7 @@ defs["ImFont_IsGlyphRangeUnused"][1]["call_args"] = "(c_begin,c_last)" defs["ImFont_IsGlyphRangeUnused"][1]["cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["defaults"] = {} defs["ImFont_IsGlyphRangeUnused"][1]["funcname"] = "IsGlyphRangeUnused" -defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui" +defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui:2468" defs["ImFont_IsGlyphRangeUnused"][1]["ov_cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["ret"] = "bool" defs["ImFont_IsGlyphRangeUnused"][1]["signature"] = "(unsigned int,unsigned int)" @@ -3311,7 +3317,7 @@ defs["ImFont_IsLoaded"][1]["call_args"] = "()" defs["ImFont_IsLoaded"][1]["cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["defaults"] = {} defs["ImFont_IsLoaded"][1]["funcname"] = "IsLoaded" -defs["ImFont_IsLoaded"][1]["location"] = "imgui" +defs["ImFont_IsLoaded"][1]["location"] = "imgui:2450" defs["ImFont_IsLoaded"][1]["ov_cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["ret"] = "bool" defs["ImFont_IsLoaded"][1]["signature"] = "()const" @@ -3344,7 +3350,7 @@ defs["ImFont_RenderChar"][1]["call_args"] = "(draw_list,size,pos,col,c)" defs["ImFont_RenderChar"][1]["cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["defaults"] = {} defs["ImFont_RenderChar"][1]["funcname"] = "RenderChar" -defs["ImFont_RenderChar"][1]["location"] = "imgui" +defs["ImFont_RenderChar"][1]["location"] = "imgui:2457" defs["ImFont_RenderChar"][1]["ov_cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["ret"] = "void" defs["ImFont_RenderChar"][1]["signature"] = "(ImDrawList*,float,ImVec2,ImU32,ImWchar)const" @@ -3391,7 +3397,7 @@ defs["ImFont_RenderText"][1]["defaults"] = {} defs["ImFont_RenderText"][1]["defaults"]["cpu_fine_clip"] = "false" defs["ImFont_RenderText"][1]["defaults"]["wrap_width"] = "0.0f" defs["ImFont_RenderText"][1]["funcname"] = "RenderText" -defs["ImFont_RenderText"][1]["location"] = "imgui" +defs["ImFont_RenderText"][1]["location"] = "imgui:2458" defs["ImFont_RenderText"][1]["ov_cimguiname"] = "ImFont_RenderText" defs["ImFont_RenderText"][1]["ret"] = "void" defs["ImFont_RenderText"][1]["signature"] = "(ImDrawList*,float,ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const" @@ -3412,7 +3418,7 @@ defs["ImFont_SetFallbackChar"][1]["call_args"] = "(c)" defs["ImFont_SetFallbackChar"][1]["cimguiname"] = "ImFont_SetFallbackChar" defs["ImFont_SetFallbackChar"][1]["defaults"] = {} defs["ImFont_SetFallbackChar"][1]["funcname"] = "SetFallbackChar" -defs["ImFont_SetFallbackChar"][1]["location"] = "imgui" +defs["ImFont_SetFallbackChar"][1]["location"] = "imgui:2467" defs["ImFont_SetFallbackChar"][1]["ov_cimguiname"] = "ImFont_SetFallbackChar" defs["ImFont_SetFallbackChar"][1]["ret"] = "void" defs["ImFont_SetFallbackChar"][1]["signature"] = "(ImWchar)" @@ -3436,7 +3442,7 @@ defs["ImFont_SetGlyphVisible"][1]["call_args"] = "(c,visible)" defs["ImFont_SetGlyphVisible"][1]["cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["defaults"] = {} defs["ImFont_SetGlyphVisible"][1]["funcname"] = "SetGlyphVisible" -defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui" +defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui:2466" defs["ImFont_SetGlyphVisible"][1]["ov_cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["ret"] = "void" defs["ImFont_SetGlyphVisible"][1]["signature"] = "(ImWchar,bool)" @@ -3453,7 +3459,9 @@ defs["ImFont_destroy"][1]["call_args"] = "(self)" defs["ImFont_destroy"][1]["cimguiname"] = "ImFont_destroy" defs["ImFont_destroy"][1]["defaults"] = {} defs["ImFont_destroy"][1]["destructor"] = true +defs["ImFont_destroy"][1]["location"] = "imgui:2446" defs["ImFont_destroy"][1]["ov_cimguiname"] = "ImFont_destroy" +defs["ImFont_destroy"][1]["realdestructor"] = true defs["ImFont_destroy"][1]["ret"] = "void" defs["ImFont_destroy"][1]["signature"] = "(ImFont*)" defs["ImFont_destroy"][1]["stname"] = "ImFont" @@ -3473,7 +3481,7 @@ defs["ImGuiIO_AddInputCharacter"][1]["call_args"] = "(c)" defs["ImGuiIO_AddInputCharacter"][1]["cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacter"][1]["funcname"] = "AddInputCharacter" -defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui" +defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui:1589" defs["ImGuiIO_AddInputCharacter"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacter"][1]["signature"] = "(unsigned int)" @@ -3494,7 +3502,7 @@ defs["ImGuiIO_AddInputCharacterUTF16"][1]["call_args"] = "(c)" defs["ImGuiIO_AddInputCharacterUTF16"][1]["cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacterUTF16"][1]["funcname"] = "AddInputCharacterUTF16" -defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui" +defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui:1590" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacterUTF16"][1]["signature"] = "(ImWchar16)" @@ -3515,7 +3523,7 @@ defs["ImGuiIO_AddInputCharactersUTF8"][1]["call_args"] = "(str)" defs["ImGuiIO_AddInputCharactersUTF8"][1]["cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharactersUTF8"][1]["funcname"] = "AddInputCharactersUTF8" -defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui" +defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui:1591" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharactersUTF8"][1]["signature"] = "(const char*)" @@ -3533,7 +3541,7 @@ defs["ImGuiIO_ClearInputCharacters"][1]["call_args"] = "()" defs["ImGuiIO_ClearInputCharacters"][1]["cimguiname"] = "ImGuiIO_ClearInputCharacters" defs["ImGuiIO_ClearInputCharacters"][1]["defaults"] = {} defs["ImGuiIO_ClearInputCharacters"][1]["funcname"] = "ClearInputCharacters" -defs["ImGuiIO_ClearInputCharacters"][1]["location"] = "imgui" +defs["ImGuiIO_ClearInputCharacters"][1]["location"] = "imgui:1592" defs["ImGuiIO_ClearInputCharacters"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputCharacters" defs["ImGuiIO_ClearInputCharacters"][1]["ret"] = "void" defs["ImGuiIO_ClearInputCharacters"][1]["signature"] = "()" @@ -3549,7 +3557,7 @@ defs["ImGuiIO_ImGuiIO"][1]["cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["constructor"] = true defs["ImGuiIO_ImGuiIO"][1]["defaults"] = {} defs["ImGuiIO_ImGuiIO"][1]["funcname"] = "ImGuiIO" -defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui" +defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui:1640" defs["ImGuiIO_ImGuiIO"][1]["ov_cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["signature"] = "()" defs["ImGuiIO_ImGuiIO"][1]["stname"] = "ImGuiIO" @@ -3570,6 +3578,24 @@ defs["ImGuiIO_destroy"][1]["ret"] = "void" defs["ImGuiIO_destroy"][1]["signature"] = "(ImGuiIO*)" defs["ImGuiIO_destroy"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_destroy"]["(ImGuiIO*)"] = defs["ImGuiIO_destroy"][1] +defs["ImGuiInputTextCallbackData_ClearSelection"] = {} +defs["ImGuiInputTextCallbackData_ClearSelection"][1] = {} +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["args"] = "(ImGuiInputTextCallbackData* self)" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["argsT"] = {} +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["argsT"][1] = {} +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["argsT"][1]["name"] = "self" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["argsT"][1]["type"] = "ImGuiInputTextCallbackData*" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["argsoriginal"] = "()" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["call_args"] = "()" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["defaults"] = {} +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["funcname"] = "ClearSelection" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["location"] = "imgui:1681" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ret"] = "void" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["signature"] = "()" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["stname"] = "ImGuiInputTextCallbackData" +defs["ImGuiInputTextCallbackData_ClearSelection"]["()"] = defs["ImGuiInputTextCallbackData_ClearSelection"][1] defs["ImGuiInputTextCallbackData_DeleteChars"] = {} defs["ImGuiInputTextCallbackData_DeleteChars"][1] = {} defs["ImGuiInputTextCallbackData_DeleteChars"][1]["args"] = "(ImGuiInputTextCallbackData* self,int pos,int bytes_count)" @@ -3588,7 +3614,7 @@ defs["ImGuiInputTextCallbackData_DeleteChars"][1]["call_args"] = "(pos,bytes_cou defs["ImGuiInputTextCallbackData_DeleteChars"][1]["cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_DeleteChars"][1]["funcname"] = "DeleteChars" -defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui" +defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui:1678" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["signature"] = "(int,int)" @@ -3606,7 +3632,7 @@ defs["ImGuiInputTextCallbackData_HasSelection"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_HasSelection"][1]["cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_HasSelection"][1]["funcname"] = "HasSelection" -defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui" +defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui:1682" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextCallbackData_HasSelection"][1]["signature"] = "()const" @@ -3622,7 +3648,7 @@ defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["cimguiname"] = defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["constructor"] = true defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["funcname"] = "ImGuiInputTextCallbackData" -defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui" +defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui:1677" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["signature"] = "()" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["stname"] = "ImGuiInputTextCallbackData" @@ -3647,14 +3673,32 @@ defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsoriginal"] = "(int pos,co defs["ImGuiInputTextCallbackData_InsertChars"][1]["call_args"] = "(pos,text,text_end)" defs["ImGuiInputTextCallbackData_InsertChars"][1]["cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"] = {} -defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"]["text_end"] = "((void*)0)" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"]["text_end"] = "NULL" defs["ImGuiInputTextCallbackData_InsertChars"][1]["funcname"] = "InsertChars" -defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:1679" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_InsertChars"][1]["signature"] = "(int,const char*,const char*)" defs["ImGuiInputTextCallbackData_InsertChars"][1]["stname"] = "ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_InsertChars"]["(int,const char*,const char*)"] = defs["ImGuiInputTextCallbackData_InsertChars"][1] +defs["ImGuiInputTextCallbackData_SelectAll"] = {} +defs["ImGuiInputTextCallbackData_SelectAll"][1] = {} +defs["ImGuiInputTextCallbackData_SelectAll"][1]["args"] = "(ImGuiInputTextCallbackData* self)" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["argsT"] = {} +defs["ImGuiInputTextCallbackData_SelectAll"][1]["argsT"][1] = {} +defs["ImGuiInputTextCallbackData_SelectAll"][1]["argsT"][1]["name"] = "self" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["argsT"][1]["type"] = "ImGuiInputTextCallbackData*" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["argsoriginal"] = "()" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["call_args"] = "()" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["defaults"] = {} +defs["ImGuiInputTextCallbackData_SelectAll"][1]["funcname"] = "SelectAll" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["location"] = "imgui:1680" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["ret"] = "void" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["signature"] = "()" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["stname"] = "ImGuiInputTextCallbackData" +defs["ImGuiInputTextCallbackData_SelectAll"]["()"] = defs["ImGuiInputTextCallbackData_SelectAll"][1] defs["ImGuiInputTextCallbackData_destroy"] = {} defs["ImGuiInputTextCallbackData_destroy"][1] = {} defs["ImGuiInputTextCallbackData_destroy"][1]["args"] = "(ImGuiInputTextCallbackData* self)" @@ -3690,7 +3734,7 @@ defs["ImGuiListClipper_Begin"][1]["cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["defaults"] = {} defs["ImGuiListClipper_Begin"][1]["defaults"]["items_height"] = "-1.0f" defs["ImGuiListClipper_Begin"][1]["funcname"] = "Begin" -defs["ImGuiListClipper_Begin"][1]["location"] = "imgui" +defs["ImGuiListClipper_Begin"][1]["location"] = "imgui:1921" defs["ImGuiListClipper_Begin"][1]["ov_cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["ret"] = "void" defs["ImGuiListClipper_Begin"][1]["signature"] = "(int,float)" @@ -3708,7 +3752,7 @@ defs["ImGuiListClipper_End"][1]["call_args"] = "()" defs["ImGuiListClipper_End"][1]["cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["defaults"] = {} defs["ImGuiListClipper_End"][1]["funcname"] = "End" -defs["ImGuiListClipper_End"][1]["location"] = "imgui" +defs["ImGuiListClipper_End"][1]["location"] = "imgui:1922" defs["ImGuiListClipper_End"][1]["ov_cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["ret"] = "void" defs["ImGuiListClipper_End"][1]["signature"] = "()" @@ -3716,27 +3760,19 @@ defs["ImGuiListClipper_End"][1]["stname"] = "ImGuiListClipper" defs["ImGuiListClipper_End"]["()"] = defs["ImGuiListClipper_End"][1] defs["ImGuiListClipper_ImGuiListClipper"] = {} defs["ImGuiListClipper_ImGuiListClipper"][1] = {} -defs["ImGuiListClipper_ImGuiListClipper"][1]["args"] = "(int items_count,float items_height)" +defs["ImGuiListClipper_ImGuiListClipper"][1]["args"] = "()" defs["ImGuiListClipper_ImGuiListClipper"][1]["argsT"] = {} -defs["ImGuiListClipper_ImGuiListClipper"][1]["argsT"][1] = {} -defs["ImGuiListClipper_ImGuiListClipper"][1]["argsT"][1]["name"] = "items_count" -defs["ImGuiListClipper_ImGuiListClipper"][1]["argsT"][1]["type"] = "int" -defs["ImGuiListClipper_ImGuiListClipper"][1]["argsT"][2] = {} -defs["ImGuiListClipper_ImGuiListClipper"][1]["argsT"][2]["name"] = "items_height" -defs["ImGuiListClipper_ImGuiListClipper"][1]["argsT"][2]["type"] = "float" -defs["ImGuiListClipper_ImGuiListClipper"][1]["argsoriginal"] = "(int items_count=-1,float items_height=-1.0f)" -defs["ImGuiListClipper_ImGuiListClipper"][1]["call_args"] = "(items_count,items_height)" +defs["ImGuiListClipper_ImGuiListClipper"][1]["argsoriginal"] = "()" +defs["ImGuiListClipper_ImGuiListClipper"][1]["call_args"] = "()" defs["ImGuiListClipper_ImGuiListClipper"][1]["cimguiname"] = "ImGuiListClipper_ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"][1]["constructor"] = true defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"] = {} -defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"]["items_count"] = "-1" -defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"]["items_height"] = "-1.0f" defs["ImGuiListClipper_ImGuiListClipper"][1]["funcname"] = "ImGuiListClipper" -defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui" +defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:1916" defs["ImGuiListClipper_ImGuiListClipper"][1]["ov_cimguiname"] = "ImGuiListClipper_ImGuiListClipper" -defs["ImGuiListClipper_ImGuiListClipper"][1]["signature"] = "(int,float)" +defs["ImGuiListClipper_ImGuiListClipper"][1]["signature"] = "()" defs["ImGuiListClipper_ImGuiListClipper"][1]["stname"] = "ImGuiListClipper" -defs["ImGuiListClipper_ImGuiListClipper"]["(int,float)"] = defs["ImGuiListClipper_ImGuiListClipper"][1] +defs["ImGuiListClipper_ImGuiListClipper"]["()"] = defs["ImGuiListClipper_ImGuiListClipper"][1] defs["ImGuiListClipper_Step"] = {} defs["ImGuiListClipper_Step"][1] = {} defs["ImGuiListClipper_Step"][1]["args"] = "(ImGuiListClipper* self)" @@ -3749,7 +3785,7 @@ defs["ImGuiListClipper_Step"][1]["call_args"] = "()" defs["ImGuiListClipper_Step"][1]["cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["defaults"] = {} defs["ImGuiListClipper_Step"][1]["funcname"] = "Step" -defs["ImGuiListClipper_Step"][1]["location"] = "imgui" +defs["ImGuiListClipper_Step"][1]["location"] = "imgui:1923" defs["ImGuiListClipper_Step"][1]["ov_cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["ret"] = "bool" defs["ImGuiListClipper_Step"][1]["signature"] = "()" @@ -3766,7 +3802,9 @@ defs["ImGuiListClipper_destroy"][1]["call_args"] = "(self)" defs["ImGuiListClipper_destroy"][1]["cimguiname"] = "ImGuiListClipper_destroy" defs["ImGuiListClipper_destroy"][1]["defaults"] = {} defs["ImGuiListClipper_destroy"][1]["destructor"] = true +defs["ImGuiListClipper_destroy"][1]["location"] = "imgui:1917" defs["ImGuiListClipper_destroy"][1]["ov_cimguiname"] = "ImGuiListClipper_destroy" +defs["ImGuiListClipper_destroy"][1]["realdestructor"] = true defs["ImGuiListClipper_destroy"][1]["ret"] = "void" defs["ImGuiListClipper_destroy"][1]["signature"] = "(ImGuiListClipper*)" defs["ImGuiListClipper_destroy"][1]["stname"] = "ImGuiListClipper" @@ -3781,7 +3819,7 @@ defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["cimguiname"] = "ImGuiOnceUpo defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["constructor"] = true defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["defaults"] = {} defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["funcname"] = "ImGuiOnceUponAFrame" -defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui" +defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui:1785" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["ov_cimguiname"] = "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["signature"] = "()" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["stname"] = "ImGuiOnceUponAFrame" @@ -3814,7 +3852,7 @@ defs["ImGuiPayload_Clear"][1]["call_args"] = "()" defs["ImGuiPayload_Clear"][1]["cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["defaults"] = {} defs["ImGuiPayload_Clear"][1]["funcname"] = "Clear" -defs["ImGuiPayload_Clear"][1]["location"] = "imgui" +defs["ImGuiPayload_Clear"][1]["location"] = "imgui:1711" defs["ImGuiPayload_Clear"][1]["ov_cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["ret"] = "void" defs["ImGuiPayload_Clear"][1]["signature"] = "()" @@ -3830,7 +3868,7 @@ defs["ImGuiPayload_ImGuiPayload"][1]["cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["constructor"] = true defs["ImGuiPayload_ImGuiPayload"][1]["defaults"] = {} defs["ImGuiPayload_ImGuiPayload"][1]["funcname"] = "ImGuiPayload" -defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui" +defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui:1710" defs["ImGuiPayload_ImGuiPayload"][1]["ov_cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["signature"] = "()" defs["ImGuiPayload_ImGuiPayload"][1]["stname"] = "ImGuiPayload" @@ -3850,7 +3888,7 @@ defs["ImGuiPayload_IsDataType"][1]["call_args"] = "(type)" defs["ImGuiPayload_IsDataType"][1]["cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["defaults"] = {} defs["ImGuiPayload_IsDataType"][1]["funcname"] = "IsDataType" -defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui" +defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui:1712" defs["ImGuiPayload_IsDataType"][1]["ov_cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["ret"] = "bool" defs["ImGuiPayload_IsDataType"][1]["signature"] = "(const char*)const" @@ -3868,7 +3906,7 @@ defs["ImGuiPayload_IsDelivery"][1]["call_args"] = "()" defs["ImGuiPayload_IsDelivery"][1]["cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["defaults"] = {} defs["ImGuiPayload_IsDelivery"][1]["funcname"] = "IsDelivery" -defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui" +defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui:1714" defs["ImGuiPayload_IsDelivery"][1]["ov_cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["ret"] = "bool" defs["ImGuiPayload_IsDelivery"][1]["signature"] = "()const" @@ -3886,7 +3924,7 @@ defs["ImGuiPayload_IsPreview"][1]["call_args"] = "()" defs["ImGuiPayload_IsPreview"][1]["cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["defaults"] = {} defs["ImGuiPayload_IsPreview"][1]["funcname"] = "IsPreview" -defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui" +defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui:1713" defs["ImGuiPayload_IsPreview"][1]["ov_cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["ret"] = "bool" defs["ImGuiPayload_IsPreview"][1]["signature"] = "()const" @@ -3924,7 +3962,7 @@ defs["ImGuiStoragePair_ImGuiStoragePair"][1]["cimguiname"] = "ImGuiStoragePair_I defs["ImGuiStoragePair_ImGuiStoragePair"][1]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][1]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui:1852" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePairInt" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["signature"] = "(ImGuiID,int)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["stname"] = "ImGuiStoragePair" @@ -3943,7 +3981,7 @@ defs["ImGuiStoragePair_ImGuiStoragePair"][2]["cimguiname"] = "ImGuiStoragePair_I defs["ImGuiStoragePair_ImGuiStoragePair"][2]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][2]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][2]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui:1853" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePairFloat" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["signature"] = "(ImGuiID,float)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["stname"] = "ImGuiStoragePair" @@ -3962,7 +4000,7 @@ defs["ImGuiStoragePair_ImGuiStoragePair"][3]["cimguiname"] = "ImGuiStoragePair_I defs["ImGuiStoragePair_ImGuiStoragePair"][3]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][3]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][3]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui:1854" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePairPtr" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["signature"] = "(ImGuiID,void*)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["stname"] = "ImGuiStoragePair" @@ -3997,7 +4035,7 @@ defs["ImGuiStorage_BuildSortByKey"][1]["call_args"] = "()" defs["ImGuiStorage_BuildSortByKey"][1]["cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["defaults"] = {} defs["ImGuiStorage_BuildSortByKey"][1]["funcname"] = "BuildSortByKey" -defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui" +defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui:1885" defs["ImGuiStorage_BuildSortByKey"][1]["ov_cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["ret"] = "void" defs["ImGuiStorage_BuildSortByKey"][1]["signature"] = "()" @@ -4015,7 +4053,7 @@ defs["ImGuiStorage_Clear"][1]["call_args"] = "()" defs["ImGuiStorage_Clear"][1]["cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["defaults"] = {} defs["ImGuiStorage_Clear"][1]["funcname"] = "Clear" -defs["ImGuiStorage_Clear"][1]["location"] = "imgui" +defs["ImGuiStorage_Clear"][1]["location"] = "imgui:1862" defs["ImGuiStorage_Clear"][1]["ov_cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["ret"] = "void" defs["ImGuiStorage_Clear"][1]["signature"] = "()" @@ -4040,7 +4078,7 @@ defs["ImGuiStorage_GetBool"][1]["cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["defaults"] = {} defs["ImGuiStorage_GetBool"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBool"][1]["funcname"] = "GetBool" -defs["ImGuiStorage_GetBool"][1]["location"] = "imgui" +defs["ImGuiStorage_GetBool"][1]["location"] = "imgui:1865" defs["ImGuiStorage_GetBool"][1]["ov_cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["ret"] = "bool" defs["ImGuiStorage_GetBool"][1]["signature"] = "(ImGuiID,bool)const" @@ -4065,7 +4103,7 @@ defs["ImGuiStorage_GetBoolRef"][1]["cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["defaults"] = {} defs["ImGuiStorage_GetBoolRef"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBoolRef"][1]["funcname"] = "GetBoolRef" -defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui" +defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui:1877" defs["ImGuiStorage_GetBoolRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["ret"] = "bool*" defs["ImGuiStorage_GetBoolRef"][1]["signature"] = "(ImGuiID,bool)" @@ -4090,7 +4128,7 @@ defs["ImGuiStorage_GetFloat"][1]["cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["defaults"] = {} defs["ImGuiStorage_GetFloat"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloat"][1]["funcname"] = "GetFloat" -defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui" +defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui:1867" defs["ImGuiStorage_GetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["ret"] = "float" defs["ImGuiStorage_GetFloat"][1]["signature"] = "(ImGuiID,float)const" @@ -4115,7 +4153,7 @@ defs["ImGuiStorage_GetFloatRef"][1]["cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["defaults"] = {} defs["ImGuiStorage_GetFloatRef"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloatRef"][1]["funcname"] = "GetFloatRef" -defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui" +defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui:1878" defs["ImGuiStorage_GetFloatRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["ret"] = "float*" defs["ImGuiStorage_GetFloatRef"][1]["signature"] = "(ImGuiID,float)" @@ -4140,7 +4178,7 @@ defs["ImGuiStorage_GetInt"][1]["cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["defaults"] = {} defs["ImGuiStorage_GetInt"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetInt"][1]["funcname"] = "GetInt" -defs["ImGuiStorage_GetInt"][1]["location"] = "imgui" +defs["ImGuiStorage_GetInt"][1]["location"] = "imgui:1863" defs["ImGuiStorage_GetInt"][1]["ov_cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["ret"] = "int" defs["ImGuiStorage_GetInt"][1]["signature"] = "(ImGuiID,int)const" @@ -4165,7 +4203,7 @@ defs["ImGuiStorage_GetIntRef"][1]["cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["defaults"] = {} defs["ImGuiStorage_GetIntRef"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetIntRef"][1]["funcname"] = "GetIntRef" -defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui" +defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui:1876" defs["ImGuiStorage_GetIntRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["ret"] = "int*" defs["ImGuiStorage_GetIntRef"][1]["signature"] = "(ImGuiID,int)" @@ -4186,7 +4224,7 @@ defs["ImGuiStorage_GetVoidPtr"][1]["call_args"] = "(key)" defs["ImGuiStorage_GetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtr"][1]["funcname"] = "GetVoidPtr" -defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui" +defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui:1869" defs["ImGuiStorage_GetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["ret"] = "void*" defs["ImGuiStorage_GetVoidPtr"][1]["signature"] = "(ImGuiID)const" @@ -4209,9 +4247,9 @@ defs["ImGuiStorage_GetVoidPtrRef"][1]["argsoriginal"] = "(ImGuiID key,void* defa defs["ImGuiStorage_GetVoidPtrRef"][1]["call_args"] = "(key,default_val)" defs["ImGuiStorage_GetVoidPtrRef"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"] = {} -defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"]["default_val"] = "((void*)0)" +defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"]["default_val"] = "NULL" defs["ImGuiStorage_GetVoidPtrRef"][1]["funcname"] = "GetVoidPtrRef" -defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui" +defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui:1879" defs["ImGuiStorage_GetVoidPtrRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["ret"] = "void**" defs["ImGuiStorage_GetVoidPtrRef"][1]["signature"] = "(ImGuiID,void*)" @@ -4232,7 +4270,7 @@ defs["ImGuiStorage_SetAllInt"][1]["call_args"] = "(val)" defs["ImGuiStorage_SetAllInt"][1]["cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["defaults"] = {} defs["ImGuiStorage_SetAllInt"][1]["funcname"] = "SetAllInt" -defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui" +defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui:1882" defs["ImGuiStorage_SetAllInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["ret"] = "void" defs["ImGuiStorage_SetAllInt"][1]["signature"] = "(int)" @@ -4256,7 +4294,7 @@ defs["ImGuiStorage_SetBool"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetBool"][1]["cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["defaults"] = {} defs["ImGuiStorage_SetBool"][1]["funcname"] = "SetBool" -defs["ImGuiStorage_SetBool"][1]["location"] = "imgui" +defs["ImGuiStorage_SetBool"][1]["location"] = "imgui:1866" defs["ImGuiStorage_SetBool"][1]["ov_cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["ret"] = "void" defs["ImGuiStorage_SetBool"][1]["signature"] = "(ImGuiID,bool)" @@ -4280,7 +4318,7 @@ defs["ImGuiStorage_SetFloat"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetFloat"][1]["cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["defaults"] = {} defs["ImGuiStorage_SetFloat"][1]["funcname"] = "SetFloat" -defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui" +defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui:1868" defs["ImGuiStorage_SetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["ret"] = "void" defs["ImGuiStorage_SetFloat"][1]["signature"] = "(ImGuiID,float)" @@ -4304,7 +4342,7 @@ defs["ImGuiStorage_SetInt"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetInt"][1]["cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["defaults"] = {} defs["ImGuiStorage_SetInt"][1]["funcname"] = "SetInt" -defs["ImGuiStorage_SetInt"][1]["location"] = "imgui" +defs["ImGuiStorage_SetInt"][1]["location"] = "imgui:1864" defs["ImGuiStorage_SetInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["ret"] = "void" defs["ImGuiStorage_SetInt"][1]["signature"] = "(ImGuiID,int)" @@ -4328,7 +4366,7 @@ defs["ImGuiStorage_SetVoidPtr"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_SetVoidPtr"][1]["funcname"] = "SetVoidPtr" -defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui" +defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui:1870" defs["ImGuiStorage_SetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["ret"] = "void" defs["ImGuiStorage_SetVoidPtr"][1]["signature"] = "(ImGuiID,void*)" @@ -4344,7 +4382,7 @@ defs["ImGuiStyle_ImGuiStyle"][1]["cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["constructor"] = true defs["ImGuiStyle_ImGuiStyle"][1]["defaults"] = {} defs["ImGuiStyle_ImGuiStyle"][1]["funcname"] = "ImGuiStyle" -defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui" +defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui:1496" defs["ImGuiStyle_ImGuiStyle"][1]["ov_cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["signature"] = "()" defs["ImGuiStyle_ImGuiStyle"][1]["stname"] = "ImGuiStyle" @@ -4364,7 +4402,7 @@ defs["ImGuiStyle_ScaleAllSizes"][1]["call_args"] = "(scale_factor)" defs["ImGuiStyle_ScaleAllSizes"][1]["cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["defaults"] = {} defs["ImGuiStyle_ScaleAllSizes"][1]["funcname"] = "ScaleAllSizes" -defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui" +defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui:1497" defs["ImGuiStyle_ScaleAllSizes"][1]["ov_cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["ret"] = "void" defs["ImGuiStyle_ScaleAllSizes"][1]["signature"] = "(float)" @@ -4396,7 +4434,7 @@ defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["cimguiname"] = "ImGuiTextBuffer_ImGu defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["constructor"] = true defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["defaults"] = {} defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["funcname"] = "ImGuiTextBuffer" -defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui:1823" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["ov_cimguiname"] = "ImGuiTextBuffer_ImGuiTextBuffer" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["signature"] = "()" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["stname"] = "ImGuiTextBuffer" @@ -4418,9 +4456,9 @@ defs["ImGuiTextBuffer_append"][1]["argsoriginal"] = "(const char* str,const char defs["ImGuiTextBuffer_append"][1]["call_args"] = "(str,str_end)" defs["ImGuiTextBuffer_append"][1]["cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["defaults"] = {} -defs["ImGuiTextBuffer_append"][1]["defaults"]["str_end"] = "((void*)0)" +defs["ImGuiTextBuffer_append"][1]["defaults"]["str_end"] = "NULL" defs["ImGuiTextBuffer_append"][1]["funcname"] = "append" -defs["ImGuiTextBuffer_append"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_append"][1]["location"] = "imgui:1832" defs["ImGuiTextBuffer_append"][1]["ov_cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["ret"] = "void" defs["ImGuiTextBuffer_append"][1]["signature"] = "(const char*,const char*)" @@ -4445,7 +4483,7 @@ defs["ImGuiTextBuffer_appendf"][1]["cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendf"][1]["funcname"] = "appendf" defs["ImGuiTextBuffer_appendf"][1]["isvararg"] = "...)" -defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui:1833" defs["ImGuiTextBuffer_appendf"][1]["manual"] = true defs["ImGuiTextBuffer_appendf"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["ret"] = "void" @@ -4470,7 +4508,7 @@ defs["ImGuiTextBuffer_appendfv"][1]["call_args"] = "(fmt,args)" defs["ImGuiTextBuffer_appendfv"][1]["cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendfv"][1]["funcname"] = "appendfv" -defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui:1834" defs["ImGuiTextBuffer_appendfv"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["ret"] = "void" defs["ImGuiTextBuffer_appendfv"][1]["signature"] = "(const char*,va_list)" @@ -4488,7 +4526,7 @@ defs["ImGuiTextBuffer_begin"][1]["call_args"] = "()" defs["ImGuiTextBuffer_begin"][1]["cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["defaults"] = {} defs["ImGuiTextBuffer_begin"][1]["funcname"] = "begin" -defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui:1825" defs["ImGuiTextBuffer_begin"][1]["ov_cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_begin"][1]["signature"] = "()const" @@ -4506,7 +4544,7 @@ defs["ImGuiTextBuffer_c_str"][1]["call_args"] = "()" defs["ImGuiTextBuffer_c_str"][1]["cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["defaults"] = {} defs["ImGuiTextBuffer_c_str"][1]["funcname"] = "c_str" -defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui:1831" defs["ImGuiTextBuffer_c_str"][1]["ov_cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_c_str"][1]["signature"] = "()const" @@ -4524,7 +4562,7 @@ defs["ImGuiTextBuffer_clear"][1]["call_args"] = "()" defs["ImGuiTextBuffer_clear"][1]["cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["defaults"] = {} defs["ImGuiTextBuffer_clear"][1]["funcname"] = "clear" -defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui:1829" defs["ImGuiTextBuffer_clear"][1]["ov_cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["ret"] = "void" defs["ImGuiTextBuffer_clear"][1]["signature"] = "()" @@ -4558,7 +4596,7 @@ defs["ImGuiTextBuffer_empty"][1]["call_args"] = "()" defs["ImGuiTextBuffer_empty"][1]["cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["defaults"] = {} defs["ImGuiTextBuffer_empty"][1]["funcname"] = "empty" -defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui:1828" defs["ImGuiTextBuffer_empty"][1]["ov_cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["ret"] = "bool" defs["ImGuiTextBuffer_empty"][1]["signature"] = "()const" @@ -4576,7 +4614,7 @@ defs["ImGuiTextBuffer_end"][1]["call_args"] = "()" defs["ImGuiTextBuffer_end"][1]["cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["defaults"] = {} defs["ImGuiTextBuffer_end"][1]["funcname"] = "end" -defs["ImGuiTextBuffer_end"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_end"][1]["location"] = "imgui:1826" defs["ImGuiTextBuffer_end"][1]["ov_cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_end"][1]["signature"] = "()const" @@ -4597,7 +4635,7 @@ defs["ImGuiTextBuffer_reserve"][1]["call_args"] = "(capacity)" defs["ImGuiTextBuffer_reserve"][1]["cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["defaults"] = {} defs["ImGuiTextBuffer_reserve"][1]["funcname"] = "reserve" -defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui:1830" defs["ImGuiTextBuffer_reserve"][1]["ov_cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["ret"] = "void" defs["ImGuiTextBuffer_reserve"][1]["signature"] = "(int)" @@ -4615,7 +4653,7 @@ defs["ImGuiTextBuffer_size"][1]["call_args"] = "()" defs["ImGuiTextBuffer_size"][1]["cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["defaults"] = {} defs["ImGuiTextBuffer_size"][1]["funcname"] = "size" -defs["ImGuiTextBuffer_size"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_size"][1]["location"] = "imgui:1827" defs["ImGuiTextBuffer_size"][1]["ov_cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["ret"] = "int" defs["ImGuiTextBuffer_size"][1]["signature"] = "()const" @@ -4633,7 +4671,7 @@ defs["ImGuiTextFilter_Build"][1]["call_args"] = "()" defs["ImGuiTextFilter_Build"][1]["cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["defaults"] = {} defs["ImGuiTextFilter_Build"][1]["funcname"] = "Build" -defs["ImGuiTextFilter_Build"][1]["location"] = "imgui" +defs["ImGuiTextFilter_Build"][1]["location"] = "imgui:1796" defs["ImGuiTextFilter_Build"][1]["ov_cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["ret"] = "void" defs["ImGuiTextFilter_Build"][1]["signature"] = "()" @@ -4651,7 +4689,7 @@ defs["ImGuiTextFilter_Clear"][1]["call_args"] = "()" defs["ImGuiTextFilter_Clear"][1]["cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["defaults"] = {} defs["ImGuiTextFilter_Clear"][1]["funcname"] = "Clear" -defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui" +defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui:1797" defs["ImGuiTextFilter_Clear"][1]["ov_cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["ret"] = "void" defs["ImGuiTextFilter_Clear"][1]["signature"] = "()" @@ -4677,7 +4715,7 @@ defs["ImGuiTextFilter_Draw"][1]["defaults"] = {} defs["ImGuiTextFilter_Draw"][1]["defaults"]["label"] = "\"Filter(inc,-exc)\"" defs["ImGuiTextFilter_Draw"][1]["defaults"]["width"] = "0.0f" defs["ImGuiTextFilter_Draw"][1]["funcname"] = "Draw" -defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui" +defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui:1794" defs["ImGuiTextFilter_Draw"][1]["ov_cimguiname"] = "ImGuiTextFilter_Draw" defs["ImGuiTextFilter_Draw"][1]["ret"] = "bool" defs["ImGuiTextFilter_Draw"][1]["signature"] = "(const char*,float)" @@ -4697,7 +4735,7 @@ defs["ImGuiTextFilter_ImGuiTextFilter"][1]["constructor"] = true defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"]["default_filter"] = "\"\"" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["funcname"] = "ImGuiTextFilter" -defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui" +defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui:1793" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_ImGuiTextFilter" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["signature"] = "(const char*)" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["stname"] = "ImGuiTextFilter" @@ -4714,7 +4752,7 @@ defs["ImGuiTextFilter_IsActive"][1]["call_args"] = "()" defs["ImGuiTextFilter_IsActive"][1]["cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["defaults"] = {} defs["ImGuiTextFilter_IsActive"][1]["funcname"] = "IsActive" -defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui" +defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui:1798" defs["ImGuiTextFilter_IsActive"][1]["ov_cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["ret"] = "bool" defs["ImGuiTextFilter_IsActive"][1]["signature"] = "()const" @@ -4737,9 +4775,9 @@ defs["ImGuiTextFilter_PassFilter"][1]["argsoriginal"] = "(const char* text,const defs["ImGuiTextFilter_PassFilter"][1]["call_args"] = "(text,text_end)" defs["ImGuiTextFilter_PassFilter"][1]["cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["defaults"] = {} -defs["ImGuiTextFilter_PassFilter"][1]["defaults"]["text_end"] = "((void*)0)" +defs["ImGuiTextFilter_PassFilter"][1]["defaults"]["text_end"] = "NULL" defs["ImGuiTextFilter_PassFilter"][1]["funcname"] = "PassFilter" -defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui" +defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui:1795" defs["ImGuiTextFilter_PassFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["ret"] = "bool" defs["ImGuiTextFilter_PassFilter"][1]["signature"] = "(const char*,const char*)const" @@ -4771,7 +4809,7 @@ defs["ImGuiTextRange_ImGuiTextRange"][1]["cimguiname"] = "ImGuiTextRange_ImGuiTe defs["ImGuiTextRange_ImGuiTextRange"][1]["constructor"] = true defs["ImGuiTextRange_ImGuiTextRange"][1]["defaults"] = {} defs["ImGuiTextRange_ImGuiTextRange"][1]["funcname"] = "ImGuiTextRange" -defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui" +defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui:1806" defs["ImGuiTextRange_ImGuiTextRange"][1]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRangeNil" defs["ImGuiTextRange_ImGuiTextRange"][1]["signature"] = "()" defs["ImGuiTextRange_ImGuiTextRange"][1]["stname"] = "ImGuiTextRange" @@ -4790,7 +4828,7 @@ defs["ImGuiTextRange_ImGuiTextRange"][2]["cimguiname"] = "ImGuiTextRange_ImGuiTe defs["ImGuiTextRange_ImGuiTextRange"][2]["constructor"] = true defs["ImGuiTextRange_ImGuiTextRange"][2]["defaults"] = {} defs["ImGuiTextRange_ImGuiTextRange"][2]["funcname"] = "ImGuiTextRange" -defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui" +defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui:1807" defs["ImGuiTextRange_ImGuiTextRange"][2]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRangeStr" defs["ImGuiTextRange_ImGuiTextRange"][2]["signature"] = "(const char*,const char*)" defs["ImGuiTextRange_ImGuiTextRange"][2]["stname"] = "ImGuiTextRange" @@ -4824,7 +4862,7 @@ defs["ImGuiTextRange_empty"][1]["call_args"] = "()" defs["ImGuiTextRange_empty"][1]["cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["defaults"] = {} defs["ImGuiTextRange_empty"][1]["funcname"] = "empty" -defs["ImGuiTextRange_empty"][1]["location"] = "imgui" +defs["ImGuiTextRange_empty"][1]["location"] = "imgui:1808" defs["ImGuiTextRange_empty"][1]["ov_cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["ret"] = "bool" defs["ImGuiTextRange_empty"][1]["signature"] = "()const" @@ -4848,7 +4886,7 @@ defs["ImGuiTextRange_split"][1]["call_args"] = "(separator,out)" defs["ImGuiTextRange_split"][1]["cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["defaults"] = {} defs["ImGuiTextRange_split"][1]["funcname"] = "split" -defs["ImGuiTextRange_split"][1]["location"] = "imgui" +defs["ImGuiTextRange_split"][1]["location"] = "imgui:1809" defs["ImGuiTextRange_split"][1]["ov_cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["ret"] = "void" defs["ImGuiTextRange_split"][1]["signature"] = "(char,ImVector_ImGuiTextRange*)const" @@ -4864,7 +4902,7 @@ defs["ImVec2_ImVec2"][1]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][1]["constructor"] = true defs["ImVec2_ImVec2"][1]["defaults"] = {} defs["ImVec2_ImVec2"][1]["funcname"] = "ImVec2" -defs["ImVec2_ImVec2"][1]["location"] = "imgui" +defs["ImVec2_ImVec2"][1]["location"] = "imgui:214" defs["ImVec2_ImVec2"][1]["ov_cimguiname"] = "ImVec2_ImVec2Nil" defs["ImVec2_ImVec2"][1]["signature"] = "()" defs["ImVec2_ImVec2"][1]["stname"] = "ImVec2" @@ -4883,7 +4921,7 @@ defs["ImVec2_ImVec2"][2]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][2]["constructor"] = true defs["ImVec2_ImVec2"][2]["defaults"] = {} defs["ImVec2_ImVec2"][2]["funcname"] = "ImVec2" -defs["ImVec2_ImVec2"][2]["location"] = "imgui" +defs["ImVec2_ImVec2"][2]["location"] = "imgui:215" defs["ImVec2_ImVec2"][2]["ov_cimguiname"] = "ImVec2_ImVec2Float" defs["ImVec2_ImVec2"][2]["signature"] = "(float,float)" defs["ImVec2_ImVec2"][2]["stname"] = "ImVec2" @@ -4915,7 +4953,7 @@ defs["ImVec4_ImVec4"][1]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][1]["constructor"] = true defs["ImVec4_ImVec4"][1]["defaults"] = {} defs["ImVec4_ImVec4"][1]["funcname"] = "ImVec4" -defs["ImVec4_ImVec4"][1]["location"] = "imgui" +defs["ImVec4_ImVec4"][1]["location"] = "imgui:227" defs["ImVec4_ImVec4"][1]["ov_cimguiname"] = "ImVec4_ImVec4Nil" defs["ImVec4_ImVec4"][1]["signature"] = "()" defs["ImVec4_ImVec4"][1]["stname"] = "ImVec4" @@ -4940,7 +4978,7 @@ defs["ImVec4_ImVec4"][2]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][2]["constructor"] = true defs["ImVec4_ImVec4"][2]["defaults"] = {} defs["ImVec4_ImVec4"][2]["funcname"] = "ImVec4" -defs["ImVec4_ImVec4"][2]["location"] = "imgui" +defs["ImVec4_ImVec4"][2]["location"] = "imgui:228" defs["ImVec4_ImVec4"][2]["ov_cimguiname"] = "ImVec4_ImVec4Float" defs["ImVec4_ImVec4"][2]["signature"] = "(float,float,float,float)" defs["ImVec4_ImVec4"][2]["stname"] = "ImVec4" @@ -4972,7 +5010,7 @@ defs["ImVector_ImVector"][1]["cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][1]["constructor"] = true defs["ImVector_ImVector"][1]["defaults"] = {} defs["ImVector_ImVector"][1]["funcname"] = "ImVector" -defs["ImVector_ImVector"][1]["location"] = "imgui" +defs["ImVector_ImVector"][1]["location"] = "imgui:1401" defs["ImVector_ImVector"][1]["ov_cimguiname"] = "ImVector_ImVectorNil" defs["ImVector_ImVector"][1]["signature"] = "()" defs["ImVector_ImVector"][1]["stname"] = "ImVector" @@ -4989,7 +5027,7 @@ defs["ImVector_ImVector"][2]["cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][2]["constructor"] = true defs["ImVector_ImVector"][2]["defaults"] = {} defs["ImVector_ImVector"][2]["funcname"] = "ImVector" -defs["ImVector_ImVector"][2]["location"] = "imgui" +defs["ImVector_ImVector"][2]["location"] = "imgui:1402" defs["ImVector_ImVector"][2]["ov_cimguiname"] = "ImVector_ImVectorVector" defs["ImVector_ImVector"][2]["signature"] = "(const ImVector)" defs["ImVector_ImVector"][2]["stname"] = "ImVector" @@ -5011,7 +5049,7 @@ defs["ImVector__grow_capacity"][1]["call_args"] = "(sz)" defs["ImVector__grow_capacity"][1]["cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["defaults"] = {} defs["ImVector__grow_capacity"][1]["funcname"] = "_grow_capacity" -defs["ImVector__grow_capacity"][1]["location"] = "imgui" +defs["ImVector__grow_capacity"][1]["location"] = "imgui:1425" defs["ImVector__grow_capacity"][1]["ov_cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["ret"] = "int" defs["ImVector__grow_capacity"][1]["signature"] = "(int)const" @@ -5030,7 +5068,7 @@ defs["ImVector_back"][1]["call_args"] = "()" defs["ImVector_back"][1]["cimguiname"] = "ImVector_back" defs["ImVector_back"][1]["defaults"] = {} defs["ImVector_back"][1]["funcname"] = "back" -defs["ImVector_back"][1]["location"] = "imgui" +defs["ImVector_back"][1]["location"] = "imgui:1421" defs["ImVector_back"][1]["ov_cimguiname"] = "ImVector_backNil" defs["ImVector_back"][1]["ret"] = "T*" defs["ImVector_back"][1]["retref"] = "&" @@ -5048,7 +5086,7 @@ defs["ImVector_back"][2]["call_args"] = "()" defs["ImVector_back"][2]["cimguiname"] = "ImVector_back" defs["ImVector_back"][2]["defaults"] = {} defs["ImVector_back"][2]["funcname"] = "back" -defs["ImVector_back"][2]["location"] = "imgui" +defs["ImVector_back"][2]["location"] = "imgui:1422" defs["ImVector_back"][2]["ov_cimguiname"] = "ImVector_back_const" defs["ImVector_back"][2]["ret"] = "const T*" defs["ImVector_back"][2]["retref"] = "&" @@ -5069,7 +5107,7 @@ defs["ImVector_begin"][1]["call_args"] = "()" defs["ImVector_begin"][1]["cimguiname"] = "ImVector_begin" defs["ImVector_begin"][1]["defaults"] = {} defs["ImVector_begin"][1]["funcname"] = "begin" -defs["ImVector_begin"][1]["location"] = "imgui" +defs["ImVector_begin"][1]["location"] = "imgui:1415" defs["ImVector_begin"][1]["ov_cimguiname"] = "ImVector_beginNil" defs["ImVector_begin"][1]["ret"] = "T*" defs["ImVector_begin"][1]["signature"] = "()" @@ -5086,7 +5124,7 @@ defs["ImVector_begin"][2]["call_args"] = "()" defs["ImVector_begin"][2]["cimguiname"] = "ImVector_begin" defs["ImVector_begin"][2]["defaults"] = {} defs["ImVector_begin"][2]["funcname"] = "begin" -defs["ImVector_begin"][2]["location"] = "imgui" +defs["ImVector_begin"][2]["location"] = "imgui:1416" defs["ImVector_begin"][2]["ov_cimguiname"] = "ImVector_begin_const" defs["ImVector_begin"][2]["ret"] = "const T*" defs["ImVector_begin"][2]["signature"] = "()const" @@ -5106,7 +5144,7 @@ defs["ImVector_capacity"][1]["call_args"] = "()" defs["ImVector_capacity"][1]["cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["defaults"] = {} defs["ImVector_capacity"][1]["funcname"] = "capacity" -defs["ImVector_capacity"][1]["location"] = "imgui" +defs["ImVector_capacity"][1]["location"] = "imgui:1410" defs["ImVector_capacity"][1]["ov_cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["ret"] = "int" defs["ImVector_capacity"][1]["signature"] = "()const" @@ -5125,7 +5163,7 @@ defs["ImVector_clear"][1]["call_args"] = "()" defs["ImVector_clear"][1]["cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["defaults"] = {} defs["ImVector_clear"][1]["funcname"] = "clear" -defs["ImVector_clear"][1]["location"] = "imgui" +defs["ImVector_clear"][1]["location"] = "imgui:1414" defs["ImVector_clear"][1]["ov_cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["ret"] = "void" defs["ImVector_clear"][1]["signature"] = "()" @@ -5147,7 +5185,7 @@ defs["ImVector_contains"][1]["call_args"] = "(v)" defs["ImVector_contains"][1]["cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["defaults"] = {} defs["ImVector_contains"][1]["funcname"] = "contains" -defs["ImVector_contains"][1]["location"] = "imgui" +defs["ImVector_contains"][1]["location"] = "imgui:1439" defs["ImVector_contains"][1]["ov_cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["ret"] = "bool" defs["ImVector_contains"][1]["signature"] = "(const T)const" @@ -5165,7 +5203,9 @@ defs["ImVector_destroy"][1]["call_args"] = "(self)" defs["ImVector_destroy"][1]["cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["defaults"] = {} defs["ImVector_destroy"][1]["destructor"] = true +defs["ImVector_destroy"][1]["location"] = "imgui:1404" defs["ImVector_destroy"][1]["ov_cimguiname"] = "ImVector_destroy" +defs["ImVector_destroy"][1]["realdestructor"] = true defs["ImVector_destroy"][1]["ret"] = "void" defs["ImVector_destroy"][1]["signature"] = "(ImVector*)" defs["ImVector_destroy"][1]["stname"] = "ImVector" @@ -5183,7 +5223,7 @@ defs["ImVector_empty"][1]["call_args"] = "()" defs["ImVector_empty"][1]["cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["defaults"] = {} defs["ImVector_empty"][1]["funcname"] = "empty" -defs["ImVector_empty"][1]["location"] = "imgui" +defs["ImVector_empty"][1]["location"] = "imgui:1406" defs["ImVector_empty"][1]["ov_cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["ret"] = "bool" defs["ImVector_empty"][1]["signature"] = "()const" @@ -5202,7 +5242,7 @@ defs["ImVector_end"][1]["call_args"] = "()" defs["ImVector_end"][1]["cimguiname"] = "ImVector_end" defs["ImVector_end"][1]["defaults"] = {} defs["ImVector_end"][1]["funcname"] = "end" -defs["ImVector_end"][1]["location"] = "imgui" +defs["ImVector_end"][1]["location"] = "imgui:1417" defs["ImVector_end"][1]["ov_cimguiname"] = "ImVector_endNil" defs["ImVector_end"][1]["ret"] = "T*" defs["ImVector_end"][1]["signature"] = "()" @@ -5219,7 +5259,7 @@ defs["ImVector_end"][2]["call_args"] = "()" defs["ImVector_end"][2]["cimguiname"] = "ImVector_end" defs["ImVector_end"][2]["defaults"] = {} defs["ImVector_end"][2]["funcname"] = "end" -defs["ImVector_end"][2]["location"] = "imgui" +defs["ImVector_end"][2]["location"] = "imgui:1418" defs["ImVector_end"][2]["ov_cimguiname"] = "ImVector_end_const" defs["ImVector_end"][2]["ret"] = "const T*" defs["ImVector_end"][2]["signature"] = "()const" @@ -5242,7 +5282,7 @@ defs["ImVector_erase"][1]["call_args"] = "(it)" defs["ImVector_erase"][1]["cimguiname"] = "ImVector_erase" defs["ImVector_erase"][1]["defaults"] = {} defs["ImVector_erase"][1]["funcname"] = "erase" -defs["ImVector_erase"][1]["location"] = "imgui" +defs["ImVector_erase"][1]["location"] = "imgui:1435" defs["ImVector_erase"][1]["ov_cimguiname"] = "ImVector_eraseNil" defs["ImVector_erase"][1]["ret"] = "T*" defs["ImVector_erase"][1]["signature"] = "(const T*)" @@ -5265,7 +5305,7 @@ defs["ImVector_erase"][2]["call_args"] = "(it,it_last)" defs["ImVector_erase"][2]["cimguiname"] = "ImVector_erase" defs["ImVector_erase"][2]["defaults"] = {} defs["ImVector_erase"][2]["funcname"] = "erase" -defs["ImVector_erase"][2]["location"] = "imgui" +defs["ImVector_erase"][2]["location"] = "imgui:1436" defs["ImVector_erase"][2]["ov_cimguiname"] = "ImVector_eraseTPtr" defs["ImVector_erase"][2]["ret"] = "T*" defs["ImVector_erase"][2]["signature"] = "(const T*,const T*)" @@ -5288,7 +5328,7 @@ defs["ImVector_erase_unsorted"][1]["call_args"] = "(it)" defs["ImVector_erase_unsorted"][1]["cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["defaults"] = {} defs["ImVector_erase_unsorted"][1]["funcname"] = "erase_unsorted" -defs["ImVector_erase_unsorted"][1]["location"] = "imgui" +defs["ImVector_erase_unsorted"][1]["location"] = "imgui:1437" defs["ImVector_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["ret"] = "T*" defs["ImVector_erase_unsorted"][1]["signature"] = "(const T*)" @@ -5310,7 +5350,7 @@ defs["ImVector_find"][1]["call_args"] = "(v)" defs["ImVector_find"][1]["cimguiname"] = "ImVector_find" defs["ImVector_find"][1]["defaults"] = {} defs["ImVector_find"][1]["funcname"] = "find" -defs["ImVector_find"][1]["location"] = "imgui" +defs["ImVector_find"][1]["location"] = "imgui:1440" defs["ImVector_find"][1]["ov_cimguiname"] = "ImVector_findNil" defs["ImVector_find"][1]["ret"] = "T*" defs["ImVector_find"][1]["signature"] = "(const T)" @@ -5330,7 +5370,7 @@ defs["ImVector_find"][2]["call_args"] = "(v)" defs["ImVector_find"][2]["cimguiname"] = "ImVector_find" defs["ImVector_find"][2]["defaults"] = {} defs["ImVector_find"][2]["funcname"] = "find" -defs["ImVector_find"][2]["location"] = "imgui" +defs["ImVector_find"][2]["location"] = "imgui:1441" defs["ImVector_find"][2]["ov_cimguiname"] = "ImVector_find_const" defs["ImVector_find"][2]["ret"] = "const T*" defs["ImVector_find"][2]["signature"] = "(const T)const" @@ -5353,7 +5393,7 @@ defs["ImVector_find_erase"][1]["call_args"] = "(v)" defs["ImVector_find_erase"][1]["cimguiname"] = "ImVector_find_erase" defs["ImVector_find_erase"][1]["defaults"] = {} defs["ImVector_find_erase"][1]["funcname"] = "find_erase" -defs["ImVector_find_erase"][1]["location"] = "imgui" +defs["ImVector_find_erase"][1]["location"] = "imgui:1442" defs["ImVector_find_erase"][1]["ov_cimguiname"] = "ImVector_find_erase" defs["ImVector_find_erase"][1]["ret"] = "bool" defs["ImVector_find_erase"][1]["signature"] = "(const T)" @@ -5375,7 +5415,7 @@ defs["ImVector_find_erase_unsorted"][1]["call_args"] = "(v)" defs["ImVector_find_erase_unsorted"][1]["cimguiname"] = "ImVector_find_erase_unsorted" defs["ImVector_find_erase_unsorted"][1]["defaults"] = {} defs["ImVector_find_erase_unsorted"][1]["funcname"] = "find_erase_unsorted" -defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui" +defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui:1443" defs["ImVector_find_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_find_erase_unsorted" defs["ImVector_find_erase_unsorted"][1]["ret"] = "bool" defs["ImVector_find_erase_unsorted"][1]["signature"] = "(const T)" @@ -5394,7 +5434,7 @@ defs["ImVector_front"][1]["call_args"] = "()" defs["ImVector_front"][1]["cimguiname"] = "ImVector_front" defs["ImVector_front"][1]["defaults"] = {} defs["ImVector_front"][1]["funcname"] = "front" -defs["ImVector_front"][1]["location"] = "imgui" +defs["ImVector_front"][1]["location"] = "imgui:1419" defs["ImVector_front"][1]["ov_cimguiname"] = "ImVector_frontNil" defs["ImVector_front"][1]["ret"] = "T*" defs["ImVector_front"][1]["retref"] = "&" @@ -5412,7 +5452,7 @@ defs["ImVector_front"][2]["call_args"] = "()" defs["ImVector_front"][2]["cimguiname"] = "ImVector_front" defs["ImVector_front"][2]["defaults"] = {} defs["ImVector_front"][2]["funcname"] = "front" -defs["ImVector_front"][2]["location"] = "imgui" +defs["ImVector_front"][2]["location"] = "imgui:1420" defs["ImVector_front"][2]["ov_cimguiname"] = "ImVector_front_const" defs["ImVector_front"][2]["ret"] = "const T*" defs["ImVector_front"][2]["retref"] = "&" @@ -5436,7 +5476,7 @@ defs["ImVector_index_from_ptr"][1]["call_args"] = "(it)" defs["ImVector_index_from_ptr"][1]["cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["defaults"] = {} defs["ImVector_index_from_ptr"][1]["funcname"] = "index_from_ptr" -defs["ImVector_index_from_ptr"][1]["location"] = "imgui" +defs["ImVector_index_from_ptr"][1]["location"] = "imgui:1444" defs["ImVector_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["ret"] = "int" defs["ImVector_index_from_ptr"][1]["signature"] = "(const T*)const" @@ -5461,13 +5501,32 @@ defs["ImVector_insert"][1]["call_args"] = "(it,v)" defs["ImVector_insert"][1]["cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["defaults"] = {} defs["ImVector_insert"][1]["funcname"] = "insert" -defs["ImVector_insert"][1]["location"] = "imgui" +defs["ImVector_insert"][1]["location"] = "imgui:1438" defs["ImVector_insert"][1]["ov_cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["ret"] = "T*" defs["ImVector_insert"][1]["signature"] = "(const T*,const T)" defs["ImVector_insert"][1]["stname"] = "ImVector" defs["ImVector_insert"][1]["templated"] = true defs["ImVector_insert"]["(const T*,const T)"] = defs["ImVector_insert"][1] +defs["ImVector_max_size"] = {} +defs["ImVector_max_size"][1] = {} +defs["ImVector_max_size"][1]["args"] = "(ImVector* self)" +defs["ImVector_max_size"][1]["argsT"] = {} +defs["ImVector_max_size"][1]["argsT"][1] = {} +defs["ImVector_max_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_max_size"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_max_size"][1]["argsoriginal"] = "()" +defs["ImVector_max_size"][1]["call_args"] = "()" +defs["ImVector_max_size"][1]["cimguiname"] = "ImVector_max_size" +defs["ImVector_max_size"][1]["defaults"] = {} +defs["ImVector_max_size"][1]["funcname"] = "max_size" +defs["ImVector_max_size"][1]["location"] = "imgui:1409" +defs["ImVector_max_size"][1]["ov_cimguiname"] = "ImVector_max_size" +defs["ImVector_max_size"][1]["ret"] = "int" +defs["ImVector_max_size"][1]["signature"] = "()const" +defs["ImVector_max_size"][1]["stname"] = "ImVector" +defs["ImVector_max_size"][1]["templated"] = true +defs["ImVector_max_size"]["()const"] = defs["ImVector_max_size"][1] defs["ImVector_pop_back"] = {} defs["ImVector_pop_back"][1] = {} defs["ImVector_pop_back"][1]["args"] = "(ImVector* self)" @@ -5480,7 +5539,7 @@ defs["ImVector_pop_back"][1]["call_args"] = "()" defs["ImVector_pop_back"][1]["cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["defaults"] = {} defs["ImVector_pop_back"][1]["funcname"] = "pop_back" -defs["ImVector_pop_back"][1]["location"] = "imgui" +defs["ImVector_pop_back"][1]["location"] = "imgui:1433" defs["ImVector_pop_back"][1]["ov_cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["ret"] = "void" defs["ImVector_pop_back"][1]["signature"] = "()" @@ -5502,7 +5561,7 @@ defs["ImVector_push_back"][1]["call_args"] = "(v)" defs["ImVector_push_back"][1]["cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["defaults"] = {} defs["ImVector_push_back"][1]["funcname"] = "push_back" -defs["ImVector_push_back"][1]["location"] = "imgui" +defs["ImVector_push_back"][1]["location"] = "imgui:1432" defs["ImVector_push_back"][1]["ov_cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["ret"] = "void" defs["ImVector_push_back"][1]["signature"] = "(const T)" @@ -5524,7 +5583,7 @@ defs["ImVector_push_front"][1]["call_args"] = "(v)" defs["ImVector_push_front"][1]["cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["defaults"] = {} defs["ImVector_push_front"][1]["funcname"] = "push_front" -defs["ImVector_push_front"][1]["location"] = "imgui" +defs["ImVector_push_front"][1]["location"] = "imgui:1434" defs["ImVector_push_front"][1]["ov_cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["ret"] = "void" defs["ImVector_push_front"][1]["signature"] = "(const T)" @@ -5546,7 +5605,7 @@ defs["ImVector_reserve"][1]["call_args"] = "(new_capacity)" defs["ImVector_reserve"][1]["cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["defaults"] = {} defs["ImVector_reserve"][1]["funcname"] = "reserve" -defs["ImVector_reserve"][1]["location"] = "imgui" +defs["ImVector_reserve"][1]["location"] = "imgui:1429" defs["ImVector_reserve"][1]["ov_cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["ret"] = "void" defs["ImVector_reserve"][1]["signature"] = "(int)" @@ -5568,7 +5627,7 @@ defs["ImVector_resize"][1]["call_args"] = "(new_size)" defs["ImVector_resize"][1]["cimguiname"] = "ImVector_resize" defs["ImVector_resize"][1]["defaults"] = {} defs["ImVector_resize"][1]["funcname"] = "resize" -defs["ImVector_resize"][1]["location"] = "imgui" +defs["ImVector_resize"][1]["location"] = "imgui:1426" defs["ImVector_resize"][1]["ov_cimguiname"] = "ImVector_resizeNil" defs["ImVector_resize"][1]["ret"] = "void" defs["ImVector_resize"][1]["signature"] = "(int)" @@ -5591,7 +5650,7 @@ defs["ImVector_resize"][2]["call_args"] = "(new_size,v)" defs["ImVector_resize"][2]["cimguiname"] = "ImVector_resize" defs["ImVector_resize"][2]["defaults"] = {} defs["ImVector_resize"][2]["funcname"] = "resize" -defs["ImVector_resize"][2]["location"] = "imgui" +defs["ImVector_resize"][2]["location"] = "imgui:1427" defs["ImVector_resize"][2]["ov_cimguiname"] = "ImVector_resizeT" defs["ImVector_resize"][2]["ret"] = "void" defs["ImVector_resize"][2]["signature"] = "(int,const T)" @@ -5614,7 +5673,7 @@ defs["ImVector_shrink"][1]["call_args"] = "(new_size)" defs["ImVector_shrink"][1]["cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["defaults"] = {} defs["ImVector_shrink"][1]["funcname"] = "shrink" -defs["ImVector_shrink"][1]["location"] = "imgui" +defs["ImVector_shrink"][1]["location"] = "imgui:1428" defs["ImVector_shrink"][1]["ov_cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["ret"] = "void" defs["ImVector_shrink"][1]["signature"] = "(int)" @@ -5633,7 +5692,7 @@ defs["ImVector_size"][1]["call_args"] = "()" defs["ImVector_size"][1]["cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["defaults"] = {} defs["ImVector_size"][1]["funcname"] = "size" -defs["ImVector_size"][1]["location"] = "imgui" +defs["ImVector_size"][1]["location"] = "imgui:1407" defs["ImVector_size"][1]["ov_cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["ret"] = "int" defs["ImVector_size"][1]["signature"] = "()const" @@ -5652,7 +5711,7 @@ defs["ImVector_size_in_bytes"][1]["call_args"] = "()" defs["ImVector_size_in_bytes"][1]["cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["defaults"] = {} defs["ImVector_size_in_bytes"][1]["funcname"] = "size_in_bytes" -defs["ImVector_size_in_bytes"][1]["location"] = "imgui" +defs["ImVector_size_in_bytes"][1]["location"] = "imgui:1408" defs["ImVector_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["ret"] = "int" defs["ImVector_size_in_bytes"][1]["signature"] = "()const" @@ -5675,13 +5734,13 @@ defs["ImVector_swap"][1]["call_args"] = "(*rhs)" defs["ImVector_swap"][1]["cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["defaults"] = {} defs["ImVector_swap"][1]["funcname"] = "swap" -defs["ImVector_swap"][1]["location"] = "imgui" +defs["ImVector_swap"][1]["location"] = "imgui:1423" defs["ImVector_swap"][1]["ov_cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["ret"] = "void" -defs["ImVector_swap"][1]["signature"] = "(ImVector)" +defs["ImVector_swap"][1]["signature"] = "(ImVector*)" defs["ImVector_swap"][1]["stname"] = "ImVector" defs["ImVector_swap"][1]["templated"] = true -defs["ImVector_swap"]["(ImVector)"] = defs["ImVector_swap"][1] +defs["ImVector_swap"]["(ImVector*)"] = defs["ImVector_swap"][1] defs["igAcceptDragDropPayload"] = {} defs["igAcceptDragDropPayload"][1] = {} defs["igAcceptDragDropPayload"][1]["args"] = "(const char* type,ImGuiDragDropFlags flags)" @@ -5698,7 +5757,7 @@ defs["igAcceptDragDropPayload"][1]["cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["defaults"] = {} defs["igAcceptDragDropPayload"][1]["defaults"]["flags"] = "0" defs["igAcceptDragDropPayload"][1]["funcname"] = "AcceptDragDropPayload" -defs["igAcceptDragDropPayload"][1]["location"] = "imgui" +defs["igAcceptDragDropPayload"][1]["location"] = "imgui:677" defs["igAcceptDragDropPayload"][1]["namespace"] = "ImGui" defs["igAcceptDragDropPayload"][1]["ov_cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -5714,7 +5773,7 @@ defs["igAlignTextToFramePadding"][1]["call_args"] = "()" defs["igAlignTextToFramePadding"][1]["cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["defaults"] = {} defs["igAlignTextToFramePadding"][1]["funcname"] = "AlignTextToFramePadding" -defs["igAlignTextToFramePadding"][1]["location"] = "imgui" +defs["igAlignTextToFramePadding"][1]["location"] = "imgui:400" defs["igAlignTextToFramePadding"][1]["namespace"] = "ImGui" defs["igAlignTextToFramePadding"][1]["ov_cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["ret"] = "void" @@ -5736,7 +5795,7 @@ defs["igArrowButton"][1]["call_args"] = "(str_id,dir)" defs["igArrowButton"][1]["cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["defaults"] = {} defs["igArrowButton"][1]["funcname"] = "ArrowButton" -defs["igArrowButton"][1]["location"] = "imgui" +defs["igArrowButton"][1]["location"] = "imgui:443" defs["igArrowButton"][1]["namespace"] = "ImGui" defs["igArrowButton"][1]["ov_cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["ret"] = "bool" @@ -5761,9 +5820,9 @@ defs["igBegin"][1]["call_args"] = "(name,p_open,flags)" defs["igBegin"][1]["cimguiname"] = "igBegin" defs["igBegin"][1]["defaults"] = {} defs["igBegin"][1]["defaults"]["flags"] = "0" -defs["igBegin"][1]["defaults"]["p_open"] = "((void*)0)" +defs["igBegin"][1]["defaults"]["p_open"] = "NULL" defs["igBegin"][1]["funcname"] = "Begin" -defs["igBegin"][1]["location"] = "imgui" +defs["igBegin"][1]["location"] = "imgui:284" defs["igBegin"][1]["namespace"] = "ImGui" defs["igBegin"][1]["ov_cimguiname"] = "igBegin" defs["igBegin"][1]["ret"] = "bool" @@ -5794,7 +5853,7 @@ defs["igBeginChild"][1]["defaults"]["border"] = "false" defs["igBeginChild"][1]["defaults"]["flags"] = "0" defs["igBeginChild"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginChild"][1]["funcname"] = "BeginChild" -defs["igBeginChild"][1]["location"] = "imgui" +defs["igBeginChild"][1]["location"] = "imgui:292" defs["igBeginChild"][1]["namespace"] = "ImGui" defs["igBeginChild"][1]["ov_cimguiname"] = "igBeginChildStr" defs["igBeginChild"][1]["ret"] = "bool" @@ -5823,7 +5882,7 @@ defs["igBeginChild"][2]["defaults"]["border"] = "false" defs["igBeginChild"][2]["defaults"]["flags"] = "0" defs["igBeginChild"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginChild"][2]["funcname"] = "BeginChild" -defs["igBeginChild"][2]["location"] = "imgui" +defs["igBeginChild"][2]["location"] = "imgui:293" defs["igBeginChild"][2]["namespace"] = "ImGui" defs["igBeginChild"][2]["ov_cimguiname"] = "igBeginChildID" defs["igBeginChild"][2]["ret"] = "bool" @@ -5850,7 +5909,7 @@ defs["igBeginChildFrame"][1]["cimguiname"] = "igBeginChildFrame" defs["igBeginChildFrame"][1]["defaults"] = {} defs["igBeginChildFrame"][1]["defaults"]["flags"] = "0" defs["igBeginChildFrame"][1]["funcname"] = "BeginChildFrame" -defs["igBeginChildFrame"][1]["location"] = "imgui" +defs["igBeginChildFrame"][1]["location"] = "imgui:723" defs["igBeginChildFrame"][1]["namespace"] = "ImGui" defs["igBeginChildFrame"][1]["ov_cimguiname"] = "igBeginChildFrame" defs["igBeginChildFrame"][1]["ret"] = "bool" @@ -5876,7 +5935,7 @@ defs["igBeginCombo"][1]["cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["defaults"] = {} defs["igBeginCombo"][1]["defaults"]["flags"] = "0" defs["igBeginCombo"][1]["funcname"] = "BeginCombo" -defs["igBeginCombo"][1]["location"] = "imgui" +defs["igBeginCombo"][1]["location"] = "imgui:456" defs["igBeginCombo"][1]["namespace"] = "ImGui" defs["igBeginCombo"][1]["ov_cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["ret"] = "bool" @@ -5896,7 +5955,7 @@ defs["igBeginDragDropSource"][1]["cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["defaults"] = {} defs["igBeginDragDropSource"][1]["defaults"]["flags"] = "0" defs["igBeginDragDropSource"][1]["funcname"] = "BeginDragDropSource" -defs["igBeginDragDropSource"][1]["location"] = "imgui" +defs["igBeginDragDropSource"][1]["location"] = "imgui:673" defs["igBeginDragDropSource"][1]["namespace"] = "ImGui" defs["igBeginDragDropSource"][1]["ov_cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["ret"] = "bool" @@ -5912,7 +5971,7 @@ defs["igBeginDragDropTarget"][1]["call_args"] = "()" defs["igBeginDragDropTarget"][1]["cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["defaults"] = {} defs["igBeginDragDropTarget"][1]["funcname"] = "BeginDragDropTarget" -defs["igBeginDragDropTarget"][1]["location"] = "imgui" +defs["igBeginDragDropTarget"][1]["location"] = "imgui:676" defs["igBeginDragDropTarget"][1]["namespace"] = "ImGui" defs["igBeginDragDropTarget"][1]["ov_cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["ret"] = "bool" @@ -5928,7 +5987,7 @@ defs["igBeginGroup"][1]["call_args"] = "()" defs["igBeginGroup"][1]["cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["defaults"] = {} defs["igBeginGroup"][1]["funcname"] = "BeginGroup" -defs["igBeginGroup"][1]["location"] = "imgui" +defs["igBeginGroup"][1]["location"] = "imgui:389" defs["igBeginGroup"][1]["namespace"] = "ImGui" defs["igBeginGroup"][1]["ov_cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["ret"] = "void" @@ -5944,7 +6003,7 @@ defs["igBeginMainMenuBar"][1]["call_args"] = "()" defs["igBeginMainMenuBar"][1]["cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["defaults"] = {} defs["igBeginMainMenuBar"][1]["funcname"] = "BeginMainMenuBar" -defs["igBeginMainMenuBar"][1]["location"] = "imgui" +defs["igBeginMainMenuBar"][1]["location"] = "imgui:588" defs["igBeginMainMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMainMenuBar"][1]["ov_cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["ret"] = "bool" @@ -5967,7 +6026,7 @@ defs["igBeginMenu"][1]["cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["defaults"] = {} defs["igBeginMenu"][1]["defaults"]["enabled"] = "true" defs["igBeginMenu"][1]["funcname"] = "BeginMenu" -defs["igBeginMenu"][1]["location"] = "imgui" +defs["igBeginMenu"][1]["location"] = "imgui:590" defs["igBeginMenu"][1]["namespace"] = "ImGui" defs["igBeginMenu"][1]["ov_cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["ret"] = "bool" @@ -5983,7 +6042,7 @@ defs["igBeginMenuBar"][1]["call_args"] = "()" defs["igBeginMenuBar"][1]["cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["defaults"] = {} defs["igBeginMenuBar"][1]["funcname"] = "BeginMenuBar" -defs["igBeginMenuBar"][1]["location"] = "imgui" +defs["igBeginMenuBar"][1]["location"] = "imgui:586" defs["igBeginMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMenuBar"][1]["ov_cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["ret"] = "bool" @@ -6006,7 +6065,7 @@ defs["igBeginPopup"][1]["cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["defaults"] = {} defs["igBeginPopup"][1]["defaults"]["flags"] = "0" defs["igBeginPopup"][1]["funcname"] = "BeginPopup" -defs["igBeginPopup"][1]["location"] = "imgui" +defs["igBeginPopup"][1]["location"] = "imgui:613" defs["igBeginPopup"][1]["namespace"] = "ImGui" defs["igBeginPopup"][1]["ov_cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["ret"] = "bool" @@ -6028,9 +6087,9 @@ defs["igBeginPopupContextItem"][1]["call_args"] = "(str_id,popup_flags)" defs["igBeginPopupContextItem"][1]["cimguiname"] = "igBeginPopupContextItem" defs["igBeginPopupContextItem"][1]["defaults"] = {} defs["igBeginPopupContextItem"][1]["defaults"]["popup_flags"] = "1" -defs["igBeginPopupContextItem"][1]["defaults"]["str_id"] = "((void*)0)" +defs["igBeginPopupContextItem"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextItem"][1]["funcname"] = "BeginPopupContextItem" -defs["igBeginPopupContextItem"][1]["location"] = "imgui" +defs["igBeginPopupContextItem"][1]["location"] = "imgui:630" defs["igBeginPopupContextItem"][1]["namespace"] = "ImGui" defs["igBeginPopupContextItem"][1]["ov_cimguiname"] = "igBeginPopupContextItem" defs["igBeginPopupContextItem"][1]["ret"] = "bool" @@ -6052,9 +6111,9 @@ defs["igBeginPopupContextVoid"][1]["call_args"] = "(str_id,popup_flags)" defs["igBeginPopupContextVoid"][1]["cimguiname"] = "igBeginPopupContextVoid" defs["igBeginPopupContextVoid"][1]["defaults"] = {} defs["igBeginPopupContextVoid"][1]["defaults"]["popup_flags"] = "1" -defs["igBeginPopupContextVoid"][1]["defaults"]["str_id"] = "((void*)0)" +defs["igBeginPopupContextVoid"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextVoid"][1]["funcname"] = "BeginPopupContextVoid" -defs["igBeginPopupContextVoid"][1]["location"] = "imgui" +defs["igBeginPopupContextVoid"][1]["location"] = "imgui:632" defs["igBeginPopupContextVoid"][1]["namespace"] = "ImGui" defs["igBeginPopupContextVoid"][1]["ov_cimguiname"] = "igBeginPopupContextVoid" defs["igBeginPopupContextVoid"][1]["ret"] = "bool" @@ -6076,9 +6135,9 @@ defs["igBeginPopupContextWindow"][1]["call_args"] = "(str_id,popup_flags)" defs["igBeginPopupContextWindow"][1]["cimguiname"] = "igBeginPopupContextWindow" defs["igBeginPopupContextWindow"][1]["defaults"] = {} defs["igBeginPopupContextWindow"][1]["defaults"]["popup_flags"] = "1" -defs["igBeginPopupContextWindow"][1]["defaults"]["str_id"] = "((void*)0)" +defs["igBeginPopupContextWindow"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextWindow"][1]["funcname"] = "BeginPopupContextWindow" -defs["igBeginPopupContextWindow"][1]["location"] = "imgui" +defs["igBeginPopupContextWindow"][1]["location"] = "imgui:631" defs["igBeginPopupContextWindow"][1]["namespace"] = "ImGui" defs["igBeginPopupContextWindow"][1]["ov_cimguiname"] = "igBeginPopupContextWindow" defs["igBeginPopupContextWindow"][1]["ret"] = "bool" @@ -6103,9 +6162,9 @@ defs["igBeginPopupModal"][1]["call_args"] = "(name,p_open,flags)" defs["igBeginPopupModal"][1]["cimguiname"] = "igBeginPopupModal" defs["igBeginPopupModal"][1]["defaults"] = {} defs["igBeginPopupModal"][1]["defaults"]["flags"] = "0" -defs["igBeginPopupModal"][1]["defaults"]["p_open"] = "((void*)0)" +defs["igBeginPopupModal"][1]["defaults"]["p_open"] = "NULL" defs["igBeginPopupModal"][1]["funcname"] = "BeginPopupModal" -defs["igBeginPopupModal"][1]["location"] = "imgui" +defs["igBeginPopupModal"][1]["location"] = "imgui:614" defs["igBeginPopupModal"][1]["namespace"] = "ImGui" defs["igBeginPopupModal"][1]["ov_cimguiname"] = "igBeginPopupModal" defs["igBeginPopupModal"][1]["ret"] = "bool" @@ -6128,7 +6187,7 @@ defs["igBeginTabBar"][1]["cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["defaults"] = {} defs["igBeginTabBar"][1]["defaults"]["flags"] = "0" defs["igBeginTabBar"][1]["funcname"] = "BeginTabBar" -defs["igBeginTabBar"][1]["location"] = "imgui" +defs["igBeginTabBar"][1]["location"] = "imgui:654" defs["igBeginTabBar"][1]["namespace"] = "ImGui" defs["igBeginTabBar"][1]["ov_cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["ret"] = "bool" @@ -6153,9 +6212,9 @@ defs["igBeginTabItem"][1]["call_args"] = "(label,p_open,flags)" defs["igBeginTabItem"][1]["cimguiname"] = "igBeginTabItem" defs["igBeginTabItem"][1]["defaults"] = {} defs["igBeginTabItem"][1]["defaults"]["flags"] = "0" -defs["igBeginTabItem"][1]["defaults"]["p_open"] = "((void*)0)" +defs["igBeginTabItem"][1]["defaults"]["p_open"] = "NULL" defs["igBeginTabItem"][1]["funcname"] = "BeginTabItem" -defs["igBeginTabItem"][1]["location"] = "imgui" +defs["igBeginTabItem"][1]["location"] = "imgui:656" defs["igBeginTabItem"][1]["namespace"] = "ImGui" defs["igBeginTabItem"][1]["ov_cimguiname"] = "igBeginTabItem" defs["igBeginTabItem"][1]["ret"] = "bool" @@ -6171,7 +6230,7 @@ defs["igBeginTooltip"][1]["call_args"] = "()" defs["igBeginTooltip"][1]["cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["defaults"] = {} defs["igBeginTooltip"][1]["funcname"] = "BeginTooltip" -defs["igBeginTooltip"][1]["location"] = "imgui" +defs["igBeginTooltip"][1]["location"] = "imgui:597" defs["igBeginTooltip"][1]["namespace"] = "ImGui" defs["igBeginTooltip"][1]["ov_cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["ret"] = "void" @@ -6187,7 +6246,7 @@ defs["igBullet"][1]["call_args"] = "()" defs["igBullet"][1]["cimguiname"] = "igBullet" defs["igBullet"][1]["defaults"] = {} defs["igBullet"][1]["funcname"] = "Bullet" -defs["igBullet"][1]["location"] = "imgui" +defs["igBullet"][1]["location"] = "imgui:451" defs["igBullet"][1]["namespace"] = "ImGui" defs["igBullet"][1]["ov_cimguiname"] = "igBullet" defs["igBullet"][1]["ret"] = "void" @@ -6210,7 +6269,7 @@ defs["igBulletText"][1]["cimguiname"] = "igBulletText" defs["igBulletText"][1]["defaults"] = {} defs["igBulletText"][1]["funcname"] = "BulletText" defs["igBulletText"][1]["isvararg"] = "...)" -defs["igBulletText"][1]["location"] = "imgui" +defs["igBulletText"][1]["location"] = "imgui:434" defs["igBulletText"][1]["namespace"] = "ImGui" defs["igBulletText"][1]["ov_cimguiname"] = "igBulletText" defs["igBulletText"][1]["ret"] = "void" @@ -6232,7 +6291,7 @@ defs["igBulletTextV"][1]["call_args"] = "(fmt,args)" defs["igBulletTextV"][1]["cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["defaults"] = {} defs["igBulletTextV"][1]["funcname"] = "BulletTextV" -defs["igBulletTextV"][1]["location"] = "imgui" +defs["igBulletTextV"][1]["location"] = "imgui:435" defs["igBulletTextV"][1]["namespace"] = "ImGui" defs["igBulletTextV"][1]["ov_cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["ret"] = "void" @@ -6255,7 +6314,7 @@ defs["igButton"][1]["cimguiname"] = "igButton" defs["igButton"][1]["defaults"] = {} defs["igButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igButton"][1]["funcname"] = "Button" -defs["igButton"][1]["location"] = "imgui" +defs["igButton"][1]["location"] = "imgui:440" defs["igButton"][1]["namespace"] = "ImGui" defs["igButton"][1]["ov_cimguiname"] = "igButton" defs["igButton"][1]["ret"] = "bool" @@ -6271,7 +6330,7 @@ defs["igCalcItemWidth"][1]["call_args"] = "()" defs["igCalcItemWidth"][1]["cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["defaults"] = {} defs["igCalcItemWidth"][1]["funcname"] = "CalcItemWidth" -defs["igCalcItemWidth"][1]["location"] = "imgui" +defs["igCalcItemWidth"][1]["location"] = "imgui:367" defs["igCalcItemWidth"][1]["namespace"] = "ImGui" defs["igCalcItemWidth"][1]["ov_cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["ret"] = "float" @@ -6299,7 +6358,7 @@ defs["igCalcListClipping"][1]["call_args"] = "(items_count,items_height,out_item defs["igCalcListClipping"][1]["cimguiname"] = "igCalcListClipping" defs["igCalcListClipping"][1]["defaults"] = {} defs["igCalcListClipping"][1]["funcname"] = "CalcListClipping" -defs["igCalcListClipping"][1]["location"] = "imgui" +defs["igCalcListClipping"][1]["location"] = "imgui:722" defs["igCalcListClipping"][1]["namespace"] = "ImGui" defs["igCalcListClipping"][1]["ov_cimguiname"] = "igCalcListClipping" defs["igCalcListClipping"][1]["ret"] = "void" @@ -6330,10 +6389,10 @@ defs["igCalcTextSize"][1]["call_args"] = "(text,text_end,hide_text_after_double_ defs["igCalcTextSize"][1]["cimguiname"] = "igCalcTextSize" defs["igCalcTextSize"][1]["defaults"] = {} defs["igCalcTextSize"][1]["defaults"]["hide_text_after_double_hash"] = "false" -defs["igCalcTextSize"][1]["defaults"]["text_end"] = "((void*)0)" +defs["igCalcTextSize"][1]["defaults"]["text_end"] = "NULL" defs["igCalcTextSize"][1]["defaults"]["wrap_width"] = "-1.0f" defs["igCalcTextSize"][1]["funcname"] = "CalcTextSize" -defs["igCalcTextSize"][1]["location"] = "imgui" +defs["igCalcTextSize"][1]["location"] = "imgui:727" defs["igCalcTextSize"][1]["namespace"] = "ImGui" defs["igCalcTextSize"][1]["nonUDT"] = 1 defs["igCalcTextSize"][1]["ov_cimguiname"] = "igCalcTextSize" @@ -6354,7 +6413,7 @@ defs["igCaptureKeyboardFromApp"][1]["cimguiname"] = "igCaptureKeyboardFromApp" defs["igCaptureKeyboardFromApp"][1]["defaults"] = {} defs["igCaptureKeyboardFromApp"][1]["defaults"]["want_capture_keyboard_value"] = "true" defs["igCaptureKeyboardFromApp"][1]["funcname"] = "CaptureKeyboardFromApp" -defs["igCaptureKeyboardFromApp"][1]["location"] = "imgui" +defs["igCaptureKeyboardFromApp"][1]["location"] = "imgui:743" defs["igCaptureKeyboardFromApp"][1]["namespace"] = "ImGui" defs["igCaptureKeyboardFromApp"][1]["ov_cimguiname"] = "igCaptureKeyboardFromApp" defs["igCaptureKeyboardFromApp"][1]["ret"] = "void" @@ -6374,7 +6433,7 @@ defs["igCaptureMouseFromApp"][1]["cimguiname"] = "igCaptureMouseFromApp" defs["igCaptureMouseFromApp"][1]["defaults"] = {} defs["igCaptureMouseFromApp"][1]["defaults"]["want_capture_mouse_value"] = "true" defs["igCaptureMouseFromApp"][1]["funcname"] = "CaptureMouseFromApp" -defs["igCaptureMouseFromApp"][1]["location"] = "imgui" +defs["igCaptureMouseFromApp"][1]["location"] = "imgui:763" defs["igCaptureMouseFromApp"][1]["namespace"] = "ImGui" defs["igCaptureMouseFromApp"][1]["ov_cimguiname"] = "igCaptureMouseFromApp" defs["igCaptureMouseFromApp"][1]["ret"] = "void" @@ -6396,7 +6455,7 @@ defs["igCheckbox"][1]["call_args"] = "(label,v)" defs["igCheckbox"][1]["cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["defaults"] = {} defs["igCheckbox"][1]["funcname"] = "Checkbox" -defs["igCheckbox"][1]["location"] = "imgui" +defs["igCheckbox"][1]["location"] = "imgui:446" defs["igCheckbox"][1]["namespace"] = "ImGui" defs["igCheckbox"][1]["ov_cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["ret"] = "bool" @@ -6421,7 +6480,7 @@ defs["igCheckboxFlags"][1]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][1]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][1]["defaults"] = {} defs["igCheckboxFlags"][1]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][1]["location"] = "imgui" +defs["igCheckboxFlags"][1]["location"] = "imgui:447" defs["igCheckboxFlags"][1]["namespace"] = "ImGui" defs["igCheckboxFlags"][1]["ov_cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][1]["ret"] = "bool" @@ -6437,7 +6496,7 @@ defs["igCloseCurrentPopup"][1]["call_args"] = "()" defs["igCloseCurrentPopup"][1]["cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["defaults"] = {} defs["igCloseCurrentPopup"][1]["funcname"] = "CloseCurrentPopup" -defs["igCloseCurrentPopup"][1]["location"] = "imgui" +defs["igCloseCurrentPopup"][1]["location"] = "imgui:624" defs["igCloseCurrentPopup"][1]["namespace"] = "ImGui" defs["igCloseCurrentPopup"][1]["ov_cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["ret"] = "void" @@ -6460,7 +6519,7 @@ defs["igCollapsingHeader"][1]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][1]["defaults"] = {} defs["igCollapsingHeader"][1]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][1]["funcname"] = "CollapsingHeader" -defs["igCollapsingHeader"][1]["location"] = "imgui" +defs["igCollapsingHeader"][1]["location"] = "imgui:551" defs["igCollapsingHeader"][1]["namespace"] = "ImGui" defs["igCollapsingHeader"][1]["ov_cimguiname"] = "igCollapsingHeaderTreeNodeFlags" defs["igCollapsingHeader"][1]["ret"] = "bool" @@ -6484,7 +6543,7 @@ defs["igCollapsingHeader"][2]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][2]["defaults"] = {} defs["igCollapsingHeader"][2]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][2]["funcname"] = "CollapsingHeader" -defs["igCollapsingHeader"][2]["location"] = "imgui" +defs["igCollapsingHeader"][2]["location"] = "imgui:552" defs["igCollapsingHeader"][2]["namespace"] = "ImGui" defs["igCollapsingHeader"][2]["ov_cimguiname"] = "igCollapsingHeaderBoolPtr" defs["igCollapsingHeader"][2]["ret"] = "bool" @@ -6515,7 +6574,7 @@ defs["igColorButton"][1]["defaults"] = {} defs["igColorButton"][1]["defaults"]["flags"] = "0" defs["igColorButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igColorButton"][1]["funcname"] = "ColorButton" -defs["igColorButton"][1]["location"] = "imgui" +defs["igColorButton"][1]["location"] = "imgui:532" defs["igColorButton"][1]["namespace"] = "ImGui" defs["igColorButton"][1]["ov_cimguiname"] = "igColorButton" defs["igColorButton"][1]["ret"] = "bool" @@ -6534,7 +6593,7 @@ defs["igColorConvertFloat4ToU32"][1]["call_args"] = "(in)" defs["igColorConvertFloat4ToU32"][1]["cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["defaults"] = {} defs["igColorConvertFloat4ToU32"][1]["funcname"] = "ColorConvertFloat4ToU32" -defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui" +defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui:731" defs["igColorConvertFloat4ToU32"][1]["namespace"] = "ImGui" defs["igColorConvertFloat4ToU32"][1]["ov_cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["ret"] = "ImU32" @@ -6571,13 +6630,13 @@ defs["igColorConvertHSVtoRGB"][1]["call_args"] = "(h,s,v,*out_r,*out_g,*out_b)" defs["igColorConvertHSVtoRGB"][1]["cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["defaults"] = {} defs["igColorConvertHSVtoRGB"][1]["funcname"] = "ColorConvertHSVtoRGB" -defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui" +defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui:733" defs["igColorConvertHSVtoRGB"][1]["namespace"] = "ImGui" defs["igColorConvertHSVtoRGB"][1]["ov_cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["ret"] = "void" -defs["igColorConvertHSVtoRGB"][1]["signature"] = "(float,float,float,float,float,float)" +defs["igColorConvertHSVtoRGB"][1]["signature"] = "(float,float,float,float*,float*,float*)" defs["igColorConvertHSVtoRGB"][1]["stname"] = "" -defs["igColorConvertHSVtoRGB"]["(float,float,float,float,float,float)"] = defs["igColorConvertHSVtoRGB"][1] +defs["igColorConvertHSVtoRGB"]["(float,float,float,float*,float*,float*)"] = defs["igColorConvertHSVtoRGB"][1] defs["igColorConvertRGBtoHSV"] = {} defs["igColorConvertRGBtoHSV"][1] = {} defs["igColorConvertRGBtoHSV"][1]["args"] = "(float r,float g,float b,float* out_h,float* out_s,float* out_v)" @@ -6608,13 +6667,13 @@ defs["igColorConvertRGBtoHSV"][1]["call_args"] = "(r,g,b,*out_h,*out_s,*out_v)" defs["igColorConvertRGBtoHSV"][1]["cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["defaults"] = {} defs["igColorConvertRGBtoHSV"][1]["funcname"] = "ColorConvertRGBtoHSV" -defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui" +defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui:732" defs["igColorConvertRGBtoHSV"][1]["namespace"] = "ImGui" defs["igColorConvertRGBtoHSV"][1]["ov_cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["ret"] = "void" -defs["igColorConvertRGBtoHSV"][1]["signature"] = "(float,float,float,float,float,float)" +defs["igColorConvertRGBtoHSV"][1]["signature"] = "(float,float,float,float*,float*,float*)" defs["igColorConvertRGBtoHSV"][1]["stname"] = "" -defs["igColorConvertRGBtoHSV"]["(float,float,float,float,float,float)"] = defs["igColorConvertRGBtoHSV"][1] +defs["igColorConvertRGBtoHSV"]["(float,float,float,float*,float*,float*)"] = defs["igColorConvertRGBtoHSV"][1] defs["igColorConvertU32ToFloat4"] = {} defs["igColorConvertU32ToFloat4"][1] = {} defs["igColorConvertU32ToFloat4"][1]["args"] = "(ImVec4 *pOut,ImU32 in)" @@ -6630,7 +6689,7 @@ defs["igColorConvertU32ToFloat4"][1]["call_args"] = "(in)" defs["igColorConvertU32ToFloat4"][1]["cimguiname"] = "igColorConvertU32ToFloat4" defs["igColorConvertU32ToFloat4"][1]["defaults"] = {} defs["igColorConvertU32ToFloat4"][1]["funcname"] = "ColorConvertU32ToFloat4" -defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui" +defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui:730" defs["igColorConvertU32ToFloat4"][1]["namespace"] = "ImGui" defs["igColorConvertU32ToFloat4"][1]["nonUDT"] = 1 defs["igColorConvertU32ToFloat4"][1]["ov_cimguiname"] = "igColorConvertU32ToFloat4" @@ -6657,7 +6716,7 @@ defs["igColorEdit3"][1]["cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["defaults"] = {} defs["igColorEdit3"][1]["defaults"]["flags"] = "0" defs["igColorEdit3"][1]["funcname"] = "ColorEdit3" -defs["igColorEdit3"][1]["location"] = "imgui" +defs["igColorEdit3"][1]["location"] = "imgui:528" defs["igColorEdit3"][1]["namespace"] = "ImGui" defs["igColorEdit3"][1]["ov_cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["ret"] = "bool" @@ -6683,7 +6742,7 @@ defs["igColorEdit4"][1]["cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["defaults"] = {} defs["igColorEdit4"][1]["defaults"]["flags"] = "0" defs["igColorEdit4"][1]["funcname"] = "ColorEdit4" -defs["igColorEdit4"][1]["location"] = "imgui" +defs["igColorEdit4"][1]["location"] = "imgui:529" defs["igColorEdit4"][1]["namespace"] = "ImGui" defs["igColorEdit4"][1]["ov_cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["ret"] = "bool" @@ -6709,7 +6768,7 @@ defs["igColorPicker3"][1]["cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["defaults"] = {} defs["igColorPicker3"][1]["defaults"]["flags"] = "0" defs["igColorPicker3"][1]["funcname"] = "ColorPicker3" -defs["igColorPicker3"][1]["location"] = "imgui" +defs["igColorPicker3"][1]["location"] = "imgui:530" defs["igColorPicker3"][1]["namespace"] = "ImGui" defs["igColorPicker3"][1]["ov_cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["ret"] = "bool" @@ -6737,9 +6796,9 @@ defs["igColorPicker4"][1]["call_args"] = "(label,col,flags,ref_col)" defs["igColorPicker4"][1]["cimguiname"] = "igColorPicker4" defs["igColorPicker4"][1]["defaults"] = {} defs["igColorPicker4"][1]["defaults"]["flags"] = "0" -defs["igColorPicker4"][1]["defaults"]["ref_col"] = "((void*)0)" +defs["igColorPicker4"][1]["defaults"]["ref_col"] = "NULL" defs["igColorPicker4"][1]["funcname"] = "ColorPicker4" -defs["igColorPicker4"][1]["location"] = "imgui" +defs["igColorPicker4"][1]["location"] = "imgui:531" defs["igColorPicker4"][1]["namespace"] = "ImGui" defs["igColorPicker4"][1]["ov_cimguiname"] = "igColorPicker4" defs["igColorPicker4"][1]["ret"] = "bool" @@ -6765,9 +6824,9 @@ defs["igColumns"][1]["cimguiname"] = "igColumns" defs["igColumns"][1]["defaults"] = {} defs["igColumns"][1]["defaults"]["border"] = "true" defs["igColumns"][1]["defaults"]["count"] = "1" -defs["igColumns"][1]["defaults"]["id"] = "((void*)0)" +defs["igColumns"][1]["defaults"]["id"] = "NULL" defs["igColumns"][1]["funcname"] = "Columns" -defs["igColumns"][1]["location"] = "imgui" +defs["igColumns"][1]["location"] = "imgui:644" defs["igColumns"][1]["namespace"] = "ImGui" defs["igColumns"][1]["ov_cimguiname"] = "igColumns" defs["igColumns"][1]["ret"] = "void" @@ -6799,7 +6858,7 @@ defs["igCombo"][1]["cimguiname"] = "igCombo" defs["igCombo"][1]["defaults"] = {} defs["igCombo"][1]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][1]["funcname"] = "Combo" -defs["igCombo"][1]["location"] = "imgui" +defs["igCombo"][1]["location"] = "imgui:458" defs["igCombo"][1]["namespace"] = "ImGui" defs["igCombo"][1]["ov_cimguiname"] = "igComboStr_arr" defs["igCombo"][1]["ret"] = "bool" @@ -6826,7 +6885,7 @@ defs["igCombo"][2]["cimguiname"] = "igCombo" defs["igCombo"][2]["defaults"] = {} defs["igCombo"][2]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][2]["funcname"] = "Combo" -defs["igCombo"][2]["location"] = "imgui" +defs["igCombo"][2]["location"] = "imgui:459" defs["igCombo"][2]["namespace"] = "ImGui" defs["igCombo"][2]["ov_cimguiname"] = "igComboStr" defs["igCombo"][2]["ret"] = "bool" @@ -6861,7 +6920,7 @@ defs["igCombo"][3]["cimguiname"] = "igCombo" defs["igCombo"][3]["defaults"] = {} defs["igCombo"][3]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][3]["funcname"] = "Combo" -defs["igCombo"][3]["location"] = "imgui" +defs["igCombo"][3]["location"] = "imgui:460" defs["igCombo"][3]["namespace"] = "ImGui" defs["igCombo"][3]["ov_cimguiname"] = "igComboFnBoolPtr" defs["igCombo"][3]["ret"] = "bool" @@ -6881,9 +6940,9 @@ defs["igCreateContext"][1]["argsoriginal"] = "(ImFontAtlas* shared_font_atlas=(( defs["igCreateContext"][1]["call_args"] = "(shared_font_atlas)" defs["igCreateContext"][1]["cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["defaults"] = {} -defs["igCreateContext"][1]["defaults"]["shared_font_atlas"] = "((void*)0)" +defs["igCreateContext"][1]["defaults"]["shared_font_atlas"] = "NULL" defs["igCreateContext"][1]["funcname"] = "CreateContext" -defs["igCreateContext"][1]["location"] = "imgui" +defs["igCreateContext"][1]["location"] = "imgui:244" defs["igCreateContext"][1]["namespace"] = "ImGui" defs["igCreateContext"][1]["ov_cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["ret"] = "ImGuiContext*" @@ -6920,7 +6979,7 @@ defs["igDebugCheckVersionAndDataLayout"][1]["call_args"] = "(version_str,sz_io,s defs["igDebugCheckVersionAndDataLayout"][1]["cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["defaults"] = {} defs["igDebugCheckVersionAndDataLayout"][1]["funcname"] = "DebugCheckVersionAndDataLayout" -defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui" +defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui:779" defs["igDebugCheckVersionAndDataLayout"][1]["namespace"] = "ImGui" defs["igDebugCheckVersionAndDataLayout"][1]["ov_cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["ret"] = "bool" @@ -6938,9 +6997,9 @@ defs["igDestroyContext"][1]["argsoriginal"] = "(ImGuiContext* ctx=((void*)0))" defs["igDestroyContext"][1]["call_args"] = "(ctx)" defs["igDestroyContext"][1]["cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["defaults"] = {} -defs["igDestroyContext"][1]["defaults"]["ctx"] = "((void*)0)" +defs["igDestroyContext"][1]["defaults"]["ctx"] = "NULL" defs["igDestroyContext"][1]["funcname"] = "DestroyContext" -defs["igDestroyContext"][1]["location"] = "imgui" +defs["igDestroyContext"][1]["location"] = "imgui:245" defs["igDestroyContext"][1]["namespace"] = "ImGui" defs["igDestroyContext"][1]["ov_cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["ret"] = "void" @@ -6982,7 +7041,7 @@ defs["igDragFloat"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat"][1]["funcname"] = "DragFloat" -defs["igDragFloat"][1]["location"] = "imgui" +defs["igDragFloat"][1]["location"] = "imgui:473" defs["igDragFloat"][1]["namespace"] = "ImGui" defs["igDragFloat"][1]["ov_cimguiname"] = "igDragFloat" defs["igDragFloat"][1]["ret"] = "bool" @@ -7024,7 +7083,7 @@ defs["igDragFloat2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat2"][1]["funcname"] = "DragFloat2" -defs["igDragFloat2"][1]["location"] = "imgui" +defs["igDragFloat2"][1]["location"] = "imgui:474" defs["igDragFloat2"][1]["namespace"] = "ImGui" defs["igDragFloat2"][1]["ov_cimguiname"] = "igDragFloat2" defs["igDragFloat2"][1]["ret"] = "bool" @@ -7066,7 +7125,7 @@ defs["igDragFloat3"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat3"][1]["funcname"] = "DragFloat3" -defs["igDragFloat3"][1]["location"] = "imgui" +defs["igDragFloat3"][1]["location"] = "imgui:475" defs["igDragFloat3"][1]["namespace"] = "ImGui" defs["igDragFloat3"][1]["ov_cimguiname"] = "igDragFloat3" defs["igDragFloat3"][1]["ret"] = "bool" @@ -7108,7 +7167,7 @@ defs["igDragFloat4"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat4"][1]["funcname"] = "DragFloat4" -defs["igDragFloat4"][1]["location"] = "imgui" +defs["igDragFloat4"][1]["location"] = "imgui:476" defs["igDragFloat4"][1]["namespace"] = "ImGui" defs["igDragFloat4"][1]["ov_cimguiname"] = "igDragFloat4" defs["igDragFloat4"][1]["ret"] = "bool" @@ -7152,12 +7211,12 @@ defs["igDragFloatRange2"][1]["cimguiname"] = "igDragFloatRange2" defs["igDragFloatRange2"][1]["defaults"] = {} defs["igDragFloatRange2"][1]["defaults"]["flags"] = "0" defs["igDragFloatRange2"][1]["defaults"]["format"] = "\"%.3f\"" -defs["igDragFloatRange2"][1]["defaults"]["format_max"] = "((void*)0)" +defs["igDragFloatRange2"][1]["defaults"]["format_max"] = "NULL" defs["igDragFloatRange2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloatRange2"][1]["funcname"] = "DragFloatRange2" -defs["igDragFloatRange2"][1]["location"] = "imgui" +defs["igDragFloatRange2"][1]["location"] = "imgui:477" defs["igDragFloatRange2"][1]["namespace"] = "ImGui" defs["igDragFloatRange2"][1]["ov_cimguiname"] = "igDragFloatRange2" defs["igDragFloatRange2"][1]["ret"] = "bool" @@ -7199,7 +7258,7 @@ defs["igDragInt"][1]["defaults"]["v_max"] = "0" defs["igDragInt"][1]["defaults"]["v_min"] = "0" defs["igDragInt"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt"][1]["funcname"] = "DragInt" -defs["igDragInt"][1]["location"] = "imgui" +defs["igDragInt"][1]["location"] = "imgui:478" defs["igDragInt"][1]["namespace"] = "ImGui" defs["igDragInt"][1]["ov_cimguiname"] = "igDragInt" defs["igDragInt"][1]["ret"] = "bool" @@ -7241,7 +7300,7 @@ defs["igDragInt2"][1]["defaults"]["v_max"] = "0" defs["igDragInt2"][1]["defaults"]["v_min"] = "0" defs["igDragInt2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt2"][1]["funcname"] = "DragInt2" -defs["igDragInt2"][1]["location"] = "imgui" +defs["igDragInt2"][1]["location"] = "imgui:479" defs["igDragInt2"][1]["namespace"] = "ImGui" defs["igDragInt2"][1]["ov_cimguiname"] = "igDragInt2" defs["igDragInt2"][1]["ret"] = "bool" @@ -7283,7 +7342,7 @@ defs["igDragInt3"][1]["defaults"]["v_max"] = "0" defs["igDragInt3"][1]["defaults"]["v_min"] = "0" defs["igDragInt3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt3"][1]["funcname"] = "DragInt3" -defs["igDragInt3"][1]["location"] = "imgui" +defs["igDragInt3"][1]["location"] = "imgui:480" defs["igDragInt3"][1]["namespace"] = "ImGui" defs["igDragInt3"][1]["ov_cimguiname"] = "igDragInt3" defs["igDragInt3"][1]["ret"] = "bool" @@ -7325,7 +7384,7 @@ defs["igDragInt4"][1]["defaults"]["v_max"] = "0" defs["igDragInt4"][1]["defaults"]["v_min"] = "0" defs["igDragInt4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt4"][1]["funcname"] = "DragInt4" -defs["igDragInt4"][1]["location"] = "imgui" +defs["igDragInt4"][1]["location"] = "imgui:481" defs["igDragInt4"][1]["namespace"] = "ImGui" defs["igDragInt4"][1]["ov_cimguiname"] = "igDragInt4" defs["igDragInt4"][1]["ret"] = "bool" @@ -7369,12 +7428,12 @@ defs["igDragIntRange2"][1]["cimguiname"] = "igDragIntRange2" defs["igDragIntRange2"][1]["defaults"] = {} defs["igDragIntRange2"][1]["defaults"]["flags"] = "0" defs["igDragIntRange2"][1]["defaults"]["format"] = "\"%d\"" -defs["igDragIntRange2"][1]["defaults"]["format_max"] = "((void*)0)" +defs["igDragIntRange2"][1]["defaults"]["format_max"] = "NULL" defs["igDragIntRange2"][1]["defaults"]["v_max"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_min"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragIntRange2"][1]["funcname"] = "DragIntRange2" -defs["igDragIntRange2"][1]["location"] = "imgui" +defs["igDragIntRange2"][1]["location"] = "imgui:482" defs["igDragIntRange2"][1]["namespace"] = "ImGui" defs["igDragIntRange2"][1]["ov_cimguiname"] = "igDragIntRange2" defs["igDragIntRange2"][1]["ret"] = "bool" @@ -7414,11 +7473,11 @@ defs["igDragScalar"][1]["call_args"] = "(label,data_type,p_data,v_speed,p_min,p_ defs["igDragScalar"][1]["cimguiname"] = "igDragScalar" defs["igDragScalar"][1]["defaults"] = {} defs["igDragScalar"][1]["defaults"]["flags"] = "0" -defs["igDragScalar"][1]["defaults"]["format"] = "((void*)0)" -defs["igDragScalar"][1]["defaults"]["p_max"] = "((void*)0)" -defs["igDragScalar"][1]["defaults"]["p_min"] = "((void*)0)" +defs["igDragScalar"][1]["defaults"]["format"] = "NULL" +defs["igDragScalar"][1]["defaults"]["p_max"] = "NULL" +defs["igDragScalar"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalar"][1]["funcname"] = "DragScalar" -defs["igDragScalar"][1]["location"] = "imgui" +defs["igDragScalar"][1]["location"] = "imgui:483" defs["igDragScalar"][1]["namespace"] = "ImGui" defs["igDragScalar"][1]["ov_cimguiname"] = "igDragScalar" defs["igDragScalar"][1]["ret"] = "bool" @@ -7461,11 +7520,11 @@ defs["igDragScalarN"][1]["call_args"] = "(label,data_type,p_data,components,v_sp defs["igDragScalarN"][1]["cimguiname"] = "igDragScalarN" defs["igDragScalarN"][1]["defaults"] = {} defs["igDragScalarN"][1]["defaults"]["flags"] = "0" -defs["igDragScalarN"][1]["defaults"]["format"] = "((void*)0)" -defs["igDragScalarN"][1]["defaults"]["p_max"] = "((void*)0)" -defs["igDragScalarN"][1]["defaults"]["p_min"] = "((void*)0)" +defs["igDragScalarN"][1]["defaults"]["format"] = "NULL" +defs["igDragScalarN"][1]["defaults"]["p_max"] = "NULL" +defs["igDragScalarN"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalarN"][1]["funcname"] = "DragScalarN" -defs["igDragScalarN"][1]["location"] = "imgui" +defs["igDragScalarN"][1]["location"] = "imgui:484" defs["igDragScalarN"][1]["namespace"] = "ImGui" defs["igDragScalarN"][1]["ov_cimguiname"] = "igDragScalarN" defs["igDragScalarN"][1]["ret"] = "bool" @@ -7484,7 +7543,7 @@ defs["igDummy"][1]["call_args"] = "(size)" defs["igDummy"][1]["cimguiname"] = "igDummy" defs["igDummy"][1]["defaults"] = {} defs["igDummy"][1]["funcname"] = "Dummy" -defs["igDummy"][1]["location"] = "imgui" +defs["igDummy"][1]["location"] = "imgui:386" defs["igDummy"][1]["namespace"] = "ImGui" defs["igDummy"][1]["ov_cimguiname"] = "igDummy" defs["igDummy"][1]["ret"] = "void" @@ -7500,7 +7559,7 @@ defs["igEnd"][1]["call_args"] = "()" defs["igEnd"][1]["cimguiname"] = "igEnd" defs["igEnd"][1]["defaults"] = {} defs["igEnd"][1]["funcname"] = "End" -defs["igEnd"][1]["location"] = "imgui" +defs["igEnd"][1]["location"] = "imgui:285" defs["igEnd"][1]["namespace"] = "ImGui" defs["igEnd"][1]["ov_cimguiname"] = "igEnd" defs["igEnd"][1]["ret"] = "void" @@ -7516,7 +7575,7 @@ defs["igEndChild"][1]["call_args"] = "()" defs["igEndChild"][1]["cimguiname"] = "igEndChild" defs["igEndChild"][1]["defaults"] = {} defs["igEndChild"][1]["funcname"] = "EndChild" -defs["igEndChild"][1]["location"] = "imgui" +defs["igEndChild"][1]["location"] = "imgui:294" defs["igEndChild"][1]["namespace"] = "ImGui" defs["igEndChild"][1]["ov_cimguiname"] = "igEndChild" defs["igEndChild"][1]["ret"] = "void" @@ -7532,7 +7591,7 @@ defs["igEndChildFrame"][1]["call_args"] = "()" defs["igEndChildFrame"][1]["cimguiname"] = "igEndChildFrame" defs["igEndChildFrame"][1]["defaults"] = {} defs["igEndChildFrame"][1]["funcname"] = "EndChildFrame" -defs["igEndChildFrame"][1]["location"] = "imgui" +defs["igEndChildFrame"][1]["location"] = "imgui:724" defs["igEndChildFrame"][1]["namespace"] = "ImGui" defs["igEndChildFrame"][1]["ov_cimguiname"] = "igEndChildFrame" defs["igEndChildFrame"][1]["ret"] = "void" @@ -7548,7 +7607,7 @@ defs["igEndCombo"][1]["call_args"] = "()" defs["igEndCombo"][1]["cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["defaults"] = {} defs["igEndCombo"][1]["funcname"] = "EndCombo" -defs["igEndCombo"][1]["location"] = "imgui" +defs["igEndCombo"][1]["location"] = "imgui:457" defs["igEndCombo"][1]["namespace"] = "ImGui" defs["igEndCombo"][1]["ov_cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["ret"] = "void" @@ -7564,7 +7623,7 @@ defs["igEndDragDropSource"][1]["call_args"] = "()" defs["igEndDragDropSource"][1]["cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["defaults"] = {} defs["igEndDragDropSource"][1]["funcname"] = "EndDragDropSource" -defs["igEndDragDropSource"][1]["location"] = "imgui" +defs["igEndDragDropSource"][1]["location"] = "imgui:675" defs["igEndDragDropSource"][1]["namespace"] = "ImGui" defs["igEndDragDropSource"][1]["ov_cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["ret"] = "void" @@ -7580,7 +7639,7 @@ defs["igEndDragDropTarget"][1]["call_args"] = "()" defs["igEndDragDropTarget"][1]["cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["defaults"] = {} defs["igEndDragDropTarget"][1]["funcname"] = "EndDragDropTarget" -defs["igEndDragDropTarget"][1]["location"] = "imgui" +defs["igEndDragDropTarget"][1]["location"] = "imgui:678" defs["igEndDragDropTarget"][1]["namespace"] = "ImGui" defs["igEndDragDropTarget"][1]["ov_cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["ret"] = "void" @@ -7596,7 +7655,7 @@ defs["igEndFrame"][1]["call_args"] = "()" defs["igEndFrame"][1]["cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["defaults"] = {} defs["igEndFrame"][1]["funcname"] = "EndFrame" -defs["igEndFrame"][1]["location"] = "imgui" +defs["igEndFrame"][1]["location"] = "imgui:253" defs["igEndFrame"][1]["namespace"] = "ImGui" defs["igEndFrame"][1]["ov_cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["ret"] = "void" @@ -7612,7 +7671,7 @@ defs["igEndGroup"][1]["call_args"] = "()" defs["igEndGroup"][1]["cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["defaults"] = {} defs["igEndGroup"][1]["funcname"] = "EndGroup" -defs["igEndGroup"][1]["location"] = "imgui" +defs["igEndGroup"][1]["location"] = "imgui:390" defs["igEndGroup"][1]["namespace"] = "ImGui" defs["igEndGroup"][1]["ov_cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["ret"] = "void" @@ -7628,7 +7687,7 @@ defs["igEndMainMenuBar"][1]["call_args"] = "()" defs["igEndMainMenuBar"][1]["cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["defaults"] = {} defs["igEndMainMenuBar"][1]["funcname"] = "EndMainMenuBar" -defs["igEndMainMenuBar"][1]["location"] = "imgui" +defs["igEndMainMenuBar"][1]["location"] = "imgui:589" defs["igEndMainMenuBar"][1]["namespace"] = "ImGui" defs["igEndMainMenuBar"][1]["ov_cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["ret"] = "void" @@ -7644,7 +7703,7 @@ defs["igEndMenu"][1]["call_args"] = "()" defs["igEndMenu"][1]["cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["defaults"] = {} defs["igEndMenu"][1]["funcname"] = "EndMenu" -defs["igEndMenu"][1]["location"] = "imgui" +defs["igEndMenu"][1]["location"] = "imgui:591" defs["igEndMenu"][1]["namespace"] = "ImGui" defs["igEndMenu"][1]["ov_cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["ret"] = "void" @@ -7660,7 +7719,7 @@ defs["igEndMenuBar"][1]["call_args"] = "()" defs["igEndMenuBar"][1]["cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["defaults"] = {} defs["igEndMenuBar"][1]["funcname"] = "EndMenuBar" -defs["igEndMenuBar"][1]["location"] = "imgui" +defs["igEndMenuBar"][1]["location"] = "imgui:587" defs["igEndMenuBar"][1]["namespace"] = "ImGui" defs["igEndMenuBar"][1]["ov_cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["ret"] = "void" @@ -7676,7 +7735,7 @@ defs["igEndPopup"][1]["call_args"] = "()" defs["igEndPopup"][1]["cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["defaults"] = {} defs["igEndPopup"][1]["funcname"] = "EndPopup" -defs["igEndPopup"][1]["location"] = "imgui" +defs["igEndPopup"][1]["location"] = "imgui:615" defs["igEndPopup"][1]["namespace"] = "ImGui" defs["igEndPopup"][1]["ov_cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["ret"] = "void" @@ -7692,7 +7751,7 @@ defs["igEndTabBar"][1]["call_args"] = "()" defs["igEndTabBar"][1]["cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["defaults"] = {} defs["igEndTabBar"][1]["funcname"] = "EndTabBar" -defs["igEndTabBar"][1]["location"] = "imgui" +defs["igEndTabBar"][1]["location"] = "imgui:655" defs["igEndTabBar"][1]["namespace"] = "ImGui" defs["igEndTabBar"][1]["ov_cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["ret"] = "void" @@ -7708,7 +7767,7 @@ defs["igEndTabItem"][1]["call_args"] = "()" defs["igEndTabItem"][1]["cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["defaults"] = {} defs["igEndTabItem"][1]["funcname"] = "EndTabItem" -defs["igEndTabItem"][1]["location"] = "imgui" +defs["igEndTabItem"][1]["location"] = "imgui:657" defs["igEndTabItem"][1]["namespace"] = "ImGui" defs["igEndTabItem"][1]["ov_cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["ret"] = "void" @@ -7724,7 +7783,7 @@ defs["igEndTooltip"][1]["call_args"] = "()" defs["igEndTooltip"][1]["cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["defaults"] = {} defs["igEndTooltip"][1]["funcname"] = "EndTooltip" -defs["igEndTooltip"][1]["location"] = "imgui" +defs["igEndTooltip"][1]["location"] = "imgui:598" defs["igEndTooltip"][1]["namespace"] = "ImGui" defs["igEndTooltip"][1]["ov_cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["ret"] = "void" @@ -7740,7 +7799,7 @@ defs["igGetBackgroundDrawList"][1]["call_args"] = "()" defs["igGetBackgroundDrawList"][1]["cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][1]["defaults"] = {} defs["igGetBackgroundDrawList"][1]["funcname"] = "GetBackgroundDrawList" -defs["igGetBackgroundDrawList"][1]["location"] = "imgui" +defs["igGetBackgroundDrawList"][1]["location"] = "imgui:716" defs["igGetBackgroundDrawList"][1]["namespace"] = "ImGui" defs["igGetBackgroundDrawList"][1]["ov_cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][1]["ret"] = "ImDrawList*" @@ -7756,7 +7815,7 @@ defs["igGetClipboardText"][1]["call_args"] = "()" defs["igGetClipboardText"][1]["cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["defaults"] = {} defs["igGetClipboardText"][1]["funcname"] = "GetClipboardText" -defs["igGetClipboardText"][1]["location"] = "imgui" +defs["igGetClipboardText"][1]["location"] = "imgui:767" defs["igGetClipboardText"][1]["namespace"] = "ImGui" defs["igGetClipboardText"][1]["ov_cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["ret"] = "const char*" @@ -7779,7 +7838,7 @@ defs["igGetColorU32"][1]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][1]["defaults"] = {} defs["igGetColorU32"][1]["defaults"]["alpha_mul"] = "1.0f" defs["igGetColorU32"][1]["funcname"] = "GetColorU32" -defs["igGetColorU32"][1]["location"] = "imgui" +defs["igGetColorU32"][1]["location"] = "imgui:359" defs["igGetColorU32"][1]["namespace"] = "ImGui" defs["igGetColorU32"][1]["ov_cimguiname"] = "igGetColorU32Col" defs["igGetColorU32"][1]["ret"] = "ImU32" @@ -7796,7 +7855,7 @@ defs["igGetColorU32"][2]["call_args"] = "(col)" defs["igGetColorU32"][2]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][2]["defaults"] = {} defs["igGetColorU32"][2]["funcname"] = "GetColorU32" -defs["igGetColorU32"][2]["location"] = "imgui" +defs["igGetColorU32"][2]["location"] = "imgui:360" defs["igGetColorU32"][2]["namespace"] = "ImGui" defs["igGetColorU32"][2]["ov_cimguiname"] = "igGetColorU32Vec4" defs["igGetColorU32"][2]["ret"] = "ImU32" @@ -7813,7 +7872,7 @@ defs["igGetColorU32"][3]["call_args"] = "(col)" defs["igGetColorU32"][3]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][3]["defaults"] = {} defs["igGetColorU32"][3]["funcname"] = "GetColorU32" -defs["igGetColorU32"][3]["location"] = "imgui" +defs["igGetColorU32"][3]["location"] = "imgui:361" defs["igGetColorU32"][3]["namespace"] = "ImGui" defs["igGetColorU32"][3]["ov_cimguiname"] = "igGetColorU32U32" defs["igGetColorU32"][3]["ret"] = "ImU32" @@ -7831,7 +7890,7 @@ defs["igGetColumnIndex"][1]["call_args"] = "()" defs["igGetColumnIndex"][1]["cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["defaults"] = {} defs["igGetColumnIndex"][1]["funcname"] = "GetColumnIndex" -defs["igGetColumnIndex"][1]["location"] = "imgui" +defs["igGetColumnIndex"][1]["location"] = "imgui:646" defs["igGetColumnIndex"][1]["namespace"] = "ImGui" defs["igGetColumnIndex"][1]["ov_cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["ret"] = "int" @@ -7851,7 +7910,7 @@ defs["igGetColumnOffset"][1]["cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["defaults"] = {} defs["igGetColumnOffset"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnOffset"][1]["funcname"] = "GetColumnOffset" -defs["igGetColumnOffset"][1]["location"] = "imgui" +defs["igGetColumnOffset"][1]["location"] = "imgui:649" defs["igGetColumnOffset"][1]["namespace"] = "ImGui" defs["igGetColumnOffset"][1]["ov_cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["ret"] = "float" @@ -7871,7 +7930,7 @@ defs["igGetColumnWidth"][1]["cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["defaults"] = {} defs["igGetColumnWidth"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnWidth"][1]["funcname"] = "GetColumnWidth" -defs["igGetColumnWidth"][1]["location"] = "imgui" +defs["igGetColumnWidth"][1]["location"] = "imgui:647" defs["igGetColumnWidth"][1]["namespace"] = "ImGui" defs["igGetColumnWidth"][1]["ov_cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["ret"] = "float" @@ -7887,7 +7946,7 @@ defs["igGetColumnsCount"][1]["call_args"] = "()" defs["igGetColumnsCount"][1]["cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["defaults"] = {} defs["igGetColumnsCount"][1]["funcname"] = "GetColumnsCount" -defs["igGetColumnsCount"][1]["location"] = "imgui" +defs["igGetColumnsCount"][1]["location"] = "imgui:651" defs["igGetColumnsCount"][1]["namespace"] = "ImGui" defs["igGetColumnsCount"][1]["ov_cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["ret"] = "int" @@ -7906,7 +7965,7 @@ defs["igGetContentRegionAvail"][1]["call_args"] = "()" defs["igGetContentRegionAvail"][1]["cimguiname"] = "igGetContentRegionAvail" defs["igGetContentRegionAvail"][1]["defaults"] = {} defs["igGetContentRegionAvail"][1]["funcname"] = "GetContentRegionAvail" -defs["igGetContentRegionAvail"][1]["location"] = "imgui" +defs["igGetContentRegionAvail"][1]["location"] = "imgui:329" defs["igGetContentRegionAvail"][1]["namespace"] = "ImGui" defs["igGetContentRegionAvail"][1]["nonUDT"] = 1 defs["igGetContentRegionAvail"][1]["ov_cimguiname"] = "igGetContentRegionAvail" @@ -7926,7 +7985,7 @@ defs["igGetContentRegionMax"][1]["call_args"] = "()" defs["igGetContentRegionMax"][1]["cimguiname"] = "igGetContentRegionMax" defs["igGetContentRegionMax"][1]["defaults"] = {} defs["igGetContentRegionMax"][1]["funcname"] = "GetContentRegionMax" -defs["igGetContentRegionMax"][1]["location"] = "imgui" +defs["igGetContentRegionMax"][1]["location"] = "imgui:328" defs["igGetContentRegionMax"][1]["namespace"] = "ImGui" defs["igGetContentRegionMax"][1]["nonUDT"] = 1 defs["igGetContentRegionMax"][1]["ov_cimguiname"] = "igGetContentRegionMax" @@ -7943,7 +8002,7 @@ defs["igGetCurrentContext"][1]["call_args"] = "()" defs["igGetCurrentContext"][1]["cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["defaults"] = {} defs["igGetCurrentContext"][1]["funcname"] = "GetCurrentContext" -defs["igGetCurrentContext"][1]["location"] = "imgui" +defs["igGetCurrentContext"][1]["location"] = "imgui:246" defs["igGetCurrentContext"][1]["namespace"] = "ImGui" defs["igGetCurrentContext"][1]["ov_cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["ret"] = "ImGuiContext*" @@ -7962,7 +8021,7 @@ defs["igGetCursorPos"][1]["call_args"] = "()" defs["igGetCursorPos"][1]["cimguiname"] = "igGetCursorPos" defs["igGetCursorPos"][1]["defaults"] = {} defs["igGetCursorPos"][1]["funcname"] = "GetCursorPos" -defs["igGetCursorPos"][1]["location"] = "imgui" +defs["igGetCursorPos"][1]["location"] = "imgui:391" defs["igGetCursorPos"][1]["namespace"] = "ImGui" defs["igGetCursorPos"][1]["nonUDT"] = 1 defs["igGetCursorPos"][1]["ov_cimguiname"] = "igGetCursorPos" @@ -7979,7 +8038,7 @@ defs["igGetCursorPosX"][1]["call_args"] = "()" defs["igGetCursorPosX"][1]["cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["defaults"] = {} defs["igGetCursorPosX"][1]["funcname"] = "GetCursorPosX" -defs["igGetCursorPosX"][1]["location"] = "imgui" +defs["igGetCursorPosX"][1]["location"] = "imgui:392" defs["igGetCursorPosX"][1]["namespace"] = "ImGui" defs["igGetCursorPosX"][1]["ov_cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["ret"] = "float" @@ -7995,7 +8054,7 @@ defs["igGetCursorPosY"][1]["call_args"] = "()" defs["igGetCursorPosY"][1]["cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["defaults"] = {} defs["igGetCursorPosY"][1]["funcname"] = "GetCursorPosY" -defs["igGetCursorPosY"][1]["location"] = "imgui" +defs["igGetCursorPosY"][1]["location"] = "imgui:393" defs["igGetCursorPosY"][1]["namespace"] = "ImGui" defs["igGetCursorPosY"][1]["ov_cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["ret"] = "float" @@ -8014,7 +8073,7 @@ defs["igGetCursorScreenPos"][1]["call_args"] = "()" defs["igGetCursorScreenPos"][1]["cimguiname"] = "igGetCursorScreenPos" defs["igGetCursorScreenPos"][1]["defaults"] = {} defs["igGetCursorScreenPos"][1]["funcname"] = "GetCursorScreenPos" -defs["igGetCursorScreenPos"][1]["location"] = "imgui" +defs["igGetCursorScreenPos"][1]["location"] = "imgui:398" defs["igGetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igGetCursorScreenPos"][1]["nonUDT"] = 1 defs["igGetCursorScreenPos"][1]["ov_cimguiname"] = "igGetCursorScreenPos" @@ -8034,7 +8093,7 @@ defs["igGetCursorStartPos"][1]["call_args"] = "()" defs["igGetCursorStartPos"][1]["cimguiname"] = "igGetCursorStartPos" defs["igGetCursorStartPos"][1]["defaults"] = {} defs["igGetCursorStartPos"][1]["funcname"] = "GetCursorStartPos" -defs["igGetCursorStartPos"][1]["location"] = "imgui" +defs["igGetCursorStartPos"][1]["location"] = "imgui:397" defs["igGetCursorStartPos"][1]["namespace"] = "ImGui" defs["igGetCursorStartPos"][1]["nonUDT"] = 1 defs["igGetCursorStartPos"][1]["ov_cimguiname"] = "igGetCursorStartPos" @@ -8051,7 +8110,7 @@ defs["igGetDragDropPayload"][1]["call_args"] = "()" defs["igGetDragDropPayload"][1]["cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["defaults"] = {} defs["igGetDragDropPayload"][1]["funcname"] = "GetDragDropPayload" -defs["igGetDragDropPayload"][1]["location"] = "imgui" +defs["igGetDragDropPayload"][1]["location"] = "imgui:679" defs["igGetDragDropPayload"][1]["namespace"] = "ImGui" defs["igGetDragDropPayload"][1]["ov_cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -8067,7 +8126,7 @@ defs["igGetDrawData"][1]["call_args"] = "()" defs["igGetDrawData"][1]["cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["defaults"] = {} defs["igGetDrawData"][1]["funcname"] = "GetDrawData" -defs["igGetDrawData"][1]["location"] = "imgui" +defs["igGetDrawData"][1]["location"] = "imgui:255" defs["igGetDrawData"][1]["namespace"] = "ImGui" defs["igGetDrawData"][1]["ov_cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["ret"] = "ImDrawData*" @@ -8083,7 +8142,7 @@ defs["igGetDrawListSharedData"][1]["call_args"] = "()" defs["igGetDrawListSharedData"][1]["cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["defaults"] = {} defs["igGetDrawListSharedData"][1]["funcname"] = "GetDrawListSharedData" -defs["igGetDrawListSharedData"][1]["location"] = "imgui" +defs["igGetDrawListSharedData"][1]["location"] = "imgui:718" defs["igGetDrawListSharedData"][1]["namespace"] = "ImGui" defs["igGetDrawListSharedData"][1]["ov_cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["ret"] = "ImDrawListSharedData*" @@ -8099,7 +8158,7 @@ defs["igGetFont"][1]["call_args"] = "()" defs["igGetFont"][1]["cimguiname"] = "igGetFont" defs["igGetFont"][1]["defaults"] = {} defs["igGetFont"][1]["funcname"] = "GetFont" -defs["igGetFont"][1]["location"] = "imgui" +defs["igGetFont"][1]["location"] = "imgui:356" defs["igGetFont"][1]["namespace"] = "ImGui" defs["igGetFont"][1]["ov_cimguiname"] = "igGetFont" defs["igGetFont"][1]["ret"] = "ImFont*" @@ -8115,7 +8174,7 @@ defs["igGetFontSize"][1]["call_args"] = "()" defs["igGetFontSize"][1]["cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["defaults"] = {} defs["igGetFontSize"][1]["funcname"] = "GetFontSize" -defs["igGetFontSize"][1]["location"] = "imgui" +defs["igGetFontSize"][1]["location"] = "imgui:357" defs["igGetFontSize"][1]["namespace"] = "ImGui" defs["igGetFontSize"][1]["ov_cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["ret"] = "float" @@ -8134,7 +8193,7 @@ defs["igGetFontTexUvWhitePixel"][1]["call_args"] = "()" defs["igGetFontTexUvWhitePixel"][1]["cimguiname"] = "igGetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][1]["defaults"] = {} defs["igGetFontTexUvWhitePixel"][1]["funcname"] = "GetFontTexUvWhitePixel" -defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui" +defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui:358" defs["igGetFontTexUvWhitePixel"][1]["namespace"] = "ImGui" defs["igGetFontTexUvWhitePixel"][1]["nonUDT"] = 1 defs["igGetFontTexUvWhitePixel"][1]["ov_cimguiname"] = "igGetFontTexUvWhitePixel" @@ -8151,7 +8210,7 @@ defs["igGetForegroundDrawList"][1]["call_args"] = "()" defs["igGetForegroundDrawList"][1]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][1]["defaults"] = {} defs["igGetForegroundDrawList"][1]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][1]["location"] = "imgui" +defs["igGetForegroundDrawList"][1]["location"] = "imgui:717" defs["igGetForegroundDrawList"][1]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][1]["ov_cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][1]["ret"] = "ImDrawList*" @@ -8167,7 +8226,7 @@ defs["igGetFrameCount"][1]["call_args"] = "()" defs["igGetFrameCount"][1]["cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["defaults"] = {} defs["igGetFrameCount"][1]["funcname"] = "GetFrameCount" -defs["igGetFrameCount"][1]["location"] = "imgui" +defs["igGetFrameCount"][1]["location"] = "imgui:715" defs["igGetFrameCount"][1]["namespace"] = "ImGui" defs["igGetFrameCount"][1]["ov_cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["ret"] = "int" @@ -8183,7 +8242,7 @@ defs["igGetFrameHeight"][1]["call_args"] = "()" defs["igGetFrameHeight"][1]["cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["defaults"] = {} defs["igGetFrameHeight"][1]["funcname"] = "GetFrameHeight" -defs["igGetFrameHeight"][1]["location"] = "imgui" +defs["igGetFrameHeight"][1]["location"] = "imgui:403" defs["igGetFrameHeight"][1]["namespace"] = "ImGui" defs["igGetFrameHeight"][1]["ov_cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["ret"] = "float" @@ -8199,7 +8258,7 @@ defs["igGetFrameHeightWithSpacing"][1]["call_args"] = "()" defs["igGetFrameHeightWithSpacing"][1]["cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["defaults"] = {} defs["igGetFrameHeightWithSpacing"][1]["funcname"] = "GetFrameHeightWithSpacing" -defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui" +defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui:404" defs["igGetFrameHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetFrameHeightWithSpacing"][1]["ov_cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["ret"] = "float" @@ -8218,7 +8277,7 @@ defs["igGetID"][1]["call_args"] = "(str_id)" defs["igGetID"][1]["cimguiname"] = "igGetID" defs["igGetID"][1]["defaults"] = {} defs["igGetID"][1]["funcname"] = "GetID" -defs["igGetID"][1]["location"] = "imgui" +defs["igGetID"][1]["location"] = "imgui:418" defs["igGetID"][1]["namespace"] = "ImGui" defs["igGetID"][1]["ov_cimguiname"] = "igGetIDStr" defs["igGetID"][1]["ret"] = "ImGuiID" @@ -8238,7 +8297,7 @@ defs["igGetID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igGetID"][2]["cimguiname"] = "igGetID" defs["igGetID"][2]["defaults"] = {} defs["igGetID"][2]["funcname"] = "GetID" -defs["igGetID"][2]["location"] = "imgui" +defs["igGetID"][2]["location"] = "imgui:419" defs["igGetID"][2]["namespace"] = "ImGui" defs["igGetID"][2]["ov_cimguiname"] = "igGetIDStrStr" defs["igGetID"][2]["ret"] = "ImGuiID" @@ -8255,7 +8314,7 @@ defs["igGetID"][3]["call_args"] = "(ptr_id)" defs["igGetID"][3]["cimguiname"] = "igGetID" defs["igGetID"][3]["defaults"] = {} defs["igGetID"][3]["funcname"] = "GetID" -defs["igGetID"][3]["location"] = "imgui" +defs["igGetID"][3]["location"] = "imgui:420" defs["igGetID"][3]["namespace"] = "ImGui" defs["igGetID"][3]["ov_cimguiname"] = "igGetIDPtr" defs["igGetID"][3]["ret"] = "ImGuiID" @@ -8273,7 +8332,7 @@ defs["igGetIO"][1]["call_args"] = "()" defs["igGetIO"][1]["cimguiname"] = "igGetIO" defs["igGetIO"][1]["defaults"] = {} defs["igGetIO"][1]["funcname"] = "GetIO" -defs["igGetIO"][1]["location"] = "imgui" +defs["igGetIO"][1]["location"] = "imgui:250" defs["igGetIO"][1]["namespace"] = "ImGui" defs["igGetIO"][1]["ov_cimguiname"] = "igGetIO" defs["igGetIO"][1]["ret"] = "ImGuiIO*" @@ -8293,7 +8352,7 @@ defs["igGetItemRectMax"][1]["call_args"] = "()" defs["igGetItemRectMax"][1]["cimguiname"] = "igGetItemRectMax" defs["igGetItemRectMax"][1]["defaults"] = {} defs["igGetItemRectMax"][1]["funcname"] = "GetItemRectMax" -defs["igGetItemRectMax"][1]["location"] = "imgui" +defs["igGetItemRectMax"][1]["location"] = "imgui:707" defs["igGetItemRectMax"][1]["namespace"] = "ImGui" defs["igGetItemRectMax"][1]["nonUDT"] = 1 defs["igGetItemRectMax"][1]["ov_cimguiname"] = "igGetItemRectMax" @@ -8313,7 +8372,7 @@ defs["igGetItemRectMin"][1]["call_args"] = "()" defs["igGetItemRectMin"][1]["cimguiname"] = "igGetItemRectMin" defs["igGetItemRectMin"][1]["defaults"] = {} defs["igGetItemRectMin"][1]["funcname"] = "GetItemRectMin" -defs["igGetItemRectMin"][1]["location"] = "imgui" +defs["igGetItemRectMin"][1]["location"] = "imgui:706" defs["igGetItemRectMin"][1]["namespace"] = "ImGui" defs["igGetItemRectMin"][1]["nonUDT"] = 1 defs["igGetItemRectMin"][1]["ov_cimguiname"] = "igGetItemRectMin" @@ -8333,7 +8392,7 @@ defs["igGetItemRectSize"][1]["call_args"] = "()" defs["igGetItemRectSize"][1]["cimguiname"] = "igGetItemRectSize" defs["igGetItemRectSize"][1]["defaults"] = {} defs["igGetItemRectSize"][1]["funcname"] = "GetItemRectSize" -defs["igGetItemRectSize"][1]["location"] = "imgui" +defs["igGetItemRectSize"][1]["location"] = "imgui:708" defs["igGetItemRectSize"][1]["namespace"] = "ImGui" defs["igGetItemRectSize"][1]["nonUDT"] = 1 defs["igGetItemRectSize"][1]["ov_cimguiname"] = "igGetItemRectSize" @@ -8353,7 +8412,7 @@ defs["igGetKeyIndex"][1]["call_args"] = "(imgui_key)" defs["igGetKeyIndex"][1]["cimguiname"] = "igGetKeyIndex" defs["igGetKeyIndex"][1]["defaults"] = {} defs["igGetKeyIndex"][1]["funcname"] = "GetKeyIndex" -defs["igGetKeyIndex"][1]["location"] = "imgui" +defs["igGetKeyIndex"][1]["location"] = "imgui:738" defs["igGetKeyIndex"][1]["namespace"] = "ImGui" defs["igGetKeyIndex"][1]["ov_cimguiname"] = "igGetKeyIndex" defs["igGetKeyIndex"][1]["ret"] = "int" @@ -8378,7 +8437,7 @@ defs["igGetKeyPressedAmount"][1]["call_args"] = "(key_index,repeat_delay,rate)" defs["igGetKeyPressedAmount"][1]["cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["defaults"] = {} defs["igGetKeyPressedAmount"][1]["funcname"] = "GetKeyPressedAmount" -defs["igGetKeyPressedAmount"][1]["location"] = "imgui" +defs["igGetKeyPressedAmount"][1]["location"] = "imgui:742" defs["igGetKeyPressedAmount"][1]["namespace"] = "ImGui" defs["igGetKeyPressedAmount"][1]["ov_cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["ret"] = "int" @@ -8394,7 +8453,7 @@ defs["igGetMouseCursor"][1]["call_args"] = "()" defs["igGetMouseCursor"][1]["cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["defaults"] = {} defs["igGetMouseCursor"][1]["funcname"] = "GetMouseCursor" -defs["igGetMouseCursor"][1]["location"] = "imgui" +defs["igGetMouseCursor"][1]["location"] = "imgui:761" defs["igGetMouseCursor"][1]["namespace"] = "ImGui" defs["igGetMouseCursor"][1]["ov_cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["ret"] = "ImGuiMouseCursor" @@ -8421,7 +8480,7 @@ defs["igGetMouseDragDelta"][1]["defaults"] = {} defs["igGetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igGetMouseDragDelta"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igGetMouseDragDelta"][1]["funcname"] = "GetMouseDragDelta" -defs["igGetMouseDragDelta"][1]["location"] = "imgui" +defs["igGetMouseDragDelta"][1]["location"] = "imgui:759" defs["igGetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igGetMouseDragDelta"][1]["nonUDT"] = 1 defs["igGetMouseDragDelta"][1]["ov_cimguiname"] = "igGetMouseDragDelta" @@ -8441,7 +8500,7 @@ defs["igGetMousePos"][1]["call_args"] = "()" defs["igGetMousePos"][1]["cimguiname"] = "igGetMousePos" defs["igGetMousePos"][1]["defaults"] = {} defs["igGetMousePos"][1]["funcname"] = "GetMousePos" -defs["igGetMousePos"][1]["location"] = "imgui" +defs["igGetMousePos"][1]["location"] = "imgui:756" defs["igGetMousePos"][1]["namespace"] = "ImGui" defs["igGetMousePos"][1]["nonUDT"] = 1 defs["igGetMousePos"][1]["ov_cimguiname"] = "igGetMousePos" @@ -8461,7 +8520,7 @@ defs["igGetMousePosOnOpeningCurrentPopup"][1]["call_args"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][1]["cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" defs["igGetMousePosOnOpeningCurrentPopup"][1]["defaults"] = {} defs["igGetMousePosOnOpeningCurrentPopup"][1]["funcname"] = "GetMousePosOnOpeningCurrentPopup" -defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui" +defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui:757" defs["igGetMousePosOnOpeningCurrentPopup"][1]["namespace"] = "ImGui" defs["igGetMousePosOnOpeningCurrentPopup"][1]["nonUDT"] = 1 defs["igGetMousePosOnOpeningCurrentPopup"][1]["ov_cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" @@ -8478,7 +8537,7 @@ defs["igGetScrollMaxX"][1]["call_args"] = "()" defs["igGetScrollMaxX"][1]["cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["defaults"] = {} defs["igGetScrollMaxX"][1]["funcname"] = "GetScrollMaxX" -defs["igGetScrollMaxX"][1]["location"] = "imgui" +defs["igGetScrollMaxX"][1]["location"] = "imgui:337" defs["igGetScrollMaxX"][1]["namespace"] = "ImGui" defs["igGetScrollMaxX"][1]["ov_cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["ret"] = "float" @@ -8494,7 +8553,7 @@ defs["igGetScrollMaxY"][1]["call_args"] = "()" defs["igGetScrollMaxY"][1]["cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["defaults"] = {} defs["igGetScrollMaxY"][1]["funcname"] = "GetScrollMaxY" -defs["igGetScrollMaxY"][1]["location"] = "imgui" +defs["igGetScrollMaxY"][1]["location"] = "imgui:338" defs["igGetScrollMaxY"][1]["namespace"] = "ImGui" defs["igGetScrollMaxY"][1]["ov_cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["ret"] = "float" @@ -8510,7 +8569,7 @@ defs["igGetScrollX"][1]["call_args"] = "()" defs["igGetScrollX"][1]["cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["defaults"] = {} defs["igGetScrollX"][1]["funcname"] = "GetScrollX" -defs["igGetScrollX"][1]["location"] = "imgui" +defs["igGetScrollX"][1]["location"] = "imgui:335" defs["igGetScrollX"][1]["namespace"] = "ImGui" defs["igGetScrollX"][1]["ov_cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["ret"] = "float" @@ -8526,7 +8585,7 @@ defs["igGetScrollY"][1]["call_args"] = "()" defs["igGetScrollY"][1]["cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["defaults"] = {} defs["igGetScrollY"][1]["funcname"] = "GetScrollY" -defs["igGetScrollY"][1]["location"] = "imgui" +defs["igGetScrollY"][1]["location"] = "imgui:336" defs["igGetScrollY"][1]["namespace"] = "ImGui" defs["igGetScrollY"][1]["ov_cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["ret"] = "float" @@ -8542,7 +8601,7 @@ defs["igGetStateStorage"][1]["call_args"] = "()" defs["igGetStateStorage"][1]["cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["defaults"] = {} defs["igGetStateStorage"][1]["funcname"] = "GetStateStorage" -defs["igGetStateStorage"][1]["location"] = "imgui" +defs["igGetStateStorage"][1]["location"] = "imgui:721" defs["igGetStateStorage"][1]["namespace"] = "ImGui" defs["igGetStateStorage"][1]["ov_cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["ret"] = "ImGuiStorage*" @@ -8558,7 +8617,7 @@ defs["igGetStyle"][1]["call_args"] = "()" defs["igGetStyle"][1]["cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["defaults"] = {} defs["igGetStyle"][1]["funcname"] = "GetStyle" -defs["igGetStyle"][1]["location"] = "imgui" +defs["igGetStyle"][1]["location"] = "imgui:251" defs["igGetStyle"][1]["namespace"] = "ImGui" defs["igGetStyle"][1]["ov_cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["ret"] = "ImGuiStyle*" @@ -8578,7 +8637,7 @@ defs["igGetStyleColorName"][1]["call_args"] = "(idx)" defs["igGetStyleColorName"][1]["cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["defaults"] = {} defs["igGetStyleColorName"][1]["funcname"] = "GetStyleColorName" -defs["igGetStyleColorName"][1]["location"] = "imgui" +defs["igGetStyleColorName"][1]["location"] = "imgui:719" defs["igGetStyleColorName"][1]["namespace"] = "ImGui" defs["igGetStyleColorName"][1]["ov_cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["ret"] = "const char*" @@ -8597,7 +8656,7 @@ defs["igGetStyleColorVec4"][1]["call_args"] = "(idx)" defs["igGetStyleColorVec4"][1]["cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["defaults"] = {} defs["igGetStyleColorVec4"][1]["funcname"] = "GetStyleColorVec4" -defs["igGetStyleColorVec4"][1]["location"] = "imgui" +defs["igGetStyleColorVec4"][1]["location"] = "imgui:355" defs["igGetStyleColorVec4"][1]["namespace"] = "ImGui" defs["igGetStyleColorVec4"][1]["ov_cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["ret"] = "const ImVec4*" @@ -8614,7 +8673,7 @@ defs["igGetTextLineHeight"][1]["call_args"] = "()" defs["igGetTextLineHeight"][1]["cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["defaults"] = {} defs["igGetTextLineHeight"][1]["funcname"] = "GetTextLineHeight" -defs["igGetTextLineHeight"][1]["location"] = "imgui" +defs["igGetTextLineHeight"][1]["location"] = "imgui:401" defs["igGetTextLineHeight"][1]["namespace"] = "ImGui" defs["igGetTextLineHeight"][1]["ov_cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["ret"] = "float" @@ -8630,7 +8689,7 @@ defs["igGetTextLineHeightWithSpacing"][1]["call_args"] = "()" defs["igGetTextLineHeightWithSpacing"][1]["cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["defaults"] = {} defs["igGetTextLineHeightWithSpacing"][1]["funcname"] = "GetTextLineHeightWithSpacing" -defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui" +defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui:402" defs["igGetTextLineHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetTextLineHeightWithSpacing"][1]["ov_cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["ret"] = "float" @@ -8646,7 +8705,7 @@ defs["igGetTime"][1]["call_args"] = "()" defs["igGetTime"][1]["cimguiname"] = "igGetTime" defs["igGetTime"][1]["defaults"] = {} defs["igGetTime"][1]["funcname"] = "GetTime" -defs["igGetTime"][1]["location"] = "imgui" +defs["igGetTime"][1]["location"] = "imgui:714" defs["igGetTime"][1]["namespace"] = "ImGui" defs["igGetTime"][1]["ov_cimguiname"] = "igGetTime" defs["igGetTime"][1]["ret"] = "double" @@ -8662,7 +8721,7 @@ defs["igGetTreeNodeToLabelSpacing"][1]["call_args"] = "()" defs["igGetTreeNodeToLabelSpacing"][1]["cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["defaults"] = {} defs["igGetTreeNodeToLabelSpacing"][1]["funcname"] = "GetTreeNodeToLabelSpacing" -defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui" +defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:550" defs["igGetTreeNodeToLabelSpacing"][1]["namespace"] = "ImGui" defs["igGetTreeNodeToLabelSpacing"][1]["ov_cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["ret"] = "float" @@ -8678,7 +8737,7 @@ defs["igGetVersion"][1]["call_args"] = "()" defs["igGetVersion"][1]["cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["defaults"] = {} defs["igGetVersion"][1]["funcname"] = "GetVersion" -defs["igGetVersion"][1]["location"] = "imgui" +defs["igGetVersion"][1]["location"] = "imgui:265" defs["igGetVersion"][1]["namespace"] = "ImGui" defs["igGetVersion"][1]["ov_cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["ret"] = "const char*" @@ -8697,7 +8756,7 @@ defs["igGetWindowContentRegionMax"][1]["call_args"] = "()" defs["igGetWindowContentRegionMax"][1]["cimguiname"] = "igGetWindowContentRegionMax" defs["igGetWindowContentRegionMax"][1]["defaults"] = {} defs["igGetWindowContentRegionMax"][1]["funcname"] = "GetWindowContentRegionMax" -defs["igGetWindowContentRegionMax"][1]["location"] = "imgui" +defs["igGetWindowContentRegionMax"][1]["location"] = "imgui:331" defs["igGetWindowContentRegionMax"][1]["namespace"] = "ImGui" defs["igGetWindowContentRegionMax"][1]["nonUDT"] = 1 defs["igGetWindowContentRegionMax"][1]["ov_cimguiname"] = "igGetWindowContentRegionMax" @@ -8717,7 +8776,7 @@ defs["igGetWindowContentRegionMin"][1]["call_args"] = "()" defs["igGetWindowContentRegionMin"][1]["cimguiname"] = "igGetWindowContentRegionMin" defs["igGetWindowContentRegionMin"][1]["defaults"] = {} defs["igGetWindowContentRegionMin"][1]["funcname"] = "GetWindowContentRegionMin" -defs["igGetWindowContentRegionMin"][1]["location"] = "imgui" +defs["igGetWindowContentRegionMin"][1]["location"] = "imgui:330" defs["igGetWindowContentRegionMin"][1]["namespace"] = "ImGui" defs["igGetWindowContentRegionMin"][1]["nonUDT"] = 1 defs["igGetWindowContentRegionMin"][1]["ov_cimguiname"] = "igGetWindowContentRegionMin" @@ -8734,7 +8793,7 @@ defs["igGetWindowContentRegionWidth"][1]["call_args"] = "()" defs["igGetWindowContentRegionWidth"][1]["cimguiname"] = "igGetWindowContentRegionWidth" defs["igGetWindowContentRegionWidth"][1]["defaults"] = {} defs["igGetWindowContentRegionWidth"][1]["funcname"] = "GetWindowContentRegionWidth" -defs["igGetWindowContentRegionWidth"][1]["location"] = "imgui" +defs["igGetWindowContentRegionWidth"][1]["location"] = "imgui:332" defs["igGetWindowContentRegionWidth"][1]["namespace"] = "ImGui" defs["igGetWindowContentRegionWidth"][1]["ov_cimguiname"] = "igGetWindowContentRegionWidth" defs["igGetWindowContentRegionWidth"][1]["ret"] = "float" @@ -8750,7 +8809,7 @@ defs["igGetWindowDrawList"][1]["call_args"] = "()" defs["igGetWindowDrawList"][1]["cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["defaults"] = {} defs["igGetWindowDrawList"][1]["funcname"] = "GetWindowDrawList" -defs["igGetWindowDrawList"][1]["location"] = "imgui" +defs["igGetWindowDrawList"][1]["location"] = "imgui:302" defs["igGetWindowDrawList"][1]["namespace"] = "ImGui" defs["igGetWindowDrawList"][1]["ov_cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["ret"] = "ImDrawList*" @@ -8766,7 +8825,7 @@ defs["igGetWindowHeight"][1]["call_args"] = "()" defs["igGetWindowHeight"][1]["cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["defaults"] = {} defs["igGetWindowHeight"][1]["funcname"] = "GetWindowHeight" -defs["igGetWindowHeight"][1]["location"] = "imgui" +defs["igGetWindowHeight"][1]["location"] = "imgui:306" defs["igGetWindowHeight"][1]["namespace"] = "ImGui" defs["igGetWindowHeight"][1]["ov_cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["ret"] = "float" @@ -8785,7 +8844,7 @@ defs["igGetWindowPos"][1]["call_args"] = "()" defs["igGetWindowPos"][1]["cimguiname"] = "igGetWindowPos" defs["igGetWindowPos"][1]["defaults"] = {} defs["igGetWindowPos"][1]["funcname"] = "GetWindowPos" -defs["igGetWindowPos"][1]["location"] = "imgui" +defs["igGetWindowPos"][1]["location"] = "imgui:303" defs["igGetWindowPos"][1]["namespace"] = "ImGui" defs["igGetWindowPos"][1]["nonUDT"] = 1 defs["igGetWindowPos"][1]["ov_cimguiname"] = "igGetWindowPos" @@ -8805,7 +8864,7 @@ defs["igGetWindowSize"][1]["call_args"] = "()" defs["igGetWindowSize"][1]["cimguiname"] = "igGetWindowSize" defs["igGetWindowSize"][1]["defaults"] = {} defs["igGetWindowSize"][1]["funcname"] = "GetWindowSize" -defs["igGetWindowSize"][1]["location"] = "imgui" +defs["igGetWindowSize"][1]["location"] = "imgui:304" defs["igGetWindowSize"][1]["namespace"] = "ImGui" defs["igGetWindowSize"][1]["nonUDT"] = 1 defs["igGetWindowSize"][1]["ov_cimguiname"] = "igGetWindowSize" @@ -8822,7 +8881,7 @@ defs["igGetWindowWidth"][1]["call_args"] = "()" defs["igGetWindowWidth"][1]["cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["defaults"] = {} defs["igGetWindowWidth"][1]["funcname"] = "GetWindowWidth" -defs["igGetWindowWidth"][1]["location"] = "imgui" +defs["igGetWindowWidth"][1]["location"] = "imgui:305" defs["igGetWindowWidth"][1]["namespace"] = "ImGui" defs["igGetWindowWidth"][1]["ov_cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["ret"] = "float" @@ -8860,7 +8919,7 @@ defs["igImage"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImage"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImage"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImage"][1]["funcname"] = "Image" -defs["igImage"][1]["location"] = "imgui" +defs["igImage"][1]["location"] = "imgui:444" defs["igImage"][1]["namespace"] = "ImGui" defs["igImage"][1]["ov_cimguiname"] = "igImage" defs["igImage"][1]["ret"] = "void" @@ -8902,7 +8961,7 @@ defs["igImageButton"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImageButton"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImageButton"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImageButton"][1]["funcname"] = "ImageButton" -defs["igImageButton"][1]["location"] = "imgui" +defs["igImageButton"][1]["location"] = "imgui:445" defs["igImageButton"][1]["namespace"] = "ImGui" defs["igImageButton"][1]["ov_cimguiname"] = "igImageButton" defs["igImageButton"][1]["ret"] = "bool" @@ -8922,7 +8981,7 @@ defs["igIndent"][1]["cimguiname"] = "igIndent" defs["igIndent"][1]["defaults"] = {} defs["igIndent"][1]["defaults"]["indent_w"] = "0.0f" defs["igIndent"][1]["funcname"] = "Indent" -defs["igIndent"][1]["location"] = "imgui" +defs["igIndent"][1]["location"] = "imgui:387" defs["igIndent"][1]["namespace"] = "ImGui" defs["igIndent"][1]["ov_cimguiname"] = "igIndent" defs["igIndent"][1]["ret"] = "void" @@ -8960,7 +9019,7 @@ defs["igInputDouble"][1]["defaults"]["format"] = "\"%.6f\"" defs["igInputDouble"][1]["defaults"]["step"] = "0.0" defs["igInputDouble"][1]["defaults"]["step_fast"] = "0.0" defs["igInputDouble"][1]["funcname"] = "InputDouble" -defs["igInputDouble"][1]["location"] = "imgui" +defs["igInputDouble"][1]["location"] = "imgui:521" defs["igInputDouble"][1]["namespace"] = "ImGui" defs["igInputDouble"][1]["ov_cimguiname"] = "igInputDouble" defs["igInputDouble"][1]["ret"] = "bool" @@ -8998,7 +9057,7 @@ defs["igInputFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat"][1]["defaults"]["step"] = "0.0f" defs["igInputFloat"][1]["defaults"]["step_fast"] = "0.0f" defs["igInputFloat"][1]["funcname"] = "InputFloat" -defs["igInputFloat"][1]["location"] = "imgui" +defs["igInputFloat"][1]["location"] = "imgui:513" defs["igInputFloat"][1]["namespace"] = "ImGui" defs["igInputFloat"][1]["ov_cimguiname"] = "igInputFloat" defs["igInputFloat"][1]["ret"] = "bool" @@ -9028,7 +9087,7 @@ defs["igInputFloat2"][1]["defaults"] = {} defs["igInputFloat2"][1]["defaults"]["flags"] = "0" defs["igInputFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat2"][1]["funcname"] = "InputFloat2" -defs["igInputFloat2"][1]["location"] = "imgui" +defs["igInputFloat2"][1]["location"] = "imgui:514" defs["igInputFloat2"][1]["namespace"] = "ImGui" defs["igInputFloat2"][1]["ov_cimguiname"] = "igInputFloat2" defs["igInputFloat2"][1]["ret"] = "bool" @@ -9058,7 +9117,7 @@ defs["igInputFloat3"][1]["defaults"] = {} defs["igInputFloat3"][1]["defaults"]["flags"] = "0" defs["igInputFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat3"][1]["funcname"] = "InputFloat3" -defs["igInputFloat3"][1]["location"] = "imgui" +defs["igInputFloat3"][1]["location"] = "imgui:515" defs["igInputFloat3"][1]["namespace"] = "ImGui" defs["igInputFloat3"][1]["ov_cimguiname"] = "igInputFloat3" defs["igInputFloat3"][1]["ret"] = "bool" @@ -9088,7 +9147,7 @@ defs["igInputFloat4"][1]["defaults"] = {} defs["igInputFloat4"][1]["defaults"]["flags"] = "0" defs["igInputFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat4"][1]["funcname"] = "InputFloat4" -defs["igInputFloat4"][1]["location"] = "imgui" +defs["igInputFloat4"][1]["location"] = "imgui:516" defs["igInputFloat4"][1]["namespace"] = "ImGui" defs["igInputFloat4"][1]["ov_cimguiname"] = "igInputFloat4" defs["igInputFloat4"][1]["ret"] = "bool" @@ -9122,7 +9181,7 @@ defs["igInputInt"][1]["defaults"]["flags"] = "0" defs["igInputInt"][1]["defaults"]["step"] = "1" defs["igInputInt"][1]["defaults"]["step_fast"] = "100" defs["igInputInt"][1]["funcname"] = "InputInt" -defs["igInputInt"][1]["location"] = "imgui" +defs["igInputInt"][1]["location"] = "imgui:517" defs["igInputInt"][1]["namespace"] = "ImGui" defs["igInputInt"][1]["ov_cimguiname"] = "igInputInt" defs["igInputInt"][1]["ret"] = "bool" @@ -9148,7 +9207,7 @@ defs["igInputInt2"][1]["cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["defaults"] = {} defs["igInputInt2"][1]["defaults"]["flags"] = "0" defs["igInputInt2"][1]["funcname"] = "InputInt2" -defs["igInputInt2"][1]["location"] = "imgui" +defs["igInputInt2"][1]["location"] = "imgui:518" defs["igInputInt2"][1]["namespace"] = "ImGui" defs["igInputInt2"][1]["ov_cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["ret"] = "bool" @@ -9174,7 +9233,7 @@ defs["igInputInt3"][1]["cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["defaults"] = {} defs["igInputInt3"][1]["defaults"]["flags"] = "0" defs["igInputInt3"][1]["funcname"] = "InputInt3" -defs["igInputInt3"][1]["location"] = "imgui" +defs["igInputInt3"][1]["location"] = "imgui:519" defs["igInputInt3"][1]["namespace"] = "ImGui" defs["igInputInt3"][1]["ov_cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["ret"] = "bool" @@ -9200,7 +9259,7 @@ defs["igInputInt4"][1]["cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["defaults"] = {} defs["igInputInt4"][1]["defaults"]["flags"] = "0" defs["igInputInt4"][1]["funcname"] = "InputInt4" -defs["igInputInt4"][1]["location"] = "imgui" +defs["igInputInt4"][1]["location"] = "imgui:520" defs["igInputInt4"][1]["namespace"] = "ImGui" defs["igInputInt4"][1]["ov_cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["ret"] = "bool" @@ -9237,11 +9296,11 @@ defs["igInputScalar"][1]["call_args"] = "(label,data_type,p_data,p_step,p_step_f defs["igInputScalar"][1]["cimguiname"] = "igInputScalar" defs["igInputScalar"][1]["defaults"] = {} defs["igInputScalar"][1]["defaults"]["flags"] = "0" -defs["igInputScalar"][1]["defaults"]["format"] = "((void*)0)" -defs["igInputScalar"][1]["defaults"]["p_step"] = "((void*)0)" -defs["igInputScalar"][1]["defaults"]["p_step_fast"] = "((void*)0)" +defs["igInputScalar"][1]["defaults"]["format"] = "NULL" +defs["igInputScalar"][1]["defaults"]["p_step"] = "NULL" +defs["igInputScalar"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalar"][1]["funcname"] = "InputScalar" -defs["igInputScalar"][1]["location"] = "imgui" +defs["igInputScalar"][1]["location"] = "imgui:522" defs["igInputScalar"][1]["namespace"] = "ImGui" defs["igInputScalar"][1]["ov_cimguiname"] = "igInputScalar" defs["igInputScalar"][1]["ret"] = "bool" @@ -9281,11 +9340,11 @@ defs["igInputScalarN"][1]["call_args"] = "(label,data_type,p_data,components,p_s defs["igInputScalarN"][1]["cimguiname"] = "igInputScalarN" defs["igInputScalarN"][1]["defaults"] = {} defs["igInputScalarN"][1]["defaults"]["flags"] = "0" -defs["igInputScalarN"][1]["defaults"]["format"] = "((void*)0)" -defs["igInputScalarN"][1]["defaults"]["p_step"] = "((void*)0)" -defs["igInputScalarN"][1]["defaults"]["p_step_fast"] = "((void*)0)" +defs["igInputScalarN"][1]["defaults"]["format"] = "NULL" +defs["igInputScalarN"][1]["defaults"]["p_step"] = "NULL" +defs["igInputScalarN"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalarN"][1]["funcname"] = "InputScalarN" -defs["igInputScalarN"][1]["location"] = "imgui" +defs["igInputScalarN"][1]["location"] = "imgui:523" defs["igInputScalarN"][1]["namespace"] = "ImGui" defs["igInputScalarN"][1]["ov_cimguiname"] = "igInputScalarN" defs["igInputScalarN"][1]["ret"] = "bool" @@ -9318,11 +9377,11 @@ defs["igInputText"][1]["argsoriginal"] = "(const char* label,char* buf,size_t bu defs["igInputText"][1]["call_args"] = "(label,buf,buf_size,flags,callback,user_data)" defs["igInputText"][1]["cimguiname"] = "igInputText" defs["igInputText"][1]["defaults"] = {} -defs["igInputText"][1]["defaults"]["callback"] = "((void*)0)" +defs["igInputText"][1]["defaults"]["callback"] = "NULL" defs["igInputText"][1]["defaults"]["flags"] = "0" -defs["igInputText"][1]["defaults"]["user_data"] = "((void*)0)" +defs["igInputText"][1]["defaults"]["user_data"] = "NULL" defs["igInputText"][1]["funcname"] = "InputText" -defs["igInputText"][1]["location"] = "imgui" +defs["igInputText"][1]["location"] = "imgui:510" defs["igInputText"][1]["namespace"] = "ImGui" defs["igInputText"][1]["ov_cimguiname"] = "igInputText" defs["igInputText"][1]["ret"] = "bool" @@ -9358,12 +9417,12 @@ defs["igInputTextMultiline"][1]["argsoriginal"] = "(const char* label,char* buf, defs["igInputTextMultiline"][1]["call_args"] = "(label,buf,buf_size,size,flags,callback,user_data)" defs["igInputTextMultiline"][1]["cimguiname"] = "igInputTextMultiline" defs["igInputTextMultiline"][1]["defaults"] = {} -defs["igInputTextMultiline"][1]["defaults"]["callback"] = "((void*)0)" +defs["igInputTextMultiline"][1]["defaults"]["callback"] = "NULL" defs["igInputTextMultiline"][1]["defaults"]["flags"] = "0" defs["igInputTextMultiline"][1]["defaults"]["size"] = "ImVec2(0,0)" -defs["igInputTextMultiline"][1]["defaults"]["user_data"] = "((void*)0)" +defs["igInputTextMultiline"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextMultiline"][1]["funcname"] = "InputTextMultiline" -defs["igInputTextMultiline"][1]["location"] = "imgui" +defs["igInputTextMultiline"][1]["location"] = "imgui:511" defs["igInputTextMultiline"][1]["namespace"] = "ImGui" defs["igInputTextMultiline"][1]["ov_cimguiname"] = "igInputTextMultiline" defs["igInputTextMultiline"][1]["ret"] = "bool" @@ -9399,11 +9458,11 @@ defs["igInputTextWithHint"][1]["argsoriginal"] = "(const char* label,const char* defs["igInputTextWithHint"][1]["call_args"] = "(label,hint,buf,buf_size,flags,callback,user_data)" defs["igInputTextWithHint"][1]["cimguiname"] = "igInputTextWithHint" defs["igInputTextWithHint"][1]["defaults"] = {} -defs["igInputTextWithHint"][1]["defaults"]["callback"] = "((void*)0)" +defs["igInputTextWithHint"][1]["defaults"]["callback"] = "NULL" defs["igInputTextWithHint"][1]["defaults"]["flags"] = "0" -defs["igInputTextWithHint"][1]["defaults"]["user_data"] = "((void*)0)" +defs["igInputTextWithHint"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextWithHint"][1]["funcname"] = "InputTextWithHint" -defs["igInputTextWithHint"][1]["location"] = "imgui" +defs["igInputTextWithHint"][1]["location"] = "imgui:512" defs["igInputTextWithHint"][1]["namespace"] = "ImGui" defs["igInputTextWithHint"][1]["ov_cimguiname"] = "igInputTextWithHint" defs["igInputTextWithHint"][1]["ret"] = "bool" @@ -9429,7 +9488,7 @@ defs["igInvisibleButton"][1]["cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["defaults"] = {} defs["igInvisibleButton"][1]["defaults"]["flags"] = "0" defs["igInvisibleButton"][1]["funcname"] = "InvisibleButton" -defs["igInvisibleButton"][1]["location"] = "imgui" +defs["igInvisibleButton"][1]["location"] = "imgui:442" defs["igInvisibleButton"][1]["namespace"] = "ImGui" defs["igInvisibleButton"][1]["ov_cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["ret"] = "bool" @@ -9445,7 +9504,7 @@ defs["igIsAnyItemActive"][1]["call_args"] = "()" defs["igIsAnyItemActive"][1]["cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["defaults"] = {} defs["igIsAnyItemActive"][1]["funcname"] = "IsAnyItemActive" -defs["igIsAnyItemActive"][1]["location"] = "imgui" +defs["igIsAnyItemActive"][1]["location"] = "imgui:704" defs["igIsAnyItemActive"][1]["namespace"] = "ImGui" defs["igIsAnyItemActive"][1]["ov_cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["ret"] = "bool" @@ -9461,7 +9520,7 @@ defs["igIsAnyItemFocused"][1]["call_args"] = "()" defs["igIsAnyItemFocused"][1]["cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["defaults"] = {} defs["igIsAnyItemFocused"][1]["funcname"] = "IsAnyItemFocused" -defs["igIsAnyItemFocused"][1]["location"] = "imgui" +defs["igIsAnyItemFocused"][1]["location"] = "imgui:705" defs["igIsAnyItemFocused"][1]["namespace"] = "ImGui" defs["igIsAnyItemFocused"][1]["ov_cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["ret"] = "bool" @@ -9477,7 +9536,7 @@ defs["igIsAnyItemHovered"][1]["call_args"] = "()" defs["igIsAnyItemHovered"][1]["cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["defaults"] = {} defs["igIsAnyItemHovered"][1]["funcname"] = "IsAnyItemHovered" -defs["igIsAnyItemHovered"][1]["location"] = "imgui" +defs["igIsAnyItemHovered"][1]["location"] = "imgui:703" defs["igIsAnyItemHovered"][1]["namespace"] = "ImGui" defs["igIsAnyItemHovered"][1]["ov_cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["ret"] = "bool" @@ -9493,7 +9552,7 @@ defs["igIsAnyMouseDown"][1]["call_args"] = "()" defs["igIsAnyMouseDown"][1]["cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["defaults"] = {} defs["igIsAnyMouseDown"][1]["funcname"] = "IsAnyMouseDown" -defs["igIsAnyMouseDown"][1]["location"] = "imgui" +defs["igIsAnyMouseDown"][1]["location"] = "imgui:755" defs["igIsAnyMouseDown"][1]["namespace"] = "ImGui" defs["igIsAnyMouseDown"][1]["ov_cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["ret"] = "bool" @@ -9509,7 +9568,7 @@ defs["igIsItemActivated"][1]["call_args"] = "()" defs["igIsItemActivated"][1]["cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["defaults"] = {} defs["igIsItemActivated"][1]["funcname"] = "IsItemActivated" -defs["igIsItemActivated"][1]["location"] = "imgui" +defs["igIsItemActivated"][1]["location"] = "imgui:699" defs["igIsItemActivated"][1]["namespace"] = "ImGui" defs["igIsItemActivated"][1]["ov_cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["ret"] = "bool" @@ -9525,7 +9584,7 @@ defs["igIsItemActive"][1]["call_args"] = "()" defs["igIsItemActive"][1]["cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["defaults"] = {} defs["igIsItemActive"][1]["funcname"] = "IsItemActive" -defs["igIsItemActive"][1]["location"] = "imgui" +defs["igIsItemActive"][1]["location"] = "imgui:694" defs["igIsItemActive"][1]["namespace"] = "ImGui" defs["igIsItemActive"][1]["ov_cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["ret"] = "bool" @@ -9545,7 +9604,7 @@ defs["igIsItemClicked"][1]["cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["defaults"] = {} defs["igIsItemClicked"][1]["defaults"]["mouse_button"] = "0" defs["igIsItemClicked"][1]["funcname"] = "IsItemClicked" -defs["igIsItemClicked"][1]["location"] = "imgui" +defs["igIsItemClicked"][1]["location"] = "imgui:696" defs["igIsItemClicked"][1]["namespace"] = "ImGui" defs["igIsItemClicked"][1]["ov_cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["ret"] = "bool" @@ -9561,7 +9620,7 @@ defs["igIsItemDeactivated"][1]["call_args"] = "()" defs["igIsItemDeactivated"][1]["cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["defaults"] = {} defs["igIsItemDeactivated"][1]["funcname"] = "IsItemDeactivated" -defs["igIsItemDeactivated"][1]["location"] = "imgui" +defs["igIsItemDeactivated"][1]["location"] = "imgui:700" defs["igIsItemDeactivated"][1]["namespace"] = "ImGui" defs["igIsItemDeactivated"][1]["ov_cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["ret"] = "bool" @@ -9577,7 +9636,7 @@ defs["igIsItemDeactivatedAfterEdit"][1]["call_args"] = "()" defs["igIsItemDeactivatedAfterEdit"][1]["cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["defaults"] = {} defs["igIsItemDeactivatedAfterEdit"][1]["funcname"] = "IsItemDeactivatedAfterEdit" -defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui" +defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui:701" defs["igIsItemDeactivatedAfterEdit"][1]["namespace"] = "ImGui" defs["igIsItemDeactivatedAfterEdit"][1]["ov_cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["ret"] = "bool" @@ -9593,7 +9652,7 @@ defs["igIsItemEdited"][1]["call_args"] = "()" defs["igIsItemEdited"][1]["cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["defaults"] = {} defs["igIsItemEdited"][1]["funcname"] = "IsItemEdited" -defs["igIsItemEdited"][1]["location"] = "imgui" +defs["igIsItemEdited"][1]["location"] = "imgui:698" defs["igIsItemEdited"][1]["namespace"] = "ImGui" defs["igIsItemEdited"][1]["ov_cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["ret"] = "bool" @@ -9609,7 +9668,7 @@ defs["igIsItemFocused"][1]["call_args"] = "()" defs["igIsItemFocused"][1]["cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["defaults"] = {} defs["igIsItemFocused"][1]["funcname"] = "IsItemFocused" -defs["igIsItemFocused"][1]["location"] = "imgui" +defs["igIsItemFocused"][1]["location"] = "imgui:695" defs["igIsItemFocused"][1]["namespace"] = "ImGui" defs["igIsItemFocused"][1]["ov_cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["ret"] = "bool" @@ -9629,7 +9688,7 @@ defs["igIsItemHovered"][1]["cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["defaults"] = {} defs["igIsItemHovered"][1]["defaults"]["flags"] = "0" defs["igIsItemHovered"][1]["funcname"] = "IsItemHovered" -defs["igIsItemHovered"][1]["location"] = "imgui" +defs["igIsItemHovered"][1]["location"] = "imgui:693" defs["igIsItemHovered"][1]["namespace"] = "ImGui" defs["igIsItemHovered"][1]["ov_cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["ret"] = "bool" @@ -9645,7 +9704,7 @@ defs["igIsItemToggledOpen"][1]["call_args"] = "()" defs["igIsItemToggledOpen"][1]["cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["defaults"] = {} defs["igIsItemToggledOpen"][1]["funcname"] = "IsItemToggledOpen" -defs["igIsItemToggledOpen"][1]["location"] = "imgui" +defs["igIsItemToggledOpen"][1]["location"] = "imgui:702" defs["igIsItemToggledOpen"][1]["namespace"] = "ImGui" defs["igIsItemToggledOpen"][1]["ov_cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["ret"] = "bool" @@ -9661,7 +9720,7 @@ defs["igIsItemVisible"][1]["call_args"] = "()" defs["igIsItemVisible"][1]["cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["defaults"] = {} defs["igIsItemVisible"][1]["funcname"] = "IsItemVisible" -defs["igIsItemVisible"][1]["location"] = "imgui" +defs["igIsItemVisible"][1]["location"] = "imgui:697" defs["igIsItemVisible"][1]["namespace"] = "ImGui" defs["igIsItemVisible"][1]["ov_cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["ret"] = "bool" @@ -9680,7 +9739,7 @@ defs["igIsKeyDown"][1]["call_args"] = "(user_key_index)" defs["igIsKeyDown"][1]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["defaults"] = {} defs["igIsKeyDown"][1]["funcname"] = "IsKeyDown" -defs["igIsKeyDown"][1]["location"] = "imgui" +defs["igIsKeyDown"][1]["location"] = "imgui:739" defs["igIsKeyDown"][1]["namespace"] = "ImGui" defs["igIsKeyDown"][1]["ov_cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["ret"] = "bool" @@ -9703,7 +9762,7 @@ defs["igIsKeyPressed"][1]["cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][1]["defaults"] = {} defs["igIsKeyPressed"][1]["defaults"]["repeat"] = "true" defs["igIsKeyPressed"][1]["funcname"] = "IsKeyPressed" -defs["igIsKeyPressed"][1]["location"] = "imgui" +defs["igIsKeyPressed"][1]["location"] = "imgui:740" defs["igIsKeyPressed"][1]["namespace"] = "ImGui" defs["igIsKeyPressed"][1]["ov_cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][1]["ret"] = "bool" @@ -9722,7 +9781,7 @@ defs["igIsKeyReleased"][1]["call_args"] = "(user_key_index)" defs["igIsKeyReleased"][1]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["defaults"] = {} defs["igIsKeyReleased"][1]["funcname"] = "IsKeyReleased" -defs["igIsKeyReleased"][1]["location"] = "imgui" +defs["igIsKeyReleased"][1]["location"] = "imgui:741" defs["igIsKeyReleased"][1]["namespace"] = "ImGui" defs["igIsKeyReleased"][1]["ov_cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["ret"] = "bool" @@ -9745,7 +9804,7 @@ defs["igIsMouseClicked"][1]["cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][1]["defaults"] = {} defs["igIsMouseClicked"][1]["defaults"]["repeat"] = "false" defs["igIsMouseClicked"][1]["funcname"] = "IsMouseClicked" -defs["igIsMouseClicked"][1]["location"] = "imgui" +defs["igIsMouseClicked"][1]["location"] = "imgui:750" defs["igIsMouseClicked"][1]["namespace"] = "ImGui" defs["igIsMouseClicked"][1]["ov_cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][1]["ret"] = "bool" @@ -9764,7 +9823,7 @@ defs["igIsMouseDoubleClicked"][1]["call_args"] = "(button)" defs["igIsMouseDoubleClicked"][1]["cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["defaults"] = {} defs["igIsMouseDoubleClicked"][1]["funcname"] = "IsMouseDoubleClicked" -defs["igIsMouseDoubleClicked"][1]["location"] = "imgui" +defs["igIsMouseDoubleClicked"][1]["location"] = "imgui:752" defs["igIsMouseDoubleClicked"][1]["namespace"] = "ImGui" defs["igIsMouseDoubleClicked"][1]["ov_cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["ret"] = "bool" @@ -9783,7 +9842,7 @@ defs["igIsMouseDown"][1]["call_args"] = "(button)" defs["igIsMouseDown"][1]["cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][1]["defaults"] = {} defs["igIsMouseDown"][1]["funcname"] = "IsMouseDown" -defs["igIsMouseDown"][1]["location"] = "imgui" +defs["igIsMouseDown"][1]["location"] = "imgui:749" defs["igIsMouseDown"][1]["namespace"] = "ImGui" defs["igIsMouseDown"][1]["ov_cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][1]["ret"] = "bool" @@ -9806,7 +9865,7 @@ defs["igIsMouseDragging"][1]["cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["defaults"] = {} defs["igIsMouseDragging"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igIsMouseDragging"][1]["funcname"] = "IsMouseDragging" -defs["igIsMouseDragging"][1]["location"] = "imgui" +defs["igIsMouseDragging"][1]["location"] = "imgui:758" defs["igIsMouseDragging"][1]["namespace"] = "ImGui" defs["igIsMouseDragging"][1]["ov_cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["ret"] = "bool" @@ -9832,7 +9891,7 @@ defs["igIsMouseHoveringRect"][1]["cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["defaults"] = {} defs["igIsMouseHoveringRect"][1]["defaults"]["clip"] = "true" defs["igIsMouseHoveringRect"][1]["funcname"] = "IsMouseHoveringRect" -defs["igIsMouseHoveringRect"][1]["location"] = "imgui" +defs["igIsMouseHoveringRect"][1]["location"] = "imgui:753" defs["igIsMouseHoveringRect"][1]["namespace"] = "ImGui" defs["igIsMouseHoveringRect"][1]["ov_cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["ret"] = "bool" @@ -9850,9 +9909,9 @@ defs["igIsMousePosValid"][1]["argsoriginal"] = "(const ImVec2* mouse_pos=((void* defs["igIsMousePosValid"][1]["call_args"] = "(mouse_pos)" defs["igIsMousePosValid"][1]["cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["defaults"] = {} -defs["igIsMousePosValid"][1]["defaults"]["mouse_pos"] = "((void*)0)" +defs["igIsMousePosValid"][1]["defaults"]["mouse_pos"] = "NULL" defs["igIsMousePosValid"][1]["funcname"] = "IsMousePosValid" -defs["igIsMousePosValid"][1]["location"] = "imgui" +defs["igIsMousePosValid"][1]["location"] = "imgui:754" defs["igIsMousePosValid"][1]["namespace"] = "ImGui" defs["igIsMousePosValid"][1]["ov_cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["ret"] = "bool" @@ -9871,7 +9930,7 @@ defs["igIsMouseReleased"][1]["call_args"] = "(button)" defs["igIsMouseReleased"][1]["cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][1]["defaults"] = {} defs["igIsMouseReleased"][1]["funcname"] = "IsMouseReleased" -defs["igIsMouseReleased"][1]["location"] = "imgui" +defs["igIsMouseReleased"][1]["location"] = "imgui:751" defs["igIsMouseReleased"][1]["namespace"] = "ImGui" defs["igIsMouseReleased"][1]["ov_cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][1]["ret"] = "bool" @@ -9894,7 +9953,7 @@ defs["igIsPopupOpen"][1]["cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][1]["defaults"] = {} defs["igIsPopupOpen"][1]["defaults"]["flags"] = "0" defs["igIsPopupOpen"][1]["funcname"] = "IsPopupOpen" -defs["igIsPopupOpen"][1]["location"] = "imgui" +defs["igIsPopupOpen"][1]["location"] = "imgui:637" defs["igIsPopupOpen"][1]["namespace"] = "ImGui" defs["igIsPopupOpen"][1]["ov_cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][1]["ret"] = "bool" @@ -9913,7 +9972,7 @@ defs["igIsRectVisible"][1]["call_args"] = "(size)" defs["igIsRectVisible"][1]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][1]["defaults"] = {} defs["igIsRectVisible"][1]["funcname"] = "IsRectVisible" -defs["igIsRectVisible"][1]["location"] = "imgui" +defs["igIsRectVisible"][1]["location"] = "imgui:712" defs["igIsRectVisible"][1]["namespace"] = "ImGui" defs["igIsRectVisible"][1]["ov_cimguiname"] = "igIsRectVisibleNil" defs["igIsRectVisible"][1]["ret"] = "bool" @@ -9933,7 +9992,7 @@ defs["igIsRectVisible"][2]["call_args"] = "(rect_min,rect_max)" defs["igIsRectVisible"][2]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][2]["defaults"] = {} defs["igIsRectVisible"][2]["funcname"] = "IsRectVisible" -defs["igIsRectVisible"][2]["location"] = "imgui" +defs["igIsRectVisible"][2]["location"] = "imgui:713" defs["igIsRectVisible"][2]["namespace"] = "ImGui" defs["igIsRectVisible"][2]["ov_cimguiname"] = "igIsRectVisibleVec2" defs["igIsRectVisible"][2]["ret"] = "bool" @@ -9950,7 +10009,7 @@ defs["igIsWindowAppearing"][1]["call_args"] = "()" defs["igIsWindowAppearing"][1]["cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["defaults"] = {} defs["igIsWindowAppearing"][1]["funcname"] = "IsWindowAppearing" -defs["igIsWindowAppearing"][1]["location"] = "imgui" +defs["igIsWindowAppearing"][1]["location"] = "imgui:298" defs["igIsWindowAppearing"][1]["namespace"] = "ImGui" defs["igIsWindowAppearing"][1]["ov_cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["ret"] = "bool" @@ -9966,7 +10025,7 @@ defs["igIsWindowCollapsed"][1]["call_args"] = "()" defs["igIsWindowCollapsed"][1]["cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["defaults"] = {} defs["igIsWindowCollapsed"][1]["funcname"] = "IsWindowCollapsed" -defs["igIsWindowCollapsed"][1]["location"] = "imgui" +defs["igIsWindowCollapsed"][1]["location"] = "imgui:299" defs["igIsWindowCollapsed"][1]["namespace"] = "ImGui" defs["igIsWindowCollapsed"][1]["ov_cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["ret"] = "bool" @@ -9986,7 +10045,7 @@ defs["igIsWindowFocused"][1]["cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["defaults"] = {} defs["igIsWindowFocused"][1]["defaults"]["flags"] = "0" defs["igIsWindowFocused"][1]["funcname"] = "IsWindowFocused" -defs["igIsWindowFocused"][1]["location"] = "imgui" +defs["igIsWindowFocused"][1]["location"] = "imgui:300" defs["igIsWindowFocused"][1]["namespace"] = "ImGui" defs["igIsWindowFocused"][1]["ov_cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["ret"] = "bool" @@ -10006,7 +10065,7 @@ defs["igIsWindowHovered"][1]["cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["defaults"] = {} defs["igIsWindowHovered"][1]["defaults"]["flags"] = "0" defs["igIsWindowHovered"][1]["funcname"] = "IsWindowHovered" -defs["igIsWindowHovered"][1]["location"] = "imgui" +defs["igIsWindowHovered"][1]["location"] = "imgui:301" defs["igIsWindowHovered"][1]["namespace"] = "ImGui" defs["igIsWindowHovered"][1]["ov_cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["ret"] = "bool" @@ -10032,7 +10091,7 @@ defs["igLabelText"][1]["cimguiname"] = "igLabelText" defs["igLabelText"][1]["defaults"] = {} defs["igLabelText"][1]["funcname"] = "LabelText" defs["igLabelText"][1]["isvararg"] = "...)" -defs["igLabelText"][1]["location"] = "imgui" +defs["igLabelText"][1]["location"] = "imgui:432" defs["igLabelText"][1]["namespace"] = "ImGui" defs["igLabelText"][1]["ov_cimguiname"] = "igLabelText" defs["igLabelText"][1]["ret"] = "void" @@ -10057,7 +10116,7 @@ defs["igLabelTextV"][1]["call_args"] = "(label,fmt,args)" defs["igLabelTextV"][1]["cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["defaults"] = {} defs["igLabelTextV"][1]["funcname"] = "LabelTextV" -defs["igLabelTextV"][1]["location"] = "imgui" +defs["igLabelTextV"][1]["location"] = "imgui:433" defs["igLabelTextV"][1]["namespace"] = "ImGui" defs["igLabelTextV"][1]["ov_cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["ret"] = "void" @@ -10089,7 +10148,7 @@ defs["igListBox"][1]["cimguiname"] = "igListBox" defs["igListBox"][1]["defaults"] = {} defs["igListBox"][1]["defaults"]["height_in_items"] = "-1" defs["igListBox"][1]["funcname"] = "ListBox" -defs["igListBox"][1]["location"] = "imgui" +defs["igListBox"][1]["location"] = "imgui:563" defs["igListBox"][1]["namespace"] = "ImGui" defs["igListBox"][1]["ov_cimguiname"] = "igListBoxStr_arr" defs["igListBox"][1]["ret"] = "bool" @@ -10124,7 +10183,7 @@ defs["igListBox"][2]["cimguiname"] = "igListBox" defs["igListBox"][2]["defaults"] = {} defs["igListBox"][2]["defaults"]["height_in_items"] = "-1" defs["igListBox"][2]["funcname"] = "ListBox" -defs["igListBox"][2]["location"] = "imgui" +defs["igListBox"][2]["location"] = "imgui:564" defs["igListBox"][2]["namespace"] = "ImGui" defs["igListBox"][2]["ov_cimguiname"] = "igListBoxFnBoolPtr" defs["igListBox"][2]["ret"] = "bool" @@ -10141,7 +10200,7 @@ defs["igListBoxFooter"][1]["call_args"] = "()" defs["igListBoxFooter"][1]["cimguiname"] = "igListBoxFooter" defs["igListBoxFooter"][1]["defaults"] = {} defs["igListBoxFooter"][1]["funcname"] = "ListBoxFooter" -defs["igListBoxFooter"][1]["location"] = "imgui" +defs["igListBoxFooter"][1]["location"] = "imgui:567" defs["igListBoxFooter"][1]["namespace"] = "ImGui" defs["igListBoxFooter"][1]["ov_cimguiname"] = "igListBoxFooter" defs["igListBoxFooter"][1]["ret"] = "void" @@ -10164,7 +10223,7 @@ defs["igListBoxHeader"][1]["cimguiname"] = "igListBoxHeader" defs["igListBoxHeader"][1]["defaults"] = {} defs["igListBoxHeader"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igListBoxHeader"][1]["funcname"] = "ListBoxHeader" -defs["igListBoxHeader"][1]["location"] = "imgui" +defs["igListBoxHeader"][1]["location"] = "imgui:565" defs["igListBoxHeader"][1]["namespace"] = "ImGui" defs["igListBoxHeader"][1]["ov_cimguiname"] = "igListBoxHeaderVec2" defs["igListBoxHeader"][1]["ret"] = "bool" @@ -10188,7 +10247,7 @@ defs["igListBoxHeader"][2]["cimguiname"] = "igListBoxHeader" defs["igListBoxHeader"][2]["defaults"] = {} defs["igListBoxHeader"][2]["defaults"]["height_in_items"] = "-1" defs["igListBoxHeader"][2]["funcname"] = "ListBoxHeader" -defs["igListBoxHeader"][2]["location"] = "imgui" +defs["igListBoxHeader"][2]["location"] = "imgui:566" defs["igListBoxHeader"][2]["namespace"] = "ImGui" defs["igListBoxHeader"][2]["ov_cimguiname"] = "igListBoxHeaderInt" defs["igListBoxHeader"][2]["ret"] = "bool" @@ -10208,7 +10267,7 @@ defs["igLoadIniSettingsFromDisk"][1]["call_args"] = "(ini_filename)" defs["igLoadIniSettingsFromDisk"][1]["cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["defaults"] = {} defs["igLoadIniSettingsFromDisk"][1]["funcname"] = "LoadIniSettingsFromDisk" -defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui" +defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui:773" defs["igLoadIniSettingsFromDisk"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromDisk"][1]["ov_cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["ret"] = "void" @@ -10231,7 +10290,7 @@ defs["igLoadIniSettingsFromMemory"][1]["cimguiname"] = "igLoadIniSettingsFromMem defs["igLoadIniSettingsFromMemory"][1]["defaults"] = {} defs["igLoadIniSettingsFromMemory"][1]["defaults"]["ini_size"] = "0" defs["igLoadIniSettingsFromMemory"][1]["funcname"] = "LoadIniSettingsFromMemory" -defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui" +defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui:774" defs["igLoadIniSettingsFromMemory"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromMemory"][1]["ov_cimguiname"] = "igLoadIniSettingsFromMemory" defs["igLoadIniSettingsFromMemory"][1]["ret"] = "void" @@ -10247,7 +10306,7 @@ defs["igLogButtons"][1]["call_args"] = "()" defs["igLogButtons"][1]["cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["defaults"] = {} defs["igLogButtons"][1]["funcname"] = "LogButtons" -defs["igLogButtons"][1]["location"] = "imgui" +defs["igLogButtons"][1]["location"] = "imgui:667" defs["igLogButtons"][1]["namespace"] = "ImGui" defs["igLogButtons"][1]["ov_cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["ret"] = "void" @@ -10263,7 +10322,7 @@ defs["igLogFinish"][1]["call_args"] = "()" defs["igLogFinish"][1]["cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["defaults"] = {} defs["igLogFinish"][1]["funcname"] = "LogFinish" -defs["igLogFinish"][1]["location"] = "imgui" +defs["igLogFinish"][1]["location"] = "imgui:666" defs["igLogFinish"][1]["namespace"] = "ImGui" defs["igLogFinish"][1]["ov_cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["ret"] = "void" @@ -10286,7 +10345,7 @@ defs["igLogText"][1]["cimguiname"] = "igLogText" defs["igLogText"][1]["defaults"] = {} defs["igLogText"][1]["funcname"] = "LogText" defs["igLogText"][1]["isvararg"] = "...)" -defs["igLogText"][1]["location"] = "imgui" +defs["igLogText"][1]["location"] = "imgui:668" defs["igLogText"][1]["manual"] = true defs["igLogText"][1]["namespace"] = "ImGui" defs["igLogText"][1]["ov_cimguiname"] = "igLogText" @@ -10307,7 +10366,7 @@ defs["igLogToClipboard"][1]["cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["defaults"] = {} defs["igLogToClipboard"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToClipboard"][1]["funcname"] = "LogToClipboard" -defs["igLogToClipboard"][1]["location"] = "imgui" +defs["igLogToClipboard"][1]["location"] = "imgui:665" defs["igLogToClipboard"][1]["namespace"] = "ImGui" defs["igLogToClipboard"][1]["ov_cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["ret"] = "void" @@ -10329,9 +10388,9 @@ defs["igLogToFile"][1]["call_args"] = "(auto_open_depth,filename)" defs["igLogToFile"][1]["cimguiname"] = "igLogToFile" defs["igLogToFile"][1]["defaults"] = {} defs["igLogToFile"][1]["defaults"]["auto_open_depth"] = "-1" -defs["igLogToFile"][1]["defaults"]["filename"] = "((void*)0)" +defs["igLogToFile"][1]["defaults"]["filename"] = "NULL" defs["igLogToFile"][1]["funcname"] = "LogToFile" -defs["igLogToFile"][1]["location"] = "imgui" +defs["igLogToFile"][1]["location"] = "imgui:664" defs["igLogToFile"][1]["namespace"] = "ImGui" defs["igLogToFile"][1]["ov_cimguiname"] = "igLogToFile" defs["igLogToFile"][1]["ret"] = "void" @@ -10351,7 +10410,7 @@ defs["igLogToTTY"][1]["cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["defaults"] = {} defs["igLogToTTY"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToTTY"][1]["funcname"] = "LogToTTY" -defs["igLogToTTY"][1]["location"] = "imgui" +defs["igLogToTTY"][1]["location"] = "imgui:663" defs["igLogToTTY"][1]["namespace"] = "ImGui" defs["igLogToTTY"][1]["ov_cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["ret"] = "void" @@ -10370,7 +10429,7 @@ defs["igMemAlloc"][1]["call_args"] = "(size)" defs["igMemAlloc"][1]["cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["defaults"] = {} defs["igMemAlloc"][1]["funcname"] = "MemAlloc" -defs["igMemAlloc"][1]["location"] = "imgui" +defs["igMemAlloc"][1]["location"] = "imgui:785" defs["igMemAlloc"][1]["namespace"] = "ImGui" defs["igMemAlloc"][1]["ov_cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["ret"] = "void*" @@ -10389,7 +10448,7 @@ defs["igMemFree"][1]["call_args"] = "(ptr)" defs["igMemFree"][1]["cimguiname"] = "igMemFree" defs["igMemFree"][1]["defaults"] = {} defs["igMemFree"][1]["funcname"] = "MemFree" -defs["igMemFree"][1]["location"] = "imgui" +defs["igMemFree"][1]["location"] = "imgui:786" defs["igMemFree"][1]["namespace"] = "ImGui" defs["igMemFree"][1]["ov_cimguiname"] = "igMemFree" defs["igMemFree"][1]["ret"] = "void" @@ -10418,9 +10477,9 @@ defs["igMenuItem"][1]["cimguiname"] = "igMenuItem" defs["igMenuItem"][1]["defaults"] = {} defs["igMenuItem"][1]["defaults"]["enabled"] = "true" defs["igMenuItem"][1]["defaults"]["selected"] = "false" -defs["igMenuItem"][1]["defaults"]["shortcut"] = "((void*)0)" +defs["igMenuItem"][1]["defaults"]["shortcut"] = "NULL" defs["igMenuItem"][1]["funcname"] = "MenuItem" -defs["igMenuItem"][1]["location"] = "imgui" +defs["igMenuItem"][1]["location"] = "imgui:592" defs["igMenuItem"][1]["namespace"] = "ImGui" defs["igMenuItem"][1]["ov_cimguiname"] = "igMenuItemBool" defs["igMenuItem"][1]["ret"] = "bool" @@ -10447,7 +10506,7 @@ defs["igMenuItem"][2]["cimguiname"] = "igMenuItem" defs["igMenuItem"][2]["defaults"] = {} defs["igMenuItem"][2]["defaults"]["enabled"] = "true" defs["igMenuItem"][2]["funcname"] = "MenuItem" -defs["igMenuItem"][2]["location"] = "imgui" +defs["igMenuItem"][2]["location"] = "imgui:593" defs["igMenuItem"][2]["namespace"] = "ImGui" defs["igMenuItem"][2]["ov_cimguiname"] = "igMenuItemBoolPtr" defs["igMenuItem"][2]["ret"] = "bool" @@ -10464,7 +10523,7 @@ defs["igNewFrame"][1]["call_args"] = "()" defs["igNewFrame"][1]["cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["defaults"] = {} defs["igNewFrame"][1]["funcname"] = "NewFrame" -defs["igNewFrame"][1]["location"] = "imgui" +defs["igNewFrame"][1]["location"] = "imgui:252" defs["igNewFrame"][1]["namespace"] = "ImGui" defs["igNewFrame"][1]["ov_cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["ret"] = "void" @@ -10480,7 +10539,7 @@ defs["igNewLine"][1]["call_args"] = "()" defs["igNewLine"][1]["cimguiname"] = "igNewLine" defs["igNewLine"][1]["defaults"] = {} defs["igNewLine"][1]["funcname"] = "NewLine" -defs["igNewLine"][1]["location"] = "imgui" +defs["igNewLine"][1]["location"] = "imgui:384" defs["igNewLine"][1]["namespace"] = "ImGui" defs["igNewLine"][1]["ov_cimguiname"] = "igNewLine" defs["igNewLine"][1]["ret"] = "void" @@ -10496,7 +10555,7 @@ defs["igNextColumn"][1]["call_args"] = "()" defs["igNextColumn"][1]["cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["defaults"] = {} defs["igNextColumn"][1]["funcname"] = "NextColumn" -defs["igNextColumn"][1]["location"] = "imgui" +defs["igNextColumn"][1]["location"] = "imgui:645" defs["igNextColumn"][1]["namespace"] = "ImGui" defs["igNextColumn"][1]["ov_cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["ret"] = "void" @@ -10519,37 +10578,37 @@ defs["igOpenPopup"][1]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][1]["defaults"] = {} defs["igOpenPopup"][1]["defaults"]["popup_flags"] = "0" defs["igOpenPopup"][1]["funcname"] = "OpenPopup" -defs["igOpenPopup"][1]["location"] = "imgui" +defs["igOpenPopup"][1]["location"] = "imgui:622" defs["igOpenPopup"][1]["namespace"] = "ImGui" defs["igOpenPopup"][1]["ov_cimguiname"] = "igOpenPopup" defs["igOpenPopup"][1]["ret"] = "void" defs["igOpenPopup"][1]["signature"] = "(const char*,ImGuiPopupFlags)" defs["igOpenPopup"][1]["stname"] = "" defs["igOpenPopup"]["(const char*,ImGuiPopupFlags)"] = defs["igOpenPopup"][1] -defs["igOpenPopupContextItem"] = {} -defs["igOpenPopupContextItem"][1] = {} -defs["igOpenPopupContextItem"][1]["args"] = "(const char* str_id,ImGuiPopupFlags popup_flags)" -defs["igOpenPopupContextItem"][1]["argsT"] = {} -defs["igOpenPopupContextItem"][1]["argsT"][1] = {} -defs["igOpenPopupContextItem"][1]["argsT"][1]["name"] = "str_id" -defs["igOpenPopupContextItem"][1]["argsT"][1]["type"] = "const char*" -defs["igOpenPopupContextItem"][1]["argsT"][2] = {} -defs["igOpenPopupContextItem"][1]["argsT"][2]["name"] = "popup_flags" -defs["igOpenPopupContextItem"][1]["argsT"][2]["type"] = "ImGuiPopupFlags" -defs["igOpenPopupContextItem"][1]["argsoriginal"] = "(const char* str_id=((void*)0),ImGuiPopupFlags popup_flags=1)" -defs["igOpenPopupContextItem"][1]["call_args"] = "(str_id,popup_flags)" -defs["igOpenPopupContextItem"][1]["cimguiname"] = "igOpenPopupContextItem" -defs["igOpenPopupContextItem"][1]["defaults"] = {} -defs["igOpenPopupContextItem"][1]["defaults"]["popup_flags"] = "1" -defs["igOpenPopupContextItem"][1]["defaults"]["str_id"] = "((void*)0)" -defs["igOpenPopupContextItem"][1]["funcname"] = "OpenPopupContextItem" -defs["igOpenPopupContextItem"][1]["location"] = "imgui" -defs["igOpenPopupContextItem"][1]["namespace"] = "ImGui" -defs["igOpenPopupContextItem"][1]["ov_cimguiname"] = "igOpenPopupContextItem" -defs["igOpenPopupContextItem"][1]["ret"] = "bool" -defs["igOpenPopupContextItem"][1]["signature"] = "(const char*,ImGuiPopupFlags)" -defs["igOpenPopupContextItem"][1]["stname"] = "" -defs["igOpenPopupContextItem"]["(const char*,ImGuiPopupFlags)"] = defs["igOpenPopupContextItem"][1] +defs["igOpenPopupOnItemClick"] = {} +defs["igOpenPopupOnItemClick"][1] = {} +defs["igOpenPopupOnItemClick"][1]["args"] = "(const char* str_id,ImGuiPopupFlags popup_flags)" +defs["igOpenPopupOnItemClick"][1]["argsT"] = {} +defs["igOpenPopupOnItemClick"][1]["argsT"][1] = {} +defs["igOpenPopupOnItemClick"][1]["argsT"][1]["name"] = "str_id" +defs["igOpenPopupOnItemClick"][1]["argsT"][1]["type"] = "const char*" +defs["igOpenPopupOnItemClick"][1]["argsT"][2] = {} +defs["igOpenPopupOnItemClick"][1]["argsT"][2]["name"] = "popup_flags" +defs["igOpenPopupOnItemClick"][1]["argsT"][2]["type"] = "ImGuiPopupFlags" +defs["igOpenPopupOnItemClick"][1]["argsoriginal"] = "(const char* str_id=((void*)0),ImGuiPopupFlags popup_flags=1)" +defs["igOpenPopupOnItemClick"][1]["call_args"] = "(str_id,popup_flags)" +defs["igOpenPopupOnItemClick"][1]["cimguiname"] = "igOpenPopupOnItemClick" +defs["igOpenPopupOnItemClick"][1]["defaults"] = {} +defs["igOpenPopupOnItemClick"][1]["defaults"]["popup_flags"] = "1" +defs["igOpenPopupOnItemClick"][1]["defaults"]["str_id"] = "NULL" +defs["igOpenPopupOnItemClick"][1]["funcname"] = "OpenPopupOnItemClick" +defs["igOpenPopupOnItemClick"][1]["location"] = "imgui:623" +defs["igOpenPopupOnItemClick"][1]["namespace"] = "ImGui" +defs["igOpenPopupOnItemClick"][1]["ov_cimguiname"] = "igOpenPopupOnItemClick" +defs["igOpenPopupOnItemClick"][1]["ret"] = "void" +defs["igOpenPopupOnItemClick"][1]["signature"] = "(const char*,ImGuiPopupFlags)" +defs["igOpenPopupOnItemClick"][1]["stname"] = "" +defs["igOpenPopupOnItemClick"]["(const char*,ImGuiPopupFlags)"] = defs["igOpenPopupOnItemClick"][1] defs["igPlotHistogram"] = {} defs["igPlotHistogram"][1] = {} defs["igPlotHistogram"][1]["args"] = "(const char* label,const float* values,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size,int stride)" @@ -10586,13 +10645,13 @@ defs["igPlotHistogram"][1]["call_args"] = "(label,values,values_count,values_off defs["igPlotHistogram"][1]["cimguiname"] = "igPlotHistogram" defs["igPlotHistogram"][1]["defaults"] = {} defs["igPlotHistogram"][1]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotHistogram"][1]["defaults"]["overlay_text"] = "((void*)0)" +defs["igPlotHistogram"][1]["defaults"]["overlay_text"] = "NULL" defs["igPlotHistogram"][1]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotHistogram"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotHistogram"][1]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][1]["funcname"] = "PlotHistogram" -defs["igPlotHistogram"][1]["location"] = "imgui" +defs["igPlotHistogram"][1]["location"] = "imgui:572" defs["igPlotHistogram"][1]["namespace"] = "ImGui" defs["igPlotHistogram"][1]["ov_cimguiname"] = "igPlotHistogramFloatPtr" defs["igPlotHistogram"][1]["ret"] = "void" @@ -10635,12 +10694,12 @@ defs["igPlotHistogram"][2]["call_args"] = "(label,values_getter,data,values_coun defs["igPlotHistogram"][2]["cimguiname"] = "igPlotHistogram" defs["igPlotHistogram"][2]["defaults"] = {} defs["igPlotHistogram"][2]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotHistogram"][2]["defaults"]["overlay_text"] = "((void*)0)" +defs["igPlotHistogram"][2]["defaults"]["overlay_text"] = "NULL" defs["igPlotHistogram"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][2]["funcname"] = "PlotHistogram" -defs["igPlotHistogram"][2]["location"] = "imgui" +defs["igPlotHistogram"][2]["location"] = "imgui:573" defs["igPlotHistogram"][2]["namespace"] = "ImGui" defs["igPlotHistogram"][2]["ov_cimguiname"] = "igPlotHistogramFnFloatPtr" defs["igPlotHistogram"][2]["ret"] = "void" @@ -10684,13 +10743,13 @@ defs["igPlotLines"][1]["call_args"] = "(label,values,values_count,values_offset, defs["igPlotLines"][1]["cimguiname"] = "igPlotLines" defs["igPlotLines"][1]["defaults"] = {} defs["igPlotLines"][1]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotLines"][1]["defaults"]["overlay_text"] = "((void*)0)" +defs["igPlotLines"][1]["defaults"]["overlay_text"] = "NULL" defs["igPlotLines"][1]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotLines"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotLines"][1]["defaults"]["values_offset"] = "0" defs["igPlotLines"][1]["funcname"] = "PlotLines" -defs["igPlotLines"][1]["location"] = "imgui" +defs["igPlotLines"][1]["location"] = "imgui:570" defs["igPlotLines"][1]["namespace"] = "ImGui" defs["igPlotLines"][1]["ov_cimguiname"] = "igPlotLinesFloatPtr" defs["igPlotLines"][1]["ret"] = "void" @@ -10733,12 +10792,12 @@ defs["igPlotLines"][2]["call_args"] = "(label,values_getter,data,values_count,va defs["igPlotLines"][2]["cimguiname"] = "igPlotLines" defs["igPlotLines"][2]["defaults"] = {} defs["igPlotLines"][2]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotLines"][2]["defaults"]["overlay_text"] = "((void*)0)" +defs["igPlotLines"][2]["defaults"]["overlay_text"] = "NULL" defs["igPlotLines"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["values_offset"] = "0" defs["igPlotLines"][2]["funcname"] = "PlotLines" -defs["igPlotLines"][2]["location"] = "imgui" +defs["igPlotLines"][2]["location"] = "imgui:571" defs["igPlotLines"][2]["namespace"] = "ImGui" defs["igPlotLines"][2]["ov_cimguiname"] = "igPlotLinesFnFloatPtr" defs["igPlotLines"][2]["ret"] = "void" @@ -10755,7 +10814,7 @@ defs["igPopAllowKeyboardFocus"][1]["call_args"] = "()" defs["igPopAllowKeyboardFocus"][1]["cimguiname"] = "igPopAllowKeyboardFocus" defs["igPopAllowKeyboardFocus"][1]["defaults"] = {} defs["igPopAllowKeyboardFocus"][1]["funcname"] = "PopAllowKeyboardFocus" -defs["igPopAllowKeyboardFocus"][1]["location"] = "imgui" +defs["igPopAllowKeyboardFocus"][1]["location"] = "imgui:371" defs["igPopAllowKeyboardFocus"][1]["namespace"] = "ImGui" defs["igPopAllowKeyboardFocus"][1]["ov_cimguiname"] = "igPopAllowKeyboardFocus" defs["igPopAllowKeyboardFocus"][1]["ret"] = "void" @@ -10771,7 +10830,7 @@ defs["igPopButtonRepeat"][1]["call_args"] = "()" defs["igPopButtonRepeat"][1]["cimguiname"] = "igPopButtonRepeat" defs["igPopButtonRepeat"][1]["defaults"] = {} defs["igPopButtonRepeat"][1]["funcname"] = "PopButtonRepeat" -defs["igPopButtonRepeat"][1]["location"] = "imgui" +defs["igPopButtonRepeat"][1]["location"] = "imgui:373" defs["igPopButtonRepeat"][1]["namespace"] = "ImGui" defs["igPopButtonRepeat"][1]["ov_cimguiname"] = "igPopButtonRepeat" defs["igPopButtonRepeat"][1]["ret"] = "void" @@ -10787,7 +10846,7 @@ defs["igPopClipRect"][1]["call_args"] = "()" defs["igPopClipRect"][1]["cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["defaults"] = {} defs["igPopClipRect"][1]["funcname"] = "PopClipRect" -defs["igPopClipRect"][1]["location"] = "imgui" +defs["igPopClipRect"][1]["location"] = "imgui:683" defs["igPopClipRect"][1]["namespace"] = "ImGui" defs["igPopClipRect"][1]["ov_cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["ret"] = "void" @@ -10803,7 +10862,7 @@ defs["igPopFont"][1]["call_args"] = "()" defs["igPopFont"][1]["cimguiname"] = "igPopFont" defs["igPopFont"][1]["defaults"] = {} defs["igPopFont"][1]["funcname"] = "PopFont" -defs["igPopFont"][1]["location"] = "imgui" +defs["igPopFont"][1]["location"] = "imgui:348" defs["igPopFont"][1]["namespace"] = "ImGui" defs["igPopFont"][1]["ov_cimguiname"] = "igPopFont" defs["igPopFont"][1]["ret"] = "void" @@ -10819,7 +10878,7 @@ defs["igPopID"][1]["call_args"] = "()" defs["igPopID"][1]["cimguiname"] = "igPopID" defs["igPopID"][1]["defaults"] = {} defs["igPopID"][1]["funcname"] = "PopID" -defs["igPopID"][1]["location"] = "imgui" +defs["igPopID"][1]["location"] = "imgui:417" defs["igPopID"][1]["namespace"] = "ImGui" defs["igPopID"][1]["ov_cimguiname"] = "igPopID" defs["igPopID"][1]["ret"] = "void" @@ -10835,7 +10894,7 @@ defs["igPopItemWidth"][1]["call_args"] = "()" defs["igPopItemWidth"][1]["cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["defaults"] = {} defs["igPopItemWidth"][1]["funcname"] = "PopItemWidth" -defs["igPopItemWidth"][1]["location"] = "imgui" +defs["igPopItemWidth"][1]["location"] = "imgui:365" defs["igPopItemWidth"][1]["namespace"] = "ImGui" defs["igPopItemWidth"][1]["ov_cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["ret"] = "void" @@ -10855,7 +10914,7 @@ defs["igPopStyleColor"][1]["cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["defaults"] = {} defs["igPopStyleColor"][1]["defaults"]["count"] = "1" defs["igPopStyleColor"][1]["funcname"] = "PopStyleColor" -defs["igPopStyleColor"][1]["location"] = "imgui" +defs["igPopStyleColor"][1]["location"] = "imgui:351" defs["igPopStyleColor"][1]["namespace"] = "ImGui" defs["igPopStyleColor"][1]["ov_cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["ret"] = "void" @@ -10875,7 +10934,7 @@ defs["igPopStyleVar"][1]["cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["defaults"] = {} defs["igPopStyleVar"][1]["defaults"]["count"] = "1" defs["igPopStyleVar"][1]["funcname"] = "PopStyleVar" -defs["igPopStyleVar"][1]["location"] = "imgui" +defs["igPopStyleVar"][1]["location"] = "imgui:354" defs["igPopStyleVar"][1]["namespace"] = "ImGui" defs["igPopStyleVar"][1]["ov_cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["ret"] = "void" @@ -10891,7 +10950,7 @@ defs["igPopTextWrapPos"][1]["call_args"] = "()" defs["igPopTextWrapPos"][1]["cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["defaults"] = {} defs["igPopTextWrapPos"][1]["funcname"] = "PopTextWrapPos" -defs["igPopTextWrapPos"][1]["location"] = "imgui" +defs["igPopTextWrapPos"][1]["location"] = "imgui:369" defs["igPopTextWrapPos"][1]["namespace"] = "ImGui" defs["igPopTextWrapPos"][1]["ov_cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["ret"] = "void" @@ -10915,10 +10974,10 @@ defs["igProgressBar"][1]["argsoriginal"] = "(float fraction,const ImVec2& size_a defs["igProgressBar"][1]["call_args"] = "(fraction,size_arg,overlay)" defs["igProgressBar"][1]["cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["defaults"] = {} -defs["igProgressBar"][1]["defaults"]["overlay"] = "((void*)0)" +defs["igProgressBar"][1]["defaults"]["overlay"] = "NULL" defs["igProgressBar"][1]["defaults"]["size_arg"] = "ImVec2(-1,0)" defs["igProgressBar"][1]["funcname"] = "ProgressBar" -defs["igProgressBar"][1]["location"] = "imgui" +defs["igProgressBar"][1]["location"] = "imgui:450" defs["igProgressBar"][1]["namespace"] = "ImGui" defs["igProgressBar"][1]["ov_cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["ret"] = "void" @@ -10937,7 +10996,7 @@ defs["igPushAllowKeyboardFocus"][1]["call_args"] = "(allow_keyboard_focus)" defs["igPushAllowKeyboardFocus"][1]["cimguiname"] = "igPushAllowKeyboardFocus" defs["igPushAllowKeyboardFocus"][1]["defaults"] = {} defs["igPushAllowKeyboardFocus"][1]["funcname"] = "PushAllowKeyboardFocus" -defs["igPushAllowKeyboardFocus"][1]["location"] = "imgui" +defs["igPushAllowKeyboardFocus"][1]["location"] = "imgui:370" defs["igPushAllowKeyboardFocus"][1]["namespace"] = "ImGui" defs["igPushAllowKeyboardFocus"][1]["ov_cimguiname"] = "igPushAllowKeyboardFocus" defs["igPushAllowKeyboardFocus"][1]["ret"] = "void" @@ -10956,7 +11015,7 @@ defs["igPushButtonRepeat"][1]["call_args"] = "(repeat)" defs["igPushButtonRepeat"][1]["cimguiname"] = "igPushButtonRepeat" defs["igPushButtonRepeat"][1]["defaults"] = {} defs["igPushButtonRepeat"][1]["funcname"] = "PushButtonRepeat" -defs["igPushButtonRepeat"][1]["location"] = "imgui" +defs["igPushButtonRepeat"][1]["location"] = "imgui:372" defs["igPushButtonRepeat"][1]["namespace"] = "ImGui" defs["igPushButtonRepeat"][1]["ov_cimguiname"] = "igPushButtonRepeat" defs["igPushButtonRepeat"][1]["ret"] = "void" @@ -10981,7 +11040,7 @@ defs["igPushClipRect"][1]["call_args"] = "(clip_rect_min,clip_rect_max,intersect defs["igPushClipRect"][1]["cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["defaults"] = {} defs["igPushClipRect"][1]["funcname"] = "PushClipRect" -defs["igPushClipRect"][1]["location"] = "imgui" +defs["igPushClipRect"][1]["location"] = "imgui:682" defs["igPushClipRect"][1]["namespace"] = "ImGui" defs["igPushClipRect"][1]["ov_cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["ret"] = "void" @@ -11000,7 +11059,7 @@ defs["igPushFont"][1]["call_args"] = "(font)" defs["igPushFont"][1]["cimguiname"] = "igPushFont" defs["igPushFont"][1]["defaults"] = {} defs["igPushFont"][1]["funcname"] = "PushFont" -defs["igPushFont"][1]["location"] = "imgui" +defs["igPushFont"][1]["location"] = "imgui:347" defs["igPushFont"][1]["namespace"] = "ImGui" defs["igPushFont"][1]["ov_cimguiname"] = "igPushFont" defs["igPushFont"][1]["ret"] = "void" @@ -11019,7 +11078,7 @@ defs["igPushID"][1]["call_args"] = "(str_id)" defs["igPushID"][1]["cimguiname"] = "igPushID" defs["igPushID"][1]["defaults"] = {} defs["igPushID"][1]["funcname"] = "PushID" -defs["igPushID"][1]["location"] = "imgui" +defs["igPushID"][1]["location"] = "imgui:413" defs["igPushID"][1]["namespace"] = "ImGui" defs["igPushID"][1]["ov_cimguiname"] = "igPushIDStr" defs["igPushID"][1]["ret"] = "void" @@ -11039,7 +11098,7 @@ defs["igPushID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igPushID"][2]["cimguiname"] = "igPushID" defs["igPushID"][2]["defaults"] = {} defs["igPushID"][2]["funcname"] = "PushID" -defs["igPushID"][2]["location"] = "imgui" +defs["igPushID"][2]["location"] = "imgui:414" defs["igPushID"][2]["namespace"] = "ImGui" defs["igPushID"][2]["ov_cimguiname"] = "igPushIDStrStr" defs["igPushID"][2]["ret"] = "void" @@ -11056,7 +11115,7 @@ defs["igPushID"][3]["call_args"] = "(ptr_id)" defs["igPushID"][3]["cimguiname"] = "igPushID" defs["igPushID"][3]["defaults"] = {} defs["igPushID"][3]["funcname"] = "PushID" -defs["igPushID"][3]["location"] = "imgui" +defs["igPushID"][3]["location"] = "imgui:415" defs["igPushID"][3]["namespace"] = "ImGui" defs["igPushID"][3]["ov_cimguiname"] = "igPushIDPtr" defs["igPushID"][3]["ret"] = "void" @@ -11073,7 +11132,7 @@ defs["igPushID"][4]["call_args"] = "(int_id)" defs["igPushID"][4]["cimguiname"] = "igPushID" defs["igPushID"][4]["defaults"] = {} defs["igPushID"][4]["funcname"] = "PushID" -defs["igPushID"][4]["location"] = "imgui" +defs["igPushID"][4]["location"] = "imgui:416" defs["igPushID"][4]["namespace"] = "ImGui" defs["igPushID"][4]["ov_cimguiname"] = "igPushIDInt" defs["igPushID"][4]["ret"] = "void" @@ -11095,7 +11154,7 @@ defs["igPushItemWidth"][1]["call_args"] = "(item_width)" defs["igPushItemWidth"][1]["cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["defaults"] = {} defs["igPushItemWidth"][1]["funcname"] = "PushItemWidth" -defs["igPushItemWidth"][1]["location"] = "imgui" +defs["igPushItemWidth"][1]["location"] = "imgui:364" defs["igPushItemWidth"][1]["namespace"] = "ImGui" defs["igPushItemWidth"][1]["ov_cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["ret"] = "void" @@ -11117,7 +11176,7 @@ defs["igPushStyleColor"][1]["call_args"] = "(idx,col)" defs["igPushStyleColor"][1]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][1]["defaults"] = {} defs["igPushStyleColor"][1]["funcname"] = "PushStyleColor" -defs["igPushStyleColor"][1]["location"] = "imgui" +defs["igPushStyleColor"][1]["location"] = "imgui:349" defs["igPushStyleColor"][1]["namespace"] = "ImGui" defs["igPushStyleColor"][1]["ov_cimguiname"] = "igPushStyleColorU32" defs["igPushStyleColor"][1]["ret"] = "void" @@ -11137,7 +11196,7 @@ defs["igPushStyleColor"][2]["call_args"] = "(idx,col)" defs["igPushStyleColor"][2]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][2]["defaults"] = {} defs["igPushStyleColor"][2]["funcname"] = "PushStyleColor" -defs["igPushStyleColor"][2]["location"] = "imgui" +defs["igPushStyleColor"][2]["location"] = "imgui:350" defs["igPushStyleColor"][2]["namespace"] = "ImGui" defs["igPushStyleColor"][2]["ov_cimguiname"] = "igPushStyleColorVec4" defs["igPushStyleColor"][2]["ret"] = "void" @@ -11160,7 +11219,7 @@ defs["igPushStyleVar"][1]["call_args"] = "(idx,val)" defs["igPushStyleVar"][1]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][1]["defaults"] = {} defs["igPushStyleVar"][1]["funcname"] = "PushStyleVar" -defs["igPushStyleVar"][1]["location"] = "imgui" +defs["igPushStyleVar"][1]["location"] = "imgui:352" defs["igPushStyleVar"][1]["namespace"] = "ImGui" defs["igPushStyleVar"][1]["ov_cimguiname"] = "igPushStyleVarFloat" defs["igPushStyleVar"][1]["ret"] = "void" @@ -11180,7 +11239,7 @@ defs["igPushStyleVar"][2]["call_args"] = "(idx,val)" defs["igPushStyleVar"][2]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][2]["defaults"] = {} defs["igPushStyleVar"][2]["funcname"] = "PushStyleVar" -defs["igPushStyleVar"][2]["location"] = "imgui" +defs["igPushStyleVar"][2]["location"] = "imgui:353" defs["igPushStyleVar"][2]["namespace"] = "ImGui" defs["igPushStyleVar"][2]["ov_cimguiname"] = "igPushStyleVarVec2" defs["igPushStyleVar"][2]["ret"] = "void" @@ -11201,7 +11260,7 @@ defs["igPushTextWrapPos"][1]["cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["defaults"] = {} defs["igPushTextWrapPos"][1]["defaults"]["wrap_local_pos_x"] = "0.0f" defs["igPushTextWrapPos"][1]["funcname"] = "PushTextWrapPos" -defs["igPushTextWrapPos"][1]["location"] = "imgui" +defs["igPushTextWrapPos"][1]["location"] = "imgui:368" defs["igPushTextWrapPos"][1]["namespace"] = "ImGui" defs["igPushTextWrapPos"][1]["ov_cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["ret"] = "void" @@ -11223,7 +11282,7 @@ defs["igRadioButton"][1]["call_args"] = "(label,active)" defs["igRadioButton"][1]["cimguiname"] = "igRadioButton" defs["igRadioButton"][1]["defaults"] = {} defs["igRadioButton"][1]["funcname"] = "RadioButton" -defs["igRadioButton"][1]["location"] = "imgui" +defs["igRadioButton"][1]["location"] = "imgui:448" defs["igRadioButton"][1]["namespace"] = "ImGui" defs["igRadioButton"][1]["ov_cimguiname"] = "igRadioButtonBool" defs["igRadioButton"][1]["ret"] = "bool" @@ -11246,7 +11305,7 @@ defs["igRadioButton"][2]["call_args"] = "(label,v,v_button)" defs["igRadioButton"][2]["cimguiname"] = "igRadioButton" defs["igRadioButton"][2]["defaults"] = {} defs["igRadioButton"][2]["funcname"] = "RadioButton" -defs["igRadioButton"][2]["location"] = "imgui" +defs["igRadioButton"][2]["location"] = "imgui:449" defs["igRadioButton"][2]["namespace"] = "ImGui" defs["igRadioButton"][2]["ov_cimguiname"] = "igRadioButtonIntPtr" defs["igRadioButton"][2]["ret"] = "bool" @@ -11263,7 +11322,7 @@ defs["igRender"][1]["call_args"] = "()" defs["igRender"][1]["cimguiname"] = "igRender" defs["igRender"][1]["defaults"] = {} defs["igRender"][1]["funcname"] = "Render" -defs["igRender"][1]["location"] = "imgui" +defs["igRender"][1]["location"] = "imgui:254" defs["igRender"][1]["namespace"] = "ImGui" defs["igRender"][1]["ov_cimguiname"] = "igRender" defs["igRender"][1]["ret"] = "void" @@ -11283,7 +11342,7 @@ defs["igResetMouseDragDelta"][1]["cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["defaults"] = {} defs["igResetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igResetMouseDragDelta"][1]["funcname"] = "ResetMouseDragDelta" -defs["igResetMouseDragDelta"][1]["location"] = "imgui" +defs["igResetMouseDragDelta"][1]["location"] = "imgui:760" defs["igResetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igResetMouseDragDelta"][1]["ov_cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["ret"] = "void" @@ -11307,7 +11366,7 @@ defs["igSameLine"][1]["defaults"] = {} defs["igSameLine"][1]["defaults"]["offset_from_start_x"] = "0.0f" defs["igSameLine"][1]["defaults"]["spacing"] = "-1.0f" defs["igSameLine"][1]["funcname"] = "SameLine" -defs["igSameLine"][1]["location"] = "imgui" +defs["igSameLine"][1]["location"] = "imgui:383" defs["igSameLine"][1]["namespace"] = "ImGui" defs["igSameLine"][1]["ov_cimguiname"] = "igSameLine" defs["igSameLine"][1]["ret"] = "void" @@ -11326,7 +11385,7 @@ defs["igSaveIniSettingsToDisk"][1]["call_args"] = "(ini_filename)" defs["igSaveIniSettingsToDisk"][1]["cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["defaults"] = {} defs["igSaveIniSettingsToDisk"][1]["funcname"] = "SaveIniSettingsToDisk" -defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui" +defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui:775" defs["igSaveIniSettingsToDisk"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToDisk"][1]["ov_cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["ret"] = "void" @@ -11344,9 +11403,9 @@ defs["igSaveIniSettingsToMemory"][1]["argsoriginal"] = "(size_t* out_ini_size=(( defs["igSaveIniSettingsToMemory"][1]["call_args"] = "(out_ini_size)" defs["igSaveIniSettingsToMemory"][1]["cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["defaults"] = {} -defs["igSaveIniSettingsToMemory"][1]["defaults"]["out_ini_size"] = "((void*)0)" +defs["igSaveIniSettingsToMemory"][1]["defaults"]["out_ini_size"] = "NULL" defs["igSaveIniSettingsToMemory"][1]["funcname"] = "SaveIniSettingsToMemory" -defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui" +defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui:776" defs["igSaveIniSettingsToMemory"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToMemory"][1]["ov_cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["ret"] = "const char*" @@ -11377,7 +11436,7 @@ defs["igSelectable"][1]["defaults"]["flags"] = "0" defs["igSelectable"][1]["defaults"]["selected"] = "false" defs["igSelectable"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][1]["funcname"] = "Selectable" -defs["igSelectable"][1]["location"] = "imgui" +defs["igSelectable"][1]["location"] = "imgui:558" defs["igSelectable"][1]["namespace"] = "ImGui" defs["igSelectable"][1]["ov_cimguiname"] = "igSelectableBool" defs["igSelectable"][1]["ret"] = "bool" @@ -11405,7 +11464,7 @@ defs["igSelectable"][2]["defaults"] = {} defs["igSelectable"][2]["defaults"]["flags"] = "0" defs["igSelectable"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][2]["funcname"] = "Selectable" -defs["igSelectable"][2]["location"] = "imgui" +defs["igSelectable"][2]["location"] = "imgui:559" defs["igSelectable"][2]["namespace"] = "ImGui" defs["igSelectable"][2]["ov_cimguiname"] = "igSelectableBoolPtr" defs["igSelectable"][2]["ret"] = "bool" @@ -11422,7 +11481,7 @@ defs["igSeparator"][1]["call_args"] = "()" defs["igSeparator"][1]["cimguiname"] = "igSeparator" defs["igSeparator"][1]["defaults"] = {} defs["igSeparator"][1]["funcname"] = "Separator" -defs["igSeparator"][1]["location"] = "imgui" +defs["igSeparator"][1]["location"] = "imgui:382" defs["igSeparator"][1]["namespace"] = "ImGui" defs["igSeparator"][1]["ov_cimguiname"] = "igSeparator" defs["igSeparator"][1]["ret"] = "void" @@ -11450,9 +11509,9 @@ defs["igSetAllocatorFunctions"][1]["argsoriginal"] = "(void*(*alloc_func)(size_t defs["igSetAllocatorFunctions"][1]["call_args"] = "(alloc_func,free_func,user_data)" defs["igSetAllocatorFunctions"][1]["cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["defaults"] = {} -defs["igSetAllocatorFunctions"][1]["defaults"]["user_data"] = "((void*)0)" +defs["igSetAllocatorFunctions"][1]["defaults"]["user_data"] = "NULL" defs["igSetAllocatorFunctions"][1]["funcname"] = "SetAllocatorFunctions" -defs["igSetAllocatorFunctions"][1]["location"] = "imgui" +defs["igSetAllocatorFunctions"][1]["location"] = "imgui:784" defs["igSetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igSetAllocatorFunctions"][1]["ov_cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["ret"] = "void" @@ -11471,7 +11530,7 @@ defs["igSetClipboardText"][1]["call_args"] = "(text)" defs["igSetClipboardText"][1]["cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["defaults"] = {} defs["igSetClipboardText"][1]["funcname"] = "SetClipboardText" -defs["igSetClipboardText"][1]["location"] = "imgui" +defs["igSetClipboardText"][1]["location"] = "imgui:768" defs["igSetClipboardText"][1]["namespace"] = "ImGui" defs["igSetClipboardText"][1]["ov_cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["ret"] = "void" @@ -11490,7 +11549,7 @@ defs["igSetColorEditOptions"][1]["call_args"] = "(flags)" defs["igSetColorEditOptions"][1]["cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["defaults"] = {} defs["igSetColorEditOptions"][1]["funcname"] = "SetColorEditOptions" -defs["igSetColorEditOptions"][1]["location"] = "imgui" +defs["igSetColorEditOptions"][1]["location"] = "imgui:533" defs["igSetColorEditOptions"][1]["namespace"] = "ImGui" defs["igSetColorEditOptions"][1]["ov_cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["ret"] = "void" @@ -11512,7 +11571,7 @@ defs["igSetColumnOffset"][1]["call_args"] = "(column_index,offset_x)" defs["igSetColumnOffset"][1]["cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["defaults"] = {} defs["igSetColumnOffset"][1]["funcname"] = "SetColumnOffset" -defs["igSetColumnOffset"][1]["location"] = "imgui" +defs["igSetColumnOffset"][1]["location"] = "imgui:650" defs["igSetColumnOffset"][1]["namespace"] = "ImGui" defs["igSetColumnOffset"][1]["ov_cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["ret"] = "void" @@ -11534,7 +11593,7 @@ defs["igSetColumnWidth"][1]["call_args"] = "(column_index,width)" defs["igSetColumnWidth"][1]["cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["defaults"] = {} defs["igSetColumnWidth"][1]["funcname"] = "SetColumnWidth" -defs["igSetColumnWidth"][1]["location"] = "imgui" +defs["igSetColumnWidth"][1]["location"] = "imgui:648" defs["igSetColumnWidth"][1]["namespace"] = "ImGui" defs["igSetColumnWidth"][1]["ov_cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["ret"] = "void" @@ -11553,7 +11612,7 @@ defs["igSetCurrentContext"][1]["call_args"] = "(ctx)" defs["igSetCurrentContext"][1]["cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["defaults"] = {} defs["igSetCurrentContext"][1]["funcname"] = "SetCurrentContext" -defs["igSetCurrentContext"][1]["location"] = "imgui" +defs["igSetCurrentContext"][1]["location"] = "imgui:247" defs["igSetCurrentContext"][1]["namespace"] = "ImGui" defs["igSetCurrentContext"][1]["ov_cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["ret"] = "void" @@ -11572,7 +11631,7 @@ defs["igSetCursorPos"][1]["call_args"] = "(local_pos)" defs["igSetCursorPos"][1]["cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["defaults"] = {} defs["igSetCursorPos"][1]["funcname"] = "SetCursorPos" -defs["igSetCursorPos"][1]["location"] = "imgui" +defs["igSetCursorPos"][1]["location"] = "imgui:394" defs["igSetCursorPos"][1]["namespace"] = "ImGui" defs["igSetCursorPos"][1]["ov_cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["ret"] = "void" @@ -11591,7 +11650,7 @@ defs["igSetCursorPosX"][1]["call_args"] = "(local_x)" defs["igSetCursorPosX"][1]["cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["defaults"] = {} defs["igSetCursorPosX"][1]["funcname"] = "SetCursorPosX" -defs["igSetCursorPosX"][1]["location"] = "imgui" +defs["igSetCursorPosX"][1]["location"] = "imgui:395" defs["igSetCursorPosX"][1]["namespace"] = "ImGui" defs["igSetCursorPosX"][1]["ov_cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["ret"] = "void" @@ -11610,7 +11669,7 @@ defs["igSetCursorPosY"][1]["call_args"] = "(local_y)" defs["igSetCursorPosY"][1]["cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["defaults"] = {} defs["igSetCursorPosY"][1]["funcname"] = "SetCursorPosY" -defs["igSetCursorPosY"][1]["location"] = "imgui" +defs["igSetCursorPosY"][1]["location"] = "imgui:396" defs["igSetCursorPosY"][1]["namespace"] = "ImGui" defs["igSetCursorPosY"][1]["ov_cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["ret"] = "void" @@ -11629,7 +11688,7 @@ defs["igSetCursorScreenPos"][1]["call_args"] = "(pos)" defs["igSetCursorScreenPos"][1]["cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["defaults"] = {} defs["igSetCursorScreenPos"][1]["funcname"] = "SetCursorScreenPos" -defs["igSetCursorScreenPos"][1]["location"] = "imgui" +defs["igSetCursorScreenPos"][1]["location"] = "imgui:399" defs["igSetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igSetCursorScreenPos"][1]["ov_cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["ret"] = "void" @@ -11658,7 +11717,7 @@ defs["igSetDragDropPayload"][1]["cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["defaults"] = {} defs["igSetDragDropPayload"][1]["defaults"]["cond"] = "0" defs["igSetDragDropPayload"][1]["funcname"] = "SetDragDropPayload" -defs["igSetDragDropPayload"][1]["location"] = "imgui" +defs["igSetDragDropPayload"][1]["location"] = "imgui:674" defs["igSetDragDropPayload"][1]["namespace"] = "ImGui" defs["igSetDragDropPayload"][1]["ov_cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["ret"] = "bool" @@ -11674,7 +11733,7 @@ defs["igSetItemAllowOverlap"][1]["call_args"] = "()" defs["igSetItemAllowOverlap"][1]["cimguiname"] = "igSetItemAllowOverlap" defs["igSetItemAllowOverlap"][1]["defaults"] = {} defs["igSetItemAllowOverlap"][1]["funcname"] = "SetItemAllowOverlap" -defs["igSetItemAllowOverlap"][1]["location"] = "imgui" +defs["igSetItemAllowOverlap"][1]["location"] = "imgui:709" defs["igSetItemAllowOverlap"][1]["namespace"] = "ImGui" defs["igSetItemAllowOverlap"][1]["ov_cimguiname"] = "igSetItemAllowOverlap" defs["igSetItemAllowOverlap"][1]["ret"] = "void" @@ -11690,7 +11749,7 @@ defs["igSetItemDefaultFocus"][1]["call_args"] = "()" defs["igSetItemDefaultFocus"][1]["cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["defaults"] = {} defs["igSetItemDefaultFocus"][1]["funcname"] = "SetItemDefaultFocus" -defs["igSetItemDefaultFocus"][1]["location"] = "imgui" +defs["igSetItemDefaultFocus"][1]["location"] = "imgui:687" defs["igSetItemDefaultFocus"][1]["namespace"] = "ImGui" defs["igSetItemDefaultFocus"][1]["ov_cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["ret"] = "void" @@ -11710,7 +11769,7 @@ defs["igSetKeyboardFocusHere"][1]["cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["defaults"] = {} defs["igSetKeyboardFocusHere"][1]["defaults"]["offset"] = "0" defs["igSetKeyboardFocusHere"][1]["funcname"] = "SetKeyboardFocusHere" -defs["igSetKeyboardFocusHere"][1]["location"] = "imgui" +defs["igSetKeyboardFocusHere"][1]["location"] = "imgui:688" defs["igSetKeyboardFocusHere"][1]["namespace"] = "ImGui" defs["igSetKeyboardFocusHere"][1]["ov_cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["ret"] = "void" @@ -11729,7 +11788,7 @@ defs["igSetMouseCursor"][1]["call_args"] = "(cursor_type)" defs["igSetMouseCursor"][1]["cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["defaults"] = {} defs["igSetMouseCursor"][1]["funcname"] = "SetMouseCursor" -defs["igSetMouseCursor"][1]["location"] = "imgui" +defs["igSetMouseCursor"][1]["location"] = "imgui:762" defs["igSetMouseCursor"][1]["namespace"] = "ImGui" defs["igSetMouseCursor"][1]["ov_cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["ret"] = "void" @@ -11752,7 +11811,7 @@ defs["igSetNextItemOpen"][1]["cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["defaults"] = {} defs["igSetNextItemOpen"][1]["defaults"]["cond"] = "0" defs["igSetNextItemOpen"][1]["funcname"] = "SetNextItemOpen" -defs["igSetNextItemOpen"][1]["location"] = "imgui" +defs["igSetNextItemOpen"][1]["location"] = "imgui:553" defs["igSetNextItemOpen"][1]["namespace"] = "ImGui" defs["igSetNextItemOpen"][1]["ov_cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["ret"] = "void" @@ -11771,7 +11830,7 @@ defs["igSetNextItemWidth"][1]["call_args"] = "(item_width)" defs["igSetNextItemWidth"][1]["cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["defaults"] = {} defs["igSetNextItemWidth"][1]["funcname"] = "SetNextItemWidth" -defs["igSetNextItemWidth"][1]["location"] = "imgui" +defs["igSetNextItemWidth"][1]["location"] = "imgui:366" defs["igSetNextItemWidth"][1]["namespace"] = "ImGui" defs["igSetNextItemWidth"][1]["ov_cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["ret"] = "void" @@ -11790,7 +11849,7 @@ defs["igSetNextWindowBgAlpha"][1]["call_args"] = "(alpha)" defs["igSetNextWindowBgAlpha"][1]["cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["defaults"] = {} defs["igSetNextWindowBgAlpha"][1]["funcname"] = "SetNextWindowBgAlpha" -defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui" +defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui:315" defs["igSetNextWindowBgAlpha"][1]["namespace"] = "ImGui" defs["igSetNextWindowBgAlpha"][1]["ov_cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["ret"] = "void" @@ -11813,7 +11872,7 @@ defs["igSetNextWindowCollapsed"][1]["cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["defaults"] = {} defs["igSetNextWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowCollapsed"][1]["funcname"] = "SetNextWindowCollapsed" -defs["igSetNextWindowCollapsed"][1]["location"] = "imgui" +defs["igSetNextWindowCollapsed"][1]["location"] = "imgui:313" defs["igSetNextWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetNextWindowCollapsed"][1]["ov_cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["ret"] = "void" @@ -11832,7 +11891,7 @@ defs["igSetNextWindowContentSize"][1]["call_args"] = "(size)" defs["igSetNextWindowContentSize"][1]["cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["defaults"] = {} defs["igSetNextWindowContentSize"][1]["funcname"] = "SetNextWindowContentSize" -defs["igSetNextWindowContentSize"][1]["location"] = "imgui" +defs["igSetNextWindowContentSize"][1]["location"] = "imgui:312" defs["igSetNextWindowContentSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowContentSize"][1]["ov_cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["ret"] = "void" @@ -11848,7 +11907,7 @@ defs["igSetNextWindowFocus"][1]["call_args"] = "()" defs["igSetNextWindowFocus"][1]["cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["defaults"] = {} defs["igSetNextWindowFocus"][1]["funcname"] = "SetNextWindowFocus" -defs["igSetNextWindowFocus"][1]["location"] = "imgui" +defs["igSetNextWindowFocus"][1]["location"] = "imgui:314" defs["igSetNextWindowFocus"][1]["namespace"] = "ImGui" defs["igSetNextWindowFocus"][1]["ov_cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["ret"] = "void" @@ -11875,7 +11934,7 @@ defs["igSetNextWindowPos"][1]["defaults"] = {} defs["igSetNextWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowPos"][1]["defaults"]["pivot"] = "ImVec2(0,0)" defs["igSetNextWindowPos"][1]["funcname"] = "SetNextWindowPos" -defs["igSetNextWindowPos"][1]["location"] = "imgui" +defs["igSetNextWindowPos"][1]["location"] = "imgui:309" defs["igSetNextWindowPos"][1]["namespace"] = "ImGui" defs["igSetNextWindowPos"][1]["ov_cimguiname"] = "igSetNextWindowPos" defs["igSetNextWindowPos"][1]["ret"] = "void" @@ -11898,7 +11957,7 @@ defs["igSetNextWindowSize"][1]["cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["defaults"] = {} defs["igSetNextWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowSize"][1]["funcname"] = "SetNextWindowSize" -defs["igSetNextWindowSize"][1]["location"] = "imgui" +defs["igSetNextWindowSize"][1]["location"] = "imgui:310" defs["igSetNextWindowSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowSize"][1]["ov_cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["ret"] = "void" @@ -11925,10 +11984,10 @@ defs["igSetNextWindowSizeConstraints"][1]["argsoriginal"] = "(const ImVec2& size defs["igSetNextWindowSizeConstraints"][1]["call_args"] = "(size_min,size_max,custom_callback,custom_callback_data)" defs["igSetNextWindowSizeConstraints"][1]["cimguiname"] = "igSetNextWindowSizeConstraints" defs["igSetNextWindowSizeConstraints"][1]["defaults"] = {} -defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback"] = "((void*)0)" -defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback_data"] = "((void*)0)" +defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback"] = "NULL" +defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback_data"] = "NULL" defs["igSetNextWindowSizeConstraints"][1]["funcname"] = "SetNextWindowSizeConstraints" -defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui" +defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui:311" defs["igSetNextWindowSizeConstraints"][1]["namespace"] = "ImGui" defs["igSetNextWindowSizeConstraints"][1]["ov_cimguiname"] = "igSetNextWindowSizeConstraints" defs["igSetNextWindowSizeConstraints"][1]["ret"] = "void" @@ -11951,7 +12010,7 @@ defs["igSetScrollFromPosX"][1]["cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][1]["defaults"] = {} defs["igSetScrollFromPosX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollFromPosX"][1]["funcname"] = "SetScrollFromPosX" -defs["igSetScrollFromPosX"][1]["location"] = "imgui" +defs["igSetScrollFromPosX"][1]["location"] = "imgui:343" defs["igSetScrollFromPosX"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][1]["ov_cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][1]["ret"] = "void" @@ -11974,7 +12033,7 @@ defs["igSetScrollFromPosY"][1]["cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][1]["defaults"] = {} defs["igSetScrollFromPosY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollFromPosY"][1]["funcname"] = "SetScrollFromPosY" -defs["igSetScrollFromPosY"][1]["location"] = "imgui" +defs["igSetScrollFromPosY"][1]["location"] = "imgui:344" defs["igSetScrollFromPosY"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][1]["ov_cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][1]["ret"] = "void" @@ -11994,7 +12053,7 @@ defs["igSetScrollHereX"][1]["cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["defaults"] = {} defs["igSetScrollHereX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollHereX"][1]["funcname"] = "SetScrollHereX" -defs["igSetScrollHereX"][1]["location"] = "imgui" +defs["igSetScrollHereX"][1]["location"] = "imgui:341" defs["igSetScrollHereX"][1]["namespace"] = "ImGui" defs["igSetScrollHereX"][1]["ov_cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["ret"] = "void" @@ -12014,7 +12073,7 @@ defs["igSetScrollHereY"][1]["cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["defaults"] = {} defs["igSetScrollHereY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollHereY"][1]["funcname"] = "SetScrollHereY" -defs["igSetScrollHereY"][1]["location"] = "imgui" +defs["igSetScrollHereY"][1]["location"] = "imgui:342" defs["igSetScrollHereY"][1]["namespace"] = "ImGui" defs["igSetScrollHereY"][1]["ov_cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["ret"] = "void" @@ -12033,7 +12092,7 @@ defs["igSetScrollX"][1]["call_args"] = "(scroll_x)" defs["igSetScrollX"][1]["cimguiname"] = "igSetScrollX" defs["igSetScrollX"][1]["defaults"] = {} defs["igSetScrollX"][1]["funcname"] = "SetScrollX" -defs["igSetScrollX"][1]["location"] = "imgui" +defs["igSetScrollX"][1]["location"] = "imgui:339" defs["igSetScrollX"][1]["namespace"] = "ImGui" defs["igSetScrollX"][1]["ov_cimguiname"] = "igSetScrollX" defs["igSetScrollX"][1]["ret"] = "void" @@ -12052,7 +12111,7 @@ defs["igSetScrollY"][1]["call_args"] = "(scroll_y)" defs["igSetScrollY"][1]["cimguiname"] = "igSetScrollY" defs["igSetScrollY"][1]["defaults"] = {} defs["igSetScrollY"][1]["funcname"] = "SetScrollY" -defs["igSetScrollY"][1]["location"] = "imgui" +defs["igSetScrollY"][1]["location"] = "imgui:340" defs["igSetScrollY"][1]["namespace"] = "ImGui" defs["igSetScrollY"][1]["ov_cimguiname"] = "igSetScrollY" defs["igSetScrollY"][1]["ret"] = "void" @@ -12071,7 +12130,7 @@ defs["igSetStateStorage"][1]["call_args"] = "(storage)" defs["igSetStateStorage"][1]["cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["defaults"] = {} defs["igSetStateStorage"][1]["funcname"] = "SetStateStorage" -defs["igSetStateStorage"][1]["location"] = "imgui" +defs["igSetStateStorage"][1]["location"] = "imgui:720" defs["igSetStateStorage"][1]["namespace"] = "ImGui" defs["igSetStateStorage"][1]["ov_cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["ret"] = "void" @@ -12090,7 +12149,7 @@ defs["igSetTabItemClosed"][1]["call_args"] = "(tab_or_docked_window_label)" defs["igSetTabItemClosed"][1]["cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["defaults"] = {} defs["igSetTabItemClosed"][1]["funcname"] = "SetTabItemClosed" -defs["igSetTabItemClosed"][1]["location"] = "imgui" +defs["igSetTabItemClosed"][1]["location"] = "imgui:659" defs["igSetTabItemClosed"][1]["namespace"] = "ImGui" defs["igSetTabItemClosed"][1]["ov_cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["ret"] = "void" @@ -12113,7 +12172,7 @@ defs["igSetTooltip"][1]["cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["defaults"] = {} defs["igSetTooltip"][1]["funcname"] = "SetTooltip" defs["igSetTooltip"][1]["isvararg"] = "...)" -defs["igSetTooltip"][1]["location"] = "imgui" +defs["igSetTooltip"][1]["location"] = "imgui:599" defs["igSetTooltip"][1]["namespace"] = "ImGui" defs["igSetTooltip"][1]["ov_cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["ret"] = "void" @@ -12135,7 +12194,7 @@ defs["igSetTooltipV"][1]["call_args"] = "(fmt,args)" defs["igSetTooltipV"][1]["cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["defaults"] = {} defs["igSetTooltipV"][1]["funcname"] = "SetTooltipV" -defs["igSetTooltipV"][1]["location"] = "imgui" +defs["igSetTooltipV"][1]["location"] = "imgui:600" defs["igSetTooltipV"][1]["namespace"] = "ImGui" defs["igSetTooltipV"][1]["ov_cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["ret"] = "void" @@ -12158,7 +12217,7 @@ defs["igSetWindowCollapsed"][1]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][1]["defaults"] = {} defs["igSetWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][1]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][1]["location"] = "imgui" +defs["igSetWindowCollapsed"][1]["location"] = "imgui:318" defs["igSetWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][1]["ov_cimguiname"] = "igSetWindowCollapsedBool" defs["igSetWindowCollapsed"][1]["ret"] = "void" @@ -12182,7 +12241,7 @@ defs["igSetWindowCollapsed"][2]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][2]["defaults"] = {} defs["igSetWindowCollapsed"][2]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][2]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][2]["location"] = "imgui" +defs["igSetWindowCollapsed"][2]["location"] = "imgui:323" defs["igSetWindowCollapsed"][2]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][2]["ov_cimguiname"] = "igSetWindowCollapsedStr" defs["igSetWindowCollapsed"][2]["ret"] = "void" @@ -12199,7 +12258,7 @@ defs["igSetWindowFocus"][1]["call_args"] = "()" defs["igSetWindowFocus"][1]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][1]["defaults"] = {} defs["igSetWindowFocus"][1]["funcname"] = "SetWindowFocus" -defs["igSetWindowFocus"][1]["location"] = "imgui" +defs["igSetWindowFocus"][1]["location"] = "imgui:319" defs["igSetWindowFocus"][1]["namespace"] = "ImGui" defs["igSetWindowFocus"][1]["ov_cimguiname"] = "igSetWindowFocusNil" defs["igSetWindowFocus"][1]["ret"] = "void" @@ -12216,7 +12275,7 @@ defs["igSetWindowFocus"][2]["call_args"] = "(name)" defs["igSetWindowFocus"][2]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][2]["defaults"] = {} defs["igSetWindowFocus"][2]["funcname"] = "SetWindowFocus" -defs["igSetWindowFocus"][2]["location"] = "imgui" +defs["igSetWindowFocus"][2]["location"] = "imgui:324" defs["igSetWindowFocus"][2]["namespace"] = "ImGui" defs["igSetWindowFocus"][2]["ov_cimguiname"] = "igSetWindowFocusStr" defs["igSetWindowFocus"][2]["ret"] = "void" @@ -12236,7 +12295,7 @@ defs["igSetWindowFontScale"][1]["call_args"] = "(scale)" defs["igSetWindowFontScale"][1]["cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["defaults"] = {} defs["igSetWindowFontScale"][1]["funcname"] = "SetWindowFontScale" -defs["igSetWindowFontScale"][1]["location"] = "imgui" +defs["igSetWindowFontScale"][1]["location"] = "imgui:320" defs["igSetWindowFontScale"][1]["namespace"] = "ImGui" defs["igSetWindowFontScale"][1]["ov_cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["ret"] = "void" @@ -12259,7 +12318,7 @@ defs["igSetWindowPos"][1]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][1]["defaults"] = {} defs["igSetWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetWindowPos"][1]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][1]["location"] = "imgui" +defs["igSetWindowPos"][1]["location"] = "imgui:316" defs["igSetWindowPos"][1]["namespace"] = "ImGui" defs["igSetWindowPos"][1]["ov_cimguiname"] = "igSetWindowPosVec2" defs["igSetWindowPos"][1]["ret"] = "void" @@ -12283,7 +12342,7 @@ defs["igSetWindowPos"][2]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][2]["defaults"] = {} defs["igSetWindowPos"][2]["defaults"]["cond"] = "0" defs["igSetWindowPos"][2]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][2]["location"] = "imgui" +defs["igSetWindowPos"][2]["location"] = "imgui:321" defs["igSetWindowPos"][2]["namespace"] = "ImGui" defs["igSetWindowPos"][2]["ov_cimguiname"] = "igSetWindowPosStr" defs["igSetWindowPos"][2]["ret"] = "void" @@ -12307,7 +12366,7 @@ defs["igSetWindowSize"][1]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][1]["defaults"] = {} defs["igSetWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetWindowSize"][1]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][1]["location"] = "imgui" +defs["igSetWindowSize"][1]["location"] = "imgui:317" defs["igSetWindowSize"][1]["namespace"] = "ImGui" defs["igSetWindowSize"][1]["ov_cimguiname"] = "igSetWindowSizeVec2" defs["igSetWindowSize"][1]["ret"] = "void" @@ -12331,7 +12390,7 @@ defs["igSetWindowSize"][2]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][2]["defaults"] = {} defs["igSetWindowSize"][2]["defaults"]["cond"] = "0" defs["igSetWindowSize"][2]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][2]["location"] = "imgui" +defs["igSetWindowSize"][2]["location"] = "imgui:322" defs["igSetWindowSize"][2]["namespace"] = "ImGui" defs["igSetWindowSize"][2]["ov_cimguiname"] = "igSetWindowSizeStr" defs["igSetWindowSize"][2]["ret"] = "void" @@ -12350,9 +12409,9 @@ defs["igShowAboutWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" defs["igShowAboutWindow"][1]["call_args"] = "(p_open)" defs["igShowAboutWindow"][1]["cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["defaults"] = {} -defs["igShowAboutWindow"][1]["defaults"]["p_open"] = "((void*)0)" +defs["igShowAboutWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowAboutWindow"][1]["funcname"] = "ShowAboutWindow" -defs["igShowAboutWindow"][1]["location"] = "imgui" +defs["igShowAboutWindow"][1]["location"] = "imgui:259" defs["igShowAboutWindow"][1]["namespace"] = "ImGui" defs["igShowAboutWindow"][1]["ov_cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["ret"] = "void" @@ -12370,9 +12429,9 @@ defs["igShowDemoWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" defs["igShowDemoWindow"][1]["call_args"] = "(p_open)" defs["igShowDemoWindow"][1]["cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["defaults"] = {} -defs["igShowDemoWindow"][1]["defaults"]["p_open"] = "((void*)0)" +defs["igShowDemoWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowDemoWindow"][1]["funcname"] = "ShowDemoWindow" -defs["igShowDemoWindow"][1]["location"] = "imgui" +defs["igShowDemoWindow"][1]["location"] = "imgui:258" defs["igShowDemoWindow"][1]["namespace"] = "ImGui" defs["igShowDemoWindow"][1]["ov_cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["ret"] = "void" @@ -12391,7 +12450,7 @@ defs["igShowFontSelector"][1]["call_args"] = "(label)" defs["igShowFontSelector"][1]["cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["defaults"] = {} defs["igShowFontSelector"][1]["funcname"] = "ShowFontSelector" -defs["igShowFontSelector"][1]["location"] = "imgui" +defs["igShowFontSelector"][1]["location"] = "imgui:263" defs["igShowFontSelector"][1]["namespace"] = "ImGui" defs["igShowFontSelector"][1]["ov_cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["ret"] = "void" @@ -12409,9 +12468,9 @@ defs["igShowMetricsWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" defs["igShowMetricsWindow"][1]["call_args"] = "(p_open)" defs["igShowMetricsWindow"][1]["cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["defaults"] = {} -defs["igShowMetricsWindow"][1]["defaults"]["p_open"] = "((void*)0)" +defs["igShowMetricsWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowMetricsWindow"][1]["funcname"] = "ShowMetricsWindow" -defs["igShowMetricsWindow"][1]["location"] = "imgui" +defs["igShowMetricsWindow"][1]["location"] = "imgui:260" defs["igShowMetricsWindow"][1]["namespace"] = "ImGui" defs["igShowMetricsWindow"][1]["ov_cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["ret"] = "void" @@ -12429,9 +12488,9 @@ defs["igShowStyleEditor"][1]["argsoriginal"] = "(ImGuiStyle* ref=((void*)0))" defs["igShowStyleEditor"][1]["call_args"] = "(ref)" defs["igShowStyleEditor"][1]["cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["defaults"] = {} -defs["igShowStyleEditor"][1]["defaults"]["ref"] = "((void*)0)" +defs["igShowStyleEditor"][1]["defaults"]["ref"] = "NULL" defs["igShowStyleEditor"][1]["funcname"] = "ShowStyleEditor" -defs["igShowStyleEditor"][1]["location"] = "imgui" +defs["igShowStyleEditor"][1]["location"] = "imgui:261" defs["igShowStyleEditor"][1]["namespace"] = "ImGui" defs["igShowStyleEditor"][1]["ov_cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["ret"] = "void" @@ -12450,7 +12509,7 @@ defs["igShowStyleSelector"][1]["call_args"] = "(label)" defs["igShowStyleSelector"][1]["cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["defaults"] = {} defs["igShowStyleSelector"][1]["funcname"] = "ShowStyleSelector" -defs["igShowStyleSelector"][1]["location"] = "imgui" +defs["igShowStyleSelector"][1]["location"] = "imgui:262" defs["igShowStyleSelector"][1]["namespace"] = "ImGui" defs["igShowStyleSelector"][1]["ov_cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["ret"] = "bool" @@ -12466,7 +12525,7 @@ defs["igShowUserGuide"][1]["call_args"] = "()" defs["igShowUserGuide"][1]["cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["defaults"] = {} defs["igShowUserGuide"][1]["funcname"] = "ShowUserGuide" -defs["igShowUserGuide"][1]["location"] = "imgui" +defs["igShowUserGuide"][1]["location"] = "imgui:264" defs["igShowUserGuide"][1]["namespace"] = "ImGui" defs["igShowUserGuide"][1]["ov_cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["ret"] = "void" @@ -12504,7 +12563,7 @@ defs["igSliderAngle"][1]["defaults"]["format"] = "\"%.0f deg\"" defs["igSliderAngle"][1]["defaults"]["v_degrees_max"] = "+360.0f" defs["igSliderAngle"][1]["defaults"]["v_degrees_min"] = "-360.0f" defs["igSliderAngle"][1]["funcname"] = "SliderAngle" -defs["igSliderAngle"][1]["location"] = "imgui" +defs["igSliderAngle"][1]["location"] = "imgui:496" defs["igSliderAngle"][1]["namespace"] = "ImGui" defs["igSliderAngle"][1]["ov_cimguiname"] = "igSliderAngle" defs["igSliderAngle"][1]["ret"] = "bool" @@ -12540,7 +12599,7 @@ defs["igSliderFloat"][1]["defaults"] = {} defs["igSliderFloat"][1]["defaults"]["flags"] = "0" defs["igSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat"][1]["funcname"] = "SliderFloat" -defs["igSliderFloat"][1]["location"] = "imgui" +defs["igSliderFloat"][1]["location"] = "imgui:492" defs["igSliderFloat"][1]["namespace"] = "ImGui" defs["igSliderFloat"][1]["ov_cimguiname"] = "igSliderFloat" defs["igSliderFloat"][1]["ret"] = "bool" @@ -12576,7 +12635,7 @@ defs["igSliderFloat2"][1]["defaults"] = {} defs["igSliderFloat2"][1]["defaults"]["flags"] = "0" defs["igSliderFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat2"][1]["funcname"] = "SliderFloat2" -defs["igSliderFloat2"][1]["location"] = "imgui" +defs["igSliderFloat2"][1]["location"] = "imgui:493" defs["igSliderFloat2"][1]["namespace"] = "ImGui" defs["igSliderFloat2"][1]["ov_cimguiname"] = "igSliderFloat2" defs["igSliderFloat2"][1]["ret"] = "bool" @@ -12612,7 +12671,7 @@ defs["igSliderFloat3"][1]["defaults"] = {} defs["igSliderFloat3"][1]["defaults"]["flags"] = "0" defs["igSliderFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat3"][1]["funcname"] = "SliderFloat3" -defs["igSliderFloat3"][1]["location"] = "imgui" +defs["igSliderFloat3"][1]["location"] = "imgui:494" defs["igSliderFloat3"][1]["namespace"] = "ImGui" defs["igSliderFloat3"][1]["ov_cimguiname"] = "igSliderFloat3" defs["igSliderFloat3"][1]["ret"] = "bool" @@ -12648,7 +12707,7 @@ defs["igSliderFloat4"][1]["defaults"] = {} defs["igSliderFloat4"][1]["defaults"]["flags"] = "0" defs["igSliderFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat4"][1]["funcname"] = "SliderFloat4" -defs["igSliderFloat4"][1]["location"] = "imgui" +defs["igSliderFloat4"][1]["location"] = "imgui:495" defs["igSliderFloat4"][1]["namespace"] = "ImGui" defs["igSliderFloat4"][1]["ov_cimguiname"] = "igSliderFloat4" defs["igSliderFloat4"][1]["ret"] = "bool" @@ -12684,7 +12743,7 @@ defs["igSliderInt"][1]["defaults"] = {} defs["igSliderInt"][1]["defaults"]["flags"] = "0" defs["igSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt"][1]["funcname"] = "SliderInt" -defs["igSliderInt"][1]["location"] = "imgui" +defs["igSliderInt"][1]["location"] = "imgui:497" defs["igSliderInt"][1]["namespace"] = "ImGui" defs["igSliderInt"][1]["ov_cimguiname"] = "igSliderInt" defs["igSliderInt"][1]["ret"] = "bool" @@ -12720,7 +12779,7 @@ defs["igSliderInt2"][1]["defaults"] = {} defs["igSliderInt2"][1]["defaults"]["flags"] = "0" defs["igSliderInt2"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt2"][1]["funcname"] = "SliderInt2" -defs["igSliderInt2"][1]["location"] = "imgui" +defs["igSliderInt2"][1]["location"] = "imgui:498" defs["igSliderInt2"][1]["namespace"] = "ImGui" defs["igSliderInt2"][1]["ov_cimguiname"] = "igSliderInt2" defs["igSliderInt2"][1]["ret"] = "bool" @@ -12756,7 +12815,7 @@ defs["igSliderInt3"][1]["defaults"] = {} defs["igSliderInt3"][1]["defaults"]["flags"] = "0" defs["igSliderInt3"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt3"][1]["funcname"] = "SliderInt3" -defs["igSliderInt3"][1]["location"] = "imgui" +defs["igSliderInt3"][1]["location"] = "imgui:499" defs["igSliderInt3"][1]["namespace"] = "ImGui" defs["igSliderInt3"][1]["ov_cimguiname"] = "igSliderInt3" defs["igSliderInt3"][1]["ret"] = "bool" @@ -12792,7 +12851,7 @@ defs["igSliderInt4"][1]["defaults"] = {} defs["igSliderInt4"][1]["defaults"]["flags"] = "0" defs["igSliderInt4"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt4"][1]["funcname"] = "SliderInt4" -defs["igSliderInt4"][1]["location"] = "imgui" +defs["igSliderInt4"][1]["location"] = "imgui:500" defs["igSliderInt4"][1]["namespace"] = "ImGui" defs["igSliderInt4"][1]["ov_cimguiname"] = "igSliderInt4" defs["igSliderInt4"][1]["ret"] = "bool" @@ -12829,9 +12888,9 @@ defs["igSliderScalar"][1]["call_args"] = "(label,data_type,p_data,p_min,p_max,fo defs["igSliderScalar"][1]["cimguiname"] = "igSliderScalar" defs["igSliderScalar"][1]["defaults"] = {} defs["igSliderScalar"][1]["defaults"]["flags"] = "0" -defs["igSliderScalar"][1]["defaults"]["format"] = "((void*)0)" +defs["igSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igSliderScalar"][1]["funcname"] = "SliderScalar" -defs["igSliderScalar"][1]["location"] = "imgui" +defs["igSliderScalar"][1]["location"] = "imgui:501" defs["igSliderScalar"][1]["namespace"] = "ImGui" defs["igSliderScalar"][1]["ov_cimguiname"] = "igSliderScalar" defs["igSliderScalar"][1]["ret"] = "bool" @@ -12871,9 +12930,9 @@ defs["igSliderScalarN"][1]["call_args"] = "(label,data_type,p_data,components,p_ defs["igSliderScalarN"][1]["cimguiname"] = "igSliderScalarN" defs["igSliderScalarN"][1]["defaults"] = {} defs["igSliderScalarN"][1]["defaults"]["flags"] = "0" -defs["igSliderScalarN"][1]["defaults"]["format"] = "((void*)0)" +defs["igSliderScalarN"][1]["defaults"]["format"] = "NULL" defs["igSliderScalarN"][1]["funcname"] = "SliderScalarN" -defs["igSliderScalarN"][1]["location"] = "imgui" +defs["igSliderScalarN"][1]["location"] = "imgui:502" defs["igSliderScalarN"][1]["namespace"] = "ImGui" defs["igSliderScalarN"][1]["ov_cimguiname"] = "igSliderScalarN" defs["igSliderScalarN"][1]["ret"] = "bool" @@ -12892,7 +12951,7 @@ defs["igSmallButton"][1]["call_args"] = "(label)" defs["igSmallButton"][1]["cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["defaults"] = {} defs["igSmallButton"][1]["funcname"] = "SmallButton" -defs["igSmallButton"][1]["location"] = "imgui" +defs["igSmallButton"][1]["location"] = "imgui:441" defs["igSmallButton"][1]["namespace"] = "ImGui" defs["igSmallButton"][1]["ov_cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["ret"] = "bool" @@ -12908,7 +12967,7 @@ defs["igSpacing"][1]["call_args"] = "()" defs["igSpacing"][1]["cimguiname"] = "igSpacing" defs["igSpacing"][1]["defaults"] = {} defs["igSpacing"][1]["funcname"] = "Spacing" -defs["igSpacing"][1]["location"] = "imgui" +defs["igSpacing"][1]["location"] = "imgui:385" defs["igSpacing"][1]["namespace"] = "ImGui" defs["igSpacing"][1]["ov_cimguiname"] = "igSpacing" defs["igSpacing"][1]["ret"] = "void" @@ -12926,9 +12985,9 @@ defs["igStyleColorsClassic"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void*)0))" defs["igStyleColorsClassic"][1]["call_args"] = "(dst)" defs["igStyleColorsClassic"][1]["cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["defaults"] = {} -defs["igStyleColorsClassic"][1]["defaults"]["dst"] = "((void*)0)" +defs["igStyleColorsClassic"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsClassic"][1]["funcname"] = "StyleColorsClassic" -defs["igStyleColorsClassic"][1]["location"] = "imgui" +defs["igStyleColorsClassic"][1]["location"] = "imgui:269" defs["igStyleColorsClassic"][1]["namespace"] = "ImGui" defs["igStyleColorsClassic"][1]["ov_cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["ret"] = "void" @@ -12946,9 +13005,9 @@ defs["igStyleColorsDark"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void*)0))" defs["igStyleColorsDark"][1]["call_args"] = "(dst)" defs["igStyleColorsDark"][1]["cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["defaults"] = {} -defs["igStyleColorsDark"][1]["defaults"]["dst"] = "((void*)0)" +defs["igStyleColorsDark"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsDark"][1]["funcname"] = "StyleColorsDark" -defs["igStyleColorsDark"][1]["location"] = "imgui" +defs["igStyleColorsDark"][1]["location"] = "imgui:268" defs["igStyleColorsDark"][1]["namespace"] = "ImGui" defs["igStyleColorsDark"][1]["ov_cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["ret"] = "void" @@ -12966,15 +13025,38 @@ defs["igStyleColorsLight"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void*)0))" defs["igStyleColorsLight"][1]["call_args"] = "(dst)" defs["igStyleColorsLight"][1]["cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["defaults"] = {} -defs["igStyleColorsLight"][1]["defaults"]["dst"] = "((void*)0)" +defs["igStyleColorsLight"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsLight"][1]["funcname"] = "StyleColorsLight" -defs["igStyleColorsLight"][1]["location"] = "imgui" +defs["igStyleColorsLight"][1]["location"] = "imgui:270" defs["igStyleColorsLight"][1]["namespace"] = "ImGui" defs["igStyleColorsLight"][1]["ov_cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["ret"] = "void" defs["igStyleColorsLight"][1]["signature"] = "(ImGuiStyle*)" defs["igStyleColorsLight"][1]["stname"] = "" defs["igStyleColorsLight"]["(ImGuiStyle*)"] = defs["igStyleColorsLight"][1] +defs["igTabItemButton"] = {} +defs["igTabItemButton"][1] = {} +defs["igTabItemButton"][1]["args"] = "(const char* label,ImGuiTabItemFlags flags)" +defs["igTabItemButton"][1]["argsT"] = {} +defs["igTabItemButton"][1]["argsT"][1] = {} +defs["igTabItemButton"][1]["argsT"][1]["name"] = "label" +defs["igTabItemButton"][1]["argsT"][1]["type"] = "const char*" +defs["igTabItemButton"][1]["argsT"][2] = {} +defs["igTabItemButton"][1]["argsT"][2]["name"] = "flags" +defs["igTabItemButton"][1]["argsT"][2]["type"] = "ImGuiTabItemFlags" +defs["igTabItemButton"][1]["argsoriginal"] = "(const char* label,ImGuiTabItemFlags flags=0)" +defs["igTabItemButton"][1]["call_args"] = "(label,flags)" +defs["igTabItemButton"][1]["cimguiname"] = "igTabItemButton" +defs["igTabItemButton"][1]["defaults"] = {} +defs["igTabItemButton"][1]["defaults"]["flags"] = "0" +defs["igTabItemButton"][1]["funcname"] = "TabItemButton" +defs["igTabItemButton"][1]["location"] = "imgui:658" +defs["igTabItemButton"][1]["namespace"] = "ImGui" +defs["igTabItemButton"][1]["ov_cimguiname"] = "igTabItemButton" +defs["igTabItemButton"][1]["ret"] = "bool" +defs["igTabItemButton"][1]["signature"] = "(const char*,ImGuiTabItemFlags)" +defs["igTabItemButton"][1]["stname"] = "" +defs["igTabItemButton"]["(const char*,ImGuiTabItemFlags)"] = defs["igTabItemButton"][1] defs["igText"] = {} defs["igText"][1] = {} defs["igText"][1]["args"] = "(const char* fmt,...)" @@ -12991,7 +13073,7 @@ defs["igText"][1]["cimguiname"] = "igText" defs["igText"][1]["defaults"] = {} defs["igText"][1]["funcname"] = "Text" defs["igText"][1]["isvararg"] = "...)" -defs["igText"][1]["location"] = "imgui" +defs["igText"][1]["location"] = "imgui:424" defs["igText"][1]["namespace"] = "ImGui" defs["igText"][1]["ov_cimguiname"] = "igText" defs["igText"][1]["ret"] = "void" @@ -13017,7 +13099,7 @@ defs["igTextColored"][1]["cimguiname"] = "igTextColored" defs["igTextColored"][1]["defaults"] = {} defs["igTextColored"][1]["funcname"] = "TextColored" defs["igTextColored"][1]["isvararg"] = "...)" -defs["igTextColored"][1]["location"] = "imgui" +defs["igTextColored"][1]["location"] = "imgui:426" defs["igTextColored"][1]["namespace"] = "ImGui" defs["igTextColored"][1]["ov_cimguiname"] = "igTextColored" defs["igTextColored"][1]["ret"] = "void" @@ -13042,7 +13124,7 @@ defs["igTextColoredV"][1]["call_args"] = "(col,fmt,args)" defs["igTextColoredV"][1]["cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["defaults"] = {} defs["igTextColoredV"][1]["funcname"] = "TextColoredV" -defs["igTextColoredV"][1]["location"] = "imgui" +defs["igTextColoredV"][1]["location"] = "imgui:427" defs["igTextColoredV"][1]["namespace"] = "ImGui" defs["igTextColoredV"][1]["ov_cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["ret"] = "void" @@ -13065,7 +13147,7 @@ defs["igTextDisabled"][1]["cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["defaults"] = {} defs["igTextDisabled"][1]["funcname"] = "TextDisabled" defs["igTextDisabled"][1]["isvararg"] = "...)" -defs["igTextDisabled"][1]["location"] = "imgui" +defs["igTextDisabled"][1]["location"] = "imgui:428" defs["igTextDisabled"][1]["namespace"] = "ImGui" defs["igTextDisabled"][1]["ov_cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["ret"] = "void" @@ -13087,7 +13169,7 @@ defs["igTextDisabledV"][1]["call_args"] = "(fmt,args)" defs["igTextDisabledV"][1]["cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["defaults"] = {} defs["igTextDisabledV"][1]["funcname"] = "TextDisabledV" -defs["igTextDisabledV"][1]["location"] = "imgui" +defs["igTextDisabledV"][1]["location"] = "imgui:429" defs["igTextDisabledV"][1]["namespace"] = "ImGui" defs["igTextDisabledV"][1]["ov_cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["ret"] = "void" @@ -13108,9 +13190,9 @@ defs["igTextUnformatted"][1]["argsoriginal"] = "(const char* text,const char* te defs["igTextUnformatted"][1]["call_args"] = "(text,text_end)" defs["igTextUnformatted"][1]["cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["defaults"] = {} -defs["igTextUnformatted"][1]["defaults"]["text_end"] = "((void*)0)" +defs["igTextUnformatted"][1]["defaults"]["text_end"] = "NULL" defs["igTextUnformatted"][1]["funcname"] = "TextUnformatted" -defs["igTextUnformatted"][1]["location"] = "imgui" +defs["igTextUnformatted"][1]["location"] = "imgui:423" defs["igTextUnformatted"][1]["namespace"] = "ImGui" defs["igTextUnformatted"][1]["ov_cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["ret"] = "void" @@ -13132,7 +13214,7 @@ defs["igTextV"][1]["call_args"] = "(fmt,args)" defs["igTextV"][1]["cimguiname"] = "igTextV" defs["igTextV"][1]["defaults"] = {} defs["igTextV"][1]["funcname"] = "TextV" -defs["igTextV"][1]["location"] = "imgui" +defs["igTextV"][1]["location"] = "imgui:425" defs["igTextV"][1]["namespace"] = "ImGui" defs["igTextV"][1]["ov_cimguiname"] = "igTextV" defs["igTextV"][1]["ret"] = "void" @@ -13155,7 +13237,7 @@ defs["igTextWrapped"][1]["cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["defaults"] = {} defs["igTextWrapped"][1]["funcname"] = "TextWrapped" defs["igTextWrapped"][1]["isvararg"] = "...)" -defs["igTextWrapped"][1]["location"] = "imgui" +defs["igTextWrapped"][1]["location"] = "imgui:430" defs["igTextWrapped"][1]["namespace"] = "ImGui" defs["igTextWrapped"][1]["ov_cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["ret"] = "void" @@ -13177,7 +13259,7 @@ defs["igTextWrappedV"][1]["call_args"] = "(fmt,args)" defs["igTextWrappedV"][1]["cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["defaults"] = {} defs["igTextWrappedV"][1]["funcname"] = "TextWrappedV" -defs["igTextWrappedV"][1]["location"] = "imgui" +defs["igTextWrappedV"][1]["location"] = "imgui:431" defs["igTextWrappedV"][1]["namespace"] = "ImGui" defs["igTextWrappedV"][1]["ov_cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["ret"] = "void" @@ -13196,7 +13278,7 @@ defs["igTreeNode"][1]["call_args"] = "(label)" defs["igTreeNode"][1]["cimguiname"] = "igTreeNode" defs["igTreeNode"][1]["defaults"] = {} defs["igTreeNode"][1]["funcname"] = "TreeNode" -defs["igTreeNode"][1]["location"] = "imgui" +defs["igTreeNode"][1]["location"] = "imgui:537" defs["igTreeNode"][1]["namespace"] = "ImGui" defs["igTreeNode"][1]["ov_cimguiname"] = "igTreeNodeStr" defs["igTreeNode"][1]["ret"] = "bool" @@ -13220,7 +13302,7 @@ defs["igTreeNode"][2]["cimguiname"] = "igTreeNode" defs["igTreeNode"][2]["defaults"] = {} defs["igTreeNode"][2]["funcname"] = "TreeNode" defs["igTreeNode"][2]["isvararg"] = "...)" -defs["igTreeNode"][2]["location"] = "imgui" +defs["igTreeNode"][2]["location"] = "imgui:538" defs["igTreeNode"][2]["namespace"] = "ImGui" defs["igTreeNode"][2]["ov_cimguiname"] = "igTreeNodeStrStr" defs["igTreeNode"][2]["ret"] = "bool" @@ -13244,7 +13326,7 @@ defs["igTreeNode"][3]["cimguiname"] = "igTreeNode" defs["igTreeNode"][3]["defaults"] = {} defs["igTreeNode"][3]["funcname"] = "TreeNode" defs["igTreeNode"][3]["isvararg"] = "...)" -defs["igTreeNode"][3]["location"] = "imgui" +defs["igTreeNode"][3]["location"] = "imgui:539" defs["igTreeNode"][3]["namespace"] = "ImGui" defs["igTreeNode"][3]["ov_cimguiname"] = "igTreeNodePtr" defs["igTreeNode"][3]["ret"] = "bool" @@ -13269,7 +13351,7 @@ defs["igTreeNodeEx"][1]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][1]["defaults"] = {} defs["igTreeNodeEx"][1]["defaults"]["flags"] = "0" defs["igTreeNodeEx"][1]["funcname"] = "TreeNodeEx" -defs["igTreeNodeEx"][1]["location"] = "imgui" +defs["igTreeNodeEx"][1]["location"] = "imgui:542" defs["igTreeNodeEx"][1]["namespace"] = "ImGui" defs["igTreeNodeEx"][1]["ov_cimguiname"] = "igTreeNodeExStr" defs["igTreeNodeEx"][1]["ret"] = "bool" @@ -13296,7 +13378,7 @@ defs["igTreeNodeEx"][2]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][2]["defaults"] = {} defs["igTreeNodeEx"][2]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][2]["isvararg"] = "...)" -defs["igTreeNodeEx"][2]["location"] = "imgui" +defs["igTreeNodeEx"][2]["location"] = "imgui:543" defs["igTreeNodeEx"][2]["namespace"] = "ImGui" defs["igTreeNodeEx"][2]["ov_cimguiname"] = "igTreeNodeExStrStr" defs["igTreeNodeEx"][2]["ret"] = "bool" @@ -13323,7 +13405,7 @@ defs["igTreeNodeEx"][3]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][3]["defaults"] = {} defs["igTreeNodeEx"][3]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][3]["isvararg"] = "...)" -defs["igTreeNodeEx"][3]["location"] = "imgui" +defs["igTreeNodeEx"][3]["location"] = "imgui:544" defs["igTreeNodeEx"][3]["namespace"] = "ImGui" defs["igTreeNodeEx"][3]["ov_cimguiname"] = "igTreeNodeExPtr" defs["igTreeNodeEx"][3]["ret"] = "bool" @@ -13353,7 +13435,7 @@ defs["igTreeNodeExV"][1]["call_args"] = "(str_id,flags,fmt,args)" defs["igTreeNodeExV"][1]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][1]["defaults"] = {} defs["igTreeNodeExV"][1]["funcname"] = "TreeNodeExV" -defs["igTreeNodeExV"][1]["location"] = "imgui" +defs["igTreeNodeExV"][1]["location"] = "imgui:545" defs["igTreeNodeExV"][1]["namespace"] = "ImGui" defs["igTreeNodeExV"][1]["ov_cimguiname"] = "igTreeNodeExVStr" defs["igTreeNodeExV"][1]["ret"] = "bool" @@ -13379,7 +13461,7 @@ defs["igTreeNodeExV"][2]["call_args"] = "(ptr_id,flags,fmt,args)" defs["igTreeNodeExV"][2]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][2]["defaults"] = {} defs["igTreeNodeExV"][2]["funcname"] = "TreeNodeExV" -defs["igTreeNodeExV"][2]["location"] = "imgui" +defs["igTreeNodeExV"][2]["location"] = "imgui:546" defs["igTreeNodeExV"][2]["namespace"] = "ImGui" defs["igTreeNodeExV"][2]["ov_cimguiname"] = "igTreeNodeExVPtr" defs["igTreeNodeExV"][2]["ret"] = "bool" @@ -13405,7 +13487,7 @@ defs["igTreeNodeV"][1]["call_args"] = "(str_id,fmt,args)" defs["igTreeNodeV"][1]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][1]["defaults"] = {} defs["igTreeNodeV"][1]["funcname"] = "TreeNodeV" -defs["igTreeNodeV"][1]["location"] = "imgui" +defs["igTreeNodeV"][1]["location"] = "imgui:540" defs["igTreeNodeV"][1]["namespace"] = "ImGui" defs["igTreeNodeV"][1]["ov_cimguiname"] = "igTreeNodeVStr" defs["igTreeNodeV"][1]["ret"] = "bool" @@ -13428,7 +13510,7 @@ defs["igTreeNodeV"][2]["call_args"] = "(ptr_id,fmt,args)" defs["igTreeNodeV"][2]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][2]["defaults"] = {} defs["igTreeNodeV"][2]["funcname"] = "TreeNodeV" -defs["igTreeNodeV"][2]["location"] = "imgui" +defs["igTreeNodeV"][2]["location"] = "imgui:541" defs["igTreeNodeV"][2]["namespace"] = "ImGui" defs["igTreeNodeV"][2]["ov_cimguiname"] = "igTreeNodeVPtr" defs["igTreeNodeV"][2]["ret"] = "bool" @@ -13445,7 +13527,7 @@ defs["igTreePop"][1]["call_args"] = "()" defs["igTreePop"][1]["cimguiname"] = "igTreePop" defs["igTreePop"][1]["defaults"] = {} defs["igTreePop"][1]["funcname"] = "TreePop" -defs["igTreePop"][1]["location"] = "imgui" +defs["igTreePop"][1]["location"] = "imgui:549" defs["igTreePop"][1]["namespace"] = "ImGui" defs["igTreePop"][1]["ov_cimguiname"] = "igTreePop" defs["igTreePop"][1]["ret"] = "void" @@ -13464,7 +13546,7 @@ defs["igTreePush"][1]["call_args"] = "(str_id)" defs["igTreePush"][1]["cimguiname"] = "igTreePush" defs["igTreePush"][1]["defaults"] = {} defs["igTreePush"][1]["funcname"] = "TreePush" -defs["igTreePush"][1]["location"] = "imgui" +defs["igTreePush"][1]["location"] = "imgui:547" defs["igTreePush"][1]["namespace"] = "ImGui" defs["igTreePush"][1]["ov_cimguiname"] = "igTreePushStr" defs["igTreePush"][1]["ret"] = "void" @@ -13480,9 +13562,9 @@ defs["igTreePush"][2]["argsoriginal"] = "(const void* ptr_id=((void*)0))" defs["igTreePush"][2]["call_args"] = "(ptr_id)" defs["igTreePush"][2]["cimguiname"] = "igTreePush" defs["igTreePush"][2]["defaults"] = {} -defs["igTreePush"][2]["defaults"]["ptr_id"] = "((void*)0)" +defs["igTreePush"][2]["defaults"]["ptr_id"] = "NULL" defs["igTreePush"][2]["funcname"] = "TreePush" -defs["igTreePush"][2]["location"] = "imgui" +defs["igTreePush"][2]["location"] = "imgui:548" defs["igTreePush"][2]["namespace"] = "ImGui" defs["igTreePush"][2]["ov_cimguiname"] = "igTreePushPtr" defs["igTreePush"][2]["ret"] = "void" @@ -13503,7 +13585,7 @@ defs["igUnindent"][1]["cimguiname"] = "igUnindent" defs["igUnindent"][1]["defaults"] = {} defs["igUnindent"][1]["defaults"]["indent_w"] = "0.0f" defs["igUnindent"][1]["funcname"] = "Unindent" -defs["igUnindent"][1]["location"] = "imgui" +defs["igUnindent"][1]["location"] = "imgui:388" defs["igUnindent"][1]["namespace"] = "ImGui" defs["igUnindent"][1]["ov_cimguiname"] = "igUnindent" defs["igUnindent"][1]["ret"] = "void" @@ -13542,7 +13624,7 @@ defs["igVSliderFloat"][1]["defaults"] = {} defs["igVSliderFloat"][1]["defaults"]["flags"] = "0" defs["igVSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igVSliderFloat"][1]["funcname"] = "VSliderFloat" -defs["igVSliderFloat"][1]["location"] = "imgui" +defs["igVSliderFloat"][1]["location"] = "imgui:503" defs["igVSliderFloat"][1]["namespace"] = "ImGui" defs["igVSliderFloat"][1]["ov_cimguiname"] = "igVSliderFloat" defs["igVSliderFloat"][1]["ret"] = "bool" @@ -13581,7 +13663,7 @@ defs["igVSliderInt"][1]["defaults"] = {} defs["igVSliderInt"][1]["defaults"]["flags"] = "0" defs["igVSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igVSliderInt"][1]["funcname"] = "VSliderInt" -defs["igVSliderInt"][1]["location"] = "imgui" +defs["igVSliderInt"][1]["location"] = "imgui:504" defs["igVSliderInt"][1]["namespace"] = "ImGui" defs["igVSliderInt"][1]["ov_cimguiname"] = "igVSliderInt" defs["igVSliderInt"][1]["ret"] = "bool" @@ -13621,9 +13703,9 @@ defs["igVSliderScalar"][1]["call_args"] = "(label,size,data_type,p_data,p_min,p_ defs["igVSliderScalar"][1]["cimguiname"] = "igVSliderScalar" defs["igVSliderScalar"][1]["defaults"] = {} defs["igVSliderScalar"][1]["defaults"]["flags"] = "0" -defs["igVSliderScalar"][1]["defaults"]["format"] = "((void*)0)" +defs["igVSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igVSliderScalar"][1]["funcname"] = "VSliderScalar" -defs["igVSliderScalar"][1]["location"] = "imgui" +defs["igVSliderScalar"][1]["location"] = "imgui:505" defs["igVSliderScalar"][1]["namespace"] = "ImGui" defs["igVSliderScalar"][1]["ov_cimguiname"] = "igVSliderScalar" defs["igVSliderScalar"][1]["ret"] = "bool" @@ -13645,7 +13727,7 @@ defs["igValue"][1]["call_args"] = "(prefix,b)" defs["igValue"][1]["cimguiname"] = "igValue" defs["igValue"][1]["defaults"] = {} defs["igValue"][1]["funcname"] = "Value" -defs["igValue"][1]["location"] = "imgui" +defs["igValue"][1]["location"] = "imgui:577" defs["igValue"][1]["namespace"] = "ImGui" defs["igValue"][1]["ov_cimguiname"] = "igValueBool" defs["igValue"][1]["ret"] = "void" @@ -13665,7 +13747,7 @@ defs["igValue"][2]["call_args"] = "(prefix,v)" defs["igValue"][2]["cimguiname"] = "igValue" defs["igValue"][2]["defaults"] = {} defs["igValue"][2]["funcname"] = "Value" -defs["igValue"][2]["location"] = "imgui" +defs["igValue"][2]["location"] = "imgui:578" defs["igValue"][2]["namespace"] = "ImGui" defs["igValue"][2]["ov_cimguiname"] = "igValueInt" defs["igValue"][2]["ret"] = "void" @@ -13685,7 +13767,7 @@ defs["igValue"][3]["call_args"] = "(prefix,v)" defs["igValue"][3]["cimguiname"] = "igValue" defs["igValue"][3]["defaults"] = {} defs["igValue"][3]["funcname"] = "Value" -defs["igValue"][3]["location"] = "imgui" +defs["igValue"][3]["location"] = "imgui:579" defs["igValue"][3]["namespace"] = "ImGui" defs["igValue"][3]["ov_cimguiname"] = "igValueUint" defs["igValue"][3]["ret"] = "void" @@ -13707,9 +13789,9 @@ defs["igValue"][4]["argsoriginal"] = "(const char* prefix,float v,const char* fl defs["igValue"][4]["call_args"] = "(prefix,v,float_format)" defs["igValue"][4]["cimguiname"] = "igValue" defs["igValue"][4]["defaults"] = {} -defs["igValue"][4]["defaults"]["float_format"] = "((void*)0)" +defs["igValue"][4]["defaults"]["float_format"] = "NULL" defs["igValue"][4]["funcname"] = "Value" -defs["igValue"][4]["location"] = "imgui" +defs["igValue"][4]["location"] = "imgui:580" defs["igValue"][4]["namespace"] = "ImGui" defs["igValue"][4]["ov_cimguiname"] = "igValueFloat" defs["igValue"][4]["ret"] = "void" diff --git a/imgui-sys/third-party/imgui b/imgui-sys/third-party/imgui index 95c99aa..e5cb04b 160000 --- a/imgui-sys/third-party/imgui +++ b/imgui-sys/third-party/imgui @@ -1 +1 @@ -Subproject commit 95c99aaa4be611716093edcb6b01146ab9483f30 +Subproject commit e5cb04b132cba94f902beb6186cb58b864777012 diff --git a/imgui-sys/third-party/impl_definitions.json b/imgui-sys/third-party/impl_definitions.json index 8202aac..86b7879 100644 --- a/imgui-sys/third-party/impl_definitions.json +++ b/imgui-sys/third-party/impl_definitions.json @@ -15,9 +15,9 @@ "argsoriginal": "(GLFWwindow* window,unsigned int c)", "call_args": "(window,c)", "cimguiname": "ImGui_ImplGlfw_CharCallback", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplGlfw_CharCallback", - "location": "imgui_impl_glfw", + "location": "imgui_impl_glfw:35", "ov_cimguiname": "ImGui_ImplGlfw_CharCallback", "ret": "void", "signature": "(GLFWwindow*,unsigned int)", @@ -40,9 +40,9 @@ "argsoriginal": "(GLFWwindow* window,bool install_callbacks)", "call_args": "(window,install_callbacks)", "cimguiname": "ImGui_ImplGlfw_InitForOpenGL", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplGlfw_InitForOpenGL", - "location": "imgui_impl_glfw", + "location": "imgui_impl_glfw:24", "ov_cimguiname": "ImGui_ImplGlfw_InitForOpenGL", "ret": "bool", "signature": "(GLFWwindow*,bool)", @@ -65,9 +65,9 @@ "argsoriginal": "(GLFWwindow* window,bool install_callbacks)", "call_args": "(window,install_callbacks)", "cimguiname": "ImGui_ImplGlfw_InitForVulkan", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplGlfw_InitForVulkan", - "location": "imgui_impl_glfw", + "location": "imgui_impl_glfw:25", "ov_cimguiname": "ImGui_ImplGlfw_InitForVulkan", "ret": "bool", "signature": "(GLFWwindow*,bool)", @@ -102,9 +102,9 @@ "argsoriginal": "(GLFWwindow* window,int key,int scancode,int action,int mods)", "call_args": "(window,key,scancode,action,mods)", "cimguiname": "ImGui_ImplGlfw_KeyCallback", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplGlfw_KeyCallback", - "location": "imgui_impl_glfw", + "location": "imgui_impl_glfw:34", "ov_cimguiname": "ImGui_ImplGlfw_KeyCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int,int)", @@ -135,9 +135,9 @@ "argsoriginal": "(GLFWwindow* window,int button,int action,int mods)", "call_args": "(window,button,action,mods)", "cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplGlfw_MouseButtonCallback", - "location": "imgui_impl_glfw", + "location": "imgui_impl_glfw:32", "ov_cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int)", @@ -151,9 +151,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplGlfw_NewFrame", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplGlfw_NewFrame", - "location": "imgui_impl_glfw", + "location": "imgui_impl_glfw:27", "ov_cimguiname": "ImGui_ImplGlfw_NewFrame", "ret": "void", "signature": "()", @@ -180,9 +180,9 @@ "argsoriginal": "(GLFWwindow* window,double xoffset,double yoffset)", "call_args": "(window,xoffset,yoffset)", "cimguiname": "ImGui_ImplGlfw_ScrollCallback", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplGlfw_ScrollCallback", - "location": "imgui_impl_glfw", + "location": "imgui_impl_glfw:33", "ov_cimguiname": "ImGui_ImplGlfw_ScrollCallback", "ret": "void", "signature": "(GLFWwindow*,double,double)", @@ -196,9 +196,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplGlfw_Shutdown", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplGlfw_Shutdown", - "location": "imgui_impl_glfw", + "location": "imgui_impl_glfw:26", "ov_cimguiname": "ImGui_ImplGlfw_Shutdown", "ret": "void", "signature": "()", @@ -212,9 +212,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL2_CreateDeviceObjects", - "location": "imgui_impl_opengl2", + "location": "imgui_impl_opengl2:30", "ov_cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "ret": "bool", "signature": "()", @@ -228,9 +228,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL2_CreateFontsTexture", - "location": "imgui_impl_opengl2", + "location": "imgui_impl_opengl2:28", "ov_cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", "ret": "bool", "signature": "()", @@ -244,9 +244,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", - "location": "imgui_impl_opengl2", + "location": "imgui_impl_opengl2:31", "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "ret": "void", "signature": "()", @@ -260,9 +260,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL2_DestroyFontsTexture", - "location": "imgui_impl_opengl2", + "location": "imgui_impl_opengl2:29", "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", "ret": "void", "signature": "()", @@ -276,9 +276,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_Init", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL2_Init", - "location": "imgui_impl_opengl2", + "location": "imgui_impl_opengl2:22", "ov_cimguiname": "ImGui_ImplOpenGL2_Init", "ret": "bool", "signature": "()", @@ -292,9 +292,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_NewFrame", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL2_NewFrame", - "location": "imgui_impl_opengl2", + "location": "imgui_impl_opengl2:24", "ov_cimguiname": "ImGui_ImplOpenGL2_NewFrame", "ret": "void", "signature": "()", @@ -313,9 +313,9 @@ "argsoriginal": "(ImDrawData* draw_data)", "call_args": "(draw_data)", "cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL2_RenderDrawData", - "location": "imgui_impl_opengl2", + "location": "imgui_impl_opengl2:25", "ov_cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", @@ -329,9 +329,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_Shutdown", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL2_Shutdown", - "location": "imgui_impl_opengl2", + "location": "imgui_impl_opengl2:23", "ov_cimguiname": "ImGui_ImplOpenGL2_Shutdown", "ret": "void", "signature": "()", @@ -345,9 +345,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL3_CreateDeviceObjects", - "location": "imgui_impl_opengl3", + "location": "imgui_impl_opengl3:36", "ov_cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", "ret": "bool", "signature": "()", @@ -361,9 +361,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL3_CreateFontsTexture", - "location": "imgui_impl_opengl3", + "location": "imgui_impl_opengl3:34", "ov_cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", "ret": "bool", "signature": "()", @@ -377,9 +377,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", - "location": "imgui_impl_opengl3", + "location": "imgui_impl_opengl3:37", "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", "ret": "void", "signature": "()", @@ -393,9 +393,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL3_DestroyFontsTexture", - "location": "imgui_impl_opengl3", + "location": "imgui_impl_opengl3:35", "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", "ret": "void", "signature": "()", @@ -418,7 +418,7 @@ "glsl_version": "((void*)0)" }, "funcname": "ImGui_ImplOpenGL3_Init", - "location": "imgui_impl_opengl3", + "location": "imgui_impl_opengl3:28", "ov_cimguiname": "ImGui_ImplOpenGL3_Init", "ret": "bool", "signature": "(const char*)", @@ -432,9 +432,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_NewFrame", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL3_NewFrame", - "location": "imgui_impl_opengl3", + "location": "imgui_impl_opengl3:30", "ov_cimguiname": "ImGui_ImplOpenGL3_NewFrame", "ret": "void", "signature": "()", @@ -453,9 +453,9 @@ "argsoriginal": "(ImDrawData* draw_data)", "call_args": "(draw_data)", "cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL3_RenderDrawData", - "location": "imgui_impl_opengl3", + "location": "imgui_impl_opengl3:31", "ov_cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", @@ -469,9 +469,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_Shutdown", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL3_Shutdown", - "location": "imgui_impl_opengl3", + "location": "imgui_impl_opengl3:29", "ov_cimguiname": "ImGui_ImplOpenGL3_Shutdown", "ret": "void", "signature": "()", @@ -490,9 +490,9 @@ "argsoriginal": "(SDL_Window* window)", "call_args": "(window)", "cimguiname": "ImGui_ImplSDL2_InitForD3D", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForD3D", - "location": "imgui_impl_sdl", + "location": "imgui_impl_sdl:25", "ov_cimguiname": "ImGui_ImplSDL2_InitForD3D", "ret": "bool", "signature": "(SDL_Window*)", @@ -511,9 +511,9 @@ "argsoriginal": "(SDL_Window* window)", "call_args": "(window)", "cimguiname": "ImGui_ImplSDL2_InitForMetal", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForMetal", - "location": "imgui_impl_sdl", + "location": "imgui_impl_sdl:26", "ov_cimguiname": "ImGui_ImplSDL2_InitForMetal", "ret": "bool", "signature": "(SDL_Window*)", @@ -536,9 +536,9 @@ "argsoriginal": "(SDL_Window* window,void* sdl_gl_context)", "call_args": "(window,sdl_gl_context)", "cimguiname": "ImGui_ImplSDL2_InitForOpenGL", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForOpenGL", - "location": "imgui_impl_sdl", + "location": "imgui_impl_sdl:23", "ov_cimguiname": "ImGui_ImplSDL2_InitForOpenGL", "ret": "bool", "signature": "(SDL_Window*,void*)", @@ -557,9 +557,9 @@ "argsoriginal": "(SDL_Window* window)", "call_args": "(window)", "cimguiname": "ImGui_ImplSDL2_InitForVulkan", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForVulkan", - "location": "imgui_impl_sdl", + "location": "imgui_impl_sdl:24", "ov_cimguiname": "ImGui_ImplSDL2_InitForVulkan", "ret": "bool", "signature": "(SDL_Window*)", @@ -578,9 +578,9 @@ "argsoriginal": "(SDL_Window* window)", "call_args": "(window)", "cimguiname": "ImGui_ImplSDL2_NewFrame", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplSDL2_NewFrame", - "location": "imgui_impl_sdl", + "location": "imgui_impl_sdl:28", "ov_cimguiname": "ImGui_ImplSDL2_NewFrame", "ret": "void", "signature": "(SDL_Window*)", @@ -599,9 +599,9 @@ "argsoriginal": "(const SDL_Event* event)", "call_args": "(event)", "cimguiname": "ImGui_ImplSDL2_ProcessEvent", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplSDL2_ProcessEvent", - "location": "imgui_impl_sdl", + "location": "imgui_impl_sdl:29", "ov_cimguiname": "ImGui_ImplSDL2_ProcessEvent", "ret": "bool", "signature": "(const SDL_Event*)", @@ -615,9 +615,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplSDL2_Shutdown", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplSDL2_Shutdown", - "location": "imgui_impl_sdl", + "location": "imgui_impl_sdl:27", "ov_cimguiname": "ImGui_ImplSDL2_Shutdown", "ret": "void", "signature": "()", diff --git a/imgui-sys/third-party/impl_definitions.lua b/imgui-sys/third-party/impl_definitions.lua index f9e044f..f3ba74d 100644 --- a/imgui-sys/third-party/impl_definitions.lua +++ b/imgui-sys/third-party/impl_definitions.lua @@ -14,7 +14,7 @@ defs["ImGui_ImplGlfw_CharCallback"][1]["call_args"] = "(window,c)" defs["ImGui_ImplGlfw_CharCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CharCallback" defs["ImGui_ImplGlfw_CharCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CharCallback"][1]["funcname"] = "ImGui_ImplGlfw_CharCallback" -defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw:35" defs["ImGui_ImplGlfw_CharCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CharCallback" defs["ImGui_ImplGlfw_CharCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_CharCallback"][1]["signature"] = "(GLFWwindow*,unsigned int)" @@ -35,7 +35,7 @@ defs["ImGui_ImplGlfw_InitForOpenGL"][1]["call_args"] = "(window,install_callback defs["ImGui_ImplGlfw_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForOpenGL"][1]["funcname"] = "ImGui_ImplGlfw_InitForOpenGL" -defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw:24" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["signature"] = "(GLFWwindow*,bool)" @@ -56,7 +56,7 @@ defs["ImGui_ImplGlfw_InitForVulkan"][1]["call_args"] = "(window,install_callback defs["ImGui_ImplGlfw_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForVulkan" defs["ImGui_ImplGlfw_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForVulkan"][1]["funcname"] = "ImGui_ImplGlfw_InitForVulkan" -defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw:25" defs["ImGui_ImplGlfw_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForVulkan" defs["ImGui_ImplGlfw_InitForVulkan"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForVulkan"][1]["signature"] = "(GLFWwindow*,bool)" @@ -86,7 +86,7 @@ defs["ImGui_ImplGlfw_KeyCallback"][1]["call_args"] = "(window,key,scancode,actio defs["ImGui_ImplGlfw_KeyCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_KeyCallback" defs["ImGui_ImplGlfw_KeyCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_KeyCallback"][1]["funcname"] = "ImGui_ImplGlfw_KeyCallback" -defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw:34" defs["ImGui_ImplGlfw_KeyCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_KeyCallback" defs["ImGui_ImplGlfw_KeyCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_KeyCallback"][1]["signature"] = "(GLFWwindow*,int,int,int,int)" @@ -113,7 +113,7 @@ defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["call_args"] = "(window,button,act defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["funcname"] = "ImGui_ImplGlfw_MouseButtonCallback" -defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw:32" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["signature"] = "(GLFWwindow*,int,int,int)" @@ -128,7 +128,7 @@ defs["ImGui_ImplGlfw_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplGlfw_NewFrame"][1]["cimguiname"] = "ImGui_ImplGlfw_NewFrame" defs["ImGui_ImplGlfw_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplGlfw_NewFrame"][1]["funcname"] = "ImGui_ImplGlfw_NewFrame" -defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw:27" defs["ImGui_ImplGlfw_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_NewFrame" defs["ImGui_ImplGlfw_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplGlfw_NewFrame"][1]["signature"] = "()" @@ -152,7 +152,7 @@ defs["ImGui_ImplGlfw_ScrollCallback"][1]["call_args"] = "(window,xoffset,yoffset defs["ImGui_ImplGlfw_ScrollCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_ScrollCallback" defs["ImGui_ImplGlfw_ScrollCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_ScrollCallback"][1]["funcname"] = "ImGui_ImplGlfw_ScrollCallback" -defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw:33" defs["ImGui_ImplGlfw_ScrollCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_ScrollCallback" defs["ImGui_ImplGlfw_ScrollCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_ScrollCallback"][1]["signature"] = "(GLFWwindow*,double,double)" @@ -167,7 +167,7 @@ defs["ImGui_ImplGlfw_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplGlfw_Shutdown"][1]["cimguiname"] = "ImGui_ImplGlfw_Shutdown" defs["ImGui_ImplGlfw_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplGlfw_Shutdown"][1]["funcname"] = "ImGui_ImplGlfw_Shutdown" -defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw:26" defs["ImGui_ImplGlfw_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_Shutdown" defs["ImGui_ImplGlfw_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplGlfw_Shutdown"][1]["signature"] = "()" @@ -182,7 +182,7 @@ defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" -defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl2:30" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["signature"] = "()" @@ -197,7 +197,7 @@ defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" -defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl2:28" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["signature"] = "()" @@ -212,7 +212,7 @@ defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" -defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl2:31" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["signature"] = "()" @@ -227,7 +227,7 @@ defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" -defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl2:29" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["signature"] = "()" @@ -242,7 +242,7 @@ defs["ImGui_ImplOpenGL2_Init"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_Init"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Init" defs["ImGui_ImplOpenGL2_Init"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Init"][1]["funcname"] = "ImGui_ImplOpenGL2_Init" -defs["ImGui_ImplOpenGL2_Init"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_Init"][1]["location"] = "imgui_impl_opengl2:22" defs["ImGui_ImplOpenGL2_Init"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Init" defs["ImGui_ImplOpenGL2_Init"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_Init"][1]["signature"] = "()" @@ -257,7 +257,7 @@ defs["ImGui_ImplOpenGL2_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplOpenGL2_NewFrame" defs["ImGui_ImplOpenGL2_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_NewFrame"][1]["funcname"] = "ImGui_ImplOpenGL2_NewFrame" -defs["ImGui_ImplOpenGL2_NewFrame"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_NewFrame"][1]["location"] = "imgui_impl_opengl2:24" defs["ImGui_ImplOpenGL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_NewFrame" defs["ImGui_ImplOpenGL2_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_NewFrame"][1]["signature"] = "()" @@ -275,7 +275,7 @@ defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["call_args"] = "(draw_data)" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["cimguiname"] = "ImGui_ImplOpenGL2_RenderDrawData" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["funcname"] = "ImGui_ImplOpenGL2_RenderDrawData" -defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["location"] = "imgui_impl_opengl2:25" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_RenderDrawData" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["signature"] = "(ImDrawData*)" @@ -290,7 +290,7 @@ defs["ImGui_ImplOpenGL2_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Shutdown" defs["ImGui_ImplOpenGL2_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Shutdown"][1]["funcname"] = "ImGui_ImplOpenGL2_Shutdown" -defs["ImGui_ImplOpenGL2_Shutdown"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_Shutdown"][1]["location"] = "imgui_impl_opengl2:23" defs["ImGui_ImplOpenGL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Shutdown" defs["ImGui_ImplOpenGL2_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_Shutdown"][1]["signature"] = "()" @@ -305,7 +305,7 @@ defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" -defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl3:36" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["signature"] = "()" @@ -320,7 +320,7 @@ defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" -defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl3:34" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["signature"] = "()" @@ -335,7 +335,7 @@ defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" -defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl3:37" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["signature"] = "()" @@ -350,7 +350,7 @@ defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" -defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl3:35" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["signature"] = "()" @@ -369,7 +369,7 @@ defs["ImGui_ImplOpenGL3_Init"][1]["cimguiname"] = "ImGui_ImplOpenGL3_Init" defs["ImGui_ImplOpenGL3_Init"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_Init"][1]["defaults"]["glsl_version"] = "((void*)0)" defs["ImGui_ImplOpenGL3_Init"][1]["funcname"] = "ImGui_ImplOpenGL3_Init" -defs["ImGui_ImplOpenGL3_Init"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_Init"][1]["location"] = "imgui_impl_opengl3:28" defs["ImGui_ImplOpenGL3_Init"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_Init" defs["ImGui_ImplOpenGL3_Init"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_Init"][1]["signature"] = "(const char*)" @@ -384,7 +384,7 @@ defs["ImGui_ImplOpenGL3_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_NewFrame"][1]["cimguiname"] = "ImGui_ImplOpenGL3_NewFrame" defs["ImGui_ImplOpenGL3_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_NewFrame"][1]["funcname"] = "ImGui_ImplOpenGL3_NewFrame" -defs["ImGui_ImplOpenGL3_NewFrame"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_NewFrame"][1]["location"] = "imgui_impl_opengl3:30" defs["ImGui_ImplOpenGL3_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_NewFrame" defs["ImGui_ImplOpenGL3_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_NewFrame"][1]["signature"] = "()" @@ -402,7 +402,7 @@ defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["call_args"] = "(draw_data)" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["cimguiname"] = "ImGui_ImplOpenGL3_RenderDrawData" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["funcname"] = "ImGui_ImplOpenGL3_RenderDrawData" -defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["location"] = "imgui_impl_opengl3:31" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_RenderDrawData" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["signature"] = "(ImDrawData*)" @@ -417,7 +417,7 @@ defs["ImGui_ImplOpenGL3_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_Shutdown"][1]["cimguiname"] = "ImGui_ImplOpenGL3_Shutdown" defs["ImGui_ImplOpenGL3_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_Shutdown"][1]["funcname"] = "ImGui_ImplOpenGL3_Shutdown" -defs["ImGui_ImplOpenGL3_Shutdown"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_Shutdown"][1]["location"] = "imgui_impl_opengl3:29" defs["ImGui_ImplOpenGL3_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_Shutdown" defs["ImGui_ImplOpenGL3_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_Shutdown"][1]["signature"] = "()" @@ -435,7 +435,7 @@ defs["ImGui_ImplSDL2_InitForD3D"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_InitForD3D"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForD3D" defs["ImGui_ImplSDL2_InitForD3D"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForD3D"][1]["funcname"] = "ImGui_ImplSDL2_InitForD3D" -defs["ImGui_ImplSDL2_InitForD3D"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_InitForD3D"][1]["location"] = "imgui_impl_sdl:25" defs["ImGui_ImplSDL2_InitForD3D"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForD3D" defs["ImGui_ImplSDL2_InitForD3D"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForD3D"][1]["signature"] = "(SDL_Window*)" @@ -453,7 +453,7 @@ defs["ImGui_ImplSDL2_InitForMetal"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_InitForMetal"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForMetal" defs["ImGui_ImplSDL2_InitForMetal"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForMetal"][1]["funcname"] = "ImGui_ImplSDL2_InitForMetal" -defs["ImGui_ImplSDL2_InitForMetal"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_InitForMetal"][1]["location"] = "imgui_impl_sdl:26" defs["ImGui_ImplSDL2_InitForMetal"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForMetal" defs["ImGui_ImplSDL2_InitForMetal"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForMetal"][1]["signature"] = "(SDL_Window*)" @@ -474,7 +474,7 @@ defs["ImGui_ImplSDL2_InitForOpenGL"][1]["call_args"] = "(window,sdl_gl_context)" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForOpenGL"][1]["funcname"] = "ImGui_ImplSDL2_InitForOpenGL" -defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl:23" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["signature"] = "(SDL_Window*,void*)" @@ -492,7 +492,7 @@ defs["ImGui_ImplSDL2_InitForVulkan"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForVulkan" defs["ImGui_ImplSDL2_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForVulkan"][1]["funcname"] = "ImGui_ImplSDL2_InitForVulkan" -defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl:24" defs["ImGui_ImplSDL2_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForVulkan" defs["ImGui_ImplSDL2_InitForVulkan"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForVulkan"][1]["signature"] = "(SDL_Window*)" @@ -510,7 +510,7 @@ defs["ImGui_ImplSDL2_NewFrame"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplSDL2_NewFrame" defs["ImGui_ImplSDL2_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplSDL2_NewFrame"][1]["funcname"] = "ImGui_ImplSDL2_NewFrame" -defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl:28" defs["ImGui_ImplSDL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_NewFrame" defs["ImGui_ImplSDL2_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplSDL2_NewFrame"][1]["signature"] = "(SDL_Window*)" @@ -528,7 +528,7 @@ defs["ImGui_ImplSDL2_ProcessEvent"][1]["call_args"] = "(event)" defs["ImGui_ImplSDL2_ProcessEvent"][1]["cimguiname"] = "ImGui_ImplSDL2_ProcessEvent" defs["ImGui_ImplSDL2_ProcessEvent"][1]["defaults"] = {} defs["ImGui_ImplSDL2_ProcessEvent"][1]["funcname"] = "ImGui_ImplSDL2_ProcessEvent" -defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl:29" defs["ImGui_ImplSDL2_ProcessEvent"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_ProcessEvent" defs["ImGui_ImplSDL2_ProcessEvent"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_ProcessEvent"][1]["signature"] = "(const SDL_Event*)" @@ -543,7 +543,7 @@ defs["ImGui_ImplSDL2_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplSDL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplSDL2_Shutdown" defs["ImGui_ImplSDL2_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplSDL2_Shutdown"][1]["funcname"] = "ImGui_ImplSDL2_Shutdown" -defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl:27" defs["ImGui_ImplSDL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_Shutdown" defs["ImGui_ImplSDL2_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplSDL2_Shutdown"][1]["signature"] = "()" diff --git a/imgui-sys/third-party/overloads.txt b/imgui-sys/third-party/overloads.txt index fa7cffc..695ab2b 100644 --- a/imgui-sys/third-party/overloads.txt +++ b/imgui-sys/third-party/overloads.txt @@ -1,135 +1,135 @@ ----------------overloadings--------------------------- -ImVector_resize 2 -1 void ImVector_resizeNil (int) -2 void ImVector_resizeT (int,const T) -ImVec4_ImVec4 2 -1 nil ImVec4_ImVec4Nil () -2 nil ImVec4_ImVec4Float (float,float,float,float) -igValue 4 -1 void igValueBool (const char*,bool) -2 void igValueInt (const char*,int) -3 void igValueUint (const char*,unsigned int) -4 void igValueFloat (const char*,float,const char*) -igIsRectVisible 2 -1 bool igIsRectVisibleNil (const ImVec2) -2 bool igIsRectVisibleVec2 (const ImVec2,const ImVec2) -igRadioButton 2 -1 bool igRadioButtonBool (const char*,bool) -2 bool igRadioButtonIntPtr (const char*,int*,int) -ImGuiTextRange_ImGuiTextRange 2 -1 nil ImGuiTextRange_ImGuiTextRangeNil () -2 nil ImGuiTextRange_ImGuiTextRangeStr (const char*,const char*) -ImVec2_ImVec2 2 -1 nil ImVec2_ImVec2Nil () -2 nil ImVec2_ImVec2Float (float,float) -ImVector_back 2 -1 T* ImVector_backNil () -2 const T* ImVector_back_const ()const -igPlotHistogram 2 -1 void igPlotHistogramFloatPtr (const char*,const float*,int,int,const char*,float,float,ImVec2,int) -2 void igPlotHistogramFnFloatPtr (const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2) -igGetID 3 -1 ImGuiID igGetIDStr (const char*) -2 ImGuiID igGetIDStrStr (const char*,const char*) -3 ImGuiID igGetIDPtr (const void*) -igSetWindowPos 2 -1 void igSetWindowPosVec2 (const ImVec2,ImGuiCond) -2 void igSetWindowPosStr (const char*,const ImVec2,ImGuiCond) -igBeginChild 2 -1 bool igBeginChildStr (const char*,const ImVec2,bool,ImGuiWindowFlags) -2 bool igBeginChildID (ImGuiID,const ImVec2,bool,ImGuiWindowFlags) -igPushID 4 -1 void igPushIDStr (const char*) -2 void igPushIDStrStr (const char*,const char*) -3 void igPushIDPtr (const void*) -4 void igPushIDInt (int) -ImGuiStoragePair_ImGuiStoragePair 3 -1 nil ImGuiStoragePair_ImGuiStoragePairInt (ImGuiID,int) -2 nil ImGuiStoragePair_ImGuiStoragePairFloat (ImGuiID,float) -3 nil ImGuiStoragePair_ImGuiStoragePairPtr (ImGuiID,void*) -igTreeNode 3 -1 bool igTreeNodeStr (const char*) -2 bool igTreeNodeStrStr (const char*,const char*,...) -3 bool igTreeNodePtr (const void*,const char*,...) -igCombo 3 -1 bool igComboStr_arr (const char*,int*,const char* const[],int,int) -2 bool igComboStr (const char*,int*,const char*,int) -3 bool igComboFnBoolPtr (const char*,int*,bool(*)(void*,int,const char**),void*,int,int) -ImVector_erase 2 -1 T* ImVector_eraseNil (const T*) -2 T* ImVector_eraseTPtr (const T*,const T*) -ImDrawList_AddText 2 -1 void ImDrawList_AddTextVec2 (const ImVec2,ImU32,const char*,const char*) -2 void ImDrawList_AddTextFontPtr (const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*) -igPushStyleVar 2 -1 void igPushStyleVarFloat (ImGuiStyleVar,float) -2 void igPushStyleVarVec2 (ImGuiStyleVar,const ImVec2) -igSetWindowFocus 2 -1 void igSetWindowFocusNil () -2 void igSetWindowFocusStr (const char*) -ImVector_end 2 -1 T* ImVector_endNil () -2 const T* ImVector_end_const ()const -igSetWindowSize 2 -1 void igSetWindowSizeVec2 (const ImVec2,ImGuiCond) -2 void igSetWindowSizeStr (const char*,const ImVec2,ImGuiCond) -ImVector_ImVector 2 -1 nil ImVector_ImVectorNil () -2 nil ImVector_ImVectorVector (const ImVector) -igSetWindowCollapsed 2 -1 void igSetWindowCollapsedBool (bool,ImGuiCond) -2 void igSetWindowCollapsedStr (const char*,bool,ImGuiCond) -igPlotLines 2 -1 void igPlotLinesFloatPtr (const char*,const float*,int,int,const char*,float,float,ImVec2,int) -2 void igPlotLinesFnFloatPtr (const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2) -igPushStyleColor 2 -1 void igPushStyleColorU32 (ImGuiCol,ImU32) -2 void igPushStyleColorVec4 (ImGuiCol,const ImVec4) -igTreeNodeExV 2 -1 bool igTreeNodeExVStr (const char*,ImGuiTreeNodeFlags,const char*,va_list) -2 bool igTreeNodeExVPtr (const void*,ImGuiTreeNodeFlags,const char*,va_list) -igListBox 2 -1 bool igListBoxStr_arr (const char*,int*,const char* const[],int,int) -2 bool igListBoxFnBoolPtr (const char*,int*,bool(*)(void*,int,const char**),void*,int,int) -igTreePush 2 -1 void igTreePushStr (const char*) -2 void igTreePushPtr (const void*) -igTreeNodeEx 3 -1 bool igTreeNodeExStr (const char*,ImGuiTreeNodeFlags) -2 bool igTreeNodeExStrStr (const char*,ImGuiTreeNodeFlags,const char*,...) -3 bool igTreeNodeExPtr (const void*,ImGuiTreeNodeFlags,const char*,...) -igGetColorU32 3 -1 ImU32 igGetColorU32Col (ImGuiCol,float) -2 ImU32 igGetColorU32Vec4 (const ImVec4) -3 ImU32 igGetColorU32U32 (ImU32) -ImVector_find 2 -1 T* ImVector_findNil (const T) -2 const T* ImVector_find_const (const T)const -ImVector_front 2 -1 T* ImVector_frontNil () -2 const T* ImVector_front_const ()const ImColor_ImColor 5 1 nil ImColor_ImColorNil () 2 nil ImColor_ImColorInt (int,int,int,int) 3 nil ImColor_ImColorU32 (ImU32) 4 nil ImColor_ImColorFloat (float,float,float,float) 5 nil ImColor_ImColorVec4 (const ImVec4) +ImDrawList_AddText 2 +1 void ImDrawList_AddTextVec2 (const ImVec2,ImU32,const char*,const char*) +2 void ImDrawList_AddTextFontPtr (const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*) +ImGuiStoragePair_ImGuiStoragePair 3 +1 nil ImGuiStoragePair_ImGuiStoragePairInt (ImGuiID,int) +2 nil ImGuiStoragePair_ImGuiStoragePairFloat (ImGuiID,float) +3 nil ImGuiStoragePair_ImGuiStoragePairPtr (ImGuiID,void*) +ImGuiTextRange_ImGuiTextRange 2 +1 nil ImGuiTextRange_ImGuiTextRangeNil () +2 nil ImGuiTextRange_ImGuiTextRangeStr (const char*,const char*) +ImVec2_ImVec2 2 +1 nil ImVec2_ImVec2Nil () +2 nil ImVec2_ImVec2Float (float,float) +ImVec4_ImVec4 2 +1 nil ImVec4_ImVec4Nil () +2 nil ImVec4_ImVec4Float (float,float,float,float) +ImVector_ImVector 2 +1 nil ImVector_ImVectorNil () +2 nil ImVector_ImVectorVector (const ImVector) +ImVector_back 2 +1 T* ImVector_backNil () +2 const T* ImVector_back_const ()const ImVector_begin 2 1 T* ImVector_beginNil () 2 const T* ImVector_begin_const ()const +ImVector_end 2 +1 T* ImVector_endNil () +2 const T* ImVector_end_const ()const +ImVector_erase 2 +1 T* ImVector_eraseNil (const T*) +2 T* ImVector_eraseTPtr (const T*,const T*) +ImVector_find 2 +1 T* ImVector_findNil (const T) +2 const T* ImVector_find_const (const T)const +ImVector_front 2 +1 T* ImVector_frontNil () +2 const T* ImVector_front_const ()const +ImVector_resize 2 +1 void ImVector_resizeNil (int) +2 void ImVector_resizeT (int,const T) +igBeginChild 2 +1 bool igBeginChildStr (const char*,const ImVec2,bool,ImGuiWindowFlags) +2 bool igBeginChildID (ImGuiID,const ImVec2,bool,ImGuiWindowFlags) igCollapsingHeader 2 1 bool igCollapsingHeaderTreeNodeFlags (const char*,ImGuiTreeNodeFlags) 2 bool igCollapsingHeaderBoolPtr (const char*,bool*,ImGuiTreeNodeFlags) +igCombo 3 +1 bool igComboStr_arr (const char*,int*,const char* const[],int,int) +2 bool igComboStr (const char*,int*,const char*,int) +3 bool igComboFnBoolPtr (const char*,int*,bool(*)(void*,int,const char**),void*,int,int) +igGetColorU32 3 +1 ImU32 igGetColorU32Col (ImGuiCol,float) +2 ImU32 igGetColorU32Vec4 (const ImVec4) +3 ImU32 igGetColorU32U32 (ImU32) +igGetID 3 +1 ImGuiID igGetIDStr (const char*) +2 ImGuiID igGetIDStrStr (const char*,const char*) +3 ImGuiID igGetIDPtr (const void*) +igIsRectVisible 2 +1 bool igIsRectVisibleNil (const ImVec2) +2 bool igIsRectVisibleVec2 (const ImVec2,const ImVec2) +igListBox 2 +1 bool igListBoxStr_arr (const char*,int*,const char* const[],int,int) +2 bool igListBoxFnBoolPtr (const char*,int*,bool(*)(void*,int,const char**),void*,int,int) igListBoxHeader 2 1 bool igListBoxHeaderVec2 (const char*,const ImVec2) 2 bool igListBoxHeaderInt (const char*,int,int) -igSelectable 2 -1 bool igSelectableBool (const char*,bool,ImGuiSelectableFlags,const ImVec2) -2 bool igSelectableBoolPtr (const char*,bool*,ImGuiSelectableFlags,const ImVec2) igMenuItem 2 1 bool igMenuItemBool (const char*,const char*,bool,bool) 2 bool igMenuItemBoolPtr (const char*,const char*,bool*,bool) +igPlotHistogram 2 +1 void igPlotHistogramFloatPtr (const char*,const float*,int,int,const char*,float,float,ImVec2,int) +2 void igPlotHistogramFnFloatPtr (const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2) +igPlotLines 2 +1 void igPlotLinesFloatPtr (const char*,const float*,int,int,const char*,float,float,ImVec2,int) +2 void igPlotLinesFnFloatPtr (const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2) +igPushID 4 +1 void igPushIDStr (const char*) +2 void igPushIDStrStr (const char*,const char*) +3 void igPushIDPtr (const void*) +4 void igPushIDInt (int) +igPushStyleColor 2 +1 void igPushStyleColorU32 (ImGuiCol,ImU32) +2 void igPushStyleColorVec4 (ImGuiCol,const ImVec4) +igPushStyleVar 2 +1 void igPushStyleVarFloat (ImGuiStyleVar,float) +2 void igPushStyleVarVec2 (ImGuiStyleVar,const ImVec2) +igRadioButton 2 +1 bool igRadioButtonBool (const char*,bool) +2 bool igRadioButtonIntPtr (const char*,int*,int) +igSelectable 2 +1 bool igSelectableBool (const char*,bool,ImGuiSelectableFlags,const ImVec2) +2 bool igSelectableBoolPtr (const char*,bool*,ImGuiSelectableFlags,const ImVec2) +igSetWindowCollapsed 2 +1 void igSetWindowCollapsedBool (bool,ImGuiCond) +2 void igSetWindowCollapsedStr (const char*,bool,ImGuiCond) +igSetWindowFocus 2 +1 void igSetWindowFocusNil () +2 void igSetWindowFocusStr (const char*) +igSetWindowPos 2 +1 void igSetWindowPosVec2 (const ImVec2,ImGuiCond) +2 void igSetWindowPosStr (const char*,const ImVec2,ImGuiCond) +igSetWindowSize 2 +1 void igSetWindowSizeVec2 (const ImVec2,ImGuiCond) +2 void igSetWindowSizeStr (const char*,const ImVec2,ImGuiCond) +igTreeNode 3 +1 bool igTreeNodeStr (const char*) +2 bool igTreeNodeStrStr (const char*,const char*,...) +3 bool igTreeNodePtr (const void*,const char*,...) +igTreeNodeEx 3 +1 bool igTreeNodeExStr (const char*,ImGuiTreeNodeFlags) +2 bool igTreeNodeExStrStr (const char*,ImGuiTreeNodeFlags,const char*,...) +3 bool igTreeNodeExPtr (const void*,ImGuiTreeNodeFlags,const char*,...) +igTreeNodeExV 2 +1 bool igTreeNodeExVStr (const char*,ImGuiTreeNodeFlags,const char*,va_list) +2 bool igTreeNodeExVPtr (const void*,ImGuiTreeNodeFlags,const char*,va_list) igTreeNodeV 2 1 bool igTreeNodeVStr (const char*,const char*,va_list) 2 bool igTreeNodeVPtr (const void*,const char*,va_list) +igTreePush 2 +1 void igTreePushStr (const char*) +2 void igTreePushPtr (const void*) +igValue 4 +1 void igValueBool (const char*,bool) +2 void igValueInt (const char*,int) +3 void igValueUint (const char*,unsigned int) +4 void igValueFloat (const char*,float,const char*) 93 overloaded \ No newline at end of file diff --git a/imgui-sys/third-party/structs_and_enums.json b/imgui-sys/third-party/structs_and_enums.json index e733904..a41c59e 100644 --- a/imgui-sys/third-party/structs_and_enums.json +++ b/imgui-sys/third-party/structs_and_enums.json @@ -164,247 +164,247 @@ { "calc_value": 0, "name": "ImGuiCol_Text", - "value": 0 + "value": "0" }, { "calc_value": 1, "name": "ImGuiCol_TextDisabled", - "value": 1 + "value": "1" }, { "calc_value": 2, "name": "ImGuiCol_WindowBg", - "value": 2 + "value": "2" }, { "calc_value": 3, "name": "ImGuiCol_ChildBg", - "value": 3 + "value": "3" }, { "calc_value": 4, "name": "ImGuiCol_PopupBg", - "value": 4 + "value": "4" }, { "calc_value": 5, "name": "ImGuiCol_Border", - "value": 5 + "value": "5" }, { "calc_value": 6, "name": "ImGuiCol_BorderShadow", - "value": 6 + "value": "6" }, { "calc_value": 7, "name": "ImGuiCol_FrameBg", - "value": 7 + "value": "7" }, { "calc_value": 8, "name": "ImGuiCol_FrameBgHovered", - "value": 8 + "value": "8" }, { "calc_value": 9, "name": "ImGuiCol_FrameBgActive", - "value": 9 + "value": "9" }, { "calc_value": 10, "name": "ImGuiCol_TitleBg", - "value": 10 + "value": "10" }, { "calc_value": 11, "name": "ImGuiCol_TitleBgActive", - "value": 11 + "value": "11" }, { "calc_value": 12, "name": "ImGuiCol_TitleBgCollapsed", - "value": 12 + "value": "12" }, { "calc_value": 13, "name": "ImGuiCol_MenuBarBg", - "value": 13 + "value": "13" }, { "calc_value": 14, "name": "ImGuiCol_ScrollbarBg", - "value": 14 + "value": "14" }, { "calc_value": 15, "name": "ImGuiCol_ScrollbarGrab", - "value": 15 + "value": "15" }, { "calc_value": 16, "name": "ImGuiCol_ScrollbarGrabHovered", - "value": 16 + "value": "16" }, { "calc_value": 17, "name": "ImGuiCol_ScrollbarGrabActive", - "value": 17 + "value": "17" }, { "calc_value": 18, "name": "ImGuiCol_CheckMark", - "value": 18 + "value": "18" }, { "calc_value": 19, "name": "ImGuiCol_SliderGrab", - "value": 19 + "value": "19" }, { "calc_value": 20, "name": "ImGuiCol_SliderGrabActive", - "value": 20 + "value": "20" }, { "calc_value": 21, "name": "ImGuiCol_Button", - "value": 21 + "value": "21" }, { "calc_value": 22, "name": "ImGuiCol_ButtonHovered", - "value": 22 + "value": "22" }, { "calc_value": 23, "name": "ImGuiCol_ButtonActive", - "value": 23 + "value": "23" }, { "calc_value": 24, "name": "ImGuiCol_Header", - "value": 24 + "value": "24" }, { "calc_value": 25, "name": "ImGuiCol_HeaderHovered", - "value": 25 + "value": "25" }, { "calc_value": 26, "name": "ImGuiCol_HeaderActive", - "value": 26 + "value": "26" }, { "calc_value": 27, "name": "ImGuiCol_Separator", - "value": 27 + "value": "27" }, { "calc_value": 28, "name": "ImGuiCol_SeparatorHovered", - "value": 28 + "value": "28" }, { "calc_value": 29, "name": "ImGuiCol_SeparatorActive", - "value": 29 + "value": "29" }, { "calc_value": 30, "name": "ImGuiCol_ResizeGrip", - "value": 30 + "value": "30" }, { "calc_value": 31, "name": "ImGuiCol_ResizeGripHovered", - "value": 31 + "value": "31" }, { "calc_value": 32, "name": "ImGuiCol_ResizeGripActive", - "value": 32 + "value": "32" }, { "calc_value": 33, "name": "ImGuiCol_Tab", - "value": 33 + "value": "33" }, { "calc_value": 34, "name": "ImGuiCol_TabHovered", - "value": 34 + "value": "34" }, { "calc_value": 35, "name": "ImGuiCol_TabActive", - "value": 35 + "value": "35" }, { "calc_value": 36, "name": "ImGuiCol_TabUnfocused", - "value": 36 + "value": "36" }, { "calc_value": 37, "name": "ImGuiCol_TabUnfocusedActive", - "value": 37 + "value": "37" }, { "calc_value": 38, "name": "ImGuiCol_PlotLines", - "value": 38 + "value": "38" }, { "calc_value": 39, "name": "ImGuiCol_PlotLinesHovered", - "value": 39 + "value": "39" }, { "calc_value": 40, "name": "ImGuiCol_PlotHistogram", - "value": 40 + "value": "40" }, { "calc_value": 41, "name": "ImGuiCol_PlotHistogramHovered", - "value": 41 + "value": "41" }, { "calc_value": 42, "name": "ImGuiCol_TextSelectedBg", - "value": 42 + "value": "42" }, { "calc_value": 43, "name": "ImGuiCol_DragDropTarget", - "value": 43 + "value": "43" }, { "calc_value": 44, "name": "ImGuiCol_NavHighlight", - "value": 44 + "value": "44" }, { "calc_value": 45, "name": "ImGuiCol_NavWindowingHighlight", - "value": 45 + "value": "45" }, { "calc_value": 46, "name": "ImGuiCol_NavWindowingDimBg", - "value": 46 + "value": "46" }, { "calc_value": 47, "name": "ImGuiCol_ModalWindowDimBg", - "value": 47 + "value": "47" }, { "calc_value": 48, "name": "ImGuiCol_COUNT", - "value": 48 + "value": "48" } ], "ImGuiColorEditFlags_": [ @@ -679,57 +679,57 @@ { "calc_value": 0, "name": "ImGuiDataType_S8", - "value": 0 + "value": "0" }, { "calc_value": 1, "name": "ImGuiDataType_U8", - "value": 1 + "value": "1" }, { "calc_value": 2, "name": "ImGuiDataType_S16", - "value": 2 + "value": "2" }, { "calc_value": 3, "name": "ImGuiDataType_U16", - "value": 3 + "value": "3" }, { "calc_value": 4, "name": "ImGuiDataType_S32", - "value": 4 + "value": "4" }, { "calc_value": 5, "name": "ImGuiDataType_U32", - "value": 5 + "value": "5" }, { "calc_value": 6, "name": "ImGuiDataType_S64", - "value": 6 + "value": "6" }, { "calc_value": 7, "name": "ImGuiDataType_U64", - "value": 7 + "value": "7" }, { "calc_value": 8, "name": "ImGuiDataType_Float", - "value": 8 + "value": "8" }, { "calc_value": 9, "name": "ImGuiDataType_Double", - "value": 9 + "value": "9" }, { "calc_value": 10, "name": "ImGuiDataType_COUNT", - "value": 10 + "value": "10" } ], "ImGuiDir_": [ @@ -761,7 +761,7 @@ { "calc_value": 4, "name": "ImGuiDir_COUNT", - "value": 4 + "value": "4" } ], "ImGuiDragDropFlags_": [ @@ -1001,6 +1001,11 @@ "name": "ImGuiInputTextFlags_CallbackResize", "value": "1 << 18" }, + { + "calc_value": 524288, + "name": "ImGuiInputTextFlags_CallbackEdit", + "value": "1 << 19" + }, { "calc_value": 1048576, "name": "ImGuiInputTextFlags_Multiline", @@ -1043,117 +1048,117 @@ { "calc_value": 0, "name": "ImGuiKey_Tab", - "value": 0 + "value": "0" }, { "calc_value": 1, "name": "ImGuiKey_LeftArrow", - "value": 1 + "value": "1" }, { "calc_value": 2, "name": "ImGuiKey_RightArrow", - "value": 2 + "value": "2" }, { "calc_value": 3, "name": "ImGuiKey_UpArrow", - "value": 3 + "value": "3" }, { "calc_value": 4, "name": "ImGuiKey_DownArrow", - "value": 4 + "value": "4" }, { "calc_value": 5, "name": "ImGuiKey_PageUp", - "value": 5 + "value": "5" }, { "calc_value": 6, "name": "ImGuiKey_PageDown", - "value": 6 + "value": "6" }, { "calc_value": 7, "name": "ImGuiKey_Home", - "value": 7 + "value": "7" }, { "calc_value": 8, "name": "ImGuiKey_End", - "value": 8 + "value": "8" }, { "calc_value": 9, "name": "ImGuiKey_Insert", - "value": 9 + "value": "9" }, { "calc_value": 10, "name": "ImGuiKey_Delete", - "value": 10 + "value": "10" }, { "calc_value": 11, "name": "ImGuiKey_Backspace", - "value": 11 + "value": "11" }, { "calc_value": 12, "name": "ImGuiKey_Space", - "value": 12 + "value": "12" }, { "calc_value": 13, "name": "ImGuiKey_Enter", - "value": 13 + "value": "13" }, { "calc_value": 14, "name": "ImGuiKey_Escape", - "value": 14 + "value": "14" }, { "calc_value": 15, "name": "ImGuiKey_KeyPadEnter", - "value": 15 + "value": "15" }, { "calc_value": 16, "name": "ImGuiKey_A", - "value": 16 + "value": "16" }, { "calc_value": 17, "name": "ImGuiKey_C", - "value": 17 + "value": "17" }, { "calc_value": 18, "name": "ImGuiKey_V", - "value": 18 + "value": "18" }, { "calc_value": 19, "name": "ImGuiKey_X", - "value": 19 + "value": "19" }, { "calc_value": 20, "name": "ImGuiKey_Y", - "value": 20 + "value": "20" }, { "calc_value": 21, "name": "ImGuiKey_Z", - "value": 21 + "value": "21" }, { "calc_value": 22, "name": "ImGuiKey_COUNT", - "value": 22 + "value": "22" } ], "ImGuiMouseButton_": [ @@ -1192,159 +1197,159 @@ { "calc_value": 1, "name": "ImGuiMouseCursor_TextInput", - "value": 1 + "value": "1" }, { "calc_value": 2, "name": "ImGuiMouseCursor_ResizeAll", - "value": 2 + "value": "2" }, { "calc_value": 3, "name": "ImGuiMouseCursor_ResizeNS", - "value": 3 + "value": "3" }, { "calc_value": 4, "name": "ImGuiMouseCursor_ResizeEW", - "value": 4 + "value": "4" }, { "calc_value": 5, "name": "ImGuiMouseCursor_ResizeNESW", - "value": 5 + "value": "5" }, { "calc_value": 6, "name": "ImGuiMouseCursor_ResizeNWSE", - "value": 6 + "value": "6" }, { "calc_value": 7, "name": "ImGuiMouseCursor_Hand", - "value": 7 + "value": "7" }, { "calc_value": 8, "name": "ImGuiMouseCursor_NotAllowed", - "value": 8 + "value": "8" }, { "calc_value": 9, "name": "ImGuiMouseCursor_COUNT", - "value": 9 + "value": "9" } ], "ImGuiNavInput_": [ { "calc_value": 0, "name": "ImGuiNavInput_Activate", - "value": 0 + "value": "0" }, { "calc_value": 1, "name": "ImGuiNavInput_Cancel", - "value": 1 + "value": "1" }, { "calc_value": 2, "name": "ImGuiNavInput_Input", - "value": 2 + "value": "2" }, { "calc_value": 3, "name": "ImGuiNavInput_Menu", - "value": 3 + "value": "3" }, { "calc_value": 4, "name": "ImGuiNavInput_DpadLeft", - "value": 4 + "value": "4" }, { "calc_value": 5, "name": "ImGuiNavInput_DpadRight", - "value": 5 + "value": "5" }, { "calc_value": 6, "name": "ImGuiNavInput_DpadUp", - "value": 6 + "value": "6" }, { "calc_value": 7, "name": "ImGuiNavInput_DpadDown", - "value": 7 + "value": "7" }, { "calc_value": 8, "name": "ImGuiNavInput_LStickLeft", - "value": 8 + "value": "8" }, { "calc_value": 9, "name": "ImGuiNavInput_LStickRight", - "value": 9 + "value": "9" }, { "calc_value": 10, "name": "ImGuiNavInput_LStickUp", - "value": 10 + "value": "10" }, { "calc_value": 11, "name": "ImGuiNavInput_LStickDown", - "value": 11 + "value": "11" }, { "calc_value": 12, "name": "ImGuiNavInput_FocusPrev", - "value": 12 + "value": "12" }, { "calc_value": 13, "name": "ImGuiNavInput_FocusNext", - "value": 13 + "value": "13" }, { "calc_value": 14, "name": "ImGuiNavInput_TweakSlow", - "value": 14 + "value": "14" }, { "calc_value": 15, "name": "ImGuiNavInput_TweakFast", - "value": 15 + "value": "15" }, { "calc_value": 16, "name": "ImGuiNavInput_KeyMenu_", - "value": 16 + "value": "16" }, { "calc_value": 17, "name": "ImGuiNavInput_KeyLeft_", - "value": 17 + "value": "17" }, { "calc_value": 18, "name": "ImGuiNavInput_KeyRight_", - "value": 18 + "value": "18" }, { "calc_value": 19, "name": "ImGuiNavInput_KeyUp_", - "value": 19 + "value": "19" }, { "calc_value": 20, "name": "ImGuiNavInput_KeyDown_", - "value": 20 + "value": "20" }, { "calc_value": 21, "name": "ImGuiNavInput_COUNT", - "value": 21 + "value": "21" }, { "calc_value": 16, @@ -1449,7 +1454,7 @@ }, { "calc_value": 16, - "name": "ImGuiSliderFlags_ClampOnInput", + "name": "ImGuiSliderFlags_AlwaysClamp", "value": "1 << 4" }, { @@ -1477,122 +1482,122 @@ { "calc_value": 0, "name": "ImGuiStyleVar_Alpha", - "value": 0 + "value": "0" }, { "calc_value": 1, "name": "ImGuiStyleVar_WindowPadding", - "value": 1 + "value": "1" }, { "calc_value": 2, "name": "ImGuiStyleVar_WindowRounding", - "value": 2 + "value": "2" }, { "calc_value": 3, "name": "ImGuiStyleVar_WindowBorderSize", - "value": 3 + "value": "3" }, { "calc_value": 4, "name": "ImGuiStyleVar_WindowMinSize", - "value": 4 + "value": "4" }, { "calc_value": 5, "name": "ImGuiStyleVar_WindowTitleAlign", - "value": 5 + "value": "5" }, { "calc_value": 6, "name": "ImGuiStyleVar_ChildRounding", - "value": 6 + "value": "6" }, { "calc_value": 7, "name": "ImGuiStyleVar_ChildBorderSize", - "value": 7 + "value": "7" }, { "calc_value": 8, "name": "ImGuiStyleVar_PopupRounding", - "value": 8 + "value": "8" }, { "calc_value": 9, "name": "ImGuiStyleVar_PopupBorderSize", - "value": 9 + "value": "9" }, { "calc_value": 10, "name": "ImGuiStyleVar_FramePadding", - "value": 10 + "value": "10" }, { "calc_value": 11, "name": "ImGuiStyleVar_FrameRounding", - "value": 11 + "value": "11" }, { "calc_value": 12, "name": "ImGuiStyleVar_FrameBorderSize", - "value": 12 + "value": "12" }, { "calc_value": 13, "name": "ImGuiStyleVar_ItemSpacing", - "value": 13 + "value": "13" }, { "calc_value": 14, "name": "ImGuiStyleVar_ItemInnerSpacing", - "value": 14 + "value": "14" }, { "calc_value": 15, "name": "ImGuiStyleVar_IndentSpacing", - "value": 15 + "value": "15" }, { "calc_value": 16, "name": "ImGuiStyleVar_ScrollbarSize", - "value": 16 + "value": "16" }, { "calc_value": 17, "name": "ImGuiStyleVar_ScrollbarRounding", - "value": 17 + "value": "17" }, { "calc_value": 18, "name": "ImGuiStyleVar_GrabMinSize", - "value": 18 + "value": "18" }, { "calc_value": 19, "name": "ImGuiStyleVar_GrabRounding", - "value": 19 + "value": "19" }, { "calc_value": 20, "name": "ImGuiStyleVar_TabRounding", - "value": 20 + "value": "20" }, { "calc_value": 21, "name": "ImGuiStyleVar_ButtonTextAlign", - "value": 21 + "value": "21" }, { "calc_value": 22, "name": "ImGuiStyleVar_SelectableTextAlign", - "value": 22 + "value": "22" }, { "calc_value": 23, "name": "ImGuiStyleVar_COUNT", - "value": 23 + "value": "23" } ], "ImGuiTabBarFlags_": [ @@ -1682,6 +1687,21 @@ "calc_value": 16, "name": "ImGuiTabItemFlags_NoTooltip", "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiTabItemFlags_NoReorder", + "value": "1 << 5" + }, + { + "calc_value": 64, + "name": "ImGuiTabItemFlags_Leading", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiTabItemFlags_Trailing", + "value": "1 << 7" } ], "ImGuiTreeNodeFlags_": [ @@ -1920,62 +1940,62 @@ ] }, "locations": { - "ImColor": "imgui", - "ImDrawChannel": "imgui", - "ImDrawCmd": "imgui", - "ImDrawCornerFlags_": "imgui", - "ImDrawData": "imgui", - "ImDrawList": "imgui", - "ImDrawListFlags_": "imgui", - "ImDrawListSplitter": "imgui", - "ImDrawVert": "imgui", - "ImFont": "imgui", - "ImFontAtlas": "imgui", - "ImFontAtlasCustomRect": "imgui", - "ImFontAtlasFlags_": "imgui", - "ImFontConfig": "imgui", - "ImFontGlyph": "imgui", - "ImFontGlyphRangesBuilder": "imgui", - "ImGuiBackendFlags_": "imgui", - "ImGuiButtonFlags_": "imgui", - "ImGuiCol_": "imgui", - "ImGuiColorEditFlags_": "imgui", - "ImGuiComboFlags_": "imgui", - "ImGuiCond_": "imgui", - "ImGuiConfigFlags_": "imgui", - "ImGuiDataType_": "imgui", - "ImGuiDir_": "imgui", - "ImGuiDragDropFlags_": "imgui", - "ImGuiFocusedFlags_": "imgui", - "ImGuiHoveredFlags_": "imgui", - "ImGuiIO": "imgui", - "ImGuiInputTextCallbackData": "imgui", - "ImGuiInputTextFlags_": "imgui", - "ImGuiKeyModFlags_": "imgui", - "ImGuiKey_": "imgui", - "ImGuiListClipper": "imgui", - "ImGuiMouseButton_": "imgui", - "ImGuiMouseCursor_": "imgui", - "ImGuiNavInput_": "imgui", - "ImGuiOnceUponAFrame": "imgui", - "ImGuiPayload": "imgui", - "ImGuiPopupFlags_": "imgui", - "ImGuiSelectableFlags_": "imgui", - "ImGuiSizeCallbackData": "imgui", - "ImGuiSliderFlags_": "imgui", - "ImGuiStorage": "imgui", - "ImGuiStoragePair": "imgui", - "ImGuiStyle": "imgui", - "ImGuiStyleVar_": "imgui", - "ImGuiTabBarFlags_": "imgui", - "ImGuiTabItemFlags_": "imgui", - "ImGuiTextBuffer": "imgui", - "ImGuiTextFilter": "imgui", - "ImGuiTextRange": "imgui", - "ImGuiTreeNodeFlags_": "imgui", - "ImGuiWindowFlags_": "imgui", - "ImVec2": "imgui", - "ImVec4": "imgui" + "ImColor": "imgui:1953", + "ImDrawChannel": "imgui:2039", + "ImDrawCmd": "imgui:2002", + "ImDrawCornerFlags_": "imgui:2062", + "ImDrawData": "imgui:2209", + "ImDrawList": "imgui:2095", + "ImDrawListFlags_": "imgui:2078", + "ImDrawListSplitter": "imgui:2047", + "ImDrawVert": "imgui:2024", + "ImFont": "imgui:2420", + "ImFontAtlas": "imgui:2325", + "ImFontAtlasCustomRect": "imgui:2287", + "ImFontAtlasFlags_": "imgui:2300", + "ImFontConfig": "imgui:2232", + "ImFontGlyph": "imgui:2261", + "ImFontGlyphRangesBuilder": "imgui:2272", + "ImGuiBackendFlags_": "imgui:1131", + "ImGuiButtonFlags_": "imgui:1242", + "ImGuiCol_": "imgui:1141", + "ImGuiColorEditFlags_": "imgui:1255", + "ImGuiComboFlags_": "imgui:921", + "ImGuiCond_": "imgui:1352", + "ImGuiConfigFlags_": "imgui:1115", + "ImGuiDataType_": "imgui:1015", + "ImGuiDir_": "imgui:1031", + "ImGuiDragDropFlags_": "imgui:993", + "ImGuiFocusedFlags_": "imgui:965", + "ImGuiHoveredFlags_": "imgui:977", + "ImGuiIO": "imgui:1506", + "ImGuiInputTextCallbackData": "imgui:1656", + "ImGuiInputTextFlags_": "imgui:836", + "ImGuiKeyModFlags_": "imgui:1070", + "ImGuiKey_": "imgui:1042", + "ImGuiListClipper": "imgui:1905", + "ImGuiMouseButton_": "imgui:1319", + "ImGuiMouseCursor_": "imgui:1329", + "ImGuiNavInput_": "imgui:1083", + "ImGuiOnceUponAFrame": "imgui:1783", + "ImGuiPayload": "imgui:1696", + "ImGuiPopupFlags_": "imgui:894", + "ImGuiSelectableFlags_": "imgui:910", + "ImGuiSizeCallbackData": "imgui:1687", + "ImGuiSliderFlags_": "imgui:1302", + "ImGuiStorage": "imgui:1845", + "ImGuiStoragePair": "imgui:1848", + "ImGuiStyle": "imgui:1454", + "ImGuiStyleVar_": "imgui:1207", + "ImGuiTabBarFlags_": "imgui:935", + "ImGuiTabItemFlags_": "imgui:951", + "ImGuiTextBuffer": "imgui:1818", + "ImGuiTextFilter": "imgui:1791", + "ImGuiTextRange": "imgui:1801", + "ImGuiTreeNodeFlags_": "imgui:865", + "ImGuiWindowFlags_": "imgui:795", + "ImVec2": "imgui:211", + "ImVec4": "imgui:224" }, "structs": { "ImColor": [ @@ -2181,10 +2201,6 @@ "name": "FallbackGlyph", "type": "const ImFontGlyph*" }, - { - "name": "DisplayOffset", - "type": "ImVec2" - }, { "name": "ContainerAtlas", "type": "ImFontAtlas*" @@ -3073,7 +3089,7 @@ "type": "float" }, { - "name": "TabMinWidthForUnselectedCloseButton", + "name": "TabMinWidthForCloseButton", "type": "float" }, { diff --git a/imgui-sys/third-party/structs_and_enums.lua b/imgui-sys/third-party/structs_and_enums.lua index d93897e..5a0d046 100644 --- a/imgui-sys/third-party/structs_and_enums.lua +++ b/imgui-sys/third-party/structs_and_enums.lua @@ -129,199 +129,199 @@ defs["enums"]["ImGuiCol_"] = {} defs["enums"]["ImGuiCol_"][1] = {} defs["enums"]["ImGuiCol_"][1]["calc_value"] = 0 defs["enums"]["ImGuiCol_"][1]["name"] = "ImGuiCol_Text" -defs["enums"]["ImGuiCol_"][1]["value"] = 0 +defs["enums"]["ImGuiCol_"][1]["value"] = "0" defs["enums"]["ImGuiCol_"][2] = {} defs["enums"]["ImGuiCol_"][2]["calc_value"] = 1 defs["enums"]["ImGuiCol_"][2]["name"] = "ImGuiCol_TextDisabled" -defs["enums"]["ImGuiCol_"][2]["value"] = 1 +defs["enums"]["ImGuiCol_"][2]["value"] = "1" defs["enums"]["ImGuiCol_"][3] = {} defs["enums"]["ImGuiCol_"][3]["calc_value"] = 2 defs["enums"]["ImGuiCol_"][3]["name"] = "ImGuiCol_WindowBg" -defs["enums"]["ImGuiCol_"][3]["value"] = 2 +defs["enums"]["ImGuiCol_"][3]["value"] = "2" defs["enums"]["ImGuiCol_"][4] = {} defs["enums"]["ImGuiCol_"][4]["calc_value"] = 3 defs["enums"]["ImGuiCol_"][4]["name"] = "ImGuiCol_ChildBg" -defs["enums"]["ImGuiCol_"][4]["value"] = 3 +defs["enums"]["ImGuiCol_"][4]["value"] = "3" defs["enums"]["ImGuiCol_"][5] = {} defs["enums"]["ImGuiCol_"][5]["calc_value"] = 4 defs["enums"]["ImGuiCol_"][5]["name"] = "ImGuiCol_PopupBg" -defs["enums"]["ImGuiCol_"][5]["value"] = 4 +defs["enums"]["ImGuiCol_"][5]["value"] = "4" defs["enums"]["ImGuiCol_"][6] = {} defs["enums"]["ImGuiCol_"][6]["calc_value"] = 5 defs["enums"]["ImGuiCol_"][6]["name"] = "ImGuiCol_Border" -defs["enums"]["ImGuiCol_"][6]["value"] = 5 +defs["enums"]["ImGuiCol_"][6]["value"] = "5" defs["enums"]["ImGuiCol_"][7] = {} defs["enums"]["ImGuiCol_"][7]["calc_value"] = 6 defs["enums"]["ImGuiCol_"][7]["name"] = "ImGuiCol_BorderShadow" -defs["enums"]["ImGuiCol_"][7]["value"] = 6 +defs["enums"]["ImGuiCol_"][7]["value"] = "6" defs["enums"]["ImGuiCol_"][8] = {} defs["enums"]["ImGuiCol_"][8]["calc_value"] = 7 defs["enums"]["ImGuiCol_"][8]["name"] = "ImGuiCol_FrameBg" -defs["enums"]["ImGuiCol_"][8]["value"] = 7 +defs["enums"]["ImGuiCol_"][8]["value"] = "7" defs["enums"]["ImGuiCol_"][9] = {} defs["enums"]["ImGuiCol_"][9]["calc_value"] = 8 defs["enums"]["ImGuiCol_"][9]["name"] = "ImGuiCol_FrameBgHovered" -defs["enums"]["ImGuiCol_"][9]["value"] = 8 +defs["enums"]["ImGuiCol_"][9]["value"] = "8" defs["enums"]["ImGuiCol_"][10] = {} defs["enums"]["ImGuiCol_"][10]["calc_value"] = 9 defs["enums"]["ImGuiCol_"][10]["name"] = "ImGuiCol_FrameBgActive" -defs["enums"]["ImGuiCol_"][10]["value"] = 9 +defs["enums"]["ImGuiCol_"][10]["value"] = "9" defs["enums"]["ImGuiCol_"][11] = {} defs["enums"]["ImGuiCol_"][11]["calc_value"] = 10 defs["enums"]["ImGuiCol_"][11]["name"] = "ImGuiCol_TitleBg" -defs["enums"]["ImGuiCol_"][11]["value"] = 10 +defs["enums"]["ImGuiCol_"][11]["value"] = "10" defs["enums"]["ImGuiCol_"][12] = {} defs["enums"]["ImGuiCol_"][12]["calc_value"] = 11 defs["enums"]["ImGuiCol_"][12]["name"] = "ImGuiCol_TitleBgActive" -defs["enums"]["ImGuiCol_"][12]["value"] = 11 +defs["enums"]["ImGuiCol_"][12]["value"] = "11" defs["enums"]["ImGuiCol_"][13] = {} defs["enums"]["ImGuiCol_"][13]["calc_value"] = 12 defs["enums"]["ImGuiCol_"][13]["name"] = "ImGuiCol_TitleBgCollapsed" -defs["enums"]["ImGuiCol_"][13]["value"] = 12 +defs["enums"]["ImGuiCol_"][13]["value"] = "12" defs["enums"]["ImGuiCol_"][14] = {} defs["enums"]["ImGuiCol_"][14]["calc_value"] = 13 defs["enums"]["ImGuiCol_"][14]["name"] = "ImGuiCol_MenuBarBg" -defs["enums"]["ImGuiCol_"][14]["value"] = 13 +defs["enums"]["ImGuiCol_"][14]["value"] = "13" defs["enums"]["ImGuiCol_"][15] = {} defs["enums"]["ImGuiCol_"][15]["calc_value"] = 14 defs["enums"]["ImGuiCol_"][15]["name"] = "ImGuiCol_ScrollbarBg" -defs["enums"]["ImGuiCol_"][15]["value"] = 14 +defs["enums"]["ImGuiCol_"][15]["value"] = "14" defs["enums"]["ImGuiCol_"][16] = {} defs["enums"]["ImGuiCol_"][16]["calc_value"] = 15 defs["enums"]["ImGuiCol_"][16]["name"] = "ImGuiCol_ScrollbarGrab" -defs["enums"]["ImGuiCol_"][16]["value"] = 15 +defs["enums"]["ImGuiCol_"][16]["value"] = "15" defs["enums"]["ImGuiCol_"][17] = {} defs["enums"]["ImGuiCol_"][17]["calc_value"] = 16 defs["enums"]["ImGuiCol_"][17]["name"] = "ImGuiCol_ScrollbarGrabHovered" -defs["enums"]["ImGuiCol_"][17]["value"] = 16 +defs["enums"]["ImGuiCol_"][17]["value"] = "16" defs["enums"]["ImGuiCol_"][18] = {} defs["enums"]["ImGuiCol_"][18]["calc_value"] = 17 defs["enums"]["ImGuiCol_"][18]["name"] = "ImGuiCol_ScrollbarGrabActive" -defs["enums"]["ImGuiCol_"][18]["value"] = 17 +defs["enums"]["ImGuiCol_"][18]["value"] = "17" defs["enums"]["ImGuiCol_"][19] = {} defs["enums"]["ImGuiCol_"][19]["calc_value"] = 18 defs["enums"]["ImGuiCol_"][19]["name"] = "ImGuiCol_CheckMark" -defs["enums"]["ImGuiCol_"][19]["value"] = 18 +defs["enums"]["ImGuiCol_"][19]["value"] = "18" defs["enums"]["ImGuiCol_"][20] = {} defs["enums"]["ImGuiCol_"][20]["calc_value"] = 19 defs["enums"]["ImGuiCol_"][20]["name"] = "ImGuiCol_SliderGrab" -defs["enums"]["ImGuiCol_"][20]["value"] = 19 +defs["enums"]["ImGuiCol_"][20]["value"] = "19" defs["enums"]["ImGuiCol_"][21] = {} defs["enums"]["ImGuiCol_"][21]["calc_value"] = 20 defs["enums"]["ImGuiCol_"][21]["name"] = "ImGuiCol_SliderGrabActive" -defs["enums"]["ImGuiCol_"][21]["value"] = 20 +defs["enums"]["ImGuiCol_"][21]["value"] = "20" defs["enums"]["ImGuiCol_"][22] = {} defs["enums"]["ImGuiCol_"][22]["calc_value"] = 21 defs["enums"]["ImGuiCol_"][22]["name"] = "ImGuiCol_Button" -defs["enums"]["ImGuiCol_"][22]["value"] = 21 +defs["enums"]["ImGuiCol_"][22]["value"] = "21" defs["enums"]["ImGuiCol_"][23] = {} defs["enums"]["ImGuiCol_"][23]["calc_value"] = 22 defs["enums"]["ImGuiCol_"][23]["name"] = "ImGuiCol_ButtonHovered" -defs["enums"]["ImGuiCol_"][23]["value"] = 22 +defs["enums"]["ImGuiCol_"][23]["value"] = "22" defs["enums"]["ImGuiCol_"][24] = {} defs["enums"]["ImGuiCol_"][24]["calc_value"] = 23 defs["enums"]["ImGuiCol_"][24]["name"] = "ImGuiCol_ButtonActive" -defs["enums"]["ImGuiCol_"][24]["value"] = 23 +defs["enums"]["ImGuiCol_"][24]["value"] = "23" defs["enums"]["ImGuiCol_"][25] = {} defs["enums"]["ImGuiCol_"][25]["calc_value"] = 24 defs["enums"]["ImGuiCol_"][25]["name"] = "ImGuiCol_Header" -defs["enums"]["ImGuiCol_"][25]["value"] = 24 +defs["enums"]["ImGuiCol_"][25]["value"] = "24" defs["enums"]["ImGuiCol_"][26] = {} defs["enums"]["ImGuiCol_"][26]["calc_value"] = 25 defs["enums"]["ImGuiCol_"][26]["name"] = "ImGuiCol_HeaderHovered" -defs["enums"]["ImGuiCol_"][26]["value"] = 25 +defs["enums"]["ImGuiCol_"][26]["value"] = "25" defs["enums"]["ImGuiCol_"][27] = {} defs["enums"]["ImGuiCol_"][27]["calc_value"] = 26 defs["enums"]["ImGuiCol_"][27]["name"] = "ImGuiCol_HeaderActive" -defs["enums"]["ImGuiCol_"][27]["value"] = 26 +defs["enums"]["ImGuiCol_"][27]["value"] = "26" defs["enums"]["ImGuiCol_"][28] = {} defs["enums"]["ImGuiCol_"][28]["calc_value"] = 27 defs["enums"]["ImGuiCol_"][28]["name"] = "ImGuiCol_Separator" -defs["enums"]["ImGuiCol_"][28]["value"] = 27 +defs["enums"]["ImGuiCol_"][28]["value"] = "27" defs["enums"]["ImGuiCol_"][29] = {} defs["enums"]["ImGuiCol_"][29]["calc_value"] = 28 defs["enums"]["ImGuiCol_"][29]["name"] = "ImGuiCol_SeparatorHovered" -defs["enums"]["ImGuiCol_"][29]["value"] = 28 +defs["enums"]["ImGuiCol_"][29]["value"] = "28" defs["enums"]["ImGuiCol_"][30] = {} defs["enums"]["ImGuiCol_"][30]["calc_value"] = 29 defs["enums"]["ImGuiCol_"][30]["name"] = "ImGuiCol_SeparatorActive" -defs["enums"]["ImGuiCol_"][30]["value"] = 29 +defs["enums"]["ImGuiCol_"][30]["value"] = "29" defs["enums"]["ImGuiCol_"][31] = {} defs["enums"]["ImGuiCol_"][31]["calc_value"] = 30 defs["enums"]["ImGuiCol_"][31]["name"] = "ImGuiCol_ResizeGrip" -defs["enums"]["ImGuiCol_"][31]["value"] = 30 +defs["enums"]["ImGuiCol_"][31]["value"] = "30" defs["enums"]["ImGuiCol_"][32] = {} defs["enums"]["ImGuiCol_"][32]["calc_value"] = 31 defs["enums"]["ImGuiCol_"][32]["name"] = "ImGuiCol_ResizeGripHovered" -defs["enums"]["ImGuiCol_"][32]["value"] = 31 +defs["enums"]["ImGuiCol_"][32]["value"] = "31" defs["enums"]["ImGuiCol_"][33] = {} defs["enums"]["ImGuiCol_"][33]["calc_value"] = 32 defs["enums"]["ImGuiCol_"][33]["name"] = "ImGuiCol_ResizeGripActive" -defs["enums"]["ImGuiCol_"][33]["value"] = 32 +defs["enums"]["ImGuiCol_"][33]["value"] = "32" defs["enums"]["ImGuiCol_"][34] = {} defs["enums"]["ImGuiCol_"][34]["calc_value"] = 33 defs["enums"]["ImGuiCol_"][34]["name"] = "ImGuiCol_Tab" -defs["enums"]["ImGuiCol_"][34]["value"] = 33 +defs["enums"]["ImGuiCol_"][34]["value"] = "33" defs["enums"]["ImGuiCol_"][35] = {} defs["enums"]["ImGuiCol_"][35]["calc_value"] = 34 defs["enums"]["ImGuiCol_"][35]["name"] = "ImGuiCol_TabHovered" -defs["enums"]["ImGuiCol_"][35]["value"] = 34 +defs["enums"]["ImGuiCol_"][35]["value"] = "34" defs["enums"]["ImGuiCol_"][36] = {} defs["enums"]["ImGuiCol_"][36]["calc_value"] = 35 defs["enums"]["ImGuiCol_"][36]["name"] = "ImGuiCol_TabActive" -defs["enums"]["ImGuiCol_"][36]["value"] = 35 +defs["enums"]["ImGuiCol_"][36]["value"] = "35" defs["enums"]["ImGuiCol_"][37] = {} defs["enums"]["ImGuiCol_"][37]["calc_value"] = 36 defs["enums"]["ImGuiCol_"][37]["name"] = "ImGuiCol_TabUnfocused" -defs["enums"]["ImGuiCol_"][37]["value"] = 36 +defs["enums"]["ImGuiCol_"][37]["value"] = "36" defs["enums"]["ImGuiCol_"][38] = {} defs["enums"]["ImGuiCol_"][38]["calc_value"] = 37 defs["enums"]["ImGuiCol_"][38]["name"] = "ImGuiCol_TabUnfocusedActive" -defs["enums"]["ImGuiCol_"][38]["value"] = 37 +defs["enums"]["ImGuiCol_"][38]["value"] = "37" defs["enums"]["ImGuiCol_"][39] = {} defs["enums"]["ImGuiCol_"][39]["calc_value"] = 38 defs["enums"]["ImGuiCol_"][39]["name"] = "ImGuiCol_PlotLines" -defs["enums"]["ImGuiCol_"][39]["value"] = 38 +defs["enums"]["ImGuiCol_"][39]["value"] = "38" defs["enums"]["ImGuiCol_"][40] = {} defs["enums"]["ImGuiCol_"][40]["calc_value"] = 39 defs["enums"]["ImGuiCol_"][40]["name"] = "ImGuiCol_PlotLinesHovered" -defs["enums"]["ImGuiCol_"][40]["value"] = 39 +defs["enums"]["ImGuiCol_"][40]["value"] = "39" defs["enums"]["ImGuiCol_"][41] = {} defs["enums"]["ImGuiCol_"][41]["calc_value"] = 40 defs["enums"]["ImGuiCol_"][41]["name"] = "ImGuiCol_PlotHistogram" -defs["enums"]["ImGuiCol_"][41]["value"] = 40 +defs["enums"]["ImGuiCol_"][41]["value"] = "40" defs["enums"]["ImGuiCol_"][42] = {} defs["enums"]["ImGuiCol_"][42]["calc_value"] = 41 defs["enums"]["ImGuiCol_"][42]["name"] = "ImGuiCol_PlotHistogramHovered" -defs["enums"]["ImGuiCol_"][42]["value"] = 41 +defs["enums"]["ImGuiCol_"][42]["value"] = "41" defs["enums"]["ImGuiCol_"][43] = {} defs["enums"]["ImGuiCol_"][43]["calc_value"] = 42 defs["enums"]["ImGuiCol_"][43]["name"] = "ImGuiCol_TextSelectedBg" -defs["enums"]["ImGuiCol_"][43]["value"] = 42 +defs["enums"]["ImGuiCol_"][43]["value"] = "42" defs["enums"]["ImGuiCol_"][44] = {} defs["enums"]["ImGuiCol_"][44]["calc_value"] = 43 defs["enums"]["ImGuiCol_"][44]["name"] = "ImGuiCol_DragDropTarget" -defs["enums"]["ImGuiCol_"][44]["value"] = 43 +defs["enums"]["ImGuiCol_"][44]["value"] = "43" defs["enums"]["ImGuiCol_"][45] = {} defs["enums"]["ImGuiCol_"][45]["calc_value"] = 44 defs["enums"]["ImGuiCol_"][45]["name"] = "ImGuiCol_NavHighlight" -defs["enums"]["ImGuiCol_"][45]["value"] = 44 +defs["enums"]["ImGuiCol_"][45]["value"] = "44" defs["enums"]["ImGuiCol_"][46] = {} defs["enums"]["ImGuiCol_"][46]["calc_value"] = 45 defs["enums"]["ImGuiCol_"][46]["name"] = "ImGuiCol_NavWindowingHighlight" -defs["enums"]["ImGuiCol_"][46]["value"] = 45 +defs["enums"]["ImGuiCol_"][46]["value"] = "45" defs["enums"]["ImGuiCol_"][47] = {} defs["enums"]["ImGuiCol_"][47]["calc_value"] = 46 defs["enums"]["ImGuiCol_"][47]["name"] = "ImGuiCol_NavWindowingDimBg" -defs["enums"]["ImGuiCol_"][47]["value"] = 46 +defs["enums"]["ImGuiCol_"][47]["value"] = "46" defs["enums"]["ImGuiCol_"][48] = {} defs["enums"]["ImGuiCol_"][48]["calc_value"] = 47 defs["enums"]["ImGuiCol_"][48]["name"] = "ImGuiCol_ModalWindowDimBg" -defs["enums"]["ImGuiCol_"][48]["value"] = 47 +defs["enums"]["ImGuiCol_"][48]["value"] = "47" defs["enums"]["ImGuiCol_"][49] = {} defs["enums"]["ImGuiCol_"][49]["calc_value"] = 48 defs["enums"]["ImGuiCol_"][49]["name"] = "ImGuiCol_COUNT" -defs["enums"]["ImGuiCol_"][49]["value"] = 48 +defs["enums"]["ImGuiCol_"][49]["value"] = "48" defs["enums"]["ImGuiColorEditFlags_"] = {} defs["enums"]["ImGuiColorEditFlags_"][1] = {} defs["enums"]["ImGuiColorEditFlags_"][1]["calc_value"] = 0 @@ -538,47 +538,47 @@ defs["enums"]["ImGuiDataType_"] = {} defs["enums"]["ImGuiDataType_"][1] = {} defs["enums"]["ImGuiDataType_"][1]["calc_value"] = 0 defs["enums"]["ImGuiDataType_"][1]["name"] = "ImGuiDataType_S8" -defs["enums"]["ImGuiDataType_"][1]["value"] = 0 +defs["enums"]["ImGuiDataType_"][1]["value"] = "0" defs["enums"]["ImGuiDataType_"][2] = {} defs["enums"]["ImGuiDataType_"][2]["calc_value"] = 1 defs["enums"]["ImGuiDataType_"][2]["name"] = "ImGuiDataType_U8" -defs["enums"]["ImGuiDataType_"][2]["value"] = 1 +defs["enums"]["ImGuiDataType_"][2]["value"] = "1" defs["enums"]["ImGuiDataType_"][3] = {} defs["enums"]["ImGuiDataType_"][3]["calc_value"] = 2 defs["enums"]["ImGuiDataType_"][3]["name"] = "ImGuiDataType_S16" -defs["enums"]["ImGuiDataType_"][3]["value"] = 2 +defs["enums"]["ImGuiDataType_"][3]["value"] = "2" defs["enums"]["ImGuiDataType_"][4] = {} defs["enums"]["ImGuiDataType_"][4]["calc_value"] = 3 defs["enums"]["ImGuiDataType_"][4]["name"] = "ImGuiDataType_U16" -defs["enums"]["ImGuiDataType_"][4]["value"] = 3 +defs["enums"]["ImGuiDataType_"][4]["value"] = "3" defs["enums"]["ImGuiDataType_"][5] = {} defs["enums"]["ImGuiDataType_"][5]["calc_value"] = 4 defs["enums"]["ImGuiDataType_"][5]["name"] = "ImGuiDataType_S32" -defs["enums"]["ImGuiDataType_"][5]["value"] = 4 +defs["enums"]["ImGuiDataType_"][5]["value"] = "4" defs["enums"]["ImGuiDataType_"][6] = {} defs["enums"]["ImGuiDataType_"][6]["calc_value"] = 5 defs["enums"]["ImGuiDataType_"][6]["name"] = "ImGuiDataType_U32" -defs["enums"]["ImGuiDataType_"][6]["value"] = 5 +defs["enums"]["ImGuiDataType_"][6]["value"] = "5" defs["enums"]["ImGuiDataType_"][7] = {} defs["enums"]["ImGuiDataType_"][7]["calc_value"] = 6 defs["enums"]["ImGuiDataType_"][7]["name"] = "ImGuiDataType_S64" -defs["enums"]["ImGuiDataType_"][7]["value"] = 6 +defs["enums"]["ImGuiDataType_"][7]["value"] = "6" defs["enums"]["ImGuiDataType_"][8] = {} defs["enums"]["ImGuiDataType_"][8]["calc_value"] = 7 defs["enums"]["ImGuiDataType_"][8]["name"] = "ImGuiDataType_U64" -defs["enums"]["ImGuiDataType_"][8]["value"] = 7 +defs["enums"]["ImGuiDataType_"][8]["value"] = "7" defs["enums"]["ImGuiDataType_"][9] = {} defs["enums"]["ImGuiDataType_"][9]["calc_value"] = 8 defs["enums"]["ImGuiDataType_"][9]["name"] = "ImGuiDataType_Float" -defs["enums"]["ImGuiDataType_"][9]["value"] = 8 +defs["enums"]["ImGuiDataType_"][9]["value"] = "8" defs["enums"]["ImGuiDataType_"][10] = {} defs["enums"]["ImGuiDataType_"][10]["calc_value"] = 9 defs["enums"]["ImGuiDataType_"][10]["name"] = "ImGuiDataType_Double" -defs["enums"]["ImGuiDataType_"][10]["value"] = 9 +defs["enums"]["ImGuiDataType_"][10]["value"] = "9" defs["enums"]["ImGuiDataType_"][11] = {} defs["enums"]["ImGuiDataType_"][11]["calc_value"] = 10 defs["enums"]["ImGuiDataType_"][11]["name"] = "ImGuiDataType_COUNT" -defs["enums"]["ImGuiDataType_"][11]["value"] = 10 +defs["enums"]["ImGuiDataType_"][11]["value"] = "10" defs["enums"]["ImGuiDir_"] = {} defs["enums"]["ImGuiDir_"][1] = {} defs["enums"]["ImGuiDir_"][1]["calc_value"] = -1 @@ -603,7 +603,7 @@ defs["enums"]["ImGuiDir_"][5]["value"] = "3" defs["enums"]["ImGuiDir_"][6] = {} defs["enums"]["ImGuiDir_"][6]["calc_value"] = 4 defs["enums"]["ImGuiDir_"][6]["name"] = "ImGuiDir_COUNT" -defs["enums"]["ImGuiDir_"][6]["value"] = 4 +defs["enums"]["ImGuiDir_"][6]["value"] = "4" defs["enums"]["ImGuiDragDropFlags_"] = {} defs["enums"]["ImGuiDragDropFlags_"][1] = {} defs["enums"]["ImGuiDragDropFlags_"][1]["calc_value"] = 0 @@ -793,13 +793,17 @@ defs["enums"]["ImGuiInputTextFlags_"][20]["calc_value"] = 262144 defs["enums"]["ImGuiInputTextFlags_"][20]["name"] = "ImGuiInputTextFlags_CallbackResize" defs["enums"]["ImGuiInputTextFlags_"][20]["value"] = "1 << 18" defs["enums"]["ImGuiInputTextFlags_"][21] = {} -defs["enums"]["ImGuiInputTextFlags_"][21]["calc_value"] = 1048576 -defs["enums"]["ImGuiInputTextFlags_"][21]["name"] = "ImGuiInputTextFlags_Multiline" -defs["enums"]["ImGuiInputTextFlags_"][21]["value"] = "1 << 20" +defs["enums"]["ImGuiInputTextFlags_"][21]["calc_value"] = 524288 +defs["enums"]["ImGuiInputTextFlags_"][21]["name"] = "ImGuiInputTextFlags_CallbackEdit" +defs["enums"]["ImGuiInputTextFlags_"][21]["value"] = "1 << 19" defs["enums"]["ImGuiInputTextFlags_"][22] = {} -defs["enums"]["ImGuiInputTextFlags_"][22]["calc_value"] = 2097152 -defs["enums"]["ImGuiInputTextFlags_"][22]["name"] = "ImGuiInputTextFlags_NoMarkEdited" -defs["enums"]["ImGuiInputTextFlags_"][22]["value"] = "1 << 21" +defs["enums"]["ImGuiInputTextFlags_"][22]["calc_value"] = 1048576 +defs["enums"]["ImGuiInputTextFlags_"][22]["name"] = "ImGuiInputTextFlags_Multiline" +defs["enums"]["ImGuiInputTextFlags_"][22]["value"] = "1 << 20" +defs["enums"]["ImGuiInputTextFlags_"][23] = {} +defs["enums"]["ImGuiInputTextFlags_"][23]["calc_value"] = 2097152 +defs["enums"]["ImGuiInputTextFlags_"][23]["name"] = "ImGuiInputTextFlags_NoMarkEdited" +defs["enums"]["ImGuiInputTextFlags_"][23]["value"] = "1 << 21" defs["enums"]["ImGuiKeyModFlags_"] = {} defs["enums"]["ImGuiKeyModFlags_"][1] = {} defs["enums"]["ImGuiKeyModFlags_"][1]["calc_value"] = 0 @@ -825,95 +829,95 @@ defs["enums"]["ImGuiKey_"] = {} defs["enums"]["ImGuiKey_"][1] = {} defs["enums"]["ImGuiKey_"][1]["calc_value"] = 0 defs["enums"]["ImGuiKey_"][1]["name"] = "ImGuiKey_Tab" -defs["enums"]["ImGuiKey_"][1]["value"] = 0 +defs["enums"]["ImGuiKey_"][1]["value"] = "0" defs["enums"]["ImGuiKey_"][2] = {} defs["enums"]["ImGuiKey_"][2]["calc_value"] = 1 defs["enums"]["ImGuiKey_"][2]["name"] = "ImGuiKey_LeftArrow" -defs["enums"]["ImGuiKey_"][2]["value"] = 1 +defs["enums"]["ImGuiKey_"][2]["value"] = "1" defs["enums"]["ImGuiKey_"][3] = {} defs["enums"]["ImGuiKey_"][3]["calc_value"] = 2 defs["enums"]["ImGuiKey_"][3]["name"] = "ImGuiKey_RightArrow" -defs["enums"]["ImGuiKey_"][3]["value"] = 2 +defs["enums"]["ImGuiKey_"][3]["value"] = "2" defs["enums"]["ImGuiKey_"][4] = {} defs["enums"]["ImGuiKey_"][4]["calc_value"] = 3 defs["enums"]["ImGuiKey_"][4]["name"] = "ImGuiKey_UpArrow" -defs["enums"]["ImGuiKey_"][4]["value"] = 3 +defs["enums"]["ImGuiKey_"][4]["value"] = "3" defs["enums"]["ImGuiKey_"][5] = {} defs["enums"]["ImGuiKey_"][5]["calc_value"] = 4 defs["enums"]["ImGuiKey_"][5]["name"] = "ImGuiKey_DownArrow" -defs["enums"]["ImGuiKey_"][5]["value"] = 4 +defs["enums"]["ImGuiKey_"][5]["value"] = "4" defs["enums"]["ImGuiKey_"][6] = {} defs["enums"]["ImGuiKey_"][6]["calc_value"] = 5 defs["enums"]["ImGuiKey_"][6]["name"] = "ImGuiKey_PageUp" -defs["enums"]["ImGuiKey_"][6]["value"] = 5 +defs["enums"]["ImGuiKey_"][6]["value"] = "5" defs["enums"]["ImGuiKey_"][7] = {} defs["enums"]["ImGuiKey_"][7]["calc_value"] = 6 defs["enums"]["ImGuiKey_"][7]["name"] = "ImGuiKey_PageDown" -defs["enums"]["ImGuiKey_"][7]["value"] = 6 +defs["enums"]["ImGuiKey_"][7]["value"] = "6" defs["enums"]["ImGuiKey_"][8] = {} defs["enums"]["ImGuiKey_"][8]["calc_value"] = 7 defs["enums"]["ImGuiKey_"][8]["name"] = "ImGuiKey_Home" -defs["enums"]["ImGuiKey_"][8]["value"] = 7 +defs["enums"]["ImGuiKey_"][8]["value"] = "7" defs["enums"]["ImGuiKey_"][9] = {} defs["enums"]["ImGuiKey_"][9]["calc_value"] = 8 defs["enums"]["ImGuiKey_"][9]["name"] = "ImGuiKey_End" -defs["enums"]["ImGuiKey_"][9]["value"] = 8 +defs["enums"]["ImGuiKey_"][9]["value"] = "8" defs["enums"]["ImGuiKey_"][10] = {} defs["enums"]["ImGuiKey_"][10]["calc_value"] = 9 defs["enums"]["ImGuiKey_"][10]["name"] = "ImGuiKey_Insert" -defs["enums"]["ImGuiKey_"][10]["value"] = 9 +defs["enums"]["ImGuiKey_"][10]["value"] = "9" defs["enums"]["ImGuiKey_"][11] = {} defs["enums"]["ImGuiKey_"][11]["calc_value"] = 10 defs["enums"]["ImGuiKey_"][11]["name"] = "ImGuiKey_Delete" -defs["enums"]["ImGuiKey_"][11]["value"] = 10 +defs["enums"]["ImGuiKey_"][11]["value"] = "10" defs["enums"]["ImGuiKey_"][12] = {} defs["enums"]["ImGuiKey_"][12]["calc_value"] = 11 defs["enums"]["ImGuiKey_"][12]["name"] = "ImGuiKey_Backspace" -defs["enums"]["ImGuiKey_"][12]["value"] = 11 +defs["enums"]["ImGuiKey_"][12]["value"] = "11" defs["enums"]["ImGuiKey_"][13] = {} defs["enums"]["ImGuiKey_"][13]["calc_value"] = 12 defs["enums"]["ImGuiKey_"][13]["name"] = "ImGuiKey_Space" -defs["enums"]["ImGuiKey_"][13]["value"] = 12 +defs["enums"]["ImGuiKey_"][13]["value"] = "12" defs["enums"]["ImGuiKey_"][14] = {} defs["enums"]["ImGuiKey_"][14]["calc_value"] = 13 defs["enums"]["ImGuiKey_"][14]["name"] = "ImGuiKey_Enter" -defs["enums"]["ImGuiKey_"][14]["value"] = 13 +defs["enums"]["ImGuiKey_"][14]["value"] = "13" defs["enums"]["ImGuiKey_"][15] = {} defs["enums"]["ImGuiKey_"][15]["calc_value"] = 14 defs["enums"]["ImGuiKey_"][15]["name"] = "ImGuiKey_Escape" -defs["enums"]["ImGuiKey_"][15]["value"] = 14 +defs["enums"]["ImGuiKey_"][15]["value"] = "14" defs["enums"]["ImGuiKey_"][16] = {} defs["enums"]["ImGuiKey_"][16]["calc_value"] = 15 defs["enums"]["ImGuiKey_"][16]["name"] = "ImGuiKey_KeyPadEnter" -defs["enums"]["ImGuiKey_"][16]["value"] = 15 +defs["enums"]["ImGuiKey_"][16]["value"] = "15" defs["enums"]["ImGuiKey_"][17] = {} defs["enums"]["ImGuiKey_"][17]["calc_value"] = 16 defs["enums"]["ImGuiKey_"][17]["name"] = "ImGuiKey_A" -defs["enums"]["ImGuiKey_"][17]["value"] = 16 +defs["enums"]["ImGuiKey_"][17]["value"] = "16" defs["enums"]["ImGuiKey_"][18] = {} defs["enums"]["ImGuiKey_"][18]["calc_value"] = 17 defs["enums"]["ImGuiKey_"][18]["name"] = "ImGuiKey_C" -defs["enums"]["ImGuiKey_"][18]["value"] = 17 +defs["enums"]["ImGuiKey_"][18]["value"] = "17" defs["enums"]["ImGuiKey_"][19] = {} defs["enums"]["ImGuiKey_"][19]["calc_value"] = 18 defs["enums"]["ImGuiKey_"][19]["name"] = "ImGuiKey_V" -defs["enums"]["ImGuiKey_"][19]["value"] = 18 +defs["enums"]["ImGuiKey_"][19]["value"] = "18" defs["enums"]["ImGuiKey_"][20] = {} defs["enums"]["ImGuiKey_"][20]["calc_value"] = 19 defs["enums"]["ImGuiKey_"][20]["name"] = "ImGuiKey_X" -defs["enums"]["ImGuiKey_"][20]["value"] = 19 +defs["enums"]["ImGuiKey_"][20]["value"] = "19" defs["enums"]["ImGuiKey_"][21] = {} defs["enums"]["ImGuiKey_"][21]["calc_value"] = 20 defs["enums"]["ImGuiKey_"][21]["name"] = "ImGuiKey_Y" -defs["enums"]["ImGuiKey_"][21]["value"] = 20 +defs["enums"]["ImGuiKey_"][21]["value"] = "20" defs["enums"]["ImGuiKey_"][22] = {} defs["enums"]["ImGuiKey_"][22]["calc_value"] = 21 defs["enums"]["ImGuiKey_"][22]["name"] = "ImGuiKey_Z" -defs["enums"]["ImGuiKey_"][22]["value"] = 21 +defs["enums"]["ImGuiKey_"][22]["value"] = "21" defs["enums"]["ImGuiKey_"][23] = {} defs["enums"]["ImGuiKey_"][23]["calc_value"] = 22 defs["enums"]["ImGuiKey_"][23]["name"] = "ImGuiKey_COUNT" -defs["enums"]["ImGuiKey_"][23]["value"] = 22 +defs["enums"]["ImGuiKey_"][23]["value"] = "22" defs["enums"]["ImGuiMouseButton_"] = {} defs["enums"]["ImGuiMouseButton_"][1] = {} defs["enums"]["ImGuiMouseButton_"][1]["calc_value"] = 0 @@ -943,128 +947,128 @@ defs["enums"]["ImGuiMouseCursor_"][2]["value"] = "0" defs["enums"]["ImGuiMouseCursor_"][3] = {} defs["enums"]["ImGuiMouseCursor_"][3]["calc_value"] = 1 defs["enums"]["ImGuiMouseCursor_"][3]["name"] = "ImGuiMouseCursor_TextInput" -defs["enums"]["ImGuiMouseCursor_"][3]["value"] = 1 +defs["enums"]["ImGuiMouseCursor_"][3]["value"] = "1" defs["enums"]["ImGuiMouseCursor_"][4] = {} defs["enums"]["ImGuiMouseCursor_"][4]["calc_value"] = 2 defs["enums"]["ImGuiMouseCursor_"][4]["name"] = "ImGuiMouseCursor_ResizeAll" -defs["enums"]["ImGuiMouseCursor_"][4]["value"] = 2 +defs["enums"]["ImGuiMouseCursor_"][4]["value"] = "2" defs["enums"]["ImGuiMouseCursor_"][5] = {} defs["enums"]["ImGuiMouseCursor_"][5]["calc_value"] = 3 defs["enums"]["ImGuiMouseCursor_"][5]["name"] = "ImGuiMouseCursor_ResizeNS" -defs["enums"]["ImGuiMouseCursor_"][5]["value"] = 3 +defs["enums"]["ImGuiMouseCursor_"][5]["value"] = "3" defs["enums"]["ImGuiMouseCursor_"][6] = {} defs["enums"]["ImGuiMouseCursor_"][6]["calc_value"] = 4 defs["enums"]["ImGuiMouseCursor_"][6]["name"] = "ImGuiMouseCursor_ResizeEW" -defs["enums"]["ImGuiMouseCursor_"][6]["value"] = 4 +defs["enums"]["ImGuiMouseCursor_"][6]["value"] = "4" defs["enums"]["ImGuiMouseCursor_"][7] = {} defs["enums"]["ImGuiMouseCursor_"][7]["calc_value"] = 5 defs["enums"]["ImGuiMouseCursor_"][7]["name"] = "ImGuiMouseCursor_ResizeNESW" -defs["enums"]["ImGuiMouseCursor_"][7]["value"] = 5 +defs["enums"]["ImGuiMouseCursor_"][7]["value"] = "5" defs["enums"]["ImGuiMouseCursor_"][8] = {} defs["enums"]["ImGuiMouseCursor_"][8]["calc_value"] = 6 defs["enums"]["ImGuiMouseCursor_"][8]["name"] = "ImGuiMouseCursor_ResizeNWSE" -defs["enums"]["ImGuiMouseCursor_"][8]["value"] = 6 +defs["enums"]["ImGuiMouseCursor_"][8]["value"] = "6" defs["enums"]["ImGuiMouseCursor_"][9] = {} defs["enums"]["ImGuiMouseCursor_"][9]["calc_value"] = 7 defs["enums"]["ImGuiMouseCursor_"][9]["name"] = "ImGuiMouseCursor_Hand" -defs["enums"]["ImGuiMouseCursor_"][9]["value"] = 7 +defs["enums"]["ImGuiMouseCursor_"][9]["value"] = "7" defs["enums"]["ImGuiMouseCursor_"][10] = {} defs["enums"]["ImGuiMouseCursor_"][10]["calc_value"] = 8 defs["enums"]["ImGuiMouseCursor_"][10]["name"] = "ImGuiMouseCursor_NotAllowed" -defs["enums"]["ImGuiMouseCursor_"][10]["value"] = 8 +defs["enums"]["ImGuiMouseCursor_"][10]["value"] = "8" defs["enums"]["ImGuiMouseCursor_"][11] = {} defs["enums"]["ImGuiMouseCursor_"][11]["calc_value"] = 9 defs["enums"]["ImGuiMouseCursor_"][11]["name"] = "ImGuiMouseCursor_COUNT" -defs["enums"]["ImGuiMouseCursor_"][11]["value"] = 9 +defs["enums"]["ImGuiMouseCursor_"][11]["value"] = "9" defs["enums"]["ImGuiNavInput_"] = {} defs["enums"]["ImGuiNavInput_"][1] = {} defs["enums"]["ImGuiNavInput_"][1]["calc_value"] = 0 defs["enums"]["ImGuiNavInput_"][1]["name"] = "ImGuiNavInput_Activate" -defs["enums"]["ImGuiNavInput_"][1]["value"] = 0 +defs["enums"]["ImGuiNavInput_"][1]["value"] = "0" defs["enums"]["ImGuiNavInput_"][2] = {} defs["enums"]["ImGuiNavInput_"][2]["calc_value"] = 1 defs["enums"]["ImGuiNavInput_"][2]["name"] = "ImGuiNavInput_Cancel" -defs["enums"]["ImGuiNavInput_"][2]["value"] = 1 +defs["enums"]["ImGuiNavInput_"][2]["value"] = "1" defs["enums"]["ImGuiNavInput_"][3] = {} defs["enums"]["ImGuiNavInput_"][3]["calc_value"] = 2 defs["enums"]["ImGuiNavInput_"][3]["name"] = "ImGuiNavInput_Input" -defs["enums"]["ImGuiNavInput_"][3]["value"] = 2 +defs["enums"]["ImGuiNavInput_"][3]["value"] = "2" defs["enums"]["ImGuiNavInput_"][4] = {} defs["enums"]["ImGuiNavInput_"][4]["calc_value"] = 3 defs["enums"]["ImGuiNavInput_"][4]["name"] = "ImGuiNavInput_Menu" -defs["enums"]["ImGuiNavInput_"][4]["value"] = 3 +defs["enums"]["ImGuiNavInput_"][4]["value"] = "3" defs["enums"]["ImGuiNavInput_"][5] = {} defs["enums"]["ImGuiNavInput_"][5]["calc_value"] = 4 defs["enums"]["ImGuiNavInput_"][5]["name"] = "ImGuiNavInput_DpadLeft" -defs["enums"]["ImGuiNavInput_"][5]["value"] = 4 +defs["enums"]["ImGuiNavInput_"][5]["value"] = "4" defs["enums"]["ImGuiNavInput_"][6] = {} defs["enums"]["ImGuiNavInput_"][6]["calc_value"] = 5 defs["enums"]["ImGuiNavInput_"][6]["name"] = "ImGuiNavInput_DpadRight" -defs["enums"]["ImGuiNavInput_"][6]["value"] = 5 +defs["enums"]["ImGuiNavInput_"][6]["value"] = "5" defs["enums"]["ImGuiNavInput_"][7] = {} defs["enums"]["ImGuiNavInput_"][7]["calc_value"] = 6 defs["enums"]["ImGuiNavInput_"][7]["name"] = "ImGuiNavInput_DpadUp" -defs["enums"]["ImGuiNavInput_"][7]["value"] = 6 +defs["enums"]["ImGuiNavInput_"][7]["value"] = "6" defs["enums"]["ImGuiNavInput_"][8] = {} defs["enums"]["ImGuiNavInput_"][8]["calc_value"] = 7 defs["enums"]["ImGuiNavInput_"][8]["name"] = "ImGuiNavInput_DpadDown" -defs["enums"]["ImGuiNavInput_"][8]["value"] = 7 +defs["enums"]["ImGuiNavInput_"][8]["value"] = "7" defs["enums"]["ImGuiNavInput_"][9] = {} defs["enums"]["ImGuiNavInput_"][9]["calc_value"] = 8 defs["enums"]["ImGuiNavInput_"][9]["name"] = "ImGuiNavInput_LStickLeft" -defs["enums"]["ImGuiNavInput_"][9]["value"] = 8 +defs["enums"]["ImGuiNavInput_"][9]["value"] = "8" defs["enums"]["ImGuiNavInput_"][10] = {} defs["enums"]["ImGuiNavInput_"][10]["calc_value"] = 9 defs["enums"]["ImGuiNavInput_"][10]["name"] = "ImGuiNavInput_LStickRight" -defs["enums"]["ImGuiNavInput_"][10]["value"] = 9 +defs["enums"]["ImGuiNavInput_"][10]["value"] = "9" defs["enums"]["ImGuiNavInput_"][11] = {} defs["enums"]["ImGuiNavInput_"][11]["calc_value"] = 10 defs["enums"]["ImGuiNavInput_"][11]["name"] = "ImGuiNavInput_LStickUp" -defs["enums"]["ImGuiNavInput_"][11]["value"] = 10 +defs["enums"]["ImGuiNavInput_"][11]["value"] = "10" defs["enums"]["ImGuiNavInput_"][12] = {} defs["enums"]["ImGuiNavInput_"][12]["calc_value"] = 11 defs["enums"]["ImGuiNavInput_"][12]["name"] = "ImGuiNavInput_LStickDown" -defs["enums"]["ImGuiNavInput_"][12]["value"] = 11 +defs["enums"]["ImGuiNavInput_"][12]["value"] = "11" defs["enums"]["ImGuiNavInput_"][13] = {} defs["enums"]["ImGuiNavInput_"][13]["calc_value"] = 12 defs["enums"]["ImGuiNavInput_"][13]["name"] = "ImGuiNavInput_FocusPrev" -defs["enums"]["ImGuiNavInput_"][13]["value"] = 12 +defs["enums"]["ImGuiNavInput_"][13]["value"] = "12" defs["enums"]["ImGuiNavInput_"][14] = {} defs["enums"]["ImGuiNavInput_"][14]["calc_value"] = 13 defs["enums"]["ImGuiNavInput_"][14]["name"] = "ImGuiNavInput_FocusNext" -defs["enums"]["ImGuiNavInput_"][14]["value"] = 13 +defs["enums"]["ImGuiNavInput_"][14]["value"] = "13" defs["enums"]["ImGuiNavInput_"][15] = {} defs["enums"]["ImGuiNavInput_"][15]["calc_value"] = 14 defs["enums"]["ImGuiNavInput_"][15]["name"] = "ImGuiNavInput_TweakSlow" -defs["enums"]["ImGuiNavInput_"][15]["value"] = 14 +defs["enums"]["ImGuiNavInput_"][15]["value"] = "14" defs["enums"]["ImGuiNavInput_"][16] = {} defs["enums"]["ImGuiNavInput_"][16]["calc_value"] = 15 defs["enums"]["ImGuiNavInput_"][16]["name"] = "ImGuiNavInput_TweakFast" -defs["enums"]["ImGuiNavInput_"][16]["value"] = 15 +defs["enums"]["ImGuiNavInput_"][16]["value"] = "15" defs["enums"]["ImGuiNavInput_"][17] = {} defs["enums"]["ImGuiNavInput_"][17]["calc_value"] = 16 defs["enums"]["ImGuiNavInput_"][17]["name"] = "ImGuiNavInput_KeyMenu_" -defs["enums"]["ImGuiNavInput_"][17]["value"] = 16 +defs["enums"]["ImGuiNavInput_"][17]["value"] = "16" defs["enums"]["ImGuiNavInput_"][18] = {} defs["enums"]["ImGuiNavInput_"][18]["calc_value"] = 17 defs["enums"]["ImGuiNavInput_"][18]["name"] = "ImGuiNavInput_KeyLeft_" -defs["enums"]["ImGuiNavInput_"][18]["value"] = 17 +defs["enums"]["ImGuiNavInput_"][18]["value"] = "17" defs["enums"]["ImGuiNavInput_"][19] = {} defs["enums"]["ImGuiNavInput_"][19]["calc_value"] = 18 defs["enums"]["ImGuiNavInput_"][19]["name"] = "ImGuiNavInput_KeyRight_" -defs["enums"]["ImGuiNavInput_"][19]["value"] = 18 +defs["enums"]["ImGuiNavInput_"][19]["value"] = "18" defs["enums"]["ImGuiNavInput_"][20] = {} defs["enums"]["ImGuiNavInput_"][20]["calc_value"] = 19 defs["enums"]["ImGuiNavInput_"][20]["name"] = "ImGuiNavInput_KeyUp_" -defs["enums"]["ImGuiNavInput_"][20]["value"] = 19 +defs["enums"]["ImGuiNavInput_"][20]["value"] = "19" defs["enums"]["ImGuiNavInput_"][21] = {} defs["enums"]["ImGuiNavInput_"][21]["calc_value"] = 20 defs["enums"]["ImGuiNavInput_"][21]["name"] = "ImGuiNavInput_KeyDown_" -defs["enums"]["ImGuiNavInput_"][21]["value"] = 20 +defs["enums"]["ImGuiNavInput_"][21]["value"] = "20" defs["enums"]["ImGuiNavInput_"][22] = {} defs["enums"]["ImGuiNavInput_"][22]["calc_value"] = 21 defs["enums"]["ImGuiNavInput_"][22]["name"] = "ImGuiNavInput_COUNT" -defs["enums"]["ImGuiNavInput_"][22]["value"] = 21 +defs["enums"]["ImGuiNavInput_"][22]["value"] = "21" defs["enums"]["ImGuiNavInput_"][23] = {} defs["enums"]["ImGuiNavInput_"][23]["calc_value"] = 16 defs["enums"]["ImGuiNavInput_"][23]["name"] = "ImGuiNavInput_InternalStart_" @@ -1146,7 +1150,7 @@ defs["enums"]["ImGuiSliderFlags_"][1]["name"] = "ImGuiSliderFlags_None" defs["enums"]["ImGuiSliderFlags_"][1]["value"] = "0" defs["enums"]["ImGuiSliderFlags_"][2] = {} defs["enums"]["ImGuiSliderFlags_"][2]["calc_value"] = 16 -defs["enums"]["ImGuiSliderFlags_"][2]["name"] = "ImGuiSliderFlags_ClampOnInput" +defs["enums"]["ImGuiSliderFlags_"][2]["name"] = "ImGuiSliderFlags_AlwaysClamp" defs["enums"]["ImGuiSliderFlags_"][2]["value"] = "1 << 4" defs["enums"]["ImGuiSliderFlags_"][3] = {} defs["enums"]["ImGuiSliderFlags_"][3]["calc_value"] = 32 @@ -1168,99 +1172,99 @@ defs["enums"]["ImGuiStyleVar_"] = {} defs["enums"]["ImGuiStyleVar_"][1] = {} defs["enums"]["ImGuiStyleVar_"][1]["calc_value"] = 0 defs["enums"]["ImGuiStyleVar_"][1]["name"] = "ImGuiStyleVar_Alpha" -defs["enums"]["ImGuiStyleVar_"][1]["value"] = 0 +defs["enums"]["ImGuiStyleVar_"][1]["value"] = "0" defs["enums"]["ImGuiStyleVar_"][2] = {} defs["enums"]["ImGuiStyleVar_"][2]["calc_value"] = 1 defs["enums"]["ImGuiStyleVar_"][2]["name"] = "ImGuiStyleVar_WindowPadding" -defs["enums"]["ImGuiStyleVar_"][2]["value"] = 1 +defs["enums"]["ImGuiStyleVar_"][2]["value"] = "1" defs["enums"]["ImGuiStyleVar_"][3] = {} defs["enums"]["ImGuiStyleVar_"][3]["calc_value"] = 2 defs["enums"]["ImGuiStyleVar_"][3]["name"] = "ImGuiStyleVar_WindowRounding" -defs["enums"]["ImGuiStyleVar_"][3]["value"] = 2 +defs["enums"]["ImGuiStyleVar_"][3]["value"] = "2" defs["enums"]["ImGuiStyleVar_"][4] = {} defs["enums"]["ImGuiStyleVar_"][4]["calc_value"] = 3 defs["enums"]["ImGuiStyleVar_"][4]["name"] = "ImGuiStyleVar_WindowBorderSize" -defs["enums"]["ImGuiStyleVar_"][4]["value"] = 3 +defs["enums"]["ImGuiStyleVar_"][4]["value"] = "3" defs["enums"]["ImGuiStyleVar_"][5] = {} defs["enums"]["ImGuiStyleVar_"][5]["calc_value"] = 4 defs["enums"]["ImGuiStyleVar_"][5]["name"] = "ImGuiStyleVar_WindowMinSize" -defs["enums"]["ImGuiStyleVar_"][5]["value"] = 4 +defs["enums"]["ImGuiStyleVar_"][5]["value"] = "4" defs["enums"]["ImGuiStyleVar_"][6] = {} defs["enums"]["ImGuiStyleVar_"][6]["calc_value"] = 5 defs["enums"]["ImGuiStyleVar_"][6]["name"] = "ImGuiStyleVar_WindowTitleAlign" -defs["enums"]["ImGuiStyleVar_"][6]["value"] = 5 +defs["enums"]["ImGuiStyleVar_"][6]["value"] = "5" defs["enums"]["ImGuiStyleVar_"][7] = {} defs["enums"]["ImGuiStyleVar_"][7]["calc_value"] = 6 defs["enums"]["ImGuiStyleVar_"][7]["name"] = "ImGuiStyleVar_ChildRounding" -defs["enums"]["ImGuiStyleVar_"][7]["value"] = 6 +defs["enums"]["ImGuiStyleVar_"][7]["value"] = "6" defs["enums"]["ImGuiStyleVar_"][8] = {} defs["enums"]["ImGuiStyleVar_"][8]["calc_value"] = 7 defs["enums"]["ImGuiStyleVar_"][8]["name"] = "ImGuiStyleVar_ChildBorderSize" -defs["enums"]["ImGuiStyleVar_"][8]["value"] = 7 +defs["enums"]["ImGuiStyleVar_"][8]["value"] = "7" defs["enums"]["ImGuiStyleVar_"][9] = {} defs["enums"]["ImGuiStyleVar_"][9]["calc_value"] = 8 defs["enums"]["ImGuiStyleVar_"][9]["name"] = "ImGuiStyleVar_PopupRounding" -defs["enums"]["ImGuiStyleVar_"][9]["value"] = 8 +defs["enums"]["ImGuiStyleVar_"][9]["value"] = "8" defs["enums"]["ImGuiStyleVar_"][10] = {} defs["enums"]["ImGuiStyleVar_"][10]["calc_value"] = 9 defs["enums"]["ImGuiStyleVar_"][10]["name"] = "ImGuiStyleVar_PopupBorderSize" -defs["enums"]["ImGuiStyleVar_"][10]["value"] = 9 +defs["enums"]["ImGuiStyleVar_"][10]["value"] = "9" defs["enums"]["ImGuiStyleVar_"][11] = {} defs["enums"]["ImGuiStyleVar_"][11]["calc_value"] = 10 defs["enums"]["ImGuiStyleVar_"][11]["name"] = "ImGuiStyleVar_FramePadding" -defs["enums"]["ImGuiStyleVar_"][11]["value"] = 10 +defs["enums"]["ImGuiStyleVar_"][11]["value"] = "10" defs["enums"]["ImGuiStyleVar_"][12] = {} defs["enums"]["ImGuiStyleVar_"][12]["calc_value"] = 11 defs["enums"]["ImGuiStyleVar_"][12]["name"] = "ImGuiStyleVar_FrameRounding" -defs["enums"]["ImGuiStyleVar_"][12]["value"] = 11 +defs["enums"]["ImGuiStyleVar_"][12]["value"] = "11" defs["enums"]["ImGuiStyleVar_"][13] = {} defs["enums"]["ImGuiStyleVar_"][13]["calc_value"] = 12 defs["enums"]["ImGuiStyleVar_"][13]["name"] = "ImGuiStyleVar_FrameBorderSize" -defs["enums"]["ImGuiStyleVar_"][13]["value"] = 12 +defs["enums"]["ImGuiStyleVar_"][13]["value"] = "12" defs["enums"]["ImGuiStyleVar_"][14] = {} defs["enums"]["ImGuiStyleVar_"][14]["calc_value"] = 13 defs["enums"]["ImGuiStyleVar_"][14]["name"] = "ImGuiStyleVar_ItemSpacing" -defs["enums"]["ImGuiStyleVar_"][14]["value"] = 13 +defs["enums"]["ImGuiStyleVar_"][14]["value"] = "13" defs["enums"]["ImGuiStyleVar_"][15] = {} defs["enums"]["ImGuiStyleVar_"][15]["calc_value"] = 14 defs["enums"]["ImGuiStyleVar_"][15]["name"] = "ImGuiStyleVar_ItemInnerSpacing" -defs["enums"]["ImGuiStyleVar_"][15]["value"] = 14 +defs["enums"]["ImGuiStyleVar_"][15]["value"] = "14" defs["enums"]["ImGuiStyleVar_"][16] = {} defs["enums"]["ImGuiStyleVar_"][16]["calc_value"] = 15 defs["enums"]["ImGuiStyleVar_"][16]["name"] = "ImGuiStyleVar_IndentSpacing" -defs["enums"]["ImGuiStyleVar_"][16]["value"] = 15 +defs["enums"]["ImGuiStyleVar_"][16]["value"] = "15" defs["enums"]["ImGuiStyleVar_"][17] = {} defs["enums"]["ImGuiStyleVar_"][17]["calc_value"] = 16 defs["enums"]["ImGuiStyleVar_"][17]["name"] = "ImGuiStyleVar_ScrollbarSize" -defs["enums"]["ImGuiStyleVar_"][17]["value"] = 16 +defs["enums"]["ImGuiStyleVar_"][17]["value"] = "16" defs["enums"]["ImGuiStyleVar_"][18] = {} defs["enums"]["ImGuiStyleVar_"][18]["calc_value"] = 17 defs["enums"]["ImGuiStyleVar_"][18]["name"] = "ImGuiStyleVar_ScrollbarRounding" -defs["enums"]["ImGuiStyleVar_"][18]["value"] = 17 +defs["enums"]["ImGuiStyleVar_"][18]["value"] = "17" defs["enums"]["ImGuiStyleVar_"][19] = {} defs["enums"]["ImGuiStyleVar_"][19]["calc_value"] = 18 defs["enums"]["ImGuiStyleVar_"][19]["name"] = "ImGuiStyleVar_GrabMinSize" -defs["enums"]["ImGuiStyleVar_"][19]["value"] = 18 +defs["enums"]["ImGuiStyleVar_"][19]["value"] = "18" defs["enums"]["ImGuiStyleVar_"][20] = {} defs["enums"]["ImGuiStyleVar_"][20]["calc_value"] = 19 defs["enums"]["ImGuiStyleVar_"][20]["name"] = "ImGuiStyleVar_GrabRounding" -defs["enums"]["ImGuiStyleVar_"][20]["value"] = 19 +defs["enums"]["ImGuiStyleVar_"][20]["value"] = "19" defs["enums"]["ImGuiStyleVar_"][21] = {} defs["enums"]["ImGuiStyleVar_"][21]["calc_value"] = 20 defs["enums"]["ImGuiStyleVar_"][21]["name"] = "ImGuiStyleVar_TabRounding" -defs["enums"]["ImGuiStyleVar_"][21]["value"] = 20 +defs["enums"]["ImGuiStyleVar_"][21]["value"] = "20" defs["enums"]["ImGuiStyleVar_"][22] = {} defs["enums"]["ImGuiStyleVar_"][22]["calc_value"] = 21 defs["enums"]["ImGuiStyleVar_"][22]["name"] = "ImGuiStyleVar_ButtonTextAlign" -defs["enums"]["ImGuiStyleVar_"][22]["value"] = 21 +defs["enums"]["ImGuiStyleVar_"][22]["value"] = "21" defs["enums"]["ImGuiStyleVar_"][23] = {} defs["enums"]["ImGuiStyleVar_"][23]["calc_value"] = 22 defs["enums"]["ImGuiStyleVar_"][23]["name"] = "ImGuiStyleVar_SelectableTextAlign" -defs["enums"]["ImGuiStyleVar_"][23]["value"] = 22 +defs["enums"]["ImGuiStyleVar_"][23]["value"] = "22" defs["enums"]["ImGuiStyleVar_"][24] = {} defs["enums"]["ImGuiStyleVar_"][24]["calc_value"] = 23 defs["enums"]["ImGuiStyleVar_"][24]["name"] = "ImGuiStyleVar_COUNT" -defs["enums"]["ImGuiStyleVar_"][24]["value"] = 23 +defs["enums"]["ImGuiStyleVar_"][24]["value"] = "23" defs["enums"]["ImGuiTabBarFlags_"] = {} defs["enums"]["ImGuiTabBarFlags_"][1] = {} defs["enums"]["ImGuiTabBarFlags_"][1]["calc_value"] = 0 @@ -1331,6 +1335,18 @@ defs["enums"]["ImGuiTabItemFlags_"][6] = {} defs["enums"]["ImGuiTabItemFlags_"][6]["calc_value"] = 16 defs["enums"]["ImGuiTabItemFlags_"][6]["name"] = "ImGuiTabItemFlags_NoTooltip" defs["enums"]["ImGuiTabItemFlags_"][6]["value"] = "1 << 4" +defs["enums"]["ImGuiTabItemFlags_"][7] = {} +defs["enums"]["ImGuiTabItemFlags_"][7]["calc_value"] = 32 +defs["enums"]["ImGuiTabItemFlags_"][7]["name"] = "ImGuiTabItemFlags_NoReorder" +defs["enums"]["ImGuiTabItemFlags_"][7]["value"] = "1 << 5" +defs["enums"]["ImGuiTabItemFlags_"][8] = {} +defs["enums"]["ImGuiTabItemFlags_"][8]["calc_value"] = 64 +defs["enums"]["ImGuiTabItemFlags_"][8]["name"] = "ImGuiTabItemFlags_Leading" +defs["enums"]["ImGuiTabItemFlags_"][8]["value"] = "1 << 6" +defs["enums"]["ImGuiTabItemFlags_"][9] = {} +defs["enums"]["ImGuiTabItemFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiTabItemFlags_"][9]["name"] = "ImGuiTabItemFlags_Trailing" +defs["enums"]["ImGuiTabItemFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiTreeNodeFlags_"] = {} defs["enums"]["ImGuiTreeNodeFlags_"][1] = {} defs["enums"]["ImGuiTreeNodeFlags_"][1]["calc_value"] = 0 @@ -1518,62 +1534,62 @@ defs["enums"]["ImGuiWindowFlags_"][30]["calc_value"] = 268435456 defs["enums"]["ImGuiWindowFlags_"][30]["name"] = "ImGuiWindowFlags_ChildMenu" defs["enums"]["ImGuiWindowFlags_"][30]["value"] = "1 << 28" defs["locations"] = {} -defs["locations"]["ImColor"] = "imgui" -defs["locations"]["ImDrawChannel"] = "imgui" -defs["locations"]["ImDrawCmd"] = "imgui" -defs["locations"]["ImDrawCornerFlags_"] = "imgui" -defs["locations"]["ImDrawData"] = "imgui" -defs["locations"]["ImDrawList"] = "imgui" -defs["locations"]["ImDrawListFlags_"] = "imgui" -defs["locations"]["ImDrawListSplitter"] = "imgui" -defs["locations"]["ImDrawVert"] = "imgui" -defs["locations"]["ImFont"] = "imgui" -defs["locations"]["ImFontAtlas"] = "imgui" -defs["locations"]["ImFontAtlasCustomRect"] = "imgui" -defs["locations"]["ImFontAtlasFlags_"] = "imgui" -defs["locations"]["ImFontConfig"] = "imgui" -defs["locations"]["ImFontGlyph"] = "imgui" -defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui" -defs["locations"]["ImGuiBackendFlags_"] = "imgui" -defs["locations"]["ImGuiButtonFlags_"] = "imgui" -defs["locations"]["ImGuiCol_"] = "imgui" -defs["locations"]["ImGuiColorEditFlags_"] = "imgui" -defs["locations"]["ImGuiComboFlags_"] = "imgui" -defs["locations"]["ImGuiCond_"] = "imgui" -defs["locations"]["ImGuiConfigFlags_"] = "imgui" -defs["locations"]["ImGuiDataType_"] = "imgui" -defs["locations"]["ImGuiDir_"] = "imgui" -defs["locations"]["ImGuiDragDropFlags_"] = "imgui" -defs["locations"]["ImGuiFocusedFlags_"] = "imgui" -defs["locations"]["ImGuiHoveredFlags_"] = "imgui" -defs["locations"]["ImGuiIO"] = "imgui" -defs["locations"]["ImGuiInputTextCallbackData"] = "imgui" -defs["locations"]["ImGuiInputTextFlags_"] = "imgui" -defs["locations"]["ImGuiKeyModFlags_"] = "imgui" -defs["locations"]["ImGuiKey_"] = "imgui" -defs["locations"]["ImGuiListClipper"] = "imgui" -defs["locations"]["ImGuiMouseButton_"] = "imgui" -defs["locations"]["ImGuiMouseCursor_"] = "imgui" -defs["locations"]["ImGuiNavInput_"] = "imgui" -defs["locations"]["ImGuiOnceUponAFrame"] = "imgui" -defs["locations"]["ImGuiPayload"] = "imgui" -defs["locations"]["ImGuiPopupFlags_"] = "imgui" -defs["locations"]["ImGuiSelectableFlags_"] = "imgui" -defs["locations"]["ImGuiSizeCallbackData"] = "imgui" -defs["locations"]["ImGuiSliderFlags_"] = "imgui" -defs["locations"]["ImGuiStorage"] = "imgui" -defs["locations"]["ImGuiStoragePair"] = "imgui" -defs["locations"]["ImGuiStyle"] = "imgui" -defs["locations"]["ImGuiStyleVar_"] = "imgui" -defs["locations"]["ImGuiTabBarFlags_"] = "imgui" -defs["locations"]["ImGuiTabItemFlags_"] = "imgui" -defs["locations"]["ImGuiTextBuffer"] = "imgui" -defs["locations"]["ImGuiTextFilter"] = "imgui" -defs["locations"]["ImGuiTextRange"] = "imgui" -defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui" -defs["locations"]["ImGuiWindowFlags_"] = "imgui" -defs["locations"]["ImVec2"] = "imgui" -defs["locations"]["ImVec4"] = "imgui" +defs["locations"]["ImColor"] = "imgui:1953" +defs["locations"]["ImDrawChannel"] = "imgui:2039" +defs["locations"]["ImDrawCmd"] = "imgui:2002" +defs["locations"]["ImDrawCornerFlags_"] = "imgui:2062" +defs["locations"]["ImDrawData"] = "imgui:2209" +defs["locations"]["ImDrawList"] = "imgui:2095" +defs["locations"]["ImDrawListFlags_"] = "imgui:2078" +defs["locations"]["ImDrawListSplitter"] = "imgui:2047" +defs["locations"]["ImDrawVert"] = "imgui:2024" +defs["locations"]["ImFont"] = "imgui:2420" +defs["locations"]["ImFontAtlas"] = "imgui:2325" +defs["locations"]["ImFontAtlasCustomRect"] = "imgui:2287" +defs["locations"]["ImFontAtlasFlags_"] = "imgui:2300" +defs["locations"]["ImFontConfig"] = "imgui:2232" +defs["locations"]["ImFontGlyph"] = "imgui:2261" +defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:2272" +defs["locations"]["ImGuiBackendFlags_"] = "imgui:1131" +defs["locations"]["ImGuiButtonFlags_"] = "imgui:1242" +defs["locations"]["ImGuiCol_"] = "imgui:1141" +defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1255" +defs["locations"]["ImGuiComboFlags_"] = "imgui:921" +defs["locations"]["ImGuiCond_"] = "imgui:1352" +defs["locations"]["ImGuiConfigFlags_"] = "imgui:1115" +defs["locations"]["ImGuiDataType_"] = "imgui:1015" +defs["locations"]["ImGuiDir_"] = "imgui:1031" +defs["locations"]["ImGuiDragDropFlags_"] = "imgui:993" +defs["locations"]["ImGuiFocusedFlags_"] = "imgui:965" +defs["locations"]["ImGuiHoveredFlags_"] = "imgui:977" +defs["locations"]["ImGuiIO"] = "imgui:1506" +defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:1656" +defs["locations"]["ImGuiInputTextFlags_"] = "imgui:836" +defs["locations"]["ImGuiKeyModFlags_"] = "imgui:1070" +defs["locations"]["ImGuiKey_"] = "imgui:1042" +defs["locations"]["ImGuiListClipper"] = "imgui:1905" +defs["locations"]["ImGuiMouseButton_"] = "imgui:1319" +defs["locations"]["ImGuiMouseCursor_"] = "imgui:1329" +defs["locations"]["ImGuiNavInput_"] = "imgui:1083" +defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:1783" +defs["locations"]["ImGuiPayload"] = "imgui:1696" +defs["locations"]["ImGuiPopupFlags_"] = "imgui:894" +defs["locations"]["ImGuiSelectableFlags_"] = "imgui:910" +defs["locations"]["ImGuiSizeCallbackData"] = "imgui:1687" +defs["locations"]["ImGuiSliderFlags_"] = "imgui:1302" +defs["locations"]["ImGuiStorage"] = "imgui:1845" +defs["locations"]["ImGuiStoragePair"] = "imgui:1848" +defs["locations"]["ImGuiStyle"] = "imgui:1454" +defs["locations"]["ImGuiStyleVar_"] = "imgui:1207" +defs["locations"]["ImGuiTabBarFlags_"] = "imgui:935" +defs["locations"]["ImGuiTabItemFlags_"] = "imgui:951" +defs["locations"]["ImGuiTextBuffer"] = "imgui:1818" +defs["locations"]["ImGuiTextFilter"] = "imgui:1791" +defs["locations"]["ImGuiTextRange"] = "imgui:1801" +defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:865" +defs["locations"]["ImGuiWindowFlags_"] = "imgui:795" +defs["locations"]["ImVec2"] = "imgui:211" +defs["locations"]["ImVec4"] = "imgui:224" defs["structs"] = {} defs["structs"]["ImColor"] = {} defs["structs"]["ImColor"][1] = {} @@ -1728,42 +1744,39 @@ defs["structs"]["ImFont"][6] = {} defs["structs"]["ImFont"][6]["name"] = "FallbackGlyph" defs["structs"]["ImFont"][6]["type"] = "const ImFontGlyph*" defs["structs"]["ImFont"][7] = {} -defs["structs"]["ImFont"][7]["name"] = "DisplayOffset" -defs["structs"]["ImFont"][7]["type"] = "ImVec2" +defs["structs"]["ImFont"][7]["name"] = "ContainerAtlas" +defs["structs"]["ImFont"][7]["type"] = "ImFontAtlas*" defs["structs"]["ImFont"][8] = {} -defs["structs"]["ImFont"][8]["name"] = "ContainerAtlas" -defs["structs"]["ImFont"][8]["type"] = "ImFontAtlas*" +defs["structs"]["ImFont"][8]["name"] = "ConfigData" +defs["structs"]["ImFont"][8]["type"] = "const ImFontConfig*" defs["structs"]["ImFont"][9] = {} -defs["structs"]["ImFont"][9]["name"] = "ConfigData" -defs["structs"]["ImFont"][9]["type"] = "const ImFontConfig*" +defs["structs"]["ImFont"][9]["name"] = "ConfigDataCount" +defs["structs"]["ImFont"][9]["type"] = "short" defs["structs"]["ImFont"][10] = {} -defs["structs"]["ImFont"][10]["name"] = "ConfigDataCount" -defs["structs"]["ImFont"][10]["type"] = "short" +defs["structs"]["ImFont"][10]["name"] = "FallbackChar" +defs["structs"]["ImFont"][10]["type"] = "ImWchar" defs["structs"]["ImFont"][11] = {} -defs["structs"]["ImFont"][11]["name"] = "FallbackChar" +defs["structs"]["ImFont"][11]["name"] = "EllipsisChar" defs["structs"]["ImFont"][11]["type"] = "ImWchar" defs["structs"]["ImFont"][12] = {} -defs["structs"]["ImFont"][12]["name"] = "EllipsisChar" -defs["structs"]["ImFont"][12]["type"] = "ImWchar" +defs["structs"]["ImFont"][12]["name"] = "DirtyLookupTables" +defs["structs"]["ImFont"][12]["type"] = "bool" defs["structs"]["ImFont"][13] = {} -defs["structs"]["ImFont"][13]["name"] = "DirtyLookupTables" -defs["structs"]["ImFont"][13]["type"] = "bool" +defs["structs"]["ImFont"][13]["name"] = "Scale" +defs["structs"]["ImFont"][13]["type"] = "float" defs["structs"]["ImFont"][14] = {} -defs["structs"]["ImFont"][14]["name"] = "Scale" +defs["structs"]["ImFont"][14]["name"] = "Ascent" defs["structs"]["ImFont"][14]["type"] = "float" defs["structs"]["ImFont"][15] = {} -defs["structs"]["ImFont"][15]["name"] = "Ascent" +defs["structs"]["ImFont"][15]["name"] = "Descent" defs["structs"]["ImFont"][15]["type"] = "float" defs["structs"]["ImFont"][16] = {} -defs["structs"]["ImFont"][16]["name"] = "Descent" -defs["structs"]["ImFont"][16]["type"] = "float" +defs["structs"]["ImFont"][16]["name"] = "MetricsTotalSurface" +defs["structs"]["ImFont"][16]["type"] = "int" defs["structs"]["ImFont"][17] = {} -defs["structs"]["ImFont"][17]["name"] = "MetricsTotalSurface" -defs["structs"]["ImFont"][17]["type"] = "int" -defs["structs"]["ImFont"][18] = {} -defs["structs"]["ImFont"][18]["name"] = "Used4kPagesMap[(0xFFFF+1)/4096/8]" -defs["structs"]["ImFont"][18]["size"] = 2 -defs["structs"]["ImFont"][18]["type"] = "ImU8" +defs["structs"]["ImFont"][17]["name"] = "Used4kPagesMap[(0xFFFF+1)/4096/8]" +defs["structs"]["ImFont"][17]["size"] = 2 +defs["structs"]["ImFont"][17]["type"] = "ImU8" defs["structs"]["ImFontAtlas"] = {} defs["structs"]["ImFontAtlas"][1] = {} defs["structs"]["ImFontAtlas"][1]["name"] = "Locked" @@ -2397,7 +2410,7 @@ defs["structs"]["ImGuiStyle"][26] = {} defs["structs"]["ImGuiStyle"][26]["name"] = "TabBorderSize" defs["structs"]["ImGuiStyle"][26]["type"] = "float" defs["structs"]["ImGuiStyle"][27] = {} -defs["structs"]["ImGuiStyle"][27]["name"] = "TabMinWidthForUnselectedCloseButton" +defs["structs"]["ImGuiStyle"][27]["name"] = "TabMinWidthForCloseButton" defs["structs"]["ImGuiStyle"][27]["type"] = "float" defs["structs"]["ImGuiStyle"][28] = {} defs["structs"]["ImGuiStyle"][28]["name"] = "ColorButtonPosition" diff --git a/src/fonts/font.rs b/src/fonts/font.rs index acba579..75ccd5d 100644 --- a/src/fonts/font.rs +++ b/src/fonts/font.rs @@ -14,7 +14,6 @@ pub struct Font { index_lookup: ImVector, glyphs: ImVector, fallback_glyph: *const FontGlyph, - pub display_offset: [f32; 2], container_atlas: *mut FontAtlas, config_data: *const sys::ImFontConfig, pub config_data_count: i16, @@ -55,7 +54,6 @@ fn test_font_memory_layout() { assert_field_offset!(index_lookup, IndexLookup); assert_field_offset!(glyphs, Glyphs); assert_field_offset!(fallback_glyph, FallbackGlyph); - assert_field_offset!(display_offset, DisplayOffset); assert_field_offset!(container_atlas, ContainerAtlas); assert_field_offset!(config_data, ConfigData); assert_field_offset!(config_data_count, ConfigDataCount); diff --git a/src/lib.rs b/src/lib.rs index 9e54e33..0c67b39 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -82,7 +82,7 @@ pub fn dear_imgui_version() -> &'static str { #[test] fn test_version() { - assert_eq!(dear_imgui_version(), "1.78"); + assert_eq!(dear_imgui_version(), "1.79"); } impl Context { diff --git a/src/style.rs b/src/style.rs index 5312b4c..18d1c27 100644 --- a/src/style.rs +++ b/src/style.rs @@ -96,7 +96,7 @@ pub struct Style { /// /// `= 0.0`: always show when hovering /// `= f32::MAX`: never show close button unless selected - pub tab_min_width_for_unselected_close_button: f32, + pub tab_min_width_for_close_button: f32, /// Side of the color buttonton pubin color editor widgets (left/right). pub color_button_position: Direction, /// Alignment of button text when button is larger than text. @@ -460,10 +460,7 @@ fn test_style_memory_layout() { assert_field_offset!(log_slider_deadzone, LogSliderDeadzone); assert_field_offset!(tab_rounding, TabRounding); assert_field_offset!(tab_border_size, TabBorderSize); - assert_field_offset!( - tab_min_width_for_unselected_close_button, - TabMinWidthForUnselectedCloseButton - ); + assert_field_offset!(tab_min_width_for_close_button, TabMinWidthForCloseButton); assert_field_offset!(color_button_position, ColorButtonPosition); assert_field_offset!(button_text_align, ButtonTextAlign); assert_field_offset!(selectable_text_align, SelectableTextAlign); diff --git a/src/widget/slider.rs b/src/widget/slider.rs index eb5e814..28d9490 100644 --- a/src/widget/slider.rs +++ b/src/widget/slider.rs @@ -14,7 +14,7 @@ bitflags!( /// Clamp value to min/max bounds when input manually with CTRL+Click. /// /// By default CTRL+click allows going out of bounds. - const CLAMP_ON_INPUT = sys::ImGuiSliderFlags_ClampOnInput; + const ALWAYS_CLAMP = sys::ImGuiSliderFlags_AlwaysClamp; /// Make the widget logarithmic instead of linear const LOGARITHMIC = sys::ImGuiSliderFlags_Logarithmic; /// Disable rounding underlying value to match precision of the display format string diff --git a/src/widget/tab.rs b/src/widget/tab.rs index a26b853..bfa1d5b 100644 --- a/src/widget/tab.rs +++ b/src/widget/tab.rs @@ -50,6 +50,9 @@ bitflags! { const NO_CLOSE_WITH_MIDDLE_MOUSE_BUTTON = sys::ImGuiTabItemFlags_NoCloseWithMiddleMouseButton; const NO_PUSH_ID = sys::ImGuiTabItemFlags_NoPushId; const NO_TOOLTIP = sys::ImGuiTabItemFlags_NoTooltip; + const NO_REORDER = sys::ImGuiTabItemFlags_NoReorder; + const LEADING = sys::ImGuiTabItemFlags_Leading; + const TRAILING = sys::ImGuiTabItemFlags_Trailing; } }