ericrk | 41a1579e | 2017-02-10 20:56:28 | [diff] [blame] | 1 | // Copyright (c) 2017 The Chromium Authors. All rights reserved. |
| 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 "gpu/config/gpu_feature_info.h" |
| 6 | |
| 7 | namespace gpu { |
| 8 | |
| 9 | GpuFeatureInfo::GpuFeatureInfo() { |
| 10 | for (auto& status : status_values) |
| 11 | status = kGpuFeatureStatusUndefined; |
| 12 | } |
| 13 | |
Zhenyao Mo | d4dba105 | 2017-07-27 23:02:39 | [diff] [blame^] | 14 | GpuFeatureInfo::GpuFeatureInfo(const GpuFeatureInfo&) = default; |
| 15 | |
| 16 | GpuFeatureInfo::GpuFeatureInfo(GpuFeatureInfo&&) = default; |
| 17 | |
| 18 | GpuFeatureInfo::~GpuFeatureInfo() {} |
| 19 | |
| 20 | GpuFeatureInfo& GpuFeatureInfo::operator=(const GpuFeatureInfo&) = default; |
| 21 | |
| 22 | GpuFeatureInfo& GpuFeatureInfo::operator=(GpuFeatureInfo&&) = default; |
| 23 | |
ericrk | 41a1579e | 2017-02-10 20:56:28 | [diff] [blame] | 24 | } // namespace gpu |