Home
last modified time | relevance | path

Searched refs:GDAPI (Results 1 – 25 of 110) sorted by relevance

12345

/dports/devel/godot2-tools/godot-2.1.6-stable/modules/cscript/
H A Dgodot_c.h9 #define GDAPI macro
11 #define GDAPI __declspec(dllexport)
13 #define GDAPI __declspec(dllimport)
50 godot_image GDAPI godot_image_create_empty();
58 void GDAPI godot_image_free(godot_image p_image);
64 godot_rid GDAPI godot_rid_create();
65 godot_rid GDAPI godot_rid_copy(godot_rid p_rid);
66 void GDAPI godot_rid_free(godot_rid p_rid);
91 godot_array GDAPI godot_array_create();
531 void GDAPI *godot_alloc(int p_bytes);
[all …]
/dports/devel/godot2/godot-2.1.6-stable/modules/cscript/
H A Dgodot_c.h9 #define GDAPI macro
11 #define GDAPI __declspec(dllexport)
13 #define GDAPI __declspec(dllimport)
50 godot_image GDAPI godot_image_create_empty();
58 void GDAPI godot_image_free(godot_image p_image);
64 godot_rid GDAPI godot_rid_create();
65 godot_rid GDAPI godot_rid_copy(godot_rid p_rid);
66 void GDAPI godot_rid_free(godot_rid p_rid);
91 godot_array GDAPI godot_array_create();
531 void GDAPI *godot_alloc(int p_bytes);
[all …]
/dports/devel/godot/godot-3.2.3-stable/modules/gdnative/include/gdnative/
H A Dpool_arrays.h167 void GDAPI godot_pool_byte_array_new(godot_pool_byte_array *r_dest);
177 void GDAPI godot_pool_byte_array_invert(godot_pool_byte_array *p_self);
196 void GDAPI godot_pool_byte_array_destroy(godot_pool_byte_array *p_self);
200 void GDAPI godot_pool_int_array_new(godot_pool_int_array *r_dest);
210 void GDAPI godot_pool_int_array_invert(godot_pool_int_array *p_self);
229 void GDAPI godot_pool_int_array_destroy(godot_pool_int_array *p_self);
233 void GDAPI godot_pool_real_array_new(godot_pool_real_array *r_dest);
243 void GDAPI godot_pool_real_array_invert(godot_pool_real_array *p_self);
262 void GDAPI godot_pool_real_array_destroy(godot_pool_real_array *p_self);
266 void GDAPI godot_pool_string_array_new(godot_pool_string_array *r_dest);
[all …]
H A Dstring.h76 void GDAPI godot_char_string_destroy(godot_char_string *p_cs);
78 void GDAPI godot_string_new(godot_string *r_dest);
103 godot_string GDAPI godot_string_chr(wchar_t p_character);
128 godot_string GDAPI godot_string_md5(const uint8_t *p_md5);
129 godot_string GDAPI godot_string_num(double p_num);
132 godot_string GDAPI godot_string_num_real(double p_num);
133 godot_string GDAPI godot_string_num_scientific(double p_num);
182 wchar_t GDAPI godot_string_char_lowercase(wchar_t p_char);
183 wchar_t GDAPI godot_string_char_uppercase(wchar_t p_char);
208 uint32_t GDAPI godot_string_hash_chars(const char *p_cstr);
[all …]
H A Dvariant.h175 void GDAPI godot_variant_new_nil(godot_variant *r_dest);
205 godot_bool GDAPI godot_variant_as_bool(const godot_variant *p_self);
206 uint64_t GDAPI godot_variant_as_uint(const godot_variant *p_self);
207 int64_t GDAPI godot_variant_as_int(const godot_variant *p_self);
208 double GDAPI godot_variant_as_real(const godot_variant *p_self);
211 godot_rect2 GDAPI godot_variant_as_rect2(const godot_variant *p_self);
214 godot_plane GDAPI godot_variant_as_plane(const godot_variant *p_self);
215 godot_quat GDAPI godot_variant_as_quat(const godot_variant *p_self);
216 godot_aabb GDAPI godot_variant_as_aabb(const godot_variant *p_self);
221 godot_rid GDAPI godot_variant_as_rid(const godot_variant *p_self);
[all …]
H A Darray.h63 void GDAPI godot_array_new(godot_array *r_dest);
83 void GDAPI godot_array_clear(godot_array *p_self);
87 godot_bool GDAPI godot_array_empty(const godot_array *p_self);
101 godot_int GDAPI godot_array_hash(const godot_array *p_self);
105 void GDAPI godot_array_invert(godot_array *p_self);
107 godot_variant GDAPI godot_array_pop_back(godot_array *p_self);
109 godot_variant GDAPI godot_array_pop_front(godot_array *p_self);
121 godot_int GDAPI godot_array_size(const godot_array *p_self);
123 void GDAPI godot_array_sort(godot_array *p_self);
131 void GDAPI godot_array_destroy(godot_array *p_self);
[all …]
H A Dvector2.h62 godot_string GDAPI godot_vector2_as_string(const godot_vector2 *p_self);
64 godot_vector2 GDAPI godot_vector2_normalized(const godot_vector2 *p_self);
66 godot_real GDAPI godot_vector2_length(const godot_vector2 *p_self);
68 godot_real GDAPI godot_vector2_angle(const godot_vector2 *p_self);
72 godot_bool GDAPI godot_vector2_is_normalized(const godot_vector2 *p_self);
92 godot_vector2 GDAPI godot_vector2_tangent(const godot_vector2 *p_self);
94 godot_vector2 GDAPI godot_vector2_floor(const godot_vector2 *p_self);
98 godot_real GDAPI godot_vector2_aspect(const godot_vector2 *p_self);
108 godot_vector2 GDAPI godot_vector2_abs(const godot_vector2 *p_self);
134 godot_real GDAPI godot_vector2_get_x(const godot_vector2 *p_self);
[all …]
H A Dvector3.h69 godot_string GDAPI godot_vector3_as_string(const godot_vector3 *p_self);
71 godot_int GDAPI godot_vector3_min_axis(const godot_vector3 *p_self);
73 godot_int GDAPI godot_vector3_max_axis(const godot_vector3 *p_self);
75 godot_real GDAPI godot_vector3_length(const godot_vector3 *p_self);
77 godot_real GDAPI godot_vector3_length_squared(const godot_vector3 *p_self);
79 godot_bool GDAPI godot_vector3_is_normalized(const godot_vector3 *p_self);
81 godot_vector3 GDAPI godot_vector3_normalized(const godot_vector3 *p_self);
83 godot_vector3 GDAPI godot_vector3_inverse(const godot_vector3 *p_self);
103 godot_vector3 GDAPI godot_vector3_abs(const godot_vector3 *p_self);
105 godot_vector3 GDAPI godot_vector3_floor(const godot_vector3 *p_self);
[all …]
H A Dbasis.h67 godot_string GDAPI godot_basis_as_string(const godot_basis *p_self);
69 godot_basis GDAPI godot_basis_inverse(const godot_basis *p_self);
71 godot_basis GDAPI godot_basis_transposed(const godot_basis *p_self);
73 godot_basis GDAPI godot_basis_orthonormalized(const godot_basis *p_self);
75 godot_real GDAPI godot_basis_determinant(const godot_basis *p_self);
81 godot_vector3 GDAPI godot_basis_get_scale(const godot_basis *p_self);
83 godot_vector3 GDAPI godot_basis_get_euler(const godot_basis *p_self);
85 godot_quat GDAPI godot_basis_get_quat(const godot_basis *p_self);
87 void GDAPI godot_basis_set_quat(godot_basis *p_self, const godot_quat *p_quat);
105 godot_int GDAPI godot_basis_get_orthogonal_index(const godot_basis *p_self);
[all …]
H A Dquat.h66 godot_real GDAPI godot_quat_get_x(const godot_quat *p_self);
69 godot_real GDAPI godot_quat_get_y(const godot_quat *p_self);
72 godot_real GDAPI godot_quat_get_z(const godot_quat *p_self);
75 godot_real GDAPI godot_quat_get_w(const godot_quat *p_self);
78 godot_string GDAPI godot_quat_as_string(const godot_quat *p_self);
80 godot_real GDAPI godot_quat_length(const godot_quat *p_self);
82 godot_real GDAPI godot_quat_length_squared(const godot_quat *p_self);
84 godot_quat GDAPI godot_quat_normalized(const godot_quat *p_self);
86 godot_bool GDAPI godot_quat_is_normalized(const godot_quat *p_self);
88 godot_quat GDAPI godot_quat_inverse(const godot_quat *p_self);
[all …]
H A Daabb.h64 godot_vector3 GDAPI godot_aabb_get_position(const godot_aabb *p_self);
67 godot_vector3 GDAPI godot_aabb_get_size(const godot_aabb *p_self);
70 godot_string GDAPI godot_aabb_as_string(const godot_aabb *p_self);
72 godot_real GDAPI godot_aabb_get_area(const godot_aabb *p_self);
74 godot_bool GDAPI godot_aabb_has_no_area(const godot_aabb *p_self);
76 godot_bool GDAPI godot_aabb_has_no_surface(const godot_aabb *p_self);
94 godot_vector3 GDAPI godot_aabb_get_longest_axis(const godot_aabb *p_self);
96 godot_int GDAPI godot_aabb_get_longest_axis_index(const godot_aabb *p_self);
98 godot_real GDAPI godot_aabb_get_longest_axis_size(const godot_aabb *p_self);
100 godot_vector3 GDAPI godot_aabb_get_shortest_axis(const godot_aabb *p_self);
[all …]
H A Dtransform.h65 void GDAPI godot_transform_new_with_quat(godot_transform *r_dest, const godot_quat *p_quat);
67 godot_basis GDAPI godot_transform_get_basis(const godot_transform *p_self);
68 void GDAPI godot_transform_set_basis(godot_transform *p_self, const godot_basis *p_v);
70 godot_vector3 GDAPI godot_transform_get_origin(const godot_transform *p_self);
71 void GDAPI godot_transform_set_origin(godot_transform *p_self, const godot_vector3 *p_v);
73 godot_string GDAPI godot_transform_as_string(const godot_transform *p_self);
75 godot_transform GDAPI godot_transform_inverse(const godot_transform *p_self);
77 godot_transform GDAPI godot_transform_affine_inverse(const godot_transform *p_self);
79 godot_transform GDAPI godot_transform_orthonormalized(const godot_transform *p_self);
93 void GDAPI godot_transform_new_identity(godot_transform *r_dest);
[all …]
H A Ddictionary.h62 void GDAPI godot_dictionary_new(godot_dictionary *r_dest);
63 void GDAPI godot_dictionary_new_copy(godot_dictionary *r_dest, const godot_dictionary *p_src);
64 void GDAPI godot_dictionary_destroy(godot_dictionary *p_self);
68 godot_int GDAPI godot_dictionary_size(const godot_dictionary *p_self);
70 godot_bool GDAPI godot_dictionary_empty(const godot_dictionary *p_self);
72 void GDAPI godot_dictionary_clear(godot_dictionary *p_self);
78 void GDAPI godot_dictionary_erase(godot_dictionary *p_self, const godot_variant *p_key);
80 godot_int GDAPI godot_dictionary_hash(const godot_dictionary *p_self);
82 godot_array GDAPI godot_dictionary_keys(const godot_dictionary *p_self);
84 godot_array GDAPI godot_dictionary_values(const godot_dictionary *p_self);
[all …]
/dports/devel/godot-tools/godot-3.2.3-stable/modules/gdnative/include/gdnative/
H A Dpool_arrays.h167 void GDAPI godot_pool_byte_array_new(godot_pool_byte_array *r_dest);
177 void GDAPI godot_pool_byte_array_invert(godot_pool_byte_array *p_self);
196 void GDAPI godot_pool_byte_array_destroy(godot_pool_byte_array *p_self);
200 void GDAPI godot_pool_int_array_new(godot_pool_int_array *r_dest);
210 void GDAPI godot_pool_int_array_invert(godot_pool_int_array *p_self);
229 void GDAPI godot_pool_int_array_destroy(godot_pool_int_array *p_self);
233 void GDAPI godot_pool_real_array_new(godot_pool_real_array *r_dest);
243 void GDAPI godot_pool_real_array_invert(godot_pool_real_array *p_self);
262 void GDAPI godot_pool_real_array_destroy(godot_pool_real_array *p_self);
266 void GDAPI godot_pool_string_array_new(godot_pool_string_array *r_dest);
[all …]
H A Dstring.h76 void GDAPI godot_char_string_destroy(godot_char_string *p_cs);
78 void GDAPI godot_string_new(godot_string *r_dest);
103 godot_string GDAPI godot_string_chr(wchar_t p_character);
128 godot_string GDAPI godot_string_md5(const uint8_t *p_md5);
129 godot_string GDAPI godot_string_num(double p_num);
132 godot_string GDAPI godot_string_num_real(double p_num);
133 godot_string GDAPI godot_string_num_scientific(double p_num);
182 wchar_t GDAPI godot_string_char_lowercase(wchar_t p_char);
183 wchar_t GDAPI godot_string_char_uppercase(wchar_t p_char);
208 uint32_t GDAPI godot_string_hash_chars(const char *p_cstr);
[all …]
H A Dvariant.h175 void GDAPI godot_variant_new_nil(godot_variant *r_dest);
205 godot_bool GDAPI godot_variant_as_bool(const godot_variant *p_self);
206 uint64_t GDAPI godot_variant_as_uint(const godot_variant *p_self);
207 int64_t GDAPI godot_variant_as_int(const godot_variant *p_self);
208 double GDAPI godot_variant_as_real(const godot_variant *p_self);
211 godot_rect2 GDAPI godot_variant_as_rect2(const godot_variant *p_self);
214 godot_plane GDAPI godot_variant_as_plane(const godot_variant *p_self);
215 godot_quat GDAPI godot_variant_as_quat(const godot_variant *p_self);
216 godot_aabb GDAPI godot_variant_as_aabb(const godot_variant *p_self);
221 godot_rid GDAPI godot_variant_as_rid(const godot_variant *p_self);
[all …]
H A Darray.h63 void GDAPI godot_array_new(godot_array *r_dest);
83 void GDAPI godot_array_clear(godot_array *p_self);
87 godot_bool GDAPI godot_array_empty(const godot_array *p_self);
101 godot_int GDAPI godot_array_hash(const godot_array *p_self);
105 void GDAPI godot_array_invert(godot_array *p_self);
107 godot_variant GDAPI godot_array_pop_back(godot_array *p_self);
109 godot_variant GDAPI godot_array_pop_front(godot_array *p_self);
121 godot_int GDAPI godot_array_size(const godot_array *p_self);
123 void GDAPI godot_array_sort(godot_array *p_self);
131 void GDAPI godot_array_destroy(godot_array *p_self);
[all …]
H A Dvector2.h62 godot_string GDAPI godot_vector2_as_string(const godot_vector2 *p_self);
64 godot_vector2 GDAPI godot_vector2_normalized(const godot_vector2 *p_self);
66 godot_real GDAPI godot_vector2_length(const godot_vector2 *p_self);
68 godot_real GDAPI godot_vector2_angle(const godot_vector2 *p_self);
72 godot_bool GDAPI godot_vector2_is_normalized(const godot_vector2 *p_self);
92 godot_vector2 GDAPI godot_vector2_tangent(const godot_vector2 *p_self);
94 godot_vector2 GDAPI godot_vector2_floor(const godot_vector2 *p_self);
98 godot_real GDAPI godot_vector2_aspect(const godot_vector2 *p_self);
108 godot_vector2 GDAPI godot_vector2_abs(const godot_vector2 *p_self);
134 godot_real GDAPI godot_vector2_get_x(const godot_vector2 *p_self);
[all …]
H A Dvector3.h69 godot_string GDAPI godot_vector3_as_string(const godot_vector3 *p_self);
71 godot_int GDAPI godot_vector3_min_axis(const godot_vector3 *p_self);
73 godot_int GDAPI godot_vector3_max_axis(const godot_vector3 *p_self);
75 godot_real GDAPI godot_vector3_length(const godot_vector3 *p_self);
77 godot_real GDAPI godot_vector3_length_squared(const godot_vector3 *p_self);
79 godot_bool GDAPI godot_vector3_is_normalized(const godot_vector3 *p_self);
81 godot_vector3 GDAPI godot_vector3_normalized(const godot_vector3 *p_self);
83 godot_vector3 GDAPI godot_vector3_inverse(const godot_vector3 *p_self);
103 godot_vector3 GDAPI godot_vector3_abs(const godot_vector3 *p_self);
105 godot_vector3 GDAPI godot_vector3_floor(const godot_vector3 *p_self);
[all …]
H A Dbasis.h67 godot_string GDAPI godot_basis_as_string(const godot_basis *p_self);
69 godot_basis GDAPI godot_basis_inverse(const godot_basis *p_self);
71 godot_basis GDAPI godot_basis_transposed(const godot_basis *p_self);
73 godot_basis GDAPI godot_basis_orthonormalized(const godot_basis *p_self);
75 godot_real GDAPI godot_basis_determinant(const godot_basis *p_self);
81 godot_vector3 GDAPI godot_basis_get_scale(const godot_basis *p_self);
83 godot_vector3 GDAPI godot_basis_get_euler(const godot_basis *p_self);
85 godot_quat GDAPI godot_basis_get_quat(const godot_basis *p_self);
87 void GDAPI godot_basis_set_quat(godot_basis *p_self, const godot_quat *p_quat);
105 godot_int GDAPI godot_basis_get_orthogonal_index(const godot_basis *p_self);
[all …]
H A Dquat.h66 godot_real GDAPI godot_quat_get_x(const godot_quat *p_self);
69 godot_real GDAPI godot_quat_get_y(const godot_quat *p_self);
72 godot_real GDAPI godot_quat_get_z(const godot_quat *p_self);
75 godot_real GDAPI godot_quat_get_w(const godot_quat *p_self);
78 godot_string GDAPI godot_quat_as_string(const godot_quat *p_self);
80 godot_real GDAPI godot_quat_length(const godot_quat *p_self);
82 godot_real GDAPI godot_quat_length_squared(const godot_quat *p_self);
84 godot_quat GDAPI godot_quat_normalized(const godot_quat *p_self);
86 godot_bool GDAPI godot_quat_is_normalized(const godot_quat *p_self);
88 godot_quat GDAPI godot_quat_inverse(const godot_quat *p_self);
[all …]
H A Daabb.h64 godot_vector3 GDAPI godot_aabb_get_position(const godot_aabb *p_self);
67 godot_vector3 GDAPI godot_aabb_get_size(const godot_aabb *p_self);
70 godot_string GDAPI godot_aabb_as_string(const godot_aabb *p_self);
72 godot_real GDAPI godot_aabb_get_area(const godot_aabb *p_self);
74 godot_bool GDAPI godot_aabb_has_no_area(const godot_aabb *p_self);
76 godot_bool GDAPI godot_aabb_has_no_surface(const godot_aabb *p_self);
94 godot_vector3 GDAPI godot_aabb_get_longest_axis(const godot_aabb *p_self);
96 godot_int GDAPI godot_aabb_get_longest_axis_index(const godot_aabb *p_self);
98 godot_real GDAPI godot_aabb_get_longest_axis_size(const godot_aabb *p_self);
100 godot_vector3 GDAPI godot_aabb_get_shortest_axis(const godot_aabb *p_self);
[all …]
H A Dtransform.h65 void GDAPI godot_transform_new_with_quat(godot_transform *r_dest, const godot_quat *p_quat);
67 godot_basis GDAPI godot_transform_get_basis(const godot_transform *p_self);
68 void GDAPI godot_transform_set_basis(godot_transform *p_self, const godot_basis *p_v);
70 godot_vector3 GDAPI godot_transform_get_origin(const godot_transform *p_self);
71 void GDAPI godot_transform_set_origin(godot_transform *p_self, const godot_vector3 *p_v);
73 godot_string GDAPI godot_transform_as_string(const godot_transform *p_self);
75 godot_transform GDAPI godot_transform_inverse(const godot_transform *p_self);
77 godot_transform GDAPI godot_transform_affine_inverse(const godot_transform *p_self);
79 godot_transform GDAPI godot_transform_orthonormalized(const godot_transform *p_self);
93 void GDAPI godot_transform_new_identity(godot_transform *r_dest);
[all …]
H A Ddictionary.h62 void GDAPI godot_dictionary_new(godot_dictionary *r_dest);
63 void GDAPI godot_dictionary_new_copy(godot_dictionary *r_dest, const godot_dictionary *p_src);
64 void GDAPI godot_dictionary_destroy(godot_dictionary *p_self);
68 godot_int GDAPI godot_dictionary_size(const godot_dictionary *p_self);
70 godot_bool GDAPI godot_dictionary_empty(const godot_dictionary *p_self);
72 void GDAPI godot_dictionary_clear(godot_dictionary *p_self);
78 void GDAPI godot_dictionary_erase(godot_dictionary *p_self, const godot_variant *p_key);
80 godot_int GDAPI godot_dictionary_hash(const godot_dictionary *p_self);
82 godot_array GDAPI godot_dictionary_keys(const godot_dictionary *p_self);
84 godot_array GDAPI godot_dictionary_values(const godot_dictionary *p_self);
[all …]
H A Dtransform2d.h65 godot_string GDAPI godot_transform2d_as_string(const godot_transform2d *p_self);
67 godot_transform2d GDAPI godot_transform2d_inverse(const godot_transform2d *p_self);
69 godot_transform2d GDAPI godot_transform2d_affine_inverse(const godot_transform2d *p_self);
71 godot_real GDAPI godot_transform2d_get_rotation(const godot_transform2d *p_self);
73 godot_vector2 GDAPI godot_transform2d_get_origin(const godot_transform2d *p_self);
75 godot_vector2 GDAPI godot_transform2d_get_scale(const godot_transform2d *p_self);
77 godot_transform2d GDAPI godot_transform2d_orthonormalized(const godot_transform2d *p_self);
79 godot_transform2d GDAPI godot_transform2d_rotated(const godot_transform2d *p_self, const godot_real…
99 void GDAPI godot_transform2d_new_identity(godot_transform2d *r_dest);
101 godot_rect2 GDAPI godot_transform2d_xform_rect2(const godot_transform2d *p_self, const godot_rect2 …
[all …]

12345