diff options
author | Bas Nieuwenhuizen <[email protected]> | 2018-01-09 03:22:56 +0100 |
---|---|---|
committer | Bas Nieuwenhuizen <[email protected]> | 2018-01-17 11:27:52 +0100 |
commit | e5b1bd6ab8f5c1d9bf6a90b7003dc336cbe3cf93 (patch) | |
tree | da5589535c0f1ebe2dcb3d441eb12ea06c85f5ac /src/vulkan/util/meson.build | |
parent | f69cbb2b53ac3edf7b201ba77430a61471edfa6e (diff) |
vulkan: move anv VK_EXT_debug_report implementation to common code.
For also using it in radv. I moved the remaining stubs back to
anv_device.c as they were just trivial.
This does not move the vk_errorf/anv_perf_warn or the object
type macros, as those depend on anv types and logging.
Reviewed-by: Tapani Pälli <[email protected]>
Diffstat (limited to 'src/vulkan/util/meson.build')
-rw-r--r-- | src/vulkan/util/meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vulkan/util/meson.build b/src/vulkan/util/meson.build index a6208b08eb5..78cee0adb50 100644 --- a/src/vulkan/util/meson.build +++ b/src/vulkan/util/meson.build @@ -20,6 +20,8 @@ files_vulkan_util = files( 'vk_alloc.h', + 'vk_debug_report.c', + 'vk_debug_report.h', 'vk_util.c', 'vk_util.h', ) |