]> git.tdb.fi Git - libs/gl.git/blobdiff - source/stencil.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / stencil.h
diff --git a/source/stencil.h b/source/stencil.h
deleted file mode 100644 (file)
index 30ad257..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#ifndef MSP_GL_STENCIL_H_
-#define MSP_GL_STENCIL_H_
-
-#include "gl.h"
-#include "predicate.h"
-
-namespace Msp {
-namespace GL {
-
-enum
-{
-       STENCIL_TEST = GL_STENCIL_TEST
-};
-
-enum StencilOp
-{
-       KEEP      = GL_KEEP,
-       SET_ZERO  = GL_ZERO,
-       REPLACE   = GL_REPLACE,
-       INCR      = GL_INCR,
-       DECR      = GL_DECR,
-       INVERT    = GL_INVERT,
-       INCR_WRAP = GL_INCR_WRAP,
-       DECR_WRAP = GL_DECR_WRAP
-};
-
-void stencil_func(Predicate func, int ref, unsigned mask);
-void stencil_op(StencilOp sfail, StencilOp dfail, StencilOp dpass);
-
-} // namespace GL
-} // namespace Msp
-
-#endif