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

interface RenderBinLog {
    drawCalls: DrawCallLog[];
    name: string;
    timeMs?: TimeMs;
}

Properties

drawCalls: DrawCallLog[]

Draw calls made within this render bin.

name: string

Name of the render bin.

timeMs?: TimeMs

Time range for this render bin.