Minor change.

--HG--
branch : dev
This commit is contained in:
Martí­n Lucas Golini
2017-03-15 12:13:02 -03:00
parent ca96aff693
commit 734698c070
9 changed files with 29 additions and 21 deletions

View File

@@ -93,7 +93,7 @@ EE_MAIN_FUNC int main (int argc, char * argv [])
// Check if created
if ( win->isOpen() ) {
// Set window background color
win->setBackColor( RGB( 50, 50, 50 ) );
win->setClearColor( RGB( 50, 50, 50 ) );
GLi->polygonMode( );

View File

@@ -60,7 +60,7 @@ EE_MAIN_FUNC int main (int argc, char * argv [])
win = Engine::instance()->createWindow( WindowSettings( 960, 640, "eepp - Fonts" ), ContextSettings( true ) );
// Set window background color
win->setBackColor( RGB(255,255,255) );
win->setClearColor( RGB(255,255,255) );
// Check if created
if ( win->isOpen() ) {
@@ -83,7 +83,7 @@ EE_MAIN_FUNC int main (int argc, char * argv [])
text.setFlags( FONT_DRAW_CENTER );
text.setString( Txt );
win->setBackColor( RGB(230,230,230) );
win->setClearColor( RGB(230,230,230) );
// Application loop
win->runMainLoop( &mainLoop );

View File

@@ -633,7 +633,7 @@ EE_MAIN_FUNC int main (int argc, char * argv [])
if ( mWindow->isOpen() ) {
KM = mWindow->getInput();
mWindow->setBackColor( RGB( 255, 255, 255 ) );
mWindow->setClearColor( RGB( 255, 255, 255 ) );
physicsCreate();

View File

@@ -116,7 +116,7 @@ EE_MAIN_FUNC int main (int argc, char * argv [])
win = Engine::instance()->createWindow( WindowSettings( 1024, 768, "eepp - VBO - FBO and Batch Rendering" ), ContextSettings( true ) );
// Set window background color
win->setBackColor( RGB( 50, 50, 50 ) );
win->setClearColor( RGB( 50, 50, 50 ) );
// Check if created
if ( win->isOpen() ) {