Nano WebGPU API - v0.11.0
    Preparing search index...

    Interface RenderInfo

    Information describing rendering and profiling statistics computed for the active frame.

    interface RenderInfo {
        drawCalls: number;
        dt: number;
        fps: number;
        frameTimeMs: number;
        lightCount: number;
        meshCount: number;
        nodeCount: number;
        time: number;
        trianglesDrawn: number;
        verticesDrawn: number;
        visibleMeshCount: number;
    }
    Index

    Properties

    drawCalls: number

    Count of draw commands executed.

    dt: number

    Delta time in seconds since the last frame.

    fps: number

    Estimated frames per second.

    frameTimeMs: number

    Total CPU frame calculation time in milliseconds.

    lightCount: number

    Count of registered light sources in the scene.

    meshCount: number

    Total registered mesh count in the scene graph.

    nodeCount: number

    Count of total hierarchical nodes in the scene graph.

    time: number

    Total accumulated elapsed time in seconds since start.

    trianglesDrawn: number

    Count of processed polygon faces drawn this frame.

    verticesDrawn: number

    Count of processed vertex coordinates drawn this frame.

    visibleMeshCount: number

    Count of active visible meshes sent to draw pipelines this frame.