OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/public/common/gpu_info.h" | 5 #include "content/public/common/gpu_info.h" |
6 | 6 |
7 namespace content { | 7 namespace content { |
8 | 8 |
9 GPUInfo::GPUInfo() | 9 GPUInfo::GPUInfo() |
10 : finalized(false), | 10 : finalized(false), |
11 optimus(false), | 11 optimus(false), |
12 vendor_id(0), | 12 vendor_id(0), |
13 device_id(0), | 13 device_id(0), |
14 can_lose_context(false), | 14 can_lose_context(false), |
| 15 gpu_accessible(true), |
15 software_rendering(false) { | 16 software_rendering(false) { |
16 } | 17 } |
17 | 18 |
18 GPUInfo::~GPUInfo() { } | 19 GPUInfo::~GPUInfo() { } |
19 | 20 |
20 } // namespace content | 21 } // namespace content |
OLD | NEW |