blob: 577d1979c52fa51c113181266a9b269ca8b123a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// Copyright (c) 2006-2010 The Chromium 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 CHROME_GPU_GPU_INFO_COLLECTOR_H__
#define CHROME_GPU_GPU_INFO_COLLECTOR_H__
#pragma once
#include "base/basictypes.h"
#include "build/build_config.h"
#include "chrome/common/dx_diag_node.h"
#include "chrome/common/gpu_info.h"
struct IDirect3D9;
namespace gpu_info_collector {
// Populate variables with necessary graphics card information.
// Returns true on success.
bool CollectGraphicsInfo(GPUInfo* gpu_info);
#if defined(OS_WIN)
// Windows provides two ways of doing graphics so we need two ways of
// collecting info based on what's on a user's machine.
// The selection between the two methods is done in the cc file.
// A D3D argument is passed in for testing purposes
bool CollectGraphicsInfoD3D(IDirect3D9* d3d, GPUInfo* gpu_info);
// Collect the DirectX Disagnostics information about the attached displays.
bool GetDxDiagnostics(DxDiagNode* output);
#endif
// All platforms have a GL version for collecting information
bool CollectGraphicsInfoGL(GPUInfo* gpu_info);
// Collect GL and Shading language version information
bool CollectGLVersionInfo(GPUInfo* gpu_info);
// Platform specific method for collecting vendor and device ids
bool CollectVideoCardInfo(GPUInfo* gpu_info);
// Each platform stores the driver version on the GL_VERSION string differently
bool CollectDriverInfo(GPUInfo* gpu_info);
} // namespace gpu_info_collector
#endif // CHROME_GPU_GPU_INFO_COLLECTOR_H__
|