diff options
author | Kevin Strasser <[email protected]> | 2016-08-12 14:17:20 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-08-15 09:47:06 -0700 |
commit | 71258e9462c9cfb4c8b567713af5018928ef744d (patch) | |
tree | d549d437c967e373e41f57dcd21e8dd96cf50b74 /src/intel/vulkan/Makefile.am | |
parent | 5d9b50e596c9d81c37ce0844ae0f8c9da3f6bea6 (diff) |
anv/x11: Add support for Xlib platform
Some applications continue to use the Xlib client library and expect that
VK_KHR_xlib_surface will be available in the driver. Service these
applications by converting the Display pointer to xcb_connection_t and use
the existing xcb code in the driver.
Signed-off-by: Kevin Strasser <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/intel/vulkan/Makefile.am')
-rw-r--r-- | src/intel/vulkan/Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/intel/vulkan/Makefile.am b/src/intel/vulkan/Makefile.am index fe7371e9665..73db8f5d052 100644 --- a/src/intel/vulkan/Makefile.am +++ b/src/intel/vulkan/Makefile.am @@ -85,7 +85,8 @@ VULKAN_LIB_DEPS = if HAVE_PLATFORM_X11 AM_CPPFLAGS += \ $(XCB_DRI3_CFLAGS) \ - -DVK_USE_PLATFORM_XCB_KHR + -DVK_USE_PLATFORM_XCB_KHR \ + -DVK_USE_PLATFORM_XLIB_KHR VULKAN_SOURCES += $(VULKAN_WSI_X11_FILES) VULKAN_LIB_DEPS += $(XCB_DRI3_LIBS) @@ -145,7 +146,7 @@ EXTRA_DIST = \ dev_icd.json.in \ intel_icd.json -libvulkan_intel_la_LIBADD = $(VULKAN_LIB_DEPS) +libvulkan_intel_la_LIBADD = $(VULKAN_LIB_DEPS) -lX11-xcb libvulkan_intel_la_LDFLAGS = \ -shared \ @@ -168,7 +169,7 @@ dev_icd.json : dev_icd.json.in # Libvulkan with dummy gem. Used for unit tests. libvulkan_test_la_SOURCES = $(VULKAN_GEM_STUB_FILES) -libvulkan_test_la_LIBADD = $(VULKAN_LIB_DEPS) +libvulkan_test_la_LIBADD = $(VULKAN_LIB_DEPS) -lX11-xcb include $(top_srcdir)/install-lib-links.mk |