Ignition Rendering

API Reference

6.3.1
OgreIncludes.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2015 Open Source Robotics Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17 #ifndef IGNITION_RENDERING_OGRE_OGREINCLUDES_HH_
18 #define IGNITION_RENDERING_OGRE_OGREINCLUDES_HH_
19 
20 // This disables warning messages for OGRE
21 #ifndef _MSC_VER
22  #pragma GCC system_header
23 #else
24  #pragma warning(push, 0)
25 #endif
26 
27 // This prevents some deprecation #warning messages on OSX 10.9
28 #pragma clang diagnostic ignored "-W#warnings"
29 
30 #include <Ogre.h>
31 #include <OgreAnimation.h>
32 #include <OgreBillboard.h>
33 #include <OgreImageCodec.h>
34 #include <OgreMovableObject.h>
35 #include <OgreRenderable.h>
36 #include <OgreRenderWindow.h>
37 #include <OgrePlugin.h>
38 #include <OgreDataStream.h>
39 #include <OgreLogManager.h>
40 #include <OgreSceneQuery.h>
41 #include <OgreRoot.h>
42 #include <OgreSceneManager.h>
43 #include <OgreSceneNode.h>
44 #include <OgreVector3.h>
45 #include <OgreManualObject.h>
46 #include <OgreMaterialManager.h>
47 #include <OgreMatrix4.h>
48 #include <OgreColourValue.h>
49 #include <OgreQuaternion.h>
50 #include <OgreMesh.h>
51 #include <OgreHardwareBufferManager.h>
52 #include <OgreCamera.h>
53 #include <OgreNode.h>
54 #include <OgreSimpleRenderable.h>
55 #include <OgreFrameListener.h>
56 #include <OgreTexture.h>
57 #include <OgreRectangle2D.h>
58 #include <OgreRenderObjectListener.h>
59 #include <OgreTechnique.h>
60 #include <OgrePass.h>
61 #include <OgreTextureUnitState.h>
62 #include <OgreGpuProgramManager.h>
63 #include <OgreHighLevelGpuProgramManager.h>
64 #include <OgreHardwarePixelBuffer.h>
65 #include <OgreShadowCameraSetupPSSM.h>
66 #include <Paging/OgrePageManager.h>
67 #include <Paging/OgrePagedWorld.h>
68 #include <Terrain/OgreTerrainPaging.h>
69 #include <Terrain/OgreTerrainMaterialGeneratorA.h>
70 #include <Terrain/OgreTerrain.h>
71 #include <Terrain/OgreTerrainGroup.h>
72 
73 #if OGRE_VERSION_MAJOR > 1 || OGRE_VERSION_MINOR >= 7
74  #include <RTShaderSystem/OgreRTShaderSystem.h>
75 #endif
76 
77 #if OGRE_VERSION_MAJOR > 1 || OGRE_VERSION_MINOR >= 9
78  #include <Overlay/OgreOverlayManager.h>
79  #include <Overlay/OgreOverlayElement.h>
80  #include <Overlay/OgreOverlayContainer.h>
81  #include <Overlay/OgreFontManager.h>
82  #include <Overlay/OgreOverlaySystem.h>
83 #else
84  #include <OgreFontManager.h>
85 #endif
86 
87 #ifdef _MSC_VER
88 #pragma warning(pop)
89 #endif
90 
91 #endif