return tp.tv_sec + 1e-9 * tp.tv_nsec;
}
-static void rectVertices(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2)
+static void rectQuad(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2)
{
glVertex2f(x1, y1);
glVertex2f(x2, y1);
// clear manually
glBegin(GL_QUADS);
glColor3f(0.0f, 0.0f, 0.0f);
- rectVertices(0, 0, 1, 1);
+ rectQuad(0, 0, 1, 1);
glEnd();
}
else {
profilerTick(stateDraw);
glBegin(GL_QUADS);
glColor3f(0.8f, 1.0f, 0.75f);
- rectVertices(boxPos, 0, boxPos+boxWidth, 1);
+ rectQuad(boxPos, 0, boxPos+boxWidth, 1);
glEnd();
usleep(sleep_time*1000);
//////////////////////////////////////////////