• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright 2020 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 
7 // driver_utils_d3d.h: Information specific to the D3D driver
8 
9 #ifndef LIBANGLE_RENDERER_D3D_DRIVER_UTILS_D3D_H_
10 #define LIBANGLE_RENDERER_D3D_DRIVER_UTILS_D3D_H_
11 
12 #include "libANGLE/angletypes.h"
13 
14 namespace rx
15 {
16 
17 std::string GetDriverVersionString(LARGE_INTEGER driverVersion);
18 
19 }  // namespace rx
20 
21 #endif  // LIBANGLE_RENDERER_D3D_DRIVER_UTILS_D3D_H_
22