Add doxygen comment for draw_vertices()

This commit is contained in:
hasufell 2014-05-09 15:03:46 +02:00
parent d238261d4e
commit a9a6f92164
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
1 changed files with 6 additions and 0 deletions

View File

@ -53,6 +53,12 @@ static void draw_Planet_1(void);
static void draw_Planet_2(void);
static void gl_destroy(void);
/**
* Call glVertex3f on all of the vertices of the object,
* in appropriate order.
*
* @param obj the object of which we will draw the vertices
*/
static void draw_vertices(HE_obj *obj)
{
for (uint32_t i = 0; i < obj->fc; i++) { /* for all faces */