]> git.tdb.fi Git - libs/gl.git/blobdiff - source/predicate.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / predicate.h
diff --git a/source/predicate.h b/source/predicate.h
deleted file mode 100644 (file)
index 707bc5d..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#ifndef MSP_GL_PREDICATE_H_
-#define MSP_GL_PREDICATE_H_
-
-#include "gl.h"
-
-namespace Msp {
-namespace GL {
-
-enum Predicate
-{
-       NEVER    = GL_NEVER,
-       ALWAYS   = GL_ALWAYS,
-       LESS     = GL_LESS,
-       LEQUAL   = GL_LEQUAL,
-       EQUAL    = GL_EQUAL,
-       GREATER  = GL_GREATER,
-       GEQUAL   = GL_GEQUAL,
-       NOTEQUAL = GL_NOTEQUAL
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif