summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/core/method_ptrcall.hpp
Commit message (Collapse)AuthorAgeFilesLines
* Rebrand preambles to RedotSpartan3222024-10-311-2/+4
|
* Fix missing type info for PackedVector4ArrayAaron Franke2024-08-101-0/+1
|
* Merge pull request #1405 from dsnopek/fix-null-object-argumentsDavid Snopek2024-04-291-4/+4
|\ | | | | Correctly handle `Object *` arguments that were encoded as `nullptr`
| * Correctly handle `Object *` arguments that were encoded as `nullptr`David Snopek2024-04-081-4/+4
| |
* | Enforce template syntax `typename` over `class`Thaddeus Crews2024-03-101-3/+3
|/
* Ensure that PtrToArg specializations for native structs are usedDavid Snopek2023-08-151-0/+2
|
* Revert the changes from PR #1044 and #1045 and standardize on `Object **` ↵David Snopek2023-06-071-2/+2
| | | | encoding in ptrcall
* Ensure GDExtension class is the correct type for the Godot engine classDavid Snopek2023-05-161-6/+3
|
* Update to load function pointers for GDExtension interfaceDavid Snopek2023-05-091-2/+2
|
* Fix PtrToArg<Object*> crashZhehang Ding2023-03-301-2/+6
|
* Sync license copyright with upstream GH-70885Rémi Verschelde2023-01-101-29/+29
|
* Rename GDNative to GDExtensionGilles Roudière2022-12-121-2/+2
| | | | | | | | | | | | | Non-exhaustive list of case-sensitive renames: GDExtension -> GDNative GDNATIVE -> GDEXTENSION gdextension -> gdnative ExtensionExtension -> Extension (for where there was GDNativeExtension) EXTENSION_EXTENSION -> EXTENSION (for where there was GDNATIVE_EXTENSION) gdnlib -> gdextension gdn_interface -> gde_interface gdni -> gde_interface
* Fix cast on PtrToArg::convertEmmanuel Leblond2022-12-051-2/+2
|
* Fix const qualifier for parameters in GDExtension api functionsEmmanuel Leblond2022-12-031-31/+31
|
* Add missing bindings for GDNativePtr<void>.Fabio Alessandrelli2022-10-201-0/+1
|
* Run scripts to format and make headers consistentAaron Franke2022-10-091-3/+3
|
* Merge pull request #677 from lukas-toenne/fix_object_ptr_argsFabio Alessandrelli2022-07-291-2/+2
|\ | | | | Fixed pointer indirection in the PtrToArg template for Object arguments.
| * Fixed pointer indirection in the PtrToArg template for Object arguments.Lukas Tönne2022-01-021-2/+2
| |
* | Add bindings for Vector4, Vector4i, Projection built-in types.bruvzg2022-07-211-0/+3
| |
* | Update copyright yearRémi Verschelde2022-03-151-2/+2
| |
* | Fix "const" NativePtr binds.bruvzg2022-02-161-21/+21
|/
* Rename interface to gdn_interface because it's a defined keyword under windowsBastiaan Olij2021-10-281-2/+2
|
* Add pointers support for virtual methods.Fabio Alessandrelli2021-09-271-0/+41
| | | | | As introduced in godot for virtual methods. Custom structs are not yet supported.
* Fix encoding/decoding of null objects.Fabio Alessandrelli2021-09-271-2/+2
|
* Fix binding of function that takes Object * parameters.Fabio Alessandrelli2021-09-271-2/+2
|
* Fix PtrToArg encoding for `Object *`.Fabio Alessandrelli2021-09-271-2/+2
| | | | | It didn't set the return value at all, changing the local value instead. Now instead correctly sets it as a generic pointer type from `_owner`.
* Replace bindgins to work with extensionsGeorge Marques2021-09-271-0/+189