aboutsummaryrefslogtreecommitdiffstats
path: root/src/amd/vulkan/Makefile.sources
diff options
context:
space:
mode:
authorSamuel Pitoiset <[email protected]>2020-02-26 14:05:15 +0100
committerSamuel Pitoiset <[email protected]>2020-03-10 09:57:59 +0100
commit31ecf0b17dc0dfcc70eb96295e52339e9f176c8b (patch)
tree27566ee99a1a3a9729817bc0725f8e49570c8243 /src/amd/vulkan/Makefile.sources
parentbe700775dc2e97a414d14bc764cd2eb72a639306 (diff)
radv: initial implementation of the driver internal layer SQTT
This layer is used to emit SQTT user markers to command buffers. It currently only emits API markers but it will consolidated soon with barrier markers and more. Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4031>
Diffstat (limited to 'src/amd/vulkan/Makefile.sources')
-rw-r--r--src/amd/vulkan/Makefile.sources4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/amd/vulkan/Makefile.sources b/src/amd/vulkan/Makefile.sources
index 11bd6e4aa67..4035ca52dee 100644
--- a/src/amd/vulkan/Makefile.sources
+++ b/src/amd/vulkan/Makefile.sources
@@ -39,6 +39,9 @@ RADV_WS_NULL_FILES := \
winsys/null/radv_null_winsys.h \
winsys/null/radv_null_winsys_public.h
+RADV_LAYER_SQTT_FILES := \
+ layers/radv_sqtt_layer.c
+
VULKAN_FILES := \
radv_cmd_buffer.c \
radv_cs.h \
@@ -85,6 +88,7 @@ VULKAN_FILES := \
radv_wsi.c \
si_cmd_buffer.c \
vk_format.h \
+ $(RADV_LAYER_SQTT_FILES) \
$(RADV_WS_AMDGPU_FILES) \
$(RADV_WS_NULL_FILES)