]> git.tdb.fi Git - libs/gl.git/blob - source/effect.h
eb207745a847ae0cdf59b4609206d79a374597be
[libs/gl.git] / source / effect.h
1 /* $Id$
2
3 This file is part of libmspgl
4 Copyright © 2009  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_GL_EFFECT_H_
9 #define MSP_GL_EFFECT_H_
10
11 namespace Msp {
12 namespace GL {
13
14 class Effect
15 {
16 public:
17         virtual ~Effect() { }
18
19         virtual void prepare() =0;
20         virtual void cleanup() =0;
21 };
22
23 } // namespace GL
24 } // namespace Msp
25
26 #endif