From cb77e8dc1c63214d6800a689188ca81744bca545 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 17 Jun 2018 18:29:12 +0200 Subject: [PATCH] There's no notion of main thread in vulkan. --- TracyVulkan.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/TracyVulkan.hpp b/TracyVulkan.hpp index 34e8d894..0ee5981f 100644 --- a/TracyVulkan.hpp +++ b/TracyVulkan.hpp @@ -81,6 +81,7 @@ public: vkQueueSubmit( queue, 1, &submitInfo, VK_NULL_HANDLE ); vkQueueWaitIdle( queue ); + uint64_t zero = 0; Magic magic; auto& token = s_token.ptr; auto& tail = token->get_tail_index(); @@ -88,7 +89,7 @@ public: MemWrite( &item->hdr.type, QueueType::GpuNewContext ); MemWrite( &item->gpuNewContext.cpuTime, tcpu ); MemWrite( &item->gpuNewContext.gpuTime, tgpu ); - MemWrite( &item->gpuNewContext.thread, GetThreadHandle() ); + MemWrite( &item->gpuNewContext.thread, zero ); MemWrite( &item->gpuNewContext.period, period ); MemWrite( &item->gpuNewContext.context, m_context ); MemWrite( &item->gpuNewContext.accuracyBits, uint8_t( 0 ) );