Skip to content

Commit

Permalink
tracy: disable memory tracing as it breaks currently
Browse files Browse the repository at this point in the history
  • Loading branch information
kubkon committed Jul 3, 2024
1 parent a4791b5 commit 4569ea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tracy.zig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const builtin = @import("builtin");
const build_options = @import("build_options");

pub const enable = if (builtin.is_test) false else build_options.enable_tracy;
pub const enable_allocation = enable;
pub const enable_allocation = false; //enable; TODO got some mem tracing issues to resolve
pub const enable_callstack = enable;

// TODO: make this configurable
Expand Down

0 comments on commit 4569ea3

Please sign in to comment.