diff --git a/src/glstate.h b/src/glstate.h index 2992dc6..bb1566f 100644 --- a/src/glstate.h +++ b/src/glstate.h @@ -59,25 +59,6 @@ private: std::stack stack; }; -// Not needed -template -struct GLPropSaver -{ - GLPropSaver(GLProperty &p) - : p(p) - { - p.push(); - } - - ~GLPropSaver() - { - p.pop(); - } - -private: - GLProperty &p; -}; - class GLClearColor : public GLProperty {