aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Rahm <joshua.rahm@colorado.edu>2013-12-11 03:34:30 -0700
committerJoshua Rahm <joshua.rahm@colorado.edu>2013-12-11 03:34:30 -0700
commitdfc97f027efc90ad00f8db4e40d0510f8a9b6d2a (patch)
tree857318eb37fb7017b42ba3629083516bd0a5ea2f
parent51cfa3153b45bb131898c21444b5dde22ea353e7 (diff)
downloadSonsOfSol-dfc97f027efc90ad00f8db4e40d0510f8a9b6d2a.tar.gz
SonsOfSol-dfc97f027efc90ad00f8db4e40d0510f8a9b6d2a.tar.bz2
SonsOfSol-dfc97f027efc90ad00f8db4e40d0510f8a9b6d2a.zip
commented out print statements
-rw-r--r--sons_of_sol/private_db/ApplicationDisplay.cpp2
-rw-r--r--sons_of_sol/private_db/ApplicationInit.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/sons_of_sol/private_db/ApplicationDisplay.cpp b/sons_of_sol/private_db/ApplicationDisplay.cpp
index c1a8d87..c9e773e 100644
--- a/sons_of_sol/private_db/ApplicationDisplay.cpp
+++ b/sons_of_sol/private_db/ApplicationDisplay.cpp
@@ -41,7 +41,7 @@ void SonsOfSolApplication::display() {
m_ship.setDForwardTo( 20 ) ;
enableLighting();
}
- cout << m_script_ttl << endl ;
+ // cout << m_script_ttl << endl ;
m_script_ttl -= 1 ;
}
diff --git a/sons_of_sol/private_db/ApplicationInit.cpp b/sons_of_sol/private_db/ApplicationInit.cpp
index 30b4b10..7729d12 100644
--- a/sons_of_sol/private_db/ApplicationInit.cpp
+++ b/sons_of_sol/private_db/ApplicationInit.cpp
@@ -201,8 +201,8 @@ bool SonsOfSolApplication::initialize( int argc, char** argv ) {
m_earth_shader_camera_pos = m_earth_prog->getUniformLocation( "cameraPos" );
m_earth_shader_time = m_earth_prog->getUniformLocation( "time" ) ;
- cout << "Earth light " << m_earth_shader_light_pos << endl;
- cout << "Earth camera " << m_earth_shader_camera_pos << endl;
+ // cout << "Earth light " << m_earth_shader_light_pos << endl;
+ // cout << "Earth camera " << m_earth_shader_camera_pos << endl;
m_moon_prog = new GloxProgram() ;
if( m_moon_prog->attachShaderFromFile( "shaders/moon.vp", GL_VERTEX_SHADER ) ||