X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fpredicate.h;h=6b0a697b6579ed3283f3e4be1d9aa5d21ae5ea88;hb=f73e671dcb36c097647cddbf5b1eaaad2ffc9299;hp=13c22e84dc0b4300ad98bd268179aebaa8937e1d;hpb=7aaec9a70b8d7733429bec043f8e33e02956f266;p=libs%2Fgl.git diff --git a/source/core/predicate.h b/source/core/predicate.h index 13c22e84..6b0a697b 100644 --- a/source/core/predicate.h +++ b/source/core/predicate.h @@ -2,21 +2,20 @@ #define MSP_GL_PREDICATE_H_ #include -#include "gl.h" namespace Msp { namespace GL { enum Predicate { - NEVER = GL_NEVER, - ALWAYS = GL_ALWAYS, - LESS = GL_LESS, - LEQUAL = GL_LEQUAL, - EQUAL = GL_EQUAL, - GREATER = GL_GREATER, - GEQUAL = GL_GEQUAL, - NOTEQUAL = GL_NOTEQUAL + NEVER, + ALWAYS, + LESS, + LEQUAL, + EQUAL, + GREATER, + GEQUAL, + NOTEQUAL }; void operator>>(const LexicalConverter &, Predicate &); @@ -25,4 +24,6 @@ void operator<<(LexicalConverter &, Predicate); } // namespace GL } // namespace Msp +#include "predicate_backend.h" + #endif