gpu-curtains
    Preparing search index...

    Interface IAccessorSparseIndices

    Indices of those attributes that deviate from their initialization value

    interface IAccessorSparseIndices {
        extensions?: Record<string, unknown>;
        extras?: Record<string, unknown>;
        bufferView: number;
        byteOffset?: number;
        componentType: AccessorComponentType;
    }

    Hierarchy (View Summary)

    Index

    Properties

    extensions?: Record<string, unknown>

    Dictionary object with extension-specific objects

    extras?: Record<string, unknown>

    Application-Specific data

    bufferView: number

    The index of the bufferView with sparse indices. Referenced bufferView can't have ARRAY_BUFFER or ELEMENT_ARRAY_BUFFER target

    byteOffset?: number

    The offset relative to the start of the bufferView in bytes. Must be aligned

    componentType: AccessorComponentType

    The indices data type. Valid values correspond to WebGL enums: 5121 (UNSIGNED_BYTE), 5123 (UNSIGNED_SHORT), 5125 (UNSIGNED_INT)