~ubuntu-branches/ubuntu/raring/mesa/raring

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Maarten Lankhorst
  • Date: 2013-01-22 11:54:09 UTC
  • mfrom: (1.7.13)
  • Revision ID: package-import@ubuntu.com-20130122115409-5e9xii2ee1whab3e
Tags: 9.0.2-0ubuntu1
* New upstream release.
* Decrease size of mesa's libgl1-mesa-dri again
  - re-enable 117-static-gallium.patch
  - add 118-dricore-gallium.patch to link against libdricore again

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
/* Mesa version */
35
35
#define MESA_MAJOR 9
36
36
#define MESA_MINOR 0
37
 
#define MESA_PATCH 1
38
 
#define MESA_VERSION_STRING "9.0.1"
 
37
#define MESA_PATCH 2
 
38
#define MESA_VERSION_STRING "9.0.2"
39
39
 
40
40
/* To make version comparison easy */
41
41
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))