summaryrefslogtreecommitdiff
path: root/src/mesa/main/version.h
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2013-03-09 00:23:20 -0800
committerMatt Turner <mattst88@gmail.com>2013-03-12 17:02:28 -0700
commit9065bab37e80d04e01af0d516db04aa9985a4381 (patch)
tree9021a0f3e9a0a6afa14d9d16470b2582e07fd5c9 /src/mesa/main/version.h
parent439c3d4e313370823d49b53f031697cc8b18d171 (diff)
mesa: Remove unused version #defines from version.h.
Reviewed-by: Eric Anholt <eric@anholt.net>
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 c1cb3177d1a..b4f8d8590c4 100644
--- a/src/mesa/main/version.h
+++ b/src/mesa/main/version.h
@@ -31,17 +31,6 @@
struct gl_context;
-/* Mesa version */
-#define MESA_MAJOR 9
-#define MESA_MINOR 2
-#define MESA_PATCH 0
-#define MESA_VERSION_STRING "9.2-devel"
-
-/* 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)
-
-
extern void
_mesa_compute_version(struct gl_context *ctx);