summaryrefslogtreecommitdiff
path: root/tests/general
diff options
context:
space:
mode:
Diffstat (limited to 'tests/general')
-rw-r--r--tests/general/attribs.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/general/attribs.c b/tests/general/attribs.c
index 05a0d4a1e..ddb0b060a 100644
--- a/tests/general/attribs.c
+++ b/tests/general/attribs.c
@@ -107,6 +107,18 @@ static void draw_quad(unsigned mode, float *v,
}
glEnd();
glEndList();
+
+ /* Clear to make sure the calls didn't get executed
+ * immediately.
+ */
+ glBegin(GL_QUADS);
+ for (i = 0; i < 4; i++) {
+ attrib(0.1, 0.1, 0.1, 0.1);
+ glVertex2fv(&verts[i*2]);
+ }
+ glEnd();
+
+ /* Now call the display list */
glCallList(1);
break;
default: