Vertex_format_delete - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
Deletes the given vertex buffer format. 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 drawn unless a new format is specified with another call to vertex_begin.
Parameters
Parameter | Description |
---|---|
none | This function has no parameters. |
Return Values
void: This function does not return anything.
Example Call
// demonstrates beginning and ending a new vertex format
vertex_format_begin();
vertex_format_add_position();
vertex_format_add_color();
vf_position_color = vertex_format_end();
NOTOC