diff options
author | Sergey Minakov <naithar@icloud.com> | 2020-07-15 21:59:57 +0300 |
---|---|---|
committer | Sergey Minakov <naithar@icloud.com> | 2020-07-25 21:55:20 +0200 |
commit | bfc005d462d0e667392f7b53068bc8eae123eb5c (patch) | |
tree | 737acba2d856c0702dab064fa15555e7107f6519 /platform/iphone/in_app_store.h | |
parent | 8dc2b267f95358596fb2467c01b572bade5bf7e1 (diff) |
iOS: Vulkan support
Implemented Vulkan Support.
Use DisplayServer for rendering and input handling
Use single view for rendering in both GLES2 (not supported yet) and Vulkan
Use @available checks where it's required (otherwise compiler would fail compilation)
Simulator checks
Diffstat (limited to 'platform/iphone/in_app_store.h')
-rw-r--r-- | platform/iphone/in_app_store.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/iphone/in_app_store.h b/platform/iphone/in_app_store.h index 44e65e77ed..beb58af2c7 100644 --- a/platform/iphone/in_app_store.h +++ b/platform/iphone/in_app_store.h @@ -44,9 +44,9 @@ class InAppStore : public Object { List<Variant> pending_events; public: - Error request_product_info(Variant p_params); + Error request_product_info(Dictionary p_params); Error restore_purchases(); - Error purchase(Variant p_params); + Error purchase(Dictionary p_params); int get_pending_event_count(); Variant pop_pending_event(); |