Contents

init(type:length:)

Initializes a buffer of the specified length.

Declaration

init(type: MDLMeshBufferType, length: Int)

Parameters

  • type:

    Vertex to create a buffer for a mesh’s vertex attribute data, or Index to create a buffer for a submesh’s index data.

  • length:

    The size, in bytes, of the buffer to create.

Return Value

A new memory buffer for mesh data.

Discussion

All bytes in the newly created buffer are zero.

See Also

Creating a Buffer