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

5163 Commits

Author SHA1 Message Date
Bartosz Taudul 9e51e3fa85 Remove unused variable. 2020-09-06 14:02:12 +02:00
Bartosz Taudul 1d721e0de8 Update NEWS. 2020-09-06 13:57:20 +02:00
Bartosz Taudul 4b97528604 Streamline "waiting for connection" dialog. 2020-09-06 13:54:22 +02:00
Bartosz Taudul 3e34b3832a Fix https://github.com/ocornut/imgui/issues/3452 2020-09-03 18:19:58 +02:00
Bartosz Taudul 023c96fbc4 Be more explicit about source file view / symbol view split. 2020-09-02 23:43:17 +02:00
Bartosz Taudul c243ac5c95 Edit and continue is not supported at all. 2020-08-28 23:03:39 +02:00
Bartosz Taudul f3eabc28e2 Don't handle crashes, if there's no connection. 2020-08-28 17:21:52 +02:00
Bartosz Taudul 118a00d536 Merge pull request #101 from graydon/add-only-ipv4-flag
Add support for TRACY_ONLY_IPV4 macro to exclude listening on IPv6
2020-08-27 21:23:42 +02:00
Graydon Hoare 2ea81a3ef9 Make TRACY_ONLY_IPV4 and TRACY_ONLY_LOCALHOST also settable with runtime env vars. 2020-08-27 11:21:24 -07:00
Graydon Hoare 30a6a5cdd1 Add support for TRACY_ONLY_IPV4 macro to exclude listening on IPv6 2020-08-27 11:21:24 -07:00
Bartosz Taudul b90d1cca5d Update manual. 2020-08-27 02:17:50 +02:00
Bartosz Taudul b5f76f2cea Release 0.7.1. v0.7.1 2020-08-24 19:29:42 +02:00
Bartosz Taudul 980dcc4978 Update manual. 2020-08-24 18:47:55 +02:00
Bartosz Taudul 83a295c76d Update manual. 2020-08-21 14:27:43 +02:00
Bartosz Taudul fe47e05c16 Update NEWS. 2020-08-21 14:23:49 +02:00
Bartosz Taudul 4ac0e7d955 Allow filtering sampling results by image name. 2020-08-21 14:23:23 +02:00
Bartosz Taudul 0f13a02062 Properly terminate symbol inline location data.
Previously there was no end value on which iteration would stop in case of
the last-in-the-process-space symbol, which resulted in out-of-bounds read.

Workaround has been added for versions < 0.7.2, but no version bump has been
performed (still at 0.7.1). Having two terminator values at the end of the
list is harmless.
2020-08-20 18:50:20 +02:00
Bartosz Taudul 944625b94b Update ImGui to 1.78 + docking. 2020-08-20 17:53:14 +02:00
Bartosz Taudul 960c7fb1b9 Don't alias struct names in client and server. 2020-08-20 17:38:29 +02:00
Bartosz Taudul 7cf3b0b004 Workaround issues with sample order. 2020-08-18 21:53:52 +02:00
Bartosz Taudul 411ca81786 Don't operate on reference. 2020-08-18 21:36:09 +02:00
Bartosz Taudul 818d20d273 Don't use image name as a replacement for source file.
Image name is now reported separately.
2020-08-18 20:34:11 +02:00
Bartosz Taudul 9ba7381030 Small speedup for ReadNumber(). 2020-08-18 20:07:15 +02:00
Bartosz Taudul 4d4b6c7ac9 Use memchr() to find newline in memory block. 2020-08-18 19:51:02 +02:00
Bartosz Taudul 48062573b8 Update manual. 2020-08-16 15:52:27 +02:00
Bartosz Taudul 35940f6f3d Update NEWS. 2020-08-16 15:52:27 +02:00
Bartosz Taudul 1536d6dfa9 Add transient zone macros. 2020-08-16 15:52:27 +02:00
Bartosz Taudul c53a1f1dac Extend ScopedZone to allow allocated srcloc construction. 2020-08-16 15:52:27 +02:00
Bartosz Taudul ddaa510553 Merge pull request #96 from hulakdar/fix-d3d12
Added define for non-profiling configurations
2020-08-16 12:13:11 +02:00
hulakdar 1ccf853b04 Added define for non-profiling configurations 2020-08-16 10:38:23 +03:00
Bartosz Taudul 8243604943 Mark SourceLocationData constexpr, not const. 2020-08-16 02:32:17 +02:00
Bartosz Taudul 8f720b55ff Update NEWS. 2020-08-16 01:42:09 +02:00
Bartosz Taudul 7e0033743d Update manual. 2020-08-16 01:41:43 +02:00
Bartosz Taudul 5239b706c3 Allow disabling code transfer. 2020-08-16 01:31:54 +02:00
Bartosz Taudul 89786f6e26 Update manual. 2020-08-16 00:07:33 +02:00
Bartosz Taudul 25c751c45a Add NativeWindow.hpp to MSVC project. 2020-08-15 17:15:36 +02:00
Bartosz Taudul 52039e80f2 Add native window retrieval on Linux.
Functionality had to be moved to a separate source file due to namespace
pollution from X11 headers.

Note that this doesn't set proper parent of file dialogs on Linux, as
GTK is broken and requires passing a GtkWindow parent.
2020-08-15 16:53:07 +02:00
Bartosz Taudul 046df82ccc Always set proper numeric locale. 2020-08-15 16:19:36 +02:00
Bartosz Taudul 28af5230d3 Perform OpenGL texture cleanup only on main thread. 2020-08-15 15:02:36 +02:00
Bartosz Taudul a3d8b5d225 Allow running specific tasks on main thread. 2020-08-15 14:59:16 +02:00
Bartosz Taudul 518ce1e946 No need to store two same pointers. 2020-08-15 13:40:36 +02:00
Bartosz Taudul 28aae73f74 RingBuffer has const size, so use template.
This eliminates division.
2020-08-15 02:43:18 +02:00
Bartosz Taudul caa1b1a792 Fix initialization list order. 2020-08-15 02:26:35 +02:00
Bartosz Taudul f828fed015 Remove unused variables. 2020-08-15 02:23:04 +02:00
Bartosz Taudul be0e3b9cc4 Silence memcpy/memset warnings. 2020-08-15 02:14:29 +02:00
Bartosz Taudul 5243bfe5a0 Add minimal vscode configuration. 2020-08-15 02:10:14 +02:00
Bartosz Taudul 95067dd88e Merge pull request #94 from mcleary/add-gtk-dependency
Add GTK3 in the list of build requirements on Unix
2020-08-14 15:35:16 +02:00
Thales Sabino c7707d1455 Update gcc.yml to install libgtk-3-dev 2020-08-14 14:10:39 +01:00
Thales Sabino 6e3f19d0c9 Update build requirement from GTK2 to GTK3 2020-08-14 14:05:00 +01:00
Thales Sabino ad6c7c8986 Add GTK2.0 in the list of build requirements on Unix 2020-08-14 13:19:27 +01:00