summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-08-31 16:42:59 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-08-31 16:42:59 +0000
commitd5783737f1b7ce30d724b70566efbf52394b7759 (patch)
tree4d928256b9106eda64dbd3140d155665225b6210
parent2c8524b4fb4aa8e56a6b2646b0a8e21732e7aed4 (diff)
use 'f' key to toggle front/back buffer rendering
-rw-r--r--progs/demos/reflect.c19
1 files changed, 17 insertions, 2 deletions
diff --git a/progs/demos/reflect.c b/progs/demos/reflect.c
index 892930417e..9cd71d1c3d 100644
--- a/progs/demos/reflect.c
+++ b/progs/demos/reflect.c
@@ -50,6 +50,7 @@ struct window {
GLfloat xrot, yrot;
GLfloat spin;
GLenum showBuffer;
+ GLenum drawBuffer;
GLuint table_list;
GLuint objects_list[MAX_OBJECTS];
double t0;
@@ -296,8 +297,10 @@ DrawWindow(void)
GLfloat dist = 20.0;
GLfloat eyex, eyey, eyez;
- glClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT);
+ glDrawBuffer(w->drawBuffer);
+ glReadBuffer(w->drawBuffer);
+ glClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT);
eyex = dist * cos(w->yrot * DEG2RAD) * cos(w->xrot * DEG2RAD);
eyez = dist * sin(w->yrot * DEG2RAD) * cos(w->xrot * DEG2RAD);
@@ -368,7 +371,10 @@ DrawWindow(void)
ShowAlphaBuffer(w->width, w->height);
}
- glutSwapBuffers();
+ if (w->drawBuffer == GL_BACK)
+ glutSwapBuffers();
+ else
+ glFinish();
/* calc/show frame rate */
{
@@ -442,6 +448,13 @@ Key(unsigned char key, int x, int y)
w->showBuffer = GL_NONE;
glutPostRedisplay();
break;
+ case 'f':
+ if (w->drawBuffer == GL_FRONT)
+ w->drawBuffer = GL_BACK;
+ else
+ w->drawBuffer = GL_FRONT;
+ glutPostRedisplay();
+ break;
case ' ':
w->anim = !w->anim;
w->t0 = -1;
@@ -513,6 +526,7 @@ CreateWindow(void)
w->yrot = 50.0;
w->spin = 0.0;
w->showBuffer = GL_NONE;
+ w->drawBuffer = GL_BACK;
InitWindow(w);
@@ -535,6 +549,7 @@ Usage(void)
printf(" d - show depth buffer\n");
printf(" s - show stencil buffer\n");
printf(" c - show color buffer\n");
+ printf(" f - toggle rendering to front/back color buffer\n");
printf(" n - create new window\n");
printf(" k - kill window\n");
printf(" SPACE - toggle animation\n");