]> git.tdb.fi Git - libs/gl.git/blobdiff - source/stencil.cpp
Check the flat qualifier from the correct member
[libs/gl.git] / source / stencil.cpp
diff --git a/source/stencil.cpp b/source/stencil.cpp
deleted file mode 100644 (file)
index a050631..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#include "stencil.h"
-
-namespace Msp {
-namespace GL {
-
-void stencil_func(Predicate func, int ref, uint mask)
-{
-       glStencilFunc(func, ref, mask);
-}
-
-void stencil_op(StencilOp sfail, StencilOp dfail, StencilOp dpass)
-{
-       glStencilOp(sfail, dfail, dpass);
-}
-
-} // namespace GL
-} // namespace Msp