Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef __SP_POST_PROCESSING_EFFECT_H__
00009 #define __SP_POST_PROCESSING_EFFECT_H__
00010
00011
00012 #include "Base/spStandard.hpp"
00013
00014 #if defined(SP_COMPILE_WITH_POSTPROCESSING)
00015
00016
00017 namespace sp
00018 {
00019 namespace video
00020 {
00021
00022
00023 class Texture;
00024
00026 class SP_EXPORT PostProcessingEffect
00027 {
00028
00029 public:
00030
00031 virtual ~PostProcessingEffect()
00032 {
00033 }
00034
00035
00036
00042 virtual void drawEffect(Texture* RenderTarget = 0) = 0;
00043
00044
00045
00047 inline bool valid() const
00048 {
00049 return Valid_;
00050 }
00051
00052 protected:
00053
00054 PostProcessingEffect() : Valid_(false)
00055 {
00056 }
00057
00058
00059
00060 bool Valid_;
00061
00062 };
00063
00064
00065 }
00066
00067 }
00068
00069
00070 #endif
00071
00072 #endif
00073
00074
00075
00076