[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 | |||||
[email protected] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 5 | #include "gpu/config/gpu_info.h" |
[email protected] | a80f5ece | 2011-10-20 23:56:55 | [diff] [blame] | 6 | |
[email protected] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 7 | namespace gpu { |
[email protected] | a80f5ece | 2011-10-20 23:56:55 | [diff] [blame] | 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] | 68852bd | 2013-03-12 03:47:08 | [diff] [blame] | 20 | lenovo_dcute(false), |
[email protected] | fd00eee5 | 2013-05-24 22:32:28 | [diff] [blame] | 21 | adapter_luid(0), |
[email protected] | 6c7784e | 2013-08-01 22:41:28 | [diff] [blame^] | 22 | gl_reset_notification_strategy(0), |
[email protected] | e4f8181 | 2012-03-14 04:15:58 | [diff] [blame] | 23 | can_lose_context(false), |
[email protected] | fad3ccf | 2012-09-11 22:36:00 | [diff] [blame] | 24 | software_rendering(false), |
25 | sandboxed(false) { | ||||
[email protected] | a80f5ece | 2011-10-20 23:56:55 | [diff] [blame] | 26 | } |
27 | |||||
28 | GPUInfo::~GPUInfo() { } | ||||
29 | |||||
[email protected] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 30 | } // namespace gpu |