From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- gfx/angle/checkout/src/common/angle_version.h | 28 +++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 gfx/angle/checkout/src/common/angle_version.h (limited to 'gfx/angle/checkout/src/common/angle_version.h') diff --git a/gfx/angle/checkout/src/common/angle_version.h b/gfx/angle/checkout/src/common/angle_version.h new file mode 100644 index 0000000000..d9d7e8929d --- /dev/null +++ b/gfx/angle/checkout/src/common/angle_version.h @@ -0,0 +1,28 @@ +// +// Copyright 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. +// +// angle_version.h: ANGLE version constants. Generated from git commands. + +#ifndef COMMON_ANGLE_VERSION_H_ +#define COMMON_ANGLE_VERSION_H_ + +#include "angle_commit.h" + +#define ANGLE_MAJOR_VERSION 2 +#define ANGLE_MINOR_VERSION 1 + +#ifndef ANGLE_REVISION +# define ANGLE_REVISION ANGLE_COMMIT_POSITION +#endif + +#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_MACRO_STRINGIFY( \ + ANGLE_REVISION) " git hash: " ANGLE_COMMIT_HASH + +#endif // COMMON_ANGLE_VERSION_H_ -- cgit v1.2.3