gfx/angle/src/common/version.h

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/gfx/angle/src/common/version.h	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,12 @@
     1.4 +#define MAJOR_VERSION 1
     1.5 +#define MINOR_VERSION 2
     1.6 +#define BUILD_VERSION 0
     1.7 +#define BUILD_REVISION 2431
     1.8 +
     1.9 +#define STRINGIFY(x) #x
    1.10 +#define MACRO_STRINGIFY(x) STRINGIFY(x)
    1.11 +
    1.12 +#define REVISION_STRING MACRO_STRINGIFY(BUILD_REVISION)
    1.13 +#define VERSION_STRING MACRO_STRINGIFY(MAJOR_VERSION) "." MACRO_STRINGIFY(MINOR_VERSION) "." MACRO_STRINGIFY(BUILD_VERSION) "." MACRO_STRINGIFY(BUILD_REVISION)
    1.14 +
    1.15 +#define VERSION_DWORD ((MAJOR_VERSION << 24) | (MINOR_VERSION << 16) | BUILD_REVISION)

mercurial