1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00
Commit Graph

3493 Commits

Author SHA1 Message Date
Bartosz Taudul 4f735e1ae2 Extract callstack merging. 2021-11-27 15:06:58 +01:00
Bartosz Taudul 58d5fb2ff4 Fix calculation of child sample counts. 2021-11-27 14:49:22 +01:00
Bartosz Taudul 702c87dad0 Display list of child calls. 2021-11-27 14:43:31 +01:00
Bartosz Taudul 6a7b4e6066 Add calculation of child stats to source view. 2021-11-27 14:42:23 +01:00
Bartosz Taudul 85f755f3f5 Use proper base symbol address. 2021-11-27 14:30:46 +01:00
Bartosz Taudul a02575322f Collect child sample addresses. 2021-11-27 02:03:59 +01:00
Bartosz Taudul 4bde9022e1 Properly acknowledge unavailable symbol code. 2021-11-25 22:44:56 +01:00
Bartosz Taudul abdd6020ba No need to remember addresses of symbol code queries. 2021-11-25 22:35:43 +01:00
Bartosz Taudul b4da047355 Don't filter out kernel symbols from code transfer. 2021-11-25 22:28:05 +01:00
Bartosz Taudul ac331d0343 Fix one frame lag of out-of-trace dimming. 2021-11-22 01:19:37 +01:00
Bartosz Taudul 6c08943e66 Don't perform any work in collapsed windows. 2021-11-22 01:15:22 +01:00
Bartosz Taudul b3562c99fb Display jump target/source function names. 2021-11-20 14:50:26 +01:00
Bartosz Taudul 7b2ed41179 Push small font to SourceView. 2021-11-20 14:47:13 +01:00
Bartosz Taudul f0d524ad1f Don't pass font to SourceView ctor. 2021-11-20 14:44:22 +01:00
Bartosz Taudul 3e78c826cf Adapt minimum samples distance to DPI scaling. 2021-11-20 13:51:42 +01:00
Bartosz Taudul 8d65b190d6 Handle frame image dictionary creation failures. 2021-11-20 03:30:28 +01:00
Bartosz Taudul b4dab753e6 List jump source locations. 2021-11-20 02:30:49 +01:00
Bartosz Taudul fbe85ff8d3 Adapt hotness indicators to DPI scale. 2021-11-20 02:19:50 +01:00
Bartosz Taudul 0f215c7393 Keep text shadow offset constant.
ImGui aligns the text to be pixel perfect. Fractional offset of shadow made it
move not in sync with the text proper.
2021-11-20 01:55:47 +01:00
Bartosz Taudul 261721b8a3 Don't provide number of segments to generate in a circle. 2021-11-20 01:46:34 +01:00
Bartosz Taudul dd6a973fbe Adapt context switch line size to DPI scale. 2021-11-20 01:46:14 +01:00
Bartosz Taudul a075323a80 Draw smaller "inline" index in callstacks. 2021-11-20 01:36:05 +01:00
Bartosz Taudul b8766ad5d7 Apply DPI scale to text shadow. 2021-11-20 01:24:37 +01:00
Bartosz Taudul be9cbfc3e2 Move GetScale() to TracyImGui.hpp. 2021-11-20 01:21:06 +01:00
Bartosz Taudul d0d0aca758 Use font helpers. 2021-11-19 21:09:13 +01:00
Bartosz Taudul e0a6c51a2f Add font set/unset helpers. 2021-11-19 21:06:07 +01:00
Bartosz Taudul dd8083e0ee Prevent out-of-bounds access.
This fixes the issue when assembly view is scrolled to the bottom of the
screen and display scale is reduced by the user. In such case clipper will
report DisplayStart to be at the end element, which would cause out-of-bounds
access to the m_asm array.

Clipper self-fixes this in the next frame, so this workaround is enough.
2021-11-19 20:58:09 +01:00
Bartosz Taudul c23abca979 Round jump arrows offsets. 2021-11-19 20:56:09 +01:00
Bartosz Taudul fdadb9cb63 Update source view font. 2021-11-18 23:03:17 +01:00
Bartosz Taudul f3ea9e1314 Add run-time UI scaling menu. 2021-11-18 22:48:32 +01:00
Bartosz Taudul 902de497dc Allow forceful insertion into main thread queue.
This is useful to run some tasks outside of the main render job.
2021-11-18 22:46:59 +01:00
Bartosz Taudul 89ca010146 Add scale setup callback infrastructure. 2021-11-18 22:22:11 +01:00
Bartosz Taudul 01a0363c29 Adapt item width to DPI scale. 2021-11-18 20:33:44 +01:00
Bartosz Taudul 0b869bcb13 Adapt network graph to DPI scale. 2021-11-18 20:12:41 +01:00
Bartosz Taudul 1dff4329e4 Adapt window sizes to DPI scaling. 2021-11-18 19:20:45 +01:00
Bartosz Taudul 4d397aeb67 Add helper for getting DPI scaling. 2021-11-18 19:04:21 +01:00
Bartosz Taudul 1002e949d6 Enable playback frame change with mouse wheel. 2021-11-15 02:34:13 +01:00
Bartosz Taudul 176bc279f1 Don't copy short_ptr. 2021-11-15 02:18:19 +01:00
Bartosz Taudul 641338cb3c Remove postponed samples when they are handled. 2021-11-14 23:55:44 +01:00
Bartosz Taudul bb30333947 Implement erase() in SortedVector.
Requires vector to be sorted, in order to not bother with recalculating
sortedEnd value.
2021-11-14 23:54:39 +01:00
Bartosz Taudul 710a488af0 Handle postponed samples with SortedVector. 2021-11-14 23:48:50 +01:00
Bartosz Taudul f2380590f9 Limit server query space to 8K entries.
In the default configuration this limit is unlikely to be hit. On Windows the
send buffer is 64 KB, which results in ~5K entries. On Linux the buffer is a
bit higher and the number of entries is lower than 7K.
2021-11-14 18:14:52 +01:00
Bartosz Taudul 0e05d70691 Remove obsolete check. 2021-11-14 17:09:37 +01:00
Bartosz Taudul ffa8bf4d75 Use table instead of map to track reentrant calls. 2021-11-14 16:42:11 +01:00
Bartosz Taudul cb004e9cc0 Sort source location zones only when needed. 2021-11-14 16:05:55 +01:00
Bartosz Taudul befeffb61e Add ensure_sorted() method for SortedVector. 2021-11-14 15:57:20 +01:00
Bartosz Taudul 404168ec69 Check whether symbols are ready, not source locations. 2021-11-14 15:51:29 +01:00
Bartosz Taudul e0872ce61b Cosmetics. 2021-11-14 15:51:27 +01:00
Bartosz Taudul 864d7e4e47 Sort symbols list only when actually needed. 2021-11-14 13:05:05 +01:00
Bartosz Taudul b978a7c652 Sort plot data only when needed (i.e. to draw). 2021-11-14 13:01:27 +01:00