1 // 2 // Copyright 2021 The ANGLE Project Authors. All rights reserved. 3 // Use of this source code is governed by a BSD-style license that can be 4 // found in the LICENSE file. 5 // 6 // angle_version_info.h: ANGLE version queries. 7 8 #ifndef COMMON_VERSION_INFO_H_ 9 #define COMMON_VERSION_INFO_H_ 10 11 namespace angle 12 { 13 int GetANGLERevision(); 14 const char *GetANGLEVersionString(); 15 const char *GetANGLECommitHash(); 16 int GetANGLECommitHashSize(); 17 const char *GetANGLEShaderProgramVersion(); 18 int GetANGLEShaderProgramVersionHashSize(); 19 int GetANGLESHVersion(); 20 } // namespace angle 21 22 #endif // COMMON_VERSION_INFO_H_ 23