Esempio n. 1
0
Renderer::Renderer()
 : mRoot(NULL)
{
 _initialise();

#ifdef _DEBUG
 mRoot = new Ogre::Root("", "", "ogre.log");
#else
 mRoot = new Ogre::Root("", "", "");
#endif

}
		//	 The copy-constructor. Since copy construction is disabled, it creates a NEW variable.
		ConditionVariable::ConditionVariable( const ConditionVariable& )				{ _initialise(); };
		//	 The default constructor.
		ConditionVariable::ConditionVariable()											{ _initialise(); };