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 /include/godot_cpp/classes | |
parent | feaba551b5a5b2d13ad1c3fdd8c90e67c67ff37c (diff) | |
download | redot-cpp-a5c6ca592023fea7317c0c3fb54639036c66dd76.tar.gz |
Update to load function pointers for GDExtension interface
Diffstat (limited to 'include/godot_cpp/classes')
-rw-r--r-- | include/godot_cpp/classes/ref.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/godot_cpp/classes/ref.hpp b/include/godot_cpp/classes/ref.hpp index af7711c..301f847 100644 --- a/include/godot_cpp/classes/ref.hpp +++ b/include/godot_cpp/classes/ref.hpp @@ -242,7 +242,7 @@ struct PtrToArg<Ref<T>> { _FORCE_INLINE_ static Ref<T> convert(const void *p_ptr) { // Important: p_ptr is T*, not Ref<T>*, since Object* is what engine gives to ptrcall. ERR_FAIL_NULL_V(p_ptr, Ref<T>()); - return Ref<T>(reinterpret_cast<T *>(godot::internal::gde_interface->object_get_instance_binding( + return Ref<T>(reinterpret_cast<T *>(godot::internal::gdextension_interface_object_get_instance_binding( reinterpret_cast<GDExtensionObjectPtr>(const_cast<void *>(p_ptr)), godot::internal::token, &T::___binding_callbacks))); } @@ -256,7 +256,7 @@ struct PtrToArg<Ref<T>> { // This code assumes that p_ptr points to an unset Ref<T> variable on the Godot side // so we only set it if we have an object to set. if (p_val.is_valid()) { - godot::internal::gde_interface->ref_set_object(ref, p_val->_owner); + godot::internal::gdextension_interface_ref_set_object(ref, p_val->_owner); } } }; @@ -267,7 +267,7 @@ struct PtrToArg<const Ref<T> &> { _FORCE_INLINE_ static Ref<T> convert(const void *p_ptr) { ERR_FAIL_NULL_V(p_ptr, Ref<T>()); - return Ref<T>(reinterpret_cast<T *>(godot::internal::gde_interface->object_get_instance_binding( + return Ref<T>(reinterpret_cast<T *>(godot::internal::gdextension_interface_object_get_instance_binding( reinterpret_cast<GDExtensionObjectPtr>(const_cast<void *>(p_ptr)), godot::internal::token, &T::___binding_callbacks))); } |