diff options
author | David Snopek <dsnopek@gmail.com> | 2023-04-24 11:45:45 -0500 |
---|---|---|
committer | David Snopek <dsnopek@gmail.com> | 2023-05-09 21:45:48 -0500 |
commit | a5c6ca592023fea7317c0c3fb54639036c66dd76 (patch) | |
tree | 464d6e75402ce7fb8456cda849d9b44230db41a9 /src/core/memory.cpp | |
parent | feaba551b5a5b2d13ad1c3fdd8c90e67c67ff37c (diff) | |
download | redot-cpp-a5c6ca592023fea7317c0c3fb54639036c66dd76.tar.gz |
Update to load function pointers for GDExtension interface
Diffstat (limited to 'src/core/memory.cpp')
-rw-r--r-- | src/core/memory.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/memory.cpp b/src/core/memory.cpp index 8feda57..17b0696 100644 --- a/src/core/memory.cpp +++ b/src/core/memory.cpp @@ -41,7 +41,7 @@ void *Memory::alloc_static(size_t p_bytes, bool p_pad_align) { bool prepad = p_pad_align; #endif - void *mem = internal::gde_interface->mem_alloc(p_bytes + (prepad ? PAD_ALIGN : 0)); + void *mem = internal::gdextension_interface_mem_alloc(p_bytes + (prepad ? PAD_ALIGN : 0)); ERR_FAIL_COND_V(!mem, nullptr); if (prepad) { @@ -70,11 +70,11 @@ void *Memory::realloc_static(void *p_memory, size_t p_bytes, bool p_pad_align) { if (prepad) { mem -= PAD_ALIGN; - mem = (uint8_t *)internal::gde_interface->mem_realloc(mem, p_bytes + PAD_ALIGN); + mem = (uint8_t *)internal::gdextension_interface_mem_realloc(mem, p_bytes + PAD_ALIGN); ERR_FAIL_COND_V(!mem, nullptr); return mem + PAD_ALIGN; } else { - return (uint8_t *)internal::gde_interface->mem_realloc(mem, p_bytes); + return (uint8_t *)internal::gdextension_interface_mem_realloc(mem, p_bytes); } } @@ -90,7 +90,7 @@ void Memory::free_static(void *p_ptr, bool p_pad_align) { if (prepad) { mem -= PAD_ALIGN; } - internal::gde_interface->mem_free(mem); + internal::gdextension_interface_mem_free(mem); } _GlobalNil::_GlobalNil() { |