Clément Grégoire

Results 98 comments of Clément Grégoire

> What does the "Reset" button do with the filters? Will it "check-all", besides clearing the text filter? Currently it checks all + clear text (reset all filters). It used...

> No, TracyMessage(msg) as is should just become the "common denominator", e.g. TracyLog(User, Info, msg), as you pointed (good enough in my opinion). @slomp circling back on this, I'm now...

> In my opinion, we should introduce just one new "overarching" macro to the public API: > > ``` > #define TracyLogString(level, string, length, color, callstack_depth) ... > ``` I...

@GabrielSiliceum has been working on this recently. I also would like to have logs (mostly what `TRACY_VERBOSE` prints to stdout) to be sent to the server too so that we...

Just stumbled on this issue as I was looking into implementing this myself. Using the SDK's `IsDebuggerPresent` (in Release) is actually just 2 `CALL`s (thunk + real function) and then...

On Windows Tracy uses DbgHelp to resolve symbols, which require a PDB. MinGW doesn't generate PDBs hence the missing symbols. Falling back to libbacktrace on MinGW might work? In any...

> Yes, libbacktrace works for me under MinGW-w64 ucrt64. Ok, so to sum up: - Tracy uses DbgHelp on Windows, when compiled with MinGW ( `_WIN32` is defined). See https://github.com/wolfpld/tracy/blob/f14ff2b994dac1de1d99acfcdced4e9dced47d97/public/client/TracyCallstack.h#L10-L13...

I'd rather have the "real fix" that supports such timezones properly, I'm not in a hurry !

Just to make sure I'm understanding things correctly: - Front-end only knows about "full hour" time zones - Is this only to set values or read them ? - Backends...