| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef GPU_CONFIG_GPU_UTIL_H_ | 5 #ifndef GPU_CONFIG_GPU_UTIL_H_ |
| 6 #define GPU_CONFIG_GPU_UTIL_H_ | 6 #define GPU_CONFIG_GPU_UTIL_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
| 12 #include "build/build_config.h" | 12 #include "build/build_config.h" |
| 13 #include "gpu/gpu_export.h" | 13 #include "gpu/gpu_export.h" |
| 14 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 class CommandLine; | 16 class CommandLine; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace gpu { | 19 namespace gpu { |
| 20 | 20 |
| 21 struct GPUInfo; | 21 struct GPUInfo; |
| 22 | 22 |
| 23 // Merge features in src into dst. | |
| 24 GPU_EXPORT void MergeFeatureSets( | |
| 25 std::set<int>* dst, const std::set<int>& src); | |
| 26 | |
| 27 // With provided GPUInfo, compute the driver bug workarounds and disabled | 23 // With provided GPUInfo, compute the driver bug workarounds and disabled |
| 28 // extensions for the current system, and append the |command_line|. | 24 // extensions for the current system, and append the |command_line|. |
| 29 GPU_EXPORT void ApplyGpuDriverBugWorkarounds( | 25 GPU_EXPORT void ApplyGpuDriverBugWorkarounds( |
| 30 const GPUInfo& gpu_info, | 26 const GPUInfo& gpu_info, |
| 31 base::CommandLine* command_line); | 27 base::CommandLine* command_line); |
| 32 | 28 |
| 33 // |str| is in the format of "feature1,feature2,...,featureN". | 29 // |str| is in the format of "feature1,feature2,...,featureN". |
| 34 GPU_EXPORT void StringToFeatureSet( | 30 GPU_EXPORT void StringToFeatureSet( |
| 35 const std::string& str, std::set<int>* feature_set); | 31 const std::string& str, std::set<int>* feature_set); |
| 36 | 32 |
| 37 // With provided command line, fill gpu_info->secondary_gpus with parsed | 33 // With provided command line, fill gpu_info->secondary_gpus with parsed |
| 38 // secondary vendor and device ids. | 34 // secondary vendor and device ids. |
| 39 GPU_EXPORT void ParseSecondaryGpuDevicesFromCommandLine( | 35 GPU_EXPORT void ParseSecondaryGpuDevicesFromCommandLine( |
| 40 const base::CommandLine& command_line, | 36 const base::CommandLine& command_line, |
| 41 GPUInfo* gpu_info); | 37 GPUInfo* gpu_info); |
| 42 | 38 |
| 43 GPU_EXPORT void InitializeDualGpusIfSupported( | 39 GPU_EXPORT void InitializeDualGpusIfSupported( |
| 44 const std::set<int>& driver_bug_workarounds); | 40 const std::set<int>& driver_bug_workarounds); |
| 45 | 41 |
| 46 } // namespace gpu | 42 } // namespace gpu |
| 47 | 43 |
| 48 #endif // GPU_CONFIG_GPU_UTIL_H_ | 44 #endif // GPU_CONFIG_GPU_UTIL_H_ |
| 49 | 45 |
| OLD | NEW |