vertex_format_delete(format)

From ENIGMA
Jump to navigation Jump to search

Description

Deletes the given vertex buffer format from memory. After this function is called you can no longer use the vertex format and any vertex buffers that were given this format in vertex_begin can no longer be submitted unless a new format is specified with another call to vertex_begin.

Parameters

Parameter Data Type Description
format integer Index of the vertex format.

Return Values

void: This function does not return anything.

Example Call

// demonstrates deleting a vertex format from memory
vertex_format_delete(vf_position_color);