aboutsummaryrefslogtreecommitdiff
path: root/src/tracy.zig
AgeCommit message (Collapse)Author
2025-07-05Update TracyAllocator to new allocator APISilver
2024-11-29Add build option to set tracy-callstack-depth in `build.zig` (#21990)Justin Braben
2023-10-23tracy: protect source info via global constantAndrew Kelley
When the code is written this way, you get a compile error if the pointer given to Tracy does not have a static lifetime. This would have caught the regression in #13315.
2023-06-24all: migrate code to new cast builtin syntaxmlugg
Most of this migration was performed automatically with `zig fmt`. There were a few exceptions which I had to manually fix: * `@alignCast` and `@addrSpaceCast` cannot be automatically rewritten * `@truncate`'s fixup is incorrect for vectors * Test cases are not formatted, and their error locations change
2022-12-11update TracyAllocator for new Allocator changesLee Cannon
2022-10-05fix(text): hyphenate "comptime" adjectivesr00ster91
2022-01-07lint: duplicate import (#10519)Meghan
2021-12-19stage1, stage2: rename c_void to anyopaque (#10316)Isaac Freund
zig fmt now replaces c_void with anyopaque to make updating code easy.
2021-12-16TracyAllocator: correct order of free and allocLee Cannon
2021-12-06stage2: fix TracyAllocator bugsLee Cannon
2021-11-30allocgate: change resize to return optional instead of errorLee Cannon
2021-11-30allocgate: split free out from resizeLee Cannon
2021-11-30allocgate: update code to use new interfaceLee Cannon
2021-11-30allocgate: std Allocator interface refactorLee Cannon
2021-10-31add functionality to trace allocationsLee Cannon
2021-10-31make tracy.zig more feature completeLee Cannon
2021-10-04migrate from `std.Target.current` to `@import("builtin").target`Andrew Kelley
closes #9388 closes #9321
2021-06-21fix code broken from previous commitJacob G-W
2021-05-20Run `zig fmt` on src/ and lib/std/Isaac Freund
This replaces callconv(.Inline) with the more idiomatic inline keyword.
2021-02-10Convert inline fn to callconv(.Inline) everywhereTadeo Kondrak
2020-09-21rename src-self-hosted/ to src/Andrew Kelley