summaryrefslogtreecommitdiff
path: root/progs/redbook/teapots.c
diff options
context:
space:
mode:
Diffstat (limited to 'progs/redbook/teapots.c')
-rw-r--r--progs/redbook/teapots.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/progs/redbook/teapots.c b/progs/redbook/teapots.c
index edca5441ec..fb7aed380e 100644
--- a/progs/redbook/teapots.c
+++ b/progs/redbook/teapots.c
@@ -180,10 +180,10 @@ myReshape(int w, int h)
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
if (w <= h)
- glOrtho(0.0, 16.0, 0.0, 16.0 * (GLfloat) h / (GLfloat) w,
+ glOrtho(0.0, 16.0, 0.0, 18.0 * (GLfloat) h / (GLfloat) w,
-10.0, 10.0);
else
- glOrtho(0.0, 16.0 * (GLfloat) w / (GLfloat) h, 0.0, 16.0,
+ glOrtho(0.0, 16.0 * (GLfloat) w / (GLfloat) h, 0.0, 18.0,
-10.0, 10.0);
glMatrixMode(GL_MODELVIEW);
}