diff options
author | Brian Paul <brianp@vmware.com> | 2010-05-05 16:37:28 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2010-05-05 18:24:50 -0600 |
commit | c66a9192acb0913d7ecc7c16aa4694ce4cab3c9f (patch) | |
tree | 7aed8fd09f78dc9cbf0f1f4723d422ab5b87bd83 | |
parent | a20383885499b7ddc61debc7fbe6128f60513472 (diff) |
clipFlat: also test glDrawElements()
-rw-r--r-- | src/glean/tclipflat.cpp | 70 | ||||
-rw-r--r-- | src/glean/tclipflat.h | 3 |
2 files changed, 60 insertions, 13 deletions
diff --git a/src/glean/tclipflat.cpp b/src/glean/tclipflat.cpp index 76a39e6..9dffa32 100644 --- a/src/glean/tclipflat.cpp +++ b/src/glean/tclipflat.cpp @@ -178,6 +178,14 @@ static const GLfloat PolygonVerts[4][5] = #define Elements(array) (sizeof(array) / sizeof(array[0])) +enum draw_mode { + BEGIN_END, + DRAW_ARRAYS, + DRAW_ELEMENTS, + NUM_DRAW_MODES +}; + + ClipFlatResult::ClipFlatResult() { pass = false; @@ -237,6 +245,25 @@ ClipFlatTest::drawArrays(GLenum mode, const GLfloat *verts, GLuint count) } +// Draw with glDrawElements() +void +ClipFlatTest::drawElements(GLenum mode, const GLfloat *verts, GLuint count) +{ + static const GLuint elements[6] = { 0, 1, 2, 3, 4, 5 }; + glColorPointer(3, GL_FLOAT, 5 * sizeof(GLfloat), verts + 0); + glVertexPointer(2, GL_FLOAT, 5 * sizeof(GLfloat), verts + 3); + glEnableClientState(GL_COLOR_ARRAY); + glEnableClientState(GL_VERTEX_ARRAY); + + assert(count <= Elements(elements)); + + glDrawElements(mode, count, GL_UNSIGNED_INT, elements); + + glDisableClientState(GL_COLOR_ARRAY); + glDisableClientState(GL_VERTEX_ARRAY); +} + + // Draw with glBegin/End() void ClipFlatTest::drawBeginEnd(GLenum mode, const GLfloat *verts, GLuint count) @@ -298,7 +325,7 @@ ClipFlatTest::checkResult(Window &w, GLfloat badColor[3]) void -ClipFlatTest::reportFailure(GLenum mode, GLuint arrayMode, GLuint facing, +ClipFlatTest::reportFailure(GLenum mode, int drawMode, GLuint facing, const GLfloat badColor[3], GLfloat x, GLfloat y) { const char *m, *d, *f; @@ -326,10 +353,19 @@ ClipFlatTest::reportFailure(GLenum mode, GLuint arrayMode, GLuint facing, m = "???"; } - if (arrayMode) - d = "glDrawArrays"; - else + switch (drawMode) { + case BEGIN_END: d = "glBegin/End"; + break; + case DRAW_ARRAYS: + d = "glDrawArrays"; + break; + case DRAW_ELEMENTS: + d = "glDrawElements"; + break; + default: + assert(0); + } if (facing == 0) f = "GL_CCW"; @@ -358,10 +394,11 @@ ClipFlatTest::testPositions(Window &w, GLenum mode, const GLfloat *verts, GLuint count) { GLfloat x, y; - GLuint arrayMode, facing; + GLuint facing; + int drawMode; - // glBegin mode and glDrawArrays mode: - for (arrayMode = 0; arrayMode < 2; arrayMode++) { + // glBegin mode vs glDrawArrays vs glDrawElements: + for (drawMode = 0; drawMode < NUM_DRAW_MODES; drawMode++) { // Test CW, CCW winding (should make no difference) for (facing = 0; facing < 2; facing++) { @@ -386,21 +423,30 @@ ClipFlatTest::testPositions(Window &w, GLenum mode, glClear(GL_COLOR_BUFFER_BIT); - if (arrayMode) - drawArrays(mode, verts, count); - else + switch (drawMode) { + case BEGIN_END: drawBeginEnd(mode, verts, count); + break; + case DRAW_ARRAYS: + drawArrays(mode, verts, count); + break; + case DRAW_ELEMENTS: + drawElements(mode, verts, count); + break; + default: + assert(0); + } glPopMatrix(); GLfloat badColor[3]; if (!checkResult(w, badColor)) { - reportFailure(mode, arrayMode, facing, badColor, x, y); + reportFailure(mode, drawMode, facing, badColor, x, y); glFlush(); //sleep(25); // enable for debugging return false; } - //usleep(100000); // enable for debugging + //usleep(50000); // enable for debugging } } } diff --git a/src/glean/tclipflat.h b/src/glean/tclipflat.h index 06d7467..40fb35a 100644 --- a/src/glean/tclipflat.h +++ b/src/glean/tclipflat.h @@ -61,10 +61,11 @@ private: bool testing_first_pv; void drawArrays(GLenum mode, const GLfloat *verts, GLuint count); + void drawElements(GLenum mode, const GLfloat *verts, GLuint count); void drawBeginEnd(GLenum mode, const GLfloat *verts, GLuint count); bool testPositions(Window &w, GLenum mode, const GLfloat *verts, GLuint count); - void reportFailure(GLenum mode, GLuint arrayMode, GLuint facing, + void reportFailure(GLenum mode, int drawMode, GLuint facing, const GLfloat badColor[3], GLfloat x, GLfloat y); bool checkResult(Window &w, GLfloat badColor[3]); |