Edit

kc3-lang/angle/src/common/version.h

Branch :

  • Show log

    Commit

  • Author : daniel@transgaming.com
    Date : 2012-11-28 19:43:49
    Hash : 5dc3b8b4
    Message : Don't call gl::output unless perf is enabled. gl::output allocates a pretty large stack buffer, so it has to call _chkstk. This is rather slow, so avoid calling gl::output if perf and tracing are disabled. BUG= Review URL: https://codereview.appspot.com/6843043 git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@1471 736b8ea6-26fd-11df-bfd4-992fa37f6226

  • src/common/version.h
  • #define MAJOR_VERSION 1
    #define MINOR_VERSION 1
    #define BUILD_VERSION 0
    #define BUILD_REVISION 1390
    
    #define STRINGIFY(x) #x
    #define MACRO_STRINGIFY(x) STRINGIFY(x)
    
    #define REVISION_STRING MACRO_STRINGIFY(BUILD_REVISION)
    #define VERSION_STRING MACRO_STRINGIFY(MAJOR_VERSION) "." MACRO_STRINGIFY(MINOR_VERSION) "." MACRO_STRINGIFY(BUILD_VERSION) "." MACRO_STRINGIFY(BUILD_REVISION)