diff options
author | Ian Romanick <[email protected]> | 2012-08-30 13:55:02 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2012-08-30 18:23:28 -0700 |
commit | 0791484c4233f3b474b1d9ba1af2f4608fe7e962 (patch) | |
tree | c32e22a4e9524316585931a96b8b159884dfd920 /src/mesa/main/version.h | |
parent | 0e470533ad0aecb58341a8935618c8cdf642bedd (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 <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/version.h')
-rw-r--r-- | src/mesa/main/version.h | 6 |
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)) |