diff options
| author | Joshua Rahm <joshua.rahm@colorado.edu> | 2013-10-31 03:01:33 -0600 |
|---|---|---|
| committer | Joshua Rahm <joshua.rahm@colorado.edu> | 2013-10-31 03:01:33 -0600 |
| commit | 88d0215624de994b4456c8eac537262118ffed52 (patch) | |
| tree | 8c1567d1fd43a5fdf3e9ccfd3bc6d498f4aa3e0c /Main.cpp | |
| parent | 501e02f70c335602f11e4a4f59304cb0788a5986 (diff) | |
| download | SonsOfSol-88d0215624de994b4456c8eac537262118ffed52.tar.gz SonsOfSol-88d0215624de994b4456c8eac537262118ffed52.tar.bz2 SonsOfSol-88d0215624de994b4456c8eac537262118ffed52.zip | |
Added more robust recursive make structure; started on SonsOfSol infrastructure
Diffstat (limited to 'Main.cpp')
| -rw-r--r-- | Main.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -37,6 +37,9 @@ public: void onEvent( const SDL_Event& event ) { SloxRawEventHandler::onEvent( event ); } bool initialize( int argc, char** argv ) { + (void) argc; + (void) argv; + unsigned int tex = 0; SDL_Init( SDL_INIT_VIDEO ); @@ -78,10 +81,10 @@ public: } bool loop( uint32_t ticks ) { + (void) ticks; /* Set some parameters */ GloxState::clear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT ); GloxState::enable( GL_DEPTH_TEST ); - // GloxState::enable( GL_CULL_FACE ); GloxState::loadIdentity(); /* Translate to the this perspective */ |