gpu-curtains
    Preparing search index...

    Interface GeometryBuffer

    Describe the base of a geometry buffer, which is made of a Buffer and a typed array.

    interface GeometryBuffer {
        array?: TypedArray;
        arrayBuffer?: ArrayBuffer;
        buffer: Buffer;
        bufferOffset: number;
        bufferSize: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    array?: TypedArray

    VertexBuffer data array with already interleaved values to be used to fill the ArrayBuffer.

    arrayBuffer?: ArrayBuffer

    VertexBuffer data ArrayBuffer to be used by the GPUBuffer.

    buffer: Buffer
    bufferOffset: number

    Number representing the offset at which the data begins in the GPUBuffer.

    bufferSize: number

    Size in bytes of the data contained in the GPUBuffer.