Results 261 comments of Bartosz Taudul

> How can I figure what tracy doesn't like about this json file? It does not like that it is a json file. You can probably convert this with the...

Ah, it seems that `ScaleWindow()` is doing pretty much what I came up with. It is `static` though, but making it a public API should be straightforward. It also exhibits...

It's not clear to me how DPI scaling is handled when ImGui window sizes and positions are saved and loaded from `imgui.ini`. An application can save window sizes when it's...

> It happens with all KEYS (e.g. I see same problem holding left or right arrow). For CHARACTERS we always follow OS repeat which are sending events. I understood the...

Hi, as far as Tracy is concerned, the functionality in question works as designed. That is, you are getting the correct call location, which is in your wrapper. Extending this...

When I last checked, Wine was not able to support Tracy due to missing `RtlWalkFrameChain` implementation. It is still only a stub in current Wine's master: https://github.com/wine-mirror/wine/blob/5a1d431b4bf93424a415d5e3d113b1f16431fcb1/dlls/ntdll/ntdll.spec#L1095 If you don't...

The sad reality is that you eventually have to dig into what is actually being executed to make things work (either more performantly, or at all). This is true not...

> The last time I looked at this, my conclusion what that instead of a coming up with a concept of "consuming" we should instead have a system to claim...