Log entry for a single render bin, made up of multiple draw calls.

interface RenderBinStats {
    drawCalls: DrawCallStats[];
    name: string;
    timeMs?: TimeMs;
}

Properties

drawCalls: DrawCallStats[]

Draw calls made within this render bin.

name: string

Name of the render bin.

timeMs?: TimeMs

Time range for this render bin.