Go to the documentation of this file.00001 #ifndef __NYTRO_RenderStateBlock_H
00002 #define __NYTRO_RenderStateBlock_H
00003
00004
00005
00006
00007
00008
00009
00010
00011 #include "system/nyCommon.h"
00012 #include "math/nyMath.h"
00013
00014 namespace Nytro
00015 {
00016 namespace Graphics
00017 {
00019 class NYTRO_API RenderStateBlock : public Base
00020 {
00021 protected:
00022
00024 RenderStateBlock();
00025
00026 public:
00027
00028 virtual ~RenderStateBlock();
00029
00031 virtual void begin() = 0;
00033 virtual void end() = 0;
00035 virtual void apply() = 0;
00036 };
00037 };
00038 };
00039
00040 #endif