Remove references to unsupported "xlib" windowing system support (#4028)
Support for X clients is provided by xcb instead. Signed-off-by: Chris Burel <burelc@amazon.com>
This commit is contained in:
@@ -14,10 +14,6 @@ elseif(PAL_TRAIT_LINUX_WINDOW_MANAGER STREQUAL "wayland")
|
||||
set(GLAD_VULKAN_COMPILE_DEFINITIONS
|
||||
VK_USE_PLATFORM_WAYLAND_KHR
|
||||
)
|
||||
elseif(PAL_TRAIT_LINUX_WINDOW_MANAGER STREQUAL "xlib")
|
||||
set(GLAD_VULKAN_COMPILE_DEFINITIONS
|
||||
VK_USE_PLATFORM_XLIB_KHR
|
||||
)
|
||||
else()
|
||||
message(FATAL_ERROR, "Linux Window Manager ${PAL_TRAIT_LINUX_WINDOW_MANAGER} is not recognized")
|
||||
endif()
|
||||
|
||||
@@ -41,9 +41,6 @@ namespace AZ
|
||||
#elif PAL_TRAIT_LINUX_WINDOW_MANAGER_WAYLAND
|
||||
#error "Linux Window Manager Wayland not supported."
|
||||
return RHI::ResultCode::Unimplemented;
|
||||
#elif PAL_TRAIT_LINUX_WINDOW_MANAGER_XLIB
|
||||
#error "Linux Window Manager XLIB not supported."
|
||||
return RHI::ResultCode::Unimplemented;
|
||||
#else
|
||||
#error "Linux Window Manager not recognized."
|
||||
return RHI::ResultCode::Unimplemented;
|
||||
|
||||
Reference in New Issue
Block a user