Draw-call and primitive counts for one WebGPU render bin.

interface WebGPUViewRenderBinStats {
    name: string;
    numDrawCalls: number;
    numPrimitives: number;
}

Properties

name: string

Render bin name, such as opaque, transparent, edges, or a pass-specific bin.

numDrawCalls: number

Number of draw calls submitted for this bin.

numPrimitives: number

Number of triangle or edge primitives submitted for this bin.