From 7d32eeb20af75e2093a046a22c13566012bd824e Mon Sep 17 00:00:00 2001 From: tosh Date: Mon, 25 Mar 2013 10:50:45 +0100 Subject: [PATCH] adjusts to function renaming in FieldOfView --- interface/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/main.cpp b/interface/src/main.cpp index a24dd593f5..5289f9468a 100644 --- a/interface/src/main.cpp +++ b/interface/src/main.cpp @@ -853,7 +853,7 @@ void reshape(int width, int height) glMatrixMode(GL_PROJECTION); //hello #ifdef USE_FOV fov.setResolution(width, height) - .setFrustum(glm::vec3(-0.5f,-0.5f,-50.0f), glm::vec3(0.5f, 0.5f, 0.1f) ) + .setBounds(glm::vec3(-0.5f,-0.5f,-50.0f), glm::vec3(0.5f, 0.5f, 0.1f) ) .setPerspective(0.78f); glLoadMatrixf(glm::value_ptr(fov.getViewerScreenXform()));