Interface IXR_tracy

namespace profiler

interface IXR_tracy {
    Message(this: void): void;
    ZoneBegin(this: void): void;
    ZoneBeginN(this: void, name: string): void;
    ZoneBeginNS(this: void): void;
    ZoneBeginS(this: void): void;
    ZoneEnd(this: void): void;
    ZoneName(this: void, name: string): void;
    ZoneText(this: void, text: string): void;
}

Methods

  • Begin tracy profiling zone with defined name.

    Parameters

    • this: void
    • name: string

      name to display in tracy logs for current zone

    Returns void

  • Set zone name on per-call basis.

    Parameters

    • this: void
    • name: string

      name of zone

    Returns void

  • Set zone text.

    Parameters

    • this: void
    • text: string

      text description of the zone

    Returns void