]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/stencil.cpp
Redesign depth and stencil test and blend state management
[libs/gl.git] / source / core / stencil.cpp
diff --git a/source/core/stencil.cpp b/source/core/stencil.cpp
deleted file mode 100644 (file)
index 28d59f1..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "stencil.h"
-
-namespace Msp {
-namespace GL {
-
-void stencil_func(Predicate func, int ref, unsigned mask)
-{
-       glStencilFunc(get_gl_predicate(func), ref, mask);
-}
-
-void stencil_op(StencilOp sfail, StencilOp dfail, StencilOp dpass)
-{
-       glStencilOp(sfail, dfail, dpass);
-}
-
-} // namespace GL
-} // namespace Msp