mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-12-04 15:44:06 +08:00
mesa: Remove unused version #defines from version.h.
Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
439c3d4e31
commit
9065bab37e
@ -200,8 +200,6 @@ branch is relevant.
|
||||
<dd>PACKAGE_VERSION</dd>
|
||||
<dt>configure.ac</dt>
|
||||
<dd>AC_INIT</dd>
|
||||
<dt>src/mesa/main/version.h</dt>
|
||||
<dd>MESA_MAJOR, MESA_MINOR, MESA_PATCH and MESA_VERSION_STRING</dd>
|
||||
</dl>
|
||||
|
||||
<p>
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user