From: Ralf Jung Date: Sun, 31 Mar 2013 14:40:48 +0000 (+0200) Subject: rename rectVertices -> rectQuad X-Git-Url: https://git.ralfj.de/gltest.git/commitdiff_plain/ccff40bad3c15ac250062e8924cc51e4b142c9e5 rename rectVertices -> rectQuad --- diff --git a/gltest.cpp b/gltest.cpp index b9824a8..c66ab32 100644 --- a/gltest.cpp +++ b/gltest.cpp @@ -63,7 +63,7 @@ static double getTime() 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); @@ -159,7 +159,7 @@ protected: // clear manually glBegin(GL_QUADS); glColor3f(0.0f, 0.0f, 0.0f); - rectVertices(0, 0, 1, 1); + rectQuad(0, 0, 1, 1); glEnd(); } else { @@ -169,7 +169,7 @@ protected: 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); //////////////////////////////////////////////