mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-11 00:04:24 +00:00
FreeType: Minor tweaks previous commit (#2285)
This commit is contained in:
parent
daac9c7559
commit
09f1cb642b
5 changed files with 33 additions and 33 deletions
|
|
@ -2951,7 +2951,7 @@ bool ImGui::DebugCheckVersionAndDataLayout(const char* version, size_t sz_io, si
|
|||
return !error;
|
||||
}
|
||||
|
||||
void ImGui::SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void(*free_func)(void* ptr, void* user_data), void* user_data)
|
||||
void ImGui::SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void (*free_func)(void* ptr, void* user_data), void* user_data)
|
||||
{
|
||||
GImAllocatorAllocFunc = alloc_func;
|
||||
GImAllocatorFreeFunc = free_func;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue