blob: 130732f7191cd9eaf7da0f2519d3c95874626efd [file] [log] [blame]
[email protected]84ad3a72012-02-07 00:29:451// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]a80f5ece2011-10-20 23:56:552// 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
7namespace content {
8
[email protected]a094e2c2012-05-10 23:02:429GPUInfo::GPUDevice::GPUDevice()
10 : vendor_id(0),
11 device_id(0) {
12}
13
14GPUInfo::GPUDevice::~GPUDevice() { }
15
[email protected]a80f5ece2011-10-20 23:56:5516GPUInfo::GPUInfo()
17 : finalized(false),
[email protected]84ad3a72012-02-07 00:29:4518 optimus(false),
[email protected]c32b0c2c2012-04-07 01:34:3319 amd_switchable(false),
[email protected]e4f81812012-03-14 04:15:5820 can_lose_context(false),
[email protected]42dc3c02012-03-28 00:28:5521 gpu_accessible(true),
[email protected]fad3ccf2012-09-11 22:36:0022 software_rendering(false),
23 sandboxed(false) {
[email protected]a80f5ece2011-10-20 23:56:5524}
25
26GPUInfo::~GPUInfo() { }
27
28} // namespace content