summaryrefslogtreecommitdiff
path: root/platform/android
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2020-07-13 19:24:04 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2020-07-13 19:24:21 +0300
commit996910b62706774792bde4934e23ef5bde37fc32 (patch)
tree063f672dd0edb794b52ec6d9decd830c42eb70c3 /platform/android
parentdb1eb909fe1e6067743892d7544160a1a40b9e43 (diff)
Add error messages if Vulkan init failed, prevent Vulkan context freeing uninitialized device and instance.
Diffstat (limited to 'platform/android')
-rw-r--r--platform/android/display_server_android.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/platform/android/display_server_android.cpp b/platform/android/display_server_android.cpp
index 1436d832de..1fb0d7ef60 100644
--- a/platform/android/display_server_android.cpp
+++ b/platform/android/display_server_android.cpp
@@ -360,7 +360,11 @@ Vector<String> DisplayServerAndroid::get_rendering_drivers_func() {
}
DisplayServer *DisplayServerAndroid::create_func(const String &p_rendering_driver, DisplayServer::WindowMode p_mode, uint32_t p_flags, const Vector2i &p_resolution, Error &r_error) {
- return memnew(DisplayServerAndroid(p_rendering_driver, p_mode, p_flags, p_resolution, r_error));
+ DisplayServer *ds = memnew(DisplayServerAndroid(p_rendering_driver, p_mode, p_flags, p_resolution, r_error));
+ if (r_error != OK) {
+ ds->alert("Your video card driver does not support any of the supported Vulkan versions.", "Unable to initialize Video driver");
+ }
+ return ds;
}
void DisplayServerAndroid::register_android_driver() {