Bootstrap

编译CEGUI时field has incomplete type Ogre::TexturePtr错误

http://cegui.org.uk/forum/viewtopic.php?f=10&t=6555

Go to the file cegui\include\CEGUI\RendererModules\Ogre\Renderer.h
and juste remplace on line 54

CODE:  SELECT ALL
class TexturePtr

by
CODE:  SELECT ALL
class Texture;
template<typename T> class SharedPtr;
typedef SharedPtr<Texture> TexturePtr;

;