From: Ash Tyndall Date: Sat, 22 Oct 2011 03:30:51 +0000 (+0800) Subject: (no commit message) X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=commitdiff_plain;h=0bf9a194f13fd3e429d83da842d5107db8dbf967 --- diff --git a/globals.c b/globals.c index 7b1a4a1..a406be4 100644 --- a/globals.c +++ b/globals.c @@ -95,7 +95,7 @@ GLfloat zoomFactor = 0.2, camRotateFactor = 0.5, camAngleFactor = 0.5; GLfloat leftrightFactor = 0.5, nearfarFactor = 0.5, bigsmallFactor = 0.6, updownFactor = 0.03, rotateFactor = 0.8, texscaleFactor = 0.05; /* Beginning width, height */ -int width = 500, height = 500; +int width = 750, height = 750; /* Texture state tracking */ int currentGroundTexture = 0, currentMeshTexture = 0; \ No newline at end of file diff --git a/scene.c b/scene.c index b02b4f1..eefeec1 100644 --- a/scene.c +++ b/scene.c @@ -530,8 +530,8 @@ int main(int argc, char **argv) { glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH); - glutInitWindowSize(500, 500); - glutCreateWindow("Scene Editor"); + glutInitWindowSize(width, height); + glutCreateWindow("Scene Editor - Ashley Tyndall (20915779), Jenna de la Harpe (20367932)"); glShadeModel(GL_SMOOTH); // Enables Smooth Shading glClearColor(0.0f, 0.0f, 0.0f, 0.0f); // Black Background