summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/version.h
diff options
context:
space:
mode:
authorJakob Bornecrantz <[email protected]>2012-01-11 23:17:37 +0100
committerJakob Bornecrantz <[email protected]>2012-01-11 23:17:40 +0100
commit04e262ebe978872b7da0a04ae1fe6fe2129743fc (patch)
tree52106d8964b4be4a0bb3ff978c2219ab40b4f608 /src/mesa/main/version.h
parentc076882fbd933e973dfd079289f8e9d7deb7b0dd (diff)
mesa: Remove unused opengl version macro
Signed-off-by: Jakob Bornecrantz <[email protected]> Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/version.h')
-rw-r--r--src/mesa/main/version.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index d288c4d558f..8723c1f57dd 100644
--- a/src/mesa/main/version.h
+++ b/src/mesa/main/version.h
@@ -42,17 +42,6 @@ struct gl_context;
#define MESA_VERSION_CODE MESA_VERSION(MESA_MAJOR, MESA_MINOR, MESA_PATCH)
-/* OpenGL API version */
-#define OPENGL_MAJOR 2
-#define OPENGL_MINOR 1
-#define OPENGL_PATCH 0
-#define OPENGL_VERSION_STRING "2.1"
-
-/* To make version comparison easy */
-#define OPENGL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
-#define OPENGL_VERSION_CODE OPENGL_VERSION(OPENGL_MAJOR, OPENGL_MINOR, OPENGL_PATCH)
-
-
extern void
_mesa_compute_version(struct gl_context *ctx);