From: Ash Tyndall Date: Sun, 9 Oct 2011 07:12:59 +0000 (+0800) Subject: (no commit message) X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;ds=sidebyside;h=00f9bfb76669b8b6061be500b96125ed4c29dcb7;p=atyndall%2Fcits2231.git --- 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