1
0
Fork 0

Trivial cleanup commit, to test continuous integration server.

This commit is contained in:
James Turner 2010-07-01 19:51:05 +01:00
parent fec7cb977c
commit 3f26d2b14b
2 changed files with 1 additions and 10 deletions

View file

@ -836,18 +836,11 @@ bool fgMainInit( int argc, char **argv ) {
fgRegisterIdleHandler( &fgIdleFunction );
fgRegisterDrawHandler( &FGRenderer::update );
#ifdef FG_ENABLE_MULTIPASS_CLOUDS
bool get_stencil_buffer = true;
#else
bool get_stencil_buffer = false;
#endif
// Initialize plib net interface
netInit( &argc, argv );
// Clouds3D requires an alpha channel
// clouds may require stencil buffer
fgOSOpenWindow(get_stencil_buffer);
fgOSOpenWindow(true /* request stencil buffer */);
// Initialize the splash screen right away
fntInit();

View file

@ -33,8 +33,6 @@ namespace flightgear
class FGEventHandler;
}
#define FG_ENABLE_MULTIPASS_CLOUDS 1
class SGSky;
extern SGSky *thesky;