[email protected] | 84ad3a7 | 2012-02-07 00:29:45 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | a80f5ece | 2011-10-20 23:56:55 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
5 | #include "content/public/common/gpu_info.h" | ||||
6 | |||||
7 | namespace content { | ||||
8 | |||||
[email protected] | a094e2c | 2012-05-10 23:02:42 | [diff] [blame] | 9 | GPUInfo::GPUDevice::GPUDevice() |
10 | : vendor_id(0), | ||||
11 | device_id(0) { | ||||
12 | } | ||||
13 | |||||
14 | GPUInfo::GPUDevice::~GPUDevice() { } | ||||
15 | |||||
[email protected] | a80f5ece | 2011-10-20 23:56:55 | [diff] [blame] | 16 | GPUInfo::GPUInfo() |
17 | : finalized(false), | ||||
[email protected] | 84ad3a7 | 2012-02-07 00:29:45 | [diff] [blame] | 18 | optimus(false), |
[email protected] | c32b0c2c | 2012-04-07 01:34:33 | [diff] [blame] | 19 | amd_switchable(false), |
[email protected] | e4f8181 | 2012-03-14 04:15:58 | [diff] [blame] | 20 | can_lose_context(false), |
[email protected] | 42dc3c0 | 2012-03-28 00:28:55 | [diff] [blame] | 21 | gpu_accessible(true), |
[email protected] | fad3ccf | 2012-09-11 22:36:00 | [diff] [blame^] | 22 | software_rendering(false), |
23 | sandboxed(false) { | ||||
[email protected] | a80f5ece | 2011-10-20 23:56:55 | [diff] [blame] | 24 | } |
25 | |||||
26 | GPUInfo::~GPUInfo() { } | ||||
27 | |||||
28 | } // namespace content |