X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fpostprocessor.h;h=6e3153dab69f9dea7639ffc675ad4386c8d45725;hp=e40d80438a5a556d55713b98aa32f296d9482798;hb=HEAD;hpb=119d9819ac9e9a8d274d2410beffe54e470485a3 diff --git a/source/postprocessor.h b/source/postprocessor.h deleted file mode 100644 index e40d8043..00000000 --- a/source/postprocessor.h +++ /dev/null @@ -1,33 +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: - /** - Renders the effect. Takes the source texture as a parameter. - */ - virtual void render(const Texture2D &) =0; -}; - -} // namespace GL -} // namespace Msp - -#endif