]> git.tdb.fi Git - libs/gl.git/blob - source/stencil.cpp
dfeb3fb72746d5f9916f742b96023301d1a1d22b
[libs/gl.git] / source / stencil.cpp
1 /* $Id$
2
3 This file is part of libmspgl
4 Copyright © 2007  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #include "stencil.h"
9
10 namespace Msp {
11 namespace GL {
12
13 void stencil_func(Predicate func, int ref, unsigned mask)
14 {
15         glStencilFunc(func, ref, mask);
16 }
17
18 void stencil_op(StencilOp sfail, StencilOp dfail, StencilOp dpass)
19 {
20         glStencilOp(sfail, dfail, dpass);
21 }
22
23 } // namespace GL
24 } // namespace Msp