diff options
author | Tapani Pälli <[email protected]> | 2017-08-23 11:25:57 +0300 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2017-09-12 09:39:29 +0300 |
commit | 086cfa5652ec202f87c14d11e0f6c959d75987d8 (patch) | |
tree | 8d64eee5da48c69e7bddc0b0e60f805800dfba09 /src/intel/Makefile.sources | |
parent | ab6f874439943837c06d3346385f75145e6d2775 (diff) |
anv: implementation of VK_EXT_debug_report extension
Patch adds required functionality for extension to manage a list of
application provided callbacks and handle debug reporting from driver
and application side.
v2: remove useless helper anv_debug_report_call
add locking around callbacks list
use vk_alloc2, vk_free2
refactor CreateDebugReportCallbackEXT
fix bugs found with crucible testing
v3: provide ANV_FROM_HANDLE and use it
misc fixes for issues Jason found
use vk_find_struct_const for finding ctor_cb
Signed-off-by: Tapani Pälli <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/Makefile.sources')
-rw-r--r-- | src/intel/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/Makefile.sources b/src/intel/Makefile.sources index 4074ba9ee54..200713b06ee 100644 --- a/src/intel/Makefile.sources +++ b/src/intel/Makefile.sources @@ -205,6 +205,7 @@ VULKAN_FILES := \ vulkan/anv_batch_chain.c \ vulkan/anv_blorp.c \ vulkan/anv_cmd_buffer.c \ + vulkan/anv_debug_report.c \ vulkan/anv_descriptor_set.c \ vulkan/anv_device.c \ vulkan/anv_dump.c \ |