]> git.tdb.fi Git - libs/gl.git/blobdiff - source/postprocessor.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / postprocessor.h
diff --git a/source/postprocessor.h b/source/postprocessor.h
deleted file mode 100644 (file)
index e40d804..0000000
+++ /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