X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fstencil.cpp;fp=source%2Fcore%2Fstencil.cpp;h=0000000000000000000000000000000000000000;hb=2b2676392aff2eb6b38c3e463cc67f4d67a4ef8b;hp=28d59f19aa97538cf8e443f31918015eef437753;hpb=669e9bfc18d2f5e28a9c715e1a69b7637a2d9c8b;p=libs%2Fgl.git diff --git a/source/core/stencil.cpp b/source/core/stencil.cpp deleted file mode 100644 index 28d59f19..00000000 --- a/source/core/stencil.cpp +++ /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