renderer_vulkan: assume X11 if not Windows/macOS after bf1d66b7c0
				
					
				
			Render.Vulkan <Error> video_core/renderer_vulkan/renderer_vulkan.cpp:CreateInstance:131: Presentation not supported on this platform Render.Vulkan <Error> video_core/renderer_vulkan/renderer_vulkan.cpp:CreateSurface:378: Presentation not supported on this platform Core <Critical> core/core.cpp:Load:199: Failed to initialize system (Error 5)!
This commit is contained in:
		| @@ -42,7 +42,7 @@ | |||||||
| #include <vulkan/vulkan_win32.h> | #include <vulkan/vulkan_win32.h> | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| #ifdef __linux__ | #if !defined(_WIN32) && !defined(__APPLE__) | ||||||
| #include <X11/Xlib.h> | #include <X11/Xlib.h> | ||||||
| #include <vulkan/vulkan_wayland.h> | #include <vulkan/vulkan_wayland.h> | ||||||
| #include <vulkan/vulkan_xlib.h> | #include <vulkan/vulkan_xlib.h> | ||||||
| @@ -119,7 +119,7 @@ vk::Instance CreateInstance(Common::DynamicLibrary& library, vk::InstanceDispatc | |||||||
|         extensions.push_back(VK_KHR_WIN32_SURFACE_EXTENSION_NAME); |         extensions.push_back(VK_KHR_WIN32_SURFACE_EXTENSION_NAME); | ||||||
|         break; |         break; | ||||||
| #endif | #endif | ||||||
| #ifdef __linux__ | #if !defined(_WIN32) && !defined(__APPLE__) | ||||||
|     case Core::Frontend::WindowSystemType::X11: |     case Core::Frontend::WindowSystemType::X11: | ||||||
|         extensions.push_back(VK_KHR_XLIB_SURFACE_EXTENSION_NAME); |         extensions.push_back(VK_KHR_XLIB_SURFACE_EXTENSION_NAME); | ||||||
|         break; |         break; | ||||||
| @@ -345,7 +345,7 @@ bool RendererVulkan::CreateSurface() { | |||||||
|         } |         } | ||||||
|     } |     } | ||||||
| #endif | #endif | ||||||
| #ifdef __linux__ | #if !defined(_WIN32) && !defined(__APPLE__) | ||||||
|     if (window_info.type == Core::Frontend::WindowSystemType::X11) { |     if (window_info.type == Core::Frontend::WindowSystemType::X11) { | ||||||
|         const VkXlibSurfaceCreateInfoKHR xlib_ci{ |         const VkXlibSurfaceCreateInfoKHR xlib_ci{ | ||||||
|             VK_STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO_KHR, nullptr, 0, |             VK_STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO_KHR, nullptr, 0, | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user