// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef GPU_CONFIG_GPU_FEATURE_TYPE_H_ #define GPU_CONFIG_GPU_FEATURE_TYPE_H_ namespace gpu { // Provides flags indicating which gpu features are blocklisted for the system // on which chrome is currently running. // If a bit is set to 1, corresponding feature is blocklisted. enum GpuFeatureType { … }; static_assert …; } // namespace gpu #endif // GPU_CONFIG_GPU_FEATURE_TYPE_H_