D3d_model_primitive_end - hpgDesigns/hpgdesigns-dev.io GitHub Wiki

Notation

Description

Ends the primitive being created on the model.

Parameters

  • index: index of the model to end the primitive on

Return Values

none: This function has no return values.

Example Call

// Create a model and start and end a primitive on it
mod = d3d_model_create();
d3d_model_primitive_begin(mod, pr_trianglestrip);
d3d_model_primitive_end(mod);

NOTOC