From 88d0215624de994b4456c8eac537262118ffed52 Mon Sep 17 00:00:00 2001 From: Joshua Rahm Date: Thu, 31 Oct 2013 03:01:33 -0600 Subject: Added more robust recursive make structure; started on SonsOfSol infrastructure --- Main.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Main.cpp') diff --git a/Main.cpp b/Main.cpp index e211ad4..1b23bc0 100644 --- a/Main.cpp +++ b/Main.cpp @@ -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 */ -- cgit