blob: 8e4925ddf20daa83c805d5741e9c649a29676dde [file] [log] [blame]
ericrk41a1579e2017-02-10 20:56:281// 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
7namespace gpu {
8
9GpuFeatureInfo::GpuFeatureInfo() {
10 for (auto& status : status_values)
11 status = kGpuFeatureStatusUndefined;
12}
13
Zhenyao Mod4dba1052017-07-27 23:02:3914GpuFeatureInfo::GpuFeatureInfo(const GpuFeatureInfo&) = default;
15
16GpuFeatureInfo::GpuFeatureInfo(GpuFeatureInfo&&) = default;
17
18GpuFeatureInfo::~GpuFeatureInfo() {}
19
20GpuFeatureInfo& GpuFeatureInfo::operator=(const GpuFeatureInfo&) = default;
21
22GpuFeatureInfo& GpuFeatureInfo::operator=(GpuFeatureInfo&&) = default;
23
ericrk41a1579e2017-02-10 20:56:2824} // namespace gpu