GLdc/glmacros.h
Harley Laue 90361d1ecb Removing all the old CVSID stuff from the kos-ports tree.
I think this is the rest of them for kos-ports.
2008-10-22 07:25:38 +00:00

20 lines
416 B
C

/* GL for KOS ##version##
glmacros.c
(c)2001 Paul Boese
*/
#ifndef __GL_GLMACROS_H
#define __GL_GLMACROS_H
#define ABS(n) ( (n)<(0.0f) ? (-n):(n) )
#define NEG(n) ( (n)>(0.0f) ? (-n):(n) )
#define CLAMP01(x) ( (x)<(0.0f) ? ((0.0f)) : ((x)>(1.0f) ? ((1.0f)) : (x)) )
/* Clamp X to [MIN,MAX]: */
#define CLAMP( X, MIN, MAX ) ( (X)<(MIN) ? (MIN) : ((X)>(MAX) ? (MAX) : (X)) )
#endif /* __GL_GLMACROS_H */