blob: b8a9e3c039c0aa7639b302d3bcfead3df2b8c9d1 (
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
|
// Copyright (c) 2012 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.
#include "gpu/config/gpu_info.h"
namespace gpu {
GPUInfo::GPUDevice::GPUDevice()
: vendor_id(0),
device_id(0) {
}
GPUInfo::GPUDevice::~GPUDevice() { }
GPUInfo::GPUInfo()
: finalized(false),
optimus(false),
amd_switchable(false),
lenovo_dcute(false),
can_lose_context(false),
gpu_accessible(true),
software_rendering(false),
sandboxed(false) {
}
GPUInfo::~GPUInfo() { }
} // namespace gpu
|