diff options
author | Jason Ekstrand <[email protected]> | 2016-05-13 14:05:00 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-05-17 12:17:22 -0700 |
commit | ffc502ce0c422822b8d276d07600a6089c70b4af (patch) | |
tree | 69a57404f653cf11b5c5eb4340f6c516b098a4c1 /src/intel/vulkan/Makefile.sources | |
parent | 97ba402cc3d5db37778d2bec284df32316cae6d1 (diff) |
anv: Add helpers to provide simple VkFormat introspection
As much as I hate adding yet more format introspection, there are times
when the VkFormat is sufficient and we don't want to round-trip through
isl_format. For these times, the new vk_format_info.c/h files provide some
simple driver-agnostic VkFormat introspection. This intended to be
specific to Vulkan but not to any driver whatsoever.
Diffstat (limited to 'src/intel/vulkan/Makefile.sources')
-rw-r--r-- | src/intel/vulkan/Makefile.sources | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/intel/vulkan/Makefile.sources b/src/intel/vulkan/Makefile.sources index 182c1e1c2b3..5d6a3033ed6 100644 --- a/src/intel/vulkan/Makefile.sources +++ b/src/intel/vulkan/Makefile.sources @@ -49,7 +49,8 @@ VULKAN_FILES := \ anv_util.c \ anv_wsi.c \ anv_wsi.h \ - genX_pipeline_util.h + genX_pipeline_util.h \ + vk_format_info.h VULKAN_WSI_WAYLAND_FILES := \ anv_wsi_wayland.c |