mirror of
https://github.com/wolfpld/tracy
synced 2025-04-30 20:53:52 +00:00
Make external name retrieval high priority.
This commit is contained in:
parent
408ef4c06e
commit
133d52a6dd
@ -9,7 +9,7 @@ namespace tracy
|
|||||||
|
|
||||||
constexpr unsigned Lz4CompressBound( unsigned isize ) { return isize + ( isize / 255 ) + 16; }
|
constexpr unsigned Lz4CompressBound( unsigned isize ) { return isize + ( isize / 255 ) + 16; }
|
||||||
|
|
||||||
enum : uint32_t { ProtocolVersion = 65 };
|
enum : uint32_t { ProtocolVersion = 66 };
|
||||||
enum : uint16_t { BroadcastVersion = 3 };
|
enum : uint16_t { BroadcastVersion = 3 };
|
||||||
|
|
||||||
using lz4sz_t = uint32_t;
|
using lz4sz_t = uint32_t;
|
||||||
@ -47,10 +47,10 @@ enum ServerQuery : uint8_t
|
|||||||
ServerQueryFrameName,
|
ServerQueryFrameName,
|
||||||
ServerQueryParameter,
|
ServerQueryParameter,
|
||||||
ServerQueryFiberName,
|
ServerQueryFiberName,
|
||||||
|
ServerQueryExternalName,
|
||||||
// Items above are high priority. Split order must be preserved. See IsQueryPrio().
|
// Items above are high priority. Split order must be preserved. See IsQueryPrio().
|
||||||
ServerQueryDisconnect,
|
ServerQueryDisconnect,
|
||||||
ServerQueryCallstackFrame,
|
ServerQueryCallstackFrame,
|
||||||
ServerQueryExternalName,
|
|
||||||
ServerQuerySymbol,
|
ServerQuerySymbol,
|
||||||
ServerQuerySymbolCode,
|
ServerQuerySymbolCode,
|
||||||
ServerQuerySourceCode,
|
ServerQuerySourceCode,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user