diff --git a/profiler/src/profiler/TracyView.hpp b/profiler/src/profiler/TracyView.hpp index 24767e82..1c1ee4b1 100644 --- a/profiler/src/profiler/TracyView.hpp +++ b/profiler/src/profiler/TracyView.hpp @@ -38,7 +38,8 @@ constexpr const char* GpuContextNames[] = { "OpenCL", "Direct3D 12", "Direct3D 11", - "Metal" + "Metal", + "Custom" }; struct MemoryPage; diff --git a/public/common/TracyProtocol.hpp b/public/common/TracyProtocol.hpp index c679a196..8f72d762 100644 --- a/public/common/TracyProtocol.hpp +++ b/public/common/TracyProtocol.hpp @@ -9,7 +9,7 @@ namespace tracy constexpr unsigned Lz4CompressBound( unsigned isize ) { return isize + ( isize / 255 ) + 16; } -enum : uint32_t { ProtocolVersion = 70 }; +enum : uint32_t { ProtocolVersion = 71 }; enum : uint16_t { BroadcastVersion = 3 }; using lz4sz_t = uint32_t; diff --git a/public/common/TracyQueue.hpp b/public/common/TracyQueue.hpp index ec448d72..b17d9a41 100644 --- a/public/common/TracyQueue.hpp +++ b/public/common/TracyQueue.hpp @@ -402,7 +402,8 @@ enum class GpuContextType : uint8_t OpenCL, Direct3D12, Direct3D11, - Metal + Metal, + Custom }; enum GpuContextFlags : uint8_t