diff --git a/include/hx/TelemetryTracy.h b/include/hx/TelemetryTracy.h index e6320c48a..5438b6088 100644 --- a/include/hx/TelemetryTracy.h +++ b/include/hx/TelemetryTracy.h @@ -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 \ No newline at end of file diff --git a/src/hx/TelemetryTracy.cpp b/src/hx/TelemetryTracy.cpp index 099e2ac15..46f1374a0 100644 --- a/src/hx/TelemetryTracy.cpp +++ b/src/hx/TelemetryTracy.cpp @@ -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); } \ No newline at end of file