1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
gpu / config / gpu_switching.h [blame]
// Copyright 2017 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_SWITCHING_H_
#define GPU_CONFIG_GPU_SWITCHING_H_
#include <stdint.h>
#include <vector>
#include "build/build_config.h"
#include "gpu/gpu_export.h"
namespace base {
class CommandLine;
}
namespace gpu {
struct GPUInfo;
// Returns true if GPU dynamic switching inside Chrome is supported.
// Currently it's only for Mac with switchable dual GPUs.
GPU_EXPORT bool SwitchableGPUsSupported(const GPUInfo& gpu_info,
const base::CommandLine& command_line);
// Depending on the GPU driver bug workarounds, if needed, force onto the
// discrete GPU or try best to stay on the integrated GPU.
// This should only be called if SwitchableGPUsSupported() returns true.
GPU_EXPORT void InitializeSwitchableGPUs(
const std::vector<int32_t>& driver_bug_workarounds);
// Destroy the CGLPixelFormatObj that's used to force discrete GPU.
GPU_EXPORT void StopForceDiscreteGPU();
} // namespace gpu
#endif // GPU_CONFIG_GPU_SWITCHING_H_