]> git.tdb.fi Git - libs/gl.git/blob - source/predicate.h
Add scissor, stencil, alpha and depth test functions and constants
[libs/gl.git] / source / predicate.h
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 #ifndef MSP_GL_PREDICATE_H_
9 #define MSP_GL_PREDICATE_H_
10
11 #include <GL/gl.h>
12
13 namespace Msp {
14 namespace GL {
15
16 enum Predicate
17 {
18         NEVER    = GL_NEVER,
19         ALWAYS   = GL_ALWAYS,
20         LESS     = GL_LESS,
21         LEQUAL   = GL_LEQUAL,
22         EQUAL    = GL_EQUAL,
23         GREATER  = GL_GREATER,
24         GEQUAL   = GL_GEQUAL,
25         NOTEQUAL = GL_NOTEQUAL
26 };
27
28 } // namespace GL
29 } // namespace Msp
30
31 #endif