global tracy

methods

tracy.ZoneBegin

function tracy.ZoneBegin(name: string)

tracy.ZoneBeginN

function tracy.ZoneBeginN(name: string)

tracy.ZoneBeginS

function tracy.ZoneBeginS(name: string)

tracy.ZoneBeginNS

function tracy.ZoneBeginNS(name: string)

tracy.ZoneEnd

function tracy.ZoneEnd()

tracy.ZoneText

function tracy.ZoneText(text: string)

tracy.ZoneName

function tracy.ZoneName(name: string)

tracy.Message

function tracy.Message(text: string)

tracy.LuaTracyPlotConfig

function tracy.LuaTracyPlotConfig(
  plotName: string,
  plotFormatType: ("Number"|"Percentage"|"Memory"|nil),
  stepwise: boolean?,
  fill: boolean?,
  color: integer?
)

@param plotName - name of the plot to customize

@param plotFormatType - (Default: "Number")

@param stepwise - (Default: true) stepwise chart

@param fill - (Default: false) whether to fill color

@param color - (Default: 0xFFFFFF) uint32 number as BGR color

Configure custom appearance for a Tracy plot for use in debugging or profiling

[source]

tracy.LuaTracyPlot

function tracy.LuaTracyPlot(
  plotName: string,
  plotValue: number
)

@param plotName - Which LuaPlot should be updated

@param plotValue - the number to show on the Tracy plot

Update a Tracy plot with a value

[source]