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
android_webview / browser / gfx / gpu_service_webview.h [blame]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ANDROID_WEBVIEW_BROWSER_GFX_GPU_SERVICE_WEBVIEW_H_
#define ANDROID_WEBVIEW_BROWSER_GFX_GPU_SERVICE_WEBVIEW_H_
#include <stddef.h>
#include <memory>
#include <utility>
#include "gpu/config/gpu_feature_info.h"
#include "gpu/config/gpu_info.h"
#include "gpu/config/gpu_preferences.h"
namespace gpu {
class Scheduler;
class SharedImageManager;
class SyncPointManager;
} // namespace gpu
namespace android_webview {
// This class acts like GpuServiceImpl for WebView. It owns gpu service objects
// and provides handle to these gpu objects for WebView. There is only one copy
// of this class in WebView.
//
// Lifetime: Singleton
class GpuServiceWebView {
public:
// This static function makes sure there is a single copy of this class.
static GpuServiceWebView* GetInstance();
~GpuServiceWebView();
// Disallow copy and assign.
GpuServiceWebView(const GpuServiceWebView&) = delete;
GpuServiceWebView& operator=(const GpuServiceWebView&) = delete;
gpu::SyncPointManager* sync_point_manager() const {
return sync_point_manager_.get();
}
gpu::SharedImageManager* shared_image_manager() const {
return shared_image_manager_.get();
}
gpu::Scheduler* scheduler() const { return scheduler_.get(); }
const gpu::GPUInfo& gpu_info() const { return gpu_info_; }
const gpu::GpuPreferences& gpu_preferences() const {
return gpu_preferences_;
}
const gpu::GpuFeatureInfo& gpu_feature_info() const {
return gpu_feature_info_;
}
private:
// This function initialize GL using current command line, and construct gpu
// service objects.
static GpuServiceWebView* CreateGpuServiceWebView();
GpuServiceWebView(
std::unique_ptr<gpu::SyncPointManager> sync_pointer_manager,
std::unique_ptr<gpu::SharedImageManager> shared_image_manager,
std::unique_ptr<gpu::Scheduler> scheduler,
const gpu::GPUInfo& gpu_info,
const gpu::GpuPreferences& gpu_preferences,
const gpu::GpuFeatureInfo& gpu_feature_info);
std::unique_ptr<gpu::SyncPointManager> sync_point_manager_;
std::unique_ptr<gpu::SharedImageManager> shared_image_manager_;
std::unique_ptr<gpu::Scheduler> scheduler_;
gpu::GPUInfo gpu_info_;
gpu::GpuPreferences gpu_preferences_;
gpu::GpuFeatureInfo gpu_feature_info_;
};
} // namespace android_webview
#endif // ANDROID_WEBVIEW_BROWSER_GFX_GPU_SERVICE_WEBVIEW_H_