forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathone_copy_raster_buffer_provider.h
176 lines (152 loc) · 6.7 KB
/
one_copy_raster_buffer_provider.h
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_RASTER_ONE_COPY_RASTER_BUFFER_PROVIDER_H_
#define CC_RASTER_ONE_COPY_RASTER_BUFFER_PROVIDER_H_
#include <stdint.h>
#include <memory>
#include <vector>
#include "base/memory/raw_ptr.h"
#include "base/task/sequenced_task_runner.h"
#include "cc/raster/raster_buffer_provider.h"
#include "cc/raster/staging_buffer_pool.h"
#include "components/viz/client/client_resource_provider.h"
#include "gpu/command_buffer/common/sync_token.h"
namespace base {
class WaitableEvent;
}
namespace gpu {
class GpuMemoryBufferManager;
}
namespace viz {
class ContextProvider;
class RasterContextProvider;
} // namespace viz
namespace cc {
struct StagingBuffer;
class StagingBufferPool;
class CC_EXPORT OneCopyRasterBufferProvider : public RasterBufferProvider {
public:
OneCopyRasterBufferProvider(
scoped_refptr<base::SequencedTaskRunner> task_runner,
viz::ContextProvider* compositor_context_provider,
viz::RasterContextProvider* worker_context_provider,
gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager,
int max_copy_texture_chromium_size,
bool use_partial_raster,
bool use_gpu_memory_buffer_resources,
int max_staging_buffer_usage_in_bytes,
viz::ResourceFormat tile_format);
OneCopyRasterBufferProvider(const OneCopyRasterBufferProvider&) = delete;
~OneCopyRasterBufferProvider() override;
OneCopyRasterBufferProvider& operator=(const OneCopyRasterBufferProvider&) =
delete;
// Overridden from RasterBufferProvider:
std::unique_ptr<RasterBuffer> AcquireBufferForRaster(
const ResourcePool::InUsePoolResource& resource,
uint64_t resource_content_id,
uint64_t previous_content_id,
bool depends_on_at_raster_decodes,
bool depends_on_hardware_accelerated_jpeg_candidates,
bool depends_on_hardware_accelerated_webp_candidates) override;
void Flush() override;
viz::ResourceFormat GetResourceFormat() const override;
bool IsResourcePremultiplied() const override;
bool CanPartialRasterIntoProvidedResource() const override;
bool IsResourceReadyToDraw(
const ResourcePool::InUsePoolResource& resource) const override;
uint64_t SetReadyToDrawCallback(
const std::vector<const ResourcePool::InUsePoolResource*>& resources,
base::OnceClosure callback,
uint64_t pending_callback_id) const override;
void SetShutdownEvent(base::WaitableEvent* shutdown_event) override;
void Shutdown() override;
// Playback raster source and copy result into |resource|.
gpu::SyncToken PlaybackAndCopyOnWorkerThread(
gpu::Mailbox* mailbox,
GLenum mailbox_texture_target,
bool mailbox_texture_is_overlay_candidate,
const gpu::SyncToken& sync_token,
const RasterSource* raster_source,
const gfx::Rect& raster_full_rect,
const gfx::Rect& raster_dirty_rect,
const gfx::AxisTransform2d& transform,
const gfx::Size& resource_size,
viz::ResourceFormat resource_format,
const gfx::ColorSpace& color_space,
const RasterSource::PlaybackSettings& playback_settings,
uint64_t previous_content_id,
uint64_t new_content_id);
private:
class OneCopyGpuBacking;
class RasterBufferImpl : public RasterBuffer {
public:
RasterBufferImpl(OneCopyRasterBufferProvider* client,
gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager,
const ResourcePool::InUsePoolResource& in_use_resource,
OneCopyGpuBacking* backing,
uint64_t previous_content_id);
RasterBufferImpl(const RasterBufferImpl&) = delete;
~RasterBufferImpl() override;
RasterBufferImpl& operator=(const RasterBufferImpl&) = delete;
// Overridden from RasterBuffer:
void Playback(const RasterSource* raster_source,
const gfx::Rect& raster_full_rect,
const gfx::Rect& raster_dirty_rect,
uint64_t new_content_id,
const gfx::AxisTransform2d& transform,
const RasterSource::PlaybackSettings& playback_settings,
const GURL& url) override;
bool SupportsBackgroundThreadPriority() const override;
private:
// These fields may only be used on the compositor thread.
const raw_ptr<OneCopyRasterBufferProvider> client_;
raw_ptr<OneCopyGpuBacking> backing_;
// These fields are for use on the worker thread.
const gfx::Size resource_size_;
const viz::ResourceFormat resource_format_;
const gfx::ColorSpace color_space_;
const uint64_t previous_content_id_;
const gpu::SyncToken before_raster_sync_token_;
gpu::Mailbox mailbox_;
const GLenum mailbox_texture_target_;
const bool mailbox_texture_is_overlay_candidate_;
// A SyncToken to be returned from the worker thread, and waited on before
// using the rastered resource.
gpu::SyncToken after_raster_sync_token_;
};
void PlaybackToStagingBuffer(
StagingBuffer* staging_buffer,
const RasterSource* raster_source,
const gfx::Rect& raster_full_rect,
const gfx::Rect& raster_dirty_rect,
const gfx::AxisTransform2d& transform,
viz::ResourceFormat format,
const gfx::ColorSpace& dst_color_space,
const RasterSource::PlaybackSettings& playback_settings,
uint64_t previous_content_id,
uint64_t new_content_id);
gpu::SyncToken CopyOnWorkerThread(StagingBuffer* staging_buffer,
const RasterSource* raster_source,
const gfx::Rect& rect_to_copy,
viz::ResourceFormat resource_format,
const gfx::Size& resource_size,
gpu::Mailbox* mailbox,
GLenum mailbox_texture_target,
bool mailbox_texture_is_overlay_candidate,
const gpu::SyncToken& sync_token,
const gfx::ColorSpace& color_space);
const raw_ptr<viz::ContextProvider> compositor_context_provider_;
const raw_ptr<viz::RasterContextProvider> worker_context_provider_;
const raw_ptr<gpu::GpuMemoryBufferManager> gpu_memory_buffer_manager_;
raw_ptr<base::WaitableEvent> shutdown_event_ = nullptr;
const int max_bytes_per_copy_operation_;
const bool use_partial_raster_;
const bool use_gpu_memory_buffer_resources_;
// Context lock must be acquired when accessing this member.
int bytes_scheduled_since_last_flush_;
const viz::ResourceFormat tile_format_;
StagingBufferPool staging_pool_;
};
} // namespace cc
#endif // CC_RASTER_ONE_COPY_RASTER_BUFFER_PROVIDER_H_