Edit

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

Branch :

  • Show log

    Commit

  • Author : Geoff Lang
    Date : 2014-11-20 15:15:01
    Hash : 2207213b
    Message : Move as many files as possible from common to libANGLE. BUG=angle:733 Change-Id: If01c91cd52ac5c2102276a9fdc4b68ebc13e47f9 Reviewed-on: https://chromium-review.googlesource.com/231850 Reviewed-by: Jamie Madill <jmadill@chromium.org> Tested-by: Geoff Lang <geofflang@chromium.org>

  • src/common/version.h
  • //
    // Copyright (c) 2014 The ANGLE Project Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style license that can be
    // found in the LICENSE file.
    //
    
    #ifndef COMMON_VERSION_H_
    #define COMMON_VERSION_H_
    
    #include "id/commit.h"
    
    #define ANGLE_MAJOR_VERSION 2
    #define ANGLE_MINOR_VERSION 1
    
    #define ANGLE_STRINGIFY(x)       #x
    #define ANGLE_MACRO_STRINGIFY(x) ANGLE_STRINGIFY(x)
    
    #define ANGLE_VERSION_STRING                       \
        ANGLE_MACRO_STRINGIFY(ANGLE_MAJOR_VERSION) "." \
        ANGLE_MACRO_STRINGIFY(ANGLE_MINOR_VERSION) "." \
        ANGLE_COMMIT_HASH
    
    #endif // COMMON_VERSION_H_