Searched refs:SetAllocatorFunctions (Results 1 - 6 of 6) sorted by relevance
/third_party/skia/third_party/externals/imgui/misc/freetype/ |
H A D | imgui_freetype.h | 43 IMGUI_API void SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void (*free_func)(void* ptr, void* user_data), void* user_data = NULL);
|
H A D | imgui_freetype.cpp | 17 // 2019/01/15: added support for imgui allocators + added FreeType only override function SetAllocatorFunctions(). 768 void ImGuiFreeType::SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void (*free_func)(void* ptr, void* user_data), void* user_data) in SetAllocatorFunctions() function in ImGuiFreeType
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui.h | 679 // - If you reload the contents of imgui.cpp at runtime, you may need to call SetCurrentContext() + SetAllocatorFunctions() again. 680 IMGUI_API void SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void (*free_func)(void* ptr, void* user_data), void* user_data = NULL);
|
H A D | imgui.cpp | 410 - removed allocator parameters from CreateContext(), they are now setup with SetAllocatorFunctions(), and shared by all contexts. 1060 // Memory Allocator functions. Use SetAllocatorFunctions() to change them. 1061 // If you use DLL hotreloading you might need to call SetAllocatorFunctions() after reloading code from this file. 3014 void ImGui::SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void (*free_func)(void* ptr, void* user_data), void* user_data) in SetAllocatorFunctions() function in ImGui
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui.h | 253 typedef void* (*ImGuiMemAllocFunc)(size_t sz, void* user_data); // Function signature for ImGui::SetAllocatorFunctions() 254 typedef void (*ImGuiMemFreeFunc)(void* ptr, void* user_data); // Function signature for ImGui::SetAllocatorFunctions() 292 // - DLL users: heaps and globals are not shared across DLL boundaries! You will need to call SetCurrentContext() + SetAllocatorFunctions() 935 // - DLL users: heaps and globals are not shared across DLL boundaries! You will need to call SetCurrentContext() + SetAllocatorFunctions() 937 IMGUI_API void SetAllocatorFunctions(ImGuiMemAllocFunc alloc_func, ImGuiMemFreeFunc free_func, void* user_data = NULL);
|
H A D | imgui.cpp | 539 - removed allocator parameters from CreateContext(), they are now setup with SetAllocatorFunctions(), and shared by all contexts. 955 // - You will need to call SetCurrentContext() + SetAllocatorFunctions() for each static/DLL boundary you are calling from. 977 // Memory Allocator functions. Use SetAllocatorFunctions() to change them. 3412 void ImGui::SetAllocatorFunctions(ImGuiMemAllocFunc alloc_func, ImGuiMemFreeFunc free_func, void* user_data) in SetAllocatorFunctions() function in ImGui
|
Completed in 88 milliseconds