From 9247834a2f24f853c6248bc99914d3b3bcca3f4d Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 3 Feb 2024 21:08:54 +0900 Subject: [PATCH] [vulkan] Remove a duplicate tracy zone Fixes a compile failure when profiling. --- libs/video/renderer/vulkan/vulkan_scene.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/video/renderer/vulkan/vulkan_scene.c b/libs/video/renderer/vulkan/vulkan_scene.c index 2280f03ce..1bf6012af 100644 --- a/libs/video/renderer/vulkan/vulkan_scene.c +++ b/libs/video/renderer/vulkan/vulkan_scene.c @@ -186,7 +186,7 @@ scene_startup (exprctx_t *ectx) qfZoneScoped (true); auto taskctx = (qfv_taskctx_t *) ectx; auto ctx = taskctx->ctx; - qfZoneScoped (true); + auto device = ctx->device; auto dfunc = device->funcs; auto sctx = ctx->scene_context;