summaryrefslogtreecommitdiff
path: root/src/mesa/main/version.h
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2012-08-30 13:55:02 -0700
committerIan Romanick <ian.d.romanick@intel.com>2012-08-30 18:23:28 -0700
commit0791484c4233f3b474b1d9ba1af2f4608fe7e962 (patch)
treec32e22a4e9524316585931a96b8b159884dfd920 /src/mesa/main/version.h
parent0e470533ad0aecb58341a8935618c8cdf642bedd (diff)
mesa: Bump version to 9.0
Now that OpenGL 3.1 is supported by at least one driver, follow tradition and bump the major version number. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/mesa/main/version.h')
-rw-r--r--src/mesa/main/version.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index 94a9855d981..5b2e85afd53 100644
--- a/src/mesa/main/version.h
+++ b/src/mesa/main/version.h
@@ -32,10 +32,10 @@ struct gl_context;
/* Mesa version */
-#define MESA_MAJOR 8
-#define MESA_MINOR 1
+#define MESA_MAJOR 9
+#define MESA_MINOR 0
#define MESA_PATCH 0
-#define MESA_VERSION_STRING "8.1-devel"
+#define MESA_VERSION_STRING "9.0-devel"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))