From 00f9bfb76669b8b6061be500b96125ed4c29dcb7 Mon Sep 17 00:00:00 2001 From: Ash Tyndall Date: Sun, 9 Oct 2011 15:12:59 +0800 Subject: [PATCH] --- scene.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/scene.c b/scene.c index 4852a51..e9b4c79 100644 --- a/scene.c +++ b/scene.c @@ -460,19 +460,15 @@ void makeMenu() { /** * Called when window is resized - * @param w New width - * @param h New height + * @param width New width + * @param height New height */ void windowReshape(int width, int height) { glViewport(0, 0, (GLsizei)width, (GLsizei)height); glMatrixMode(GL_PROJECTION); glLoadIdentity(); - if (width <= height) - gluPerspective(60, (GLfloat)width / (GLfloat) height, 0.1, 1000.0); - else - gluPerspective(60, (GLfloat)height / (GLfloat) width, 0.1, 1000.0); - glMatrixMode(GL_MODELVIEW); + gluPerspective(60, (GLfloat)width / (GLfloat)height, 0.0, 1000.0); /*glViewport(0, 0, w, h); glMatrixMode(GL_PROJECTION); /* switch matrix mode -- 2.20.1