Hilo3d API - v2.0.0
    Preparing search index...

    Interface GPUDrivenVertexBufferLayout

    Immutable layout for one graph vertex-buffer slot.

    interface GPUDrivenVertexBufferLayout {
        arrayStride: number;
        attributes: readonly GPUDrivenVertexAttribute[];
        stepMode?: "instance" | "vertex";
    }
    Index
    arrayStride: number

    Bytes between consecutive vertex or instance elements.

    attributes: readonly GPUDrivenVertexAttribute[]

    Attributes sourced from this buffer slot.

    stepMode?: "instance" | "vertex"

    Whether the buffer advances per vertex or per instance.