X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fstencil.h;fp=source%2Fcore%2Fstencil.h;h=0000000000000000000000000000000000000000;hb=2b2676392aff2eb6b38c3e463cc67f4d67a4ef8b;hp=02f4ed3f6ffa82c75cead64f99d6deafef62ee18;hpb=669e9bfc18d2f5e28a9c715e1a69b7637a2d9c8b;p=libs%2Fgl.git diff --git a/source/core/stencil.h b/source/core/stencil.h deleted file mode 100644 index 02f4ed3f..00000000 --- a/source/core/stencil.h +++ /dev/null @@ -1,33 +0,0 @@ -#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