@ujjwalvivek/tinyts
    Preparing search index...

    Interface RendererStats

    Per-frame renderer instrumentation counters.

    interface RendererStats {
        batchFlushes: number;
        drawCalls: number;
        overlayLineCalls: number;
        overlayTextCalls: number;
        quads: number;
        shapeSwitches: number;
        textureSwitches: number;
    }
    Index

    Properties

    batchFlushes: number

    Number of non-empty batch flushes this frame.

    drawCalls: number

    GPU draw calls submitted by the renderer this frame.

    overlayLineCalls: number

    Number of line calls that used the Canvas2D overlay this frame.

    overlayTextCalls: number

    Number of text calls that used the Canvas2D overlay this frame.

    quads: number

    Number of quads queued this frame.

    shapeSwitches: number

    Number of shape uniform/state changes this frame.

    textureSwitches: number

    Number of texture binding changes this frame.