blob: 1d5392068c277d4999a0710eb56ab87ff6857129 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//
// Copyright 2021 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_info.h: ANGLE version queries.
#ifndef COMMON_VERSION_INFO_H_
#define COMMON_VERSION_INFO_H_
namespace angle
{
int GetANGLERevision();
const char *GetANGLEVersionString();
const char *GetANGLECommitHash();
int GetANGLECommitHashSize();
bool GetANGLEHasBinaryLoading();
} // namespace angle
#endif // COMMON_VERSION_INFO_H_
|