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

6958 Commits

Author SHA1 Message Date
Bartosz Taudul 0d41a6c48b Move DrawHistogramMinMaxLabel() to TracyImGui.cpp. 2022-07-02 15:27:08 +02:00
Bartosz Taudul 5ed7d71927 DrawAllocList() is memory. 2022-07-02 15:24:59 +02:00
Bartosz Taudul c2728fde04 Extract locks UI from View. 2022-07-02 15:24:09 +02:00
Bartosz Taudul 10205f90b4 Also extract timeline CPU data. 2022-07-02 15:20:47 +02:00
Bartosz Taudul c6b6cb47da Also move timeline samples. 2022-07-02 15:16:52 +02:00
Bartosz Taudul e005d4ff36 Extract messages UI from View. 2022-07-02 15:15:24 +02:00
Bartosz Taudul fe8269fa49 Mark syntax colors constexpr. 2022-07-02 15:10:01 +02:00
Bartosz Taudul 87d639c851 Move DrawStripedRect() out of header. 2022-07-02 15:08:52 +02:00
Bartosz Taudul c427214f46 Move DrawHelpMarker to TracyImGui.hpp. 2022-07-02 15:07:40 +02:00
Bartosz Taudul 358148920a Extract annotations UI from View. 2022-07-02 15:04:54 +02:00
Bartosz Taudul 5b451c3557 Extract samples UI from View. 2022-07-02 15:04:53 +02:00
Bartosz Taudul 06a840c19a Wait stacks are context switches. 2022-07-02 15:01:23 +02:00
Bartosz Taudul 585587fa36 Extract frame tree functionality from View. 2022-07-02 15:01:22 +02:00
Bartosz Taudul 8147eadaf0 Extract connection state and notification area. 2022-07-02 14:47:13 +02:00
Bartosz Taudul de5c4c678a Extract memory UI from View. 2022-07-02 14:42:06 +02:00
Bartosz Taudul f3fe8b27e8 Extract plot drawing from View. 2022-07-02 14:36:54 +02:00
Bartosz Taudul e98b24a9ed Extract frame overview UI from View. 2022-07-02 14:19:16 +02:00
Bartosz Taudul b58a206d9d More utility extract. 2022-07-02 14:14:27 +02:00
Bartosz Taudul 701cc16cbf Zone tooltip is zone info. 2022-07-02 14:10:36 +02:00
Bartosz Taudul 003621802f Split callstack UI from View. 2022-07-02 14:09:15 +02:00
Bartosz Taudul 5a3305095e Extract CPU data UI from View. 2022-07-02 14:04:45 +02:00
Bartosz Taudul 6f99c8d055 Extract trace info UI from View. 2022-07-02 14:03:01 +02:00
Bartosz Taudul ee18e07d6f Cosmetics. 2022-07-02 13:59:54 +02:00
Bartosz Taudul 1aeb1d9a2d More find zones extraction. 2022-07-02 13:58:37 +02:00
Bartosz Taudul a6cee9e7f7 Extract statistics UI from View. 2022-07-02 13:57:56 +02:00
Bartosz Taudul 749bab7ab0 Extract playback UI from View. 2022-07-02 13:55:45 +02:00
Bartosz Taudul 44e5218301 Extract more utility functions. 2022-07-02 13:51:50 +02:00
Bartosz Taudul 35f55c781b Extract compare UI from View. 2022-07-02 13:48:54 +02:00
Bartosz Taudul 7ed1c4ffb1 More navigation extraction. 2022-07-02 13:43:46 +02:00
Bartosz Taudul 10dbefefab Extract context switch UI from View. 2022-07-02 13:43:09 +02:00
Bartosz Taudul c9f77ee5fa Move zone info UI out of View. 2022-07-02 13:37:04 +02:00
Bartosz Taudul b602d61944 Extract options UI from View. 2022-07-02 13:23:52 +02:00
Bartosz Taudul d19b337573 Split View navigation functions. 2022-07-02 13:16:06 +02:00
Bartosz Taudul 5b8c8c5309 Extract common zone algorithms from View. 2022-07-02 13:12:30 +02:00
Bartosz Taudul 2473760c04 Extract Find Zone UI to a separate file. 2022-07-02 13:12:29 +02:00
Bartosz Taudul 91bbe03448 Merge pull request #418 from czipperz/czipperz/make-tracy.hpp-if-compatible
Make Tracy.hpp compatible with if() statements without curly braces by removing trailing semicolons
2022-07-02 11:08:44 +02:00
Chris Gregory 3a36d583d9 Make Tracy.hpp compatible with if() statements without curly braces by removing trailing semicolons
This change allows the following code to compile:

if (condition)
  ZoneValue(1);
else
  ZoneValue(2);

All examples in the documentation already use a semicolon after a Tracy macro expression
so this shouldn't be a noticable change in behavior for most clients.
2022-07-01 11:24:28 -04:00
Bartosz Taudul dd6933fe32 Fix striped rect early exit test. 2022-06-29 01:39:06 +02:00
Bartosz Taudul e6c54600f1 Fix typo. 2022-06-29 01:32:02 +02:00
Bartosz Taudul f493d4aa8b Merge pull request #416 from kklobe/kk/fix-meson-options
Fix Meson options to match build
v0.8.2.1
2022-06-28 19:06:49 +02:00
Kirk 64e9f5e814 Fix Meson options to match build 2022-06-28 12:00:09 -05:00
Bartosz Taudul a8511d3576 Release 0.8.2. v0.8.2 2022-06-28 17:57:46 +02:00
Bartosz Taudul 1f43cfd2b9 Merge pull request #415 from kklobe/kk/fix-gcc-mac-compile-error
Fix macOS GCC 11/12 compile error
2022-06-28 01:21:00 +02:00
Kirk Klobe 49053775e3 Fix macOS GCC 11/12 compile error 2022-06-27 17:37:12 -05:00
Bartosz Taudul 7f35a299c4 Merge pull request #412 from theblackunknown/fix-windows-vcpkg
Fix building on Windows without `VCPKG_ROOT` env var set
2022-06-27 17:22:21 +02:00
MACHIZAUD Andréa 2eed89f0d8 only build Tracy/capture Release for build-without-vcpkg-integration 2022-06-26 23:22:24 +02:00
MACHIZAUD Andréa 75c383a68c non need to package binaries in build-without-vcpkg-integration 2022-06-26 23:13:32 +02:00
MACHIZAUD Andréa 087e1d8036 Fail with error code if install_vcpkg_dependencies.bat commands fail 2022-06-25 17:52:42 +02:00
Bartosz Taudul a05285083a Update xxhash filename in MSVC project. 2022-06-23 01:46:56 +02:00
Bartosz Taudul 1625a45c31 On ARM64 use ISB to yield CPU in spinlocks.
https://github.com/rust-lang/rust/commit/c064b6560b7ce0adeb9bbf5d7dcf12b1acb0c807
2022-06-23 01:15:55 +02:00