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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
// 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_UTIL_H_
#define GPU_CONFIG_GPU_UTIL_H_
#include "build/build_config.h"
#include "gpu/config/gpu_config_export.h"
#include "gpu/config/gpu_feature_info.h"
#include "ui/gl/gl_display.h"
namespace base {
class CommandLine;
}
namespace gpu {
struct DevicePerfInfo;
struct GPUInfo;
struct GpuPreferences;
enum class IntelGpuSeriesType;
enum class IntelGpuGeneration;
// Set GPU feature status if GPU is blocked.
GPU_CONFIG_EXPORT GpuFeatureInfo ComputeGpuFeatureInfoWithNoGpu();
// Set GPU feature status for software GL implementations.
GPU_CONFIG_EXPORT GpuFeatureInfo ComputeGpuFeatureInfoForSoftwareGL();
// This function should only be called from the GPU process, or the Browser
// process while using in-process GPU. This function is safe to call at any
// point, and is not dependent on sandbox initialization.
// This function also appends a few commandline switches caused by driver bugs.
GPU_CONFIG_EXPORT GpuFeatureInfo
ComputeGpuFeatureInfo(const GPUInfo& gpu_info,
const GpuPreferences& gpu_preferences,
base::CommandLine* command_line,
bool* needs_more_info);
GPU_CONFIG_EXPORT void SetKeysForCrashLogging(const GPUInfo& gpu_info);
#if BUILDFLAG(IS_ANDROID)
// Cache GPUInfo so it can be accessed later.
GPU_CONFIG_EXPORT void CacheGPUInfo(const GPUInfo& gpu_info);
// If GPUInfo is cached, write into |gpu_info|, clear cache, and return true;
// otherwise, return false;
GPU_CONFIG_EXPORT bool PopGPUInfoCache(GPUInfo* gpu_info);
// Cache GpuFeatureInfo so it can be accessed later.
GPU_CONFIG_EXPORT void CacheGpuFeatureInfo(
const GpuFeatureInfo& gpu_feature_info);
// If GpuFeatureInfo is cached, write into |gpu_feature_info|, clear cache, and
// return true; otherwise, return false;
GPU_CONFIG_EXPORT bool PopGpuFeatureInfoCache(GpuFeatureInfo* gpu_feature_info);
// Check if GL bindings are initialized. If not, initializes GL
// bindings, create a GL context, collects GPUInfo, make blocklist and
// GPU driver bug workaround decisions. This is intended to be called
// by Android WebView render thread and in-process GPU thread.
GPU_CONFIG_EXPORT gl::GLDisplay* InitializeGLThreadSafe(
base::CommandLine* command_line,
const GpuPreferences& gpu_preferences,
GPUInfo* out_gpu_info,
GpuFeatureInfo* out_gpu_feature_info);
#endif // BUILDFLAG(IS_ANDROID)
// Returns whether SwiftShader should be enabled. If true, the proper command
// line switch to enable SwiftShader will be appended to 'command_line'.
GPU_CONFIG_EXPORT bool EnableSwiftShaderIfNeeded(
base::CommandLine* command_line,
const GpuFeatureInfo& gpu_feature_info,
bool disable_software_rasterizer,
bool blocklist_needs_more_info);
GPU_CONFIG_EXPORT IntelGpuSeriesType GetIntelGpuSeriesType(uint32_t vendor_id,
uint32_t device_id);
GPU_CONFIG_EXPORT std::string GetIntelGpuGeneration(uint32_t vendor_id,
uint32_t device_id);
// If multiple Intel GPUs are detected, this returns the latest generation.
GPU_CONFIG_EXPORT IntelGpuGeneration
GetIntelGpuGeneration(const GPUInfo& gpu_info);
// If this function is called in browser process (|in_browser_process| is set
// to true), don't collect total disk space (which may block) and D3D related
// info.
GPU_CONFIG_EXPORT void CollectDevicePerfInfo(DevicePerfInfo* device_perf_info,
bool in_browser_process);
GPU_CONFIG_EXPORT void RecordDevicePerfInfoHistograms();
// In a multi-gpu device, record the discrete gpu device id.
// Currently only record for AMD/Nvidia GPUs.
GPU_CONFIG_EXPORT void RecordDiscreteGpuHistograms(const GPUInfo& gpu_info);
#if BUILDFLAG(IS_WIN)
GPU_CONFIG_EXPORT std::string DirectMLFeatureLevelToString(
uint32_t directml_feature_level);
GPU_CONFIG_EXPORT std::string D3DFeatureLevelToString(
uint32_t d3d_feature_level);
GPU_CONFIG_EXPORT std::string VulkanVersionToString(uint32_t vulkan_version);
#endif // BUILDFLAG(IS_WIN)
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC)
GPU_CONFIG_EXPORT void TrySetNonSoftwareDevicePreferenceForTesting(
gl::GpuPreference gpu_preference);
#endif
} // namespace gpu
#endif // GPU_CONFIG_GPU_UTIL_H_
|