mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
44 lines
1.2 KiB
C++
44 lines
1.2 KiB
C++
// Copyright (c) 2012 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_UTIL_H_
|
|
#define GPU_CONFIG_GPU_UTIL_H_
|
|
|
|
#include <set>
|
|
#include <string>
|
|
|
|
#include "base/command_line.h"
|
|
#include "build/build_config.h"
|
|
#include "gpu/gpu_export.h"
|
|
|
|
namespace base {
|
|
class CommandLine;
|
|
}
|
|
|
|
namespace gpu {
|
|
|
|
struct GPUInfo;
|
|
|
|
// Merge features in src into dst.
|
|
GPU_EXPORT void MergeFeatureSets(
|
|
std::set<int>* dst, const std::set<int>& src);
|
|
|
|
// Collect basic GPUInfo, compute the driver bug workarounds for the current
|
|
// system, and append the |command_line|.
|
|
GPU_EXPORT void ApplyGpuDriverBugWorkarounds(base::CommandLine* command_line);
|
|
|
|
// With provided GPUInfo, compute the driver bug workarounds for the current
|
|
// system, and append the |command_line|.
|
|
GPU_EXPORT void ApplyGpuDriverBugWorkarounds(
|
|
const GPUInfo& gpu_inco, base::CommandLine* command_line);
|
|
|
|
// |str| is in the format of "feature1,feature2,...,featureN".
|
|
GPU_EXPORT void StringToFeatureSet(
|
|
const std::string& str, std::set<int>* feature_set);
|
|
|
|
} // namespace gpu
|
|
|
|
#endif // GPU_CONFIG_GPU_UTIL_H_
|
|
|