diff options
author | Brian Paul <[email protected]> | 2010-01-05 21:23:01 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-01-05 21:23:01 -0700 |
commit | e0b9e33afbc8b061e3eab1eca7888fe2686a339d (patch) | |
tree | 1e10b0684ea93d72a8936e7cb1e3596a798daa7c /src/mesa/main/version.h | |
parent | e16fd07225b07e87b79015988b9806aefa032dd3 (diff) |
mesa: added _mesa_compute_version() in new version.c file
Diffstat (limited to 'src/mesa/main/version.h')
-rw-r--r-- | src/mesa/main/version.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h index dc55cb7ccc9..d521569f8d3 100644 --- a/src/mesa/main/version.h +++ b/src/mesa/main/version.h @@ -28,6 +28,9 @@ #define VERSION_H +#include "mtypes.h" + + /* Mesa version */ #define MESA_MAJOR 7 #define MESA_MINOR 8 @@ -50,4 +53,8 @@ #define OPENGL_VERSION_CODE OPENGL_VERSION(OPENGL_MAJOR, OPENGL_MINOR, OPENGL_PATCH) +extern void +_mesa_compute_version(GLcontext *ctx); + + #endif /* VERSION_H */ |