Skip to content

Interface: IXR_tracy

Source

namespace profiler

Methods

Message()

ts
Message(this: void): void;

Send message to tracy profiler.

Parameters

ParameterType
thisvoid

Returns

void


ZoneBegin()

ts
ZoneBegin(this: void): void;

Begin tracy profiling zone.

Parameters

ParameterType
thisvoid

Returns

void


ZoneBeginN()

ts
ZoneBeginN(this: void, name: string): void;

Begin tracy profiling zone with defined name.

Parameters

ParameterTypeDescription
thisvoid-
namestringName to display in tracy logs for current zone.

Returns

void


ZoneBeginNS()

ts
ZoneBeginNS(this: void): void;

Begin a named Tracy profiling zone with source location data.

Parameters

ParameterType
thisvoid

Returns

void


ZoneBeginS()

ts
ZoneBeginS(this: void): void;

Begin a Tracy profiling zone with source location data.

Parameters

ParameterType
thisvoid

Returns

void


ZoneEnd()

ts
ZoneEnd(this: void): void;

End tracy profiling zone.

Parameters

ParameterType
thisvoid

Returns

void


ZoneName()

ts
ZoneName(this: void, name: string): void;

Set zone name on per-call basis.

Parameters

ParameterTypeDescription
thisvoid-
namestringName of zone.

Returns

void


ZoneText()

ts
ZoneText(this: void, text: string): void;

Set zone text.

Parameters

ParameterTypeDescription
thisvoid-
textstringText description of the zone.

Returns

void