Merge pull request #97006 from Gaktan/project_dialog_vulkan_crash

Fix Vulkan Instance initialized twice in ProjectDialog
This commit is contained in:
Rémi Verschelde 2024-09-18 11:15:35 +02:00
commit b10338132e
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -1224,6 +1224,11 @@ void DisplayServer::_input_set_custom_mouse_cursor_func(const Ref<Resource> &p_i
bool DisplayServer::can_create_rendering_device() {
#if defined(RD_ENABLED)
RenderingDevice *device = RenderingDevice::get_singleton();
if (device) {
return true;
}
Error err;
RenderingContextDriver *rcd = nullptr;