diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-11-13 13:07:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-13 13:07:28 +0100 |
commit | afec30837c7026251b90fab6f47131db19df278d (patch) | |
tree | 50ccef3db21bc6aacef9778218810e075eb78815 /modules/gdnative/include/arvr | |
parent | faf097d350a2a1c63ab9399355de70728a958b2d (diff) | |
parent | 9d3f8418ca252a4047b3818f16ed22228c1d0071 (diff) |
Merge pull request #12622 from BastiaanOlij/arvr_changes_to_server
Removed add/remove interface bindings and added get_interfaces
Diffstat (limited to 'modules/gdnative/include/arvr')
-rw-r--r-- | modules/gdnative/include/arvr/godot_arvr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/include/arvr/godot_arvr.h b/modules/gdnative/include/arvr/godot_arvr.h index c12251439d..be13ac954b 100644 --- a/modules/gdnative/include/arvr/godot_arvr.h +++ b/modules/gdnative/include/arvr/godot_arvr.h @@ -47,7 +47,7 @@ typedef struct { godot_bool (*is_initialized)(const void *); godot_bool (*initialize)(void *); void (*uninitialize)(void *); - godot_vector2 (*get_recommended_render_targetsize)(const void *); + godot_vector2 (*get_render_targetsize)(const void *); godot_transform (*get_transform_for_eye)(void *, godot_int, godot_transform *); void (*fill_projection_for_eye)(void *, godot_real *, godot_int, godot_real, godot_real, godot_real); void (*commit_for_eye)(void *, godot_int, godot_rid *, godot_rect2 *); |