source:
code/branches/levelKaan/src/external/ogreceguirenderer/changes_orxonox.diff
@
10062
Last change on this file since 10062 was 8367, checked in by rgrieder, 14 years ago | |
---|---|
|
|
File size: 3.3 KB |
-
OgreCEGUIRenderer.cpp
24 24 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 25 25 *************************************************************************/ 26 26 27 #include <CEGUI/CEGUIImagesetManager.h> 28 #include <CEGUI/CEGUIImageset.h> 29 #include <CEGUI/CEGUIImage.h> 30 #include <CEGUI/CEGUIExceptions.h> 31 #include <CEGUI/CEGUISystem.h> 27 // Workaround for GCC 4.6 28 #include <cstddef> 32 29 30 #include <CEGUIImagesetManager.h> 31 #include <CEGUIImageset.h> 32 #include <CEGUIImage.h> 33 #include <CEGUIExceptions.h> 34 #include <CEGUISystem.h> 35 33 36 #include "OgreCEGUIRenderer.h" 34 37 #include "OgreCEGUITexture.h" 35 38 #include "OgreCEGUIResourceProvider.h" -
OgreCEGUIRenderer.h
29 29 #ifndef _OgreCEGUIRenderer_h_ 30 30 #define _OgreCEGUIRenderer_h_ 31 31 32 #include <CEGUI /CEGUIBase.h>33 #include <CEGUI /CEGUIRenderer.h>34 #include <CEGUI /CEGUITexture.h>32 #include <CEGUIBase.h> 33 #include <CEGUIRenderer.h> 34 #include <CEGUITexture.h> 35 35 36 36 #include <OgreRenderQueueListener.h> 37 37 #include <OgreSceneManagerEnumerator.h> 38 38 #include <OgreTextureUnitState.h> 39 39 40 #if (OGRE_PLATFORM == OGRE_PLATFORM_WIN32) && !defined(OGRE_ STATIC_LIB)40 #if (OGRE_PLATFORM == OGRE_PLATFORM_WIN32) && !defined(OGRE_GUIRENDERER_STATIC_LIB) 41 41 # ifdef OGRE_GUIRENDERER_EXPORTS 42 42 # define OGRE_GUIRENDERER_API __declspec(dllexport) 43 43 # else -
OgreCEGUIResourceProvider.cpp
23 23 License along with this library; if not, write to the Free Software 24 24 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 25 25 *************************************************************************/ 26 27 // Workaround for GCC 4.6 28 #include <cstddef> 29 26 30 #include "OgreCEGUIResourceProvider.h" 27 31 28 #include <CEGUI /CEGUIExceptions.h>32 #include <CEGUIExceptions.h> 29 33 #include <OgreArchiveManager.h> 30 34 31 35 -
OgreCEGUIResourceProvider.h
26 26 #ifndef _OgreCEGUIResourceProvider_h_ 27 27 #define _OgreCEGUIResourceProvider_h_ 28 28 29 #include <CEGUI /CEGUIResourceProvider.h>29 #include <CEGUIResourceProvider.h> 30 30 #include "OgreCEGUIRenderer.h" 31 31 32 32 // Start of CEGUI namespace section -
OgreCEGUITexture.cpp
24 24 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 25 25 *************************************************************************/ 26 26 27 #include <CEGUI/CEGUISystem.h> 28 #include <CEGUI/CEGUIExceptions.h> 27 // Workaround for GCC 4.6 28 #include <cstddef> 29 30 #include <CEGUISystem.h> 31 #include <CEGUIExceptions.h> 29 32 #include "OgreCEGUITexture.h" 30 33 #include "OgreCEGUIRenderer.h" 31 34 -
OgreCEGUITexture.h
26 26 #ifndef _OgreCEGUITexture_h_ 27 27 #define _OgreCEGUITexture_h_ 28 28 29 #include <CEGUI /CEGUIBase.h>30 #include <CEGUI /CEGUIRenderer.h>31 #include <CEGUI /CEGUITexture.h>29 #include <CEGUIBase.h> 30 #include <CEGUIRenderer.h> 31 #include <CEGUITexture.h> 32 32 #include "OgreCEGUIRenderer.h" 33 33 34 34 // Start of CEGUI namespace section
Note: See TracBrowser
for help on using the repository browser.