Skip to content

Commit

Permalink
Remove test zone function
Browse files Browse the repository at this point in the history
  • Loading branch information
Aidan63 committed Sep 12, 2024
1 parent 510590f commit 87b4be8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion include/hx/TelemetryTracy.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,5 @@ void __hxcpp_tracy_plot_config(::String name, uint8_t format, bool step, bool fi
void __hxcpp_tracy_message(::String msg, int color);
void __hxcpp_tracy_message_app_info(::String info);
void __hxcpp_tracy_set_thread_name_and_group(String name, int groupHint);
void __hxcpp_tracy_test_zone();

#endif
8 changes: 0 additions & 8 deletions src/hx/TelemetryTracy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -254,12 +254,4 @@ void __hxcpp_tracy_set_thread_name_and_group(String name, int groupHint)
{
hx::strbuf buffer;
::tracy::SetThreadNameWithHint(name.utf8_str(&buffer), groupHint);
}

void __hxcpp_tracy_test_zone()
{
::hx::StackFrame _hx_stackframe(nullptr);
::String name("test");

HXCPP_TRACY_ZONE(name);
}

0 comments on commit 87b4be8

Please sign in to comment.