diff options
author | Dave Airlie <[email protected]> | 2016-10-14 05:42:29 +0100 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2016-10-19 10:15:43 +1000 |
commit | 971523410fd2235e13c617b6a1569f70486258d7 (patch) | |
tree | cb9e386318cf533e0e3549443d7694dd585d881a /src/intel/vulkan/Makefile.sources | |
parent | e0d15fbe1d670313132a0b71970badbcac259d78 (diff) |
anv: move common wsi code to x11/wayland common files.
Next task is to rename all the anv_ out of this,
and move to a common location
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan/Makefile.sources')
-rw-r--r-- | src/intel/vulkan/Makefile.sources | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/intel/vulkan/Makefile.sources b/src/intel/vulkan/Makefile.sources index 85df8a5bcf3..62205d41db2 100644 --- a/src/intel/vulkan/Makefile.sources +++ b/src/intel/vulkan/Makefile.sources @@ -42,15 +42,19 @@ VULKAN_FILES := \ anv_query.c \ anv_util.c \ anv_wsi.c \ - anv_wsi.h \ + wsi_common.h \ genX_pipeline_util.h \ vk_format_info.h VULKAN_WSI_WAYLAND_FILES := \ - anv_wsi_wayland.c + anv_wsi_wayland.c \ + wsi_common_wayland.c \ + wsi_common_wayland.h VULKAN_WSI_X11_FILES := \ - anv_wsi_x11.c + anv_wsi_x11.c \ + wsi_common_x11.c \ + wsi_common_x11.h VULKAN_GEM_FILES := \ anv_gem.c |