From de953bfaa834d35108c9602272c47b6ee7b0e949 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 22 Jun 2019 14:04:27 +0200 Subject: [PATCH] Use proper data type for callstack storage in GPU zones. --- server/TracyEvent.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyEvent.hpp b/server/TracyEvent.hpp index 5de5579e..a8b6027e 100644 --- a/server/TracyEvent.hpp +++ b/server/TracyEvent.hpp @@ -137,7 +137,7 @@ struct GpuEvent int64_t gpuStart; int64_t gpuEnd; int32_t srcloc; - int32_t callstack; + uint32_t callstack; // All above is read/saved as-is. uint16_t thread;