blob: 7c0f1432779519199a0b400ce07afba5fd4cfa0d [file] [log] [blame]
// Copyright (c) 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef GPU_CONFIG_GPU_EXTRA_INFO_H_
#define GPU_CONFIG_GPU_EXTRA_INFO_H_
#include <string>
#include <vector>
#include "gpu/gpu_export.h"
namespace gpu {
// Specification of a feature that can be enabled/disable in ANGLE
struct GPU_EXPORT ANGLEFeature {
ANGLEFeature();
ANGLEFeature(const ANGLEFeature& other);
ANGLEFeature(ANGLEFeature&& other);
~ANGLEFeature();
ANGLEFeature& operator=(const ANGLEFeature& other);
ANGLEFeature& operator=(ANGLEFeature&& other);
// Name of the feature in camel_case.
std::string name;
// Name of the category that the feature belongs to.
std::string category;
// One sentence description of the feature, why it's available.
std::string description;
// Full link to cr/angle bug if applicable.
std::string bug;
// Status, can be "enabled" or "disabled".
std::string status;
};
using ANGLEFeatures = std::vector<ANGLEFeature>;
struct GPU_EXPORT GpuExtraInfo {
GpuExtraInfo();
GpuExtraInfo(const GpuExtraInfo&);
GpuExtraInfo(GpuExtraInfo&&);
~GpuExtraInfo();
GpuExtraInfo& operator=(const GpuExtraInfo&);
GpuExtraInfo& operator=(GpuExtraInfo&&);
// List of the currently available ANGLE features. May be empty if not
// applicable.
ANGLEFeatures angle_features;
};
} // namespace gpu
#endif // GPU_CONFIG_GPU_EXTRA_INFO_H_