diff --git a/src/glutils.cpp b/src/glutils.cpp index 2dde313..c86a2ce 100644 --- a/src/glutils.cpp +++ b/src/glutils.cpp @@ -79,7 +79,7 @@ void fmri::changeWindowSize(int w, int h) glViewport(0, 0, w, h); // Set the correct perspective. - gluPerspective(45.0f, ratio, 0.1f, 100.0f); + gluPerspective(45.0f, ratio, 0.1f, 10000.0f); // Get Back to the Modelview glMatrixMode(GL_MODELVIEW); diff --git a/src/main.cpp b/src/main.cpp index 1002318..bcce69d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -60,7 +60,7 @@ static void render() glPushMatrix(); renderLayer(layer); glPopMatrix(); - glTranslatef(-5, 0, 0); + glTranslatef(-10, 0, 0); } glPopMatrix();