~ubuntu-branches/ubuntu/precise/mesa/precise-updates

« back to all changes in this revision

Viewing changes to src/mesa/main/version.h

  • Committer: Package Import Robot
  • Author(s): Robert Hooker
  • Date: 2012-02-02 12:05:48 UTC
  • mfrom: (1.7.1) (3.3.27 sid)
  • Revision ID: package-import@ubuntu.com-20120202120548-nvkma85jq0h4coix
Tags: 8.0~rc2-0ubuntu4
Drop drisearchdir handling, it is no longer needed with multiarch
and dri-alternates being removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
 
34
34
/* Mesa version */
35
 
#define MESA_MAJOR 7
36
 
#define MESA_MINOR 11
 
35
#define MESA_MAJOR 8
 
36
#define MESA_MINOR 0
37
37
#define MESA_PATCH 0
38
 
#define MESA_VERSION_STRING "7.11"
 
38
#define MESA_VERSION_STRING "8.0-rc2"
39
39
 
40
40
/* To make version comparison easy */
41
41
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
42
42
#define MESA_VERSION_CODE MESA_VERSION(MESA_MAJOR, MESA_MINOR, MESA_PATCH)
43
43
 
44
44
 
45
 
/* OpenGL API version */
46
 
#define OPENGL_MAJOR 2
47
 
#define OPENGL_MINOR 1
48
 
#define OPENGL_PATCH 0
49
 
#define OPENGL_VERSION_STRING "2.1"
50
 
 
51
 
/* To make version comparison easy */
52
 
#define OPENGL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
53
 
#define OPENGL_VERSION_CODE OPENGL_VERSION(OPENGL_MAJOR, OPENGL_MINOR, OPENGL_PATCH)
54
 
 
55
 
 
56
45
extern void
57
46
_mesa_compute_version(struct gl_context *ctx);
58
47
 
 
48
extern void
 
49
_mesa_override_glsl_version(struct gl_context *ctx);
59
50
 
60
51
#endif /* VERSION_H */