Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef __SP_SCENEGRAPH_SIMPLE_H__
00009 #define __SP_SCENEGRAPH_SIMPLE_H__
00010
00011
00012 #include "Base/spStandard.hpp"
00013
00014 #ifdef SP_COMPILE_WITH_SCENEGRAPH_SIMPLE
00015
00016
00017 #include "SceneGraph/spSceneGraph.hpp"
00018
00019
00020 namespace sp
00021 {
00022 namespace scene
00023 {
00024
00025
00032 class SP_EXPORT SceneGraphSimple : public SceneGraph
00033 {
00034
00035 public:
00036
00037 SceneGraphSimple();
00038 virtual ~SceneGraphSimple();
00039
00040
00041
00042 virtual void render();
00043
00044 virtual void renderScenePlain(Camera* ActiveCamera);
00045
00046 protected:
00047
00048
00049
00050 video::MaterialStates MaterialPlain_;
00051
00052 };
00053
00054
00055 }
00056
00057 }
00058
00059
00060 #endif
00061
00062 #endif
00063
00064
00065
00066