added MESA_VERSION() macro, etc (Holger Waechtler)
authorBrian Paul <brian.paul@tungstengraphics.com>
Wed, 28 May 2003 14:30:45 +0000 (14:30 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Wed, 28 May 2003 14:30:45 +0000 (14:30 +0000)
src/mesa/main/version.h

index 92c71b3bf42f848a9ff790a1d914896215c8d69d..4205c5c664461efafd6360b8bb01afab8cca947b 100644 (file)
 #define MESA_PATCH 0
 #define MESA_VERSION_STRING "5.1"
 
+/* To make version comparison easy */
+#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
+#define MESA_VERSION_CODE MESA_VERSION(MESA_MAJOR, MESA_MINOR, MESA_PATCH)
+
+
 /* OpenGL API version */
 #define OPENGL_MAJOR 1
 #define OPENGL_MINOR 4
 #define OPENGL_VERSION_STRING "1.4"
 
+/* To make version comparison easy */
+#define OPENGL_VERSION(a,b) (((a) << 16) + ((b) << 8) + (c))
+#define OPENGL_VERSION_CODE OPENGL_VERSION(OPENGL_MAJOR, OPENGL_MINOR)
+
 
 #endif /* VERSION_H */