blob: 827c76c17ce5ca06caf1600760056af42da3e4d7 [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
[email protected]d7b5cc72013-05-23 20:05:005#include "gpu/config/gpu_info.h"
[email protected]a80f5ece2011-10-20 23:56:556
[email protected]d7b5cc72013-05-23 20:05:007namespace gpu {
[email protected]a80f5ece2011-10-20 23:56:558
[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]68852bd2013-03-12 03:47:0820 lenovo_dcute(false),
[email protected]fd00eee52013-05-24 22:32:2821 adapter_luid(0),
[email protected]6c7784e2013-08-01 22:41:2822 gl_reset_notification_strategy(0),
[email protected]e4f81812012-03-14 04:15:5823 can_lose_context(false),
[email protected]fad3ccf2012-09-11 22:36:0024 software_rendering(false),
25 sandboxed(false) {
[email protected]a80f5ece2011-10-20 23:56:5526}
27
28GPUInfo::~GPUInfo() { }
29
[email protected]d7b5cc72013-05-23 20:05:0030} // namespace gpu