X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fpostprocessor.h;h=6e3153dab69f9dea7639ffc675ad4386c8d45725;hb=HEAD;hp=f835e5afafd75bbfac7568af9ca9ab68634754ea;hpb=c216893af147042e40c389e2530e71277c343044;p=libs%2Fgl.git diff --git a/source/postprocessor.h b/source/postprocessor.h deleted file mode 100644 index f835e5af..00000000 --- a/source/postprocessor.h +++ /dev/null @@ -1,35 +0,0 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2009 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#ifndef MSP_GL_POSTPROCESSOR_H_ -#define MSP_GL_POSTPROCESSOR_H_ - -namespace Msp { -namespace GL { - -class Texture2D; - -/** -Base class for post-processing effects. -*/ -class PostProcessor -{ -protected: - PostProcessor() { } -public: - virtual ~PostProcessor() { } - - /** - Renders the effect. Takes the source texture as a parameter. - */ - virtual void render(const Texture2D &, const Texture2D &) = 0; -}; - -} // namespace GL -} // namespace Msp - -#endif