Remove unused definition

This commit is contained in:
Jonas Kulla 2013-12-29 14:36:32 +01:00
parent 2adf8ab265
commit d8e22a8b3c
1 changed files with 0 additions and 19 deletions

View File

@ -59,25 +59,6 @@ private:
std::stack<T> stack; std::stack<T> stack;
}; };
// Not needed
template<typename T>
struct GLPropSaver
{
GLPropSaver(GLProperty<T> &p)
: p(p)
{
p.push();
}
~GLPropSaver()
{
p.pop();
}
private:
GLProperty<T> &p;
};
class GLClearColor : public GLProperty<Vec4> class GLClearColor : public GLProperty<Vec4>
{ {