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 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/platform/graphics/accelerated_static_bitmap_image.h"
#include <memory>
#include <utility>
#include "base/task/single_thread_task_runner.h"
#include "components/viz/common/resources/release_callback.h"
#include "components/viz/common/resources/shared_image_format_utils.h"
#include "gpu/GLES2/gl2extchromium.h"
#include "gpu/command_buffer/client/gles2_interface.h"
#include "gpu/command_buffer/client/raster_interface.h"
#include "gpu/command_buffer/client/shared_image_interface.h"
#include "gpu/command_buffer/common/capabilities.h"
#include "gpu/command_buffer/common/shared_image_usage.h"
#include "gpu/command_buffer/common/sync_token.h"
#include "third_party/blink/public/platform/platform.h"
#include "third_party/blink/public/platform/web_graphics_context_3d_provider.h"
#include "third_party/blink/renderer/platform/graphics/canvas_resource_provider.h"
#include "third_party/blink/renderer/platform/graphics/gpu/shared_gpu_context.h"
#include "third_party/blink/renderer/platform/graphics/graphics_context.h"
#include "third_party/blink/renderer/platform/graphics/mailbox_ref.h"
#include "third_party/blink/renderer/platform/graphics/mailbox_texture_backing.h"
#include "third_party/blink/renderer/platform/graphics/skia/skia_utils.h"
#include "third_party/blink/renderer/platform/graphics/unaccelerated_static_bitmap_image.h"
#include "third_party/blink/renderer/platform/scheduler/public/thread_scheduler.h"
#include "third_party/blink/renderer/platform/wtf/functional.h"
#include "third_party/skia/include/core/SkBlendMode.h"
#include "third_party/skia/include/core/SkColorSpace.h"
#include "third_party/skia/include/core/SkColorType.h"
#include "third_party/skia/include/core/SkImage.h"
#include "third_party/skia/include/core/SkSamplingOptions.h"
#include "third_party/skia/include/gpu/ganesh/GrBackendSurface.h"
#include "third_party/skia/include/gpu/ganesh/GrDirectContext.h"
#include "third_party/skia/include/gpu/ganesh/GrTypes.h"
#include "third_party/skia/include/gpu/ganesh/SkImageGanesh.h"
#include "third_party/skia/include/gpu/ganesh/gl/GrGLBackendSurface.h"
#include "third_party/skia/include/gpu/ganesh/gl/GrGLTypes.h"
namespace blink {
// static
void AcceleratedStaticBitmapImage::ReleaseTexture(void* ctx) {
auto* release_ctx = static_cast<ReleaseContext*>(ctx);
if (release_ctx->context_provider_wrapper) {
if (release_ctx->texture_id) {
auto* ri = release_ctx->context_provider_wrapper->ContextProvider()
.RasterInterface();
ri->EndSharedImageAccessDirectCHROMIUM(release_ctx->texture_id);
ri->DeleteGpuRasterTexture(release_ctx->texture_id);
}
}
delete release_ctx;
}
// static
scoped_refptr<AcceleratedStaticBitmapImage>
AcceleratedStaticBitmapImage::CreateFromCanvasSharedImage(
scoped_refptr<gpu::ClientSharedImage> shared_image,
const gpu::SyncToken& sync_token,
GLuint shared_image_texture_id,
const gfx::Size& size,
viz::SharedImageFormat format,
SkAlphaType alpha_type,
const gfx::ColorSpace& color_space,
base::WeakPtr<WebGraphicsContext3DProviderWrapper> context_provider_wrapper,
base::PlatformThreadRef context_thread_ref,
scoped_refptr<base::SingleThreadTaskRunner> context_task_runner,
viz::ReleaseCallback release_callback) {
return base::AdoptRef(new AcceleratedStaticBitmapImage(
std::move(shared_image), sync_token, shared_image_texture_id, size,
format, alpha_type, color_space, ImageOrientationEnum::kDefault,
std::move(context_provider_wrapper), context_thread_ref,
std::move(context_task_runner), std::move(release_callback)));
}
// static
scoped_refptr<AcceleratedStaticBitmapImage>
AcceleratedStaticBitmapImage::CreateFromExternalSharedImage(
gpu::ExportedSharedImage exported_shared_image,
const gpu::SyncToken& sync_token,
const gfx::Size& size,
viz::SharedImageFormat format,
SkAlphaType alpha_type,
const gfx::ColorSpace& color_space,
base::OnceCallback<void(const gpu::SyncToken&)> external_callback) {
auto shared_gpu_context = blink::SharedGpuContext::ContextProviderWrapper();
if (!shared_gpu_context) {
return nullptr;
}
auto* sii = shared_gpu_context->ContextProvider().SharedImageInterface();
if (!sii) {
return nullptr;
}
scoped_refptr<gpu::ClientSharedImage> shared_image =
sii->ImportSharedImage(std::move(exported_shared_image));
auto release_token = sii->GenVerifiedSyncToken();
// No need to keep the original image after the new reference has been added.
// Need to update the sync token, however.
std::move(external_callback).Run(release_token);
auto release_callback = WTF::BindOnce(
[](base::WeakPtr<WebGraphicsContext3DProviderWrapper> context_provider,
scoped_refptr<gpu::ClientSharedImage> shared_image,
const gpu::SyncToken& sync_token, bool is_lost) {
if (is_lost || !context_provider) {
return;
}
shared_image->UpdateDestructionSyncToken(sync_token);
},
shared_gpu_context, shared_image);
return base::AdoptRef(new AcceleratedStaticBitmapImage(
std::move(shared_image), sync_token, 0u, size, format, alpha_type,
color_space, ImageOrientationEnum::kDefault, shared_gpu_context,
base::PlatformThreadRef(),
ThreadScheduler::Current()->CleanupTaskRunner(),
std::move(release_callback)));
}
AcceleratedStaticBitmapImage::AcceleratedStaticBitmapImage(
scoped_refptr<gpu::ClientSharedImage> shared_image,
const gpu::SyncToken& sync_token,
GLuint shared_image_texture_id,
const gfx::Size& size,
viz::SharedImageFormat format,
SkAlphaType alpha_type,
const gfx::ColorSpace& color_space,
const ImageOrientation& orientation,
base::WeakPtr<WebGraphicsContext3DProviderWrapper> context_provider_wrapper,
base::PlatformThreadRef context_thread_ref,
scoped_refptr<base::SingleThreadTaskRunner> context_task_runner,
viz::ReleaseCallback release_callback)
: StaticBitmapImage(orientation),
shared_image_(std::move(shared_image)),
size_(size),
format_(format),
alpha_type_(alpha_type),
color_space_(color_space),
context_provider_wrapper_(std::move(context_provider_wrapper)),
mailbox_ref_(
base::MakeRefCounted<MailboxRef>(sync_token,
context_thread_ref,
std::move(context_task_runner),
std::move(release_callback))),
paint_image_content_id_(cc::PaintImage::GetNextContentId()) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
if (shared_image_texture_id)
InitializeTextureBacking(shared_image_texture_id);
}
AcceleratedStaticBitmapImage::~AcceleratedStaticBitmapImage() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
}
scoped_refptr<StaticBitmapImage>
AcceleratedStaticBitmapImage::MakeUnaccelerated() {
CreateImageFromMailboxIfNeeded();
return UnacceleratedStaticBitmapImage::Create(
PaintImageForCurrentFrame().GetSwSkImage(), orientation_);
}
bool AcceleratedStaticBitmapImage::CopyToTexture(
gpu::gles2::GLES2Interface* dest_gl,
GLenum dest_target,
GLuint dest_texture_id,
GLint dest_level,
SkAlphaType dest_alpha_type,
GrSurfaceOrigin destination_origin,
const gfx::Point& dest_point,
const gfx::Rect& src_rect) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
if (!IsValid())
return false;
// This method should only be used for cross-context copying, otherwise it's
// wasting overhead.
DCHECK(mailbox_ref_->is_cross_thread() ||
dest_gl != ContextProvider()->ContextGL());
// Create a texture that |destProvider| knows about and copy from it.
auto source_si_texture = shared_image_->CreateGLTexture(dest_gl);
auto source_scoped_si_access = source_si_texture->BeginAccess(
mailbox_ref_->sync_token(), /*readonly=*/true);
const bool do_alpha_multiply = GetAlphaType() == kUnpremul_SkAlphaType &&
dest_alpha_type == kPremul_SkAlphaType;
const bool do_alpha_unmultiply = GetAlphaType() == kPremul_SkAlphaType &&
dest_alpha_type == kUnpremul_SkAlphaType;
// `src_rect` here is always in top-left coordinate space, but
// CopySubTextureCHROMIUM source rect is in texture coordinate space, so we
// need to adjust.
auto source_sub_rectangle = src_rect;
if (shared_image_->surface_origin() == kBottomLeft_GrSurfaceOrigin) {
source_sub_rectangle.set_y(Size().height() - source_sub_rectangle.bottom());
}
// If source origin doesn't match destination, we need to flip.
bool unpack_flip_y = shared_image_->surface_origin() != destination_origin;
dest_gl->CopySubTextureCHROMIUM(
source_scoped_si_access->texture_id(), 0, dest_target, dest_texture_id,
dest_level, dest_point.x(), dest_point.y(), source_sub_rectangle.x(),
source_sub_rectangle.y(), source_sub_rectangle.width(),
source_sub_rectangle.height(), unpack_flip_y,
do_alpha_multiply ? GL_TRUE : GL_FALSE,
do_alpha_unmultiply ? GL_TRUE : GL_FALSE);
auto sync_token = gpu::SharedImageTexture::ScopedAccess::EndAccess(
std::move(source_scoped_si_access));
// We need to update the texture holder's sync token to ensure that when this
// mailbox is recycled or deleted, it is done after the copy operation above.
mailbox_ref_->set_sync_token(sync_token);
return true;
}
bool AcceleratedStaticBitmapImage::CopyToResourceProvider(
CanvasResourceProvider* resource_provider,
const gfx::Rect& copy_rect) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(resource_provider);
if (!IsValid())
return false;
const gpu::SyncToken& ready_sync_token = mailbox_ref_->sync_token();
gpu::SyncToken completion_sync_token;
if (!resource_provider->OverwriteImage(
shared_image_, copy_rect, ready_sync_token, completion_sync_token)) {
return false;
}
// We need to update the texture holder's sync token to ensure that when this
// mailbox is recycled or deleted, it is done after the copy operation above.
mailbox_ref_->set_sync_token(completion_sync_token);
return true;
}
PaintImage AcceleratedStaticBitmapImage::PaintImageForCurrentFrame() {
// TODO(ccameron): This function should not ignore |colorBehavior|.
// https://crbug.com/672306
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
if (!IsValid())
return PaintImage();
CreateImageFromMailboxIfNeeded();
return CreatePaintImageBuilder()
.set_texture_backing(texture_backing_, paint_image_content_id_)
.set_completion_state(PaintImage::CompletionState::kDone)
.TakePaintImage();
}
void AcceleratedStaticBitmapImage::Draw(cc::PaintCanvas* canvas,
const cc::PaintFlags& flags,
const gfx::RectF& dst_rect,
const gfx::RectF& src_rect,
const ImageDrawOptions& draw_options) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
auto paint_image = PaintImageForCurrentFrame();
if (!paint_image)
return;
auto paint_image_decoding_mode =
ToPaintImageDecodingMode(draw_options.decode_mode);
if (paint_image.decoding_mode() != paint_image_decoding_mode ||
paint_image.may_be_lcp_candidate() != draw_options.may_be_lcp_candidate) {
paint_image =
PaintImageBuilder::WithCopy(std::move(paint_image))
.set_decoding_mode(paint_image_decoding_mode)
.set_may_be_lcp_candidate(draw_options.may_be_lcp_candidate)
.TakePaintImage();
}
StaticBitmapImage::DrawHelper(canvas, flags, dst_rect, src_rect, draw_options,
paint_image);
}
bool AcceleratedStaticBitmapImage::IsValid() const {
if (texture_backing_ && !skia_context_provider_wrapper_)
return false;
if (mailbox_ref_->is_cross_thread()) {
// If context is is from another thread, validity cannot be verified. Just
// assume valid. Potential problem will be detected later.
return true;
}
return !!context_provider_wrapper_;
}
WebGraphicsContext3DProvider* AcceleratedStaticBitmapImage::ContextProvider()
const {
auto context = ContextProviderWrapper();
return context ? &(context->ContextProvider()) : nullptr;
}
base::WeakPtr<WebGraphicsContext3DProviderWrapper>
AcceleratedStaticBitmapImage::ContextProviderWrapper() const {
return texture_backing_ ? skia_context_provider_wrapper_
: context_provider_wrapper_;
}
void AcceleratedStaticBitmapImage::CreateImageFromMailboxIfNeeded() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
if (texture_backing_)
return;
InitializeTextureBacking(0u);
}
void AcceleratedStaticBitmapImage::InitializeTextureBacking(
GLuint shared_image_texture_id) {
DCHECK(!shared_image_texture_id || !mailbox_ref_->is_cross_thread());
auto context_provider_wrapper = SharedGpuContext::ContextProviderWrapper();
if (!context_provider_wrapper)
return;
gpu::raster::RasterInterface* shared_ri =
context_provider_wrapper->ContextProvider().RasterInterface();
shared_ri->WaitSyncTokenCHROMIUM(mailbox_ref_->sync_token().GetConstData());
const auto& capabilities =
context_provider_wrapper->ContextProvider().GetCapabilities();
if (capabilities.gpu_rasterization) {
DCHECK_EQ(shared_image_texture_id, 0u);
skia_context_provider_wrapper_ = context_provider_wrapper;
texture_backing_ = sk_make_sp<MailboxTextureBacking>(
shared_image_->mailbox(), mailbox_ref_, GetSize(),
GetSharedImageFormat(), GetAlphaType(), GetColorSpace(),
std::move(context_provider_wrapper));
return;
}
GrDirectContext* shared_gr_context =
context_provider_wrapper->ContextProvider().GetGrContext();
DCHECK(shared_ri &&
shared_gr_context); // context isValid already checked in callers
GLuint shared_context_texture_id = 0u;
bool should_delete_texture_on_release = true;
if (shared_image_texture_id) {
shared_context_texture_id = shared_image_texture_id;
should_delete_texture_on_release = false;
} else {
shared_context_texture_id =
shared_ri->CreateAndConsumeForGpuRaster(shared_image_->mailbox());
shared_ri->BeginSharedImageAccessDirectCHROMIUM(
shared_context_texture_id, GL_SHARED_IMAGE_ACCESS_MODE_READ_CHROMIUM);
}
GrGLTextureInfo texture_info;
texture_info.fTarget = shared_image_->GetTextureTarget();
texture_info.fID = shared_context_texture_id;
texture_info.fFormat =
context_provider_wrapper->ContextProvider().GetGrGLTextureFormat(
GetSharedImageFormat());
auto backend_texture =
GrBackendTextures::MakeGL(GetSize().width(), GetSize().height(),
skgpu::Mipmapped::kNo, texture_info);
GrSurfaceOrigin origin = shared_image_->surface_origin();
auto* release_ctx = new ReleaseContext;
release_ctx->mailbox_ref = mailbox_ref_;
if (should_delete_texture_on_release)
release_ctx->texture_id = shared_context_texture_id;
release_ctx->context_provider_wrapper = context_provider_wrapper;
sk_sp<SkImage> sk_image = SkImages::BorrowTextureFrom(
shared_gr_context, backend_texture, origin,
ToClosestSkColorType(GetSharedImageFormat()), GetAlphaType(),
GetColorSpace().ToSkColorSpace(), &ReleaseTexture, release_ctx);
if (sk_image) {
skia_context_provider_wrapper_ = context_provider_wrapper;
texture_backing_ = sk_make_sp<MailboxTextureBacking>(
std::move(sk_image), mailbox_ref_, GetSize(), GetSharedImageFormat(),
GetAlphaType(), GetColorSpace(), std::move(context_provider_wrapper));
}
}
void AcceleratedStaticBitmapImage::EnsureSyncTokenVerified() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
if (mailbox_ref_->verified_flush())
return;
// If the original context was created on a different thread, we need to
// fallback to using the shared GPU context.
auto context_provider_wrapper =
mailbox_ref_->is_cross_thread()
? SharedGpuContext::ContextProviderWrapper()
: ContextProviderWrapper();
if (!context_provider_wrapper)
return;
auto sync_token = mailbox_ref_->sync_token();
int8_t* token_data = sync_token.GetData();
ContextProvider()->InterfaceBase()->VerifySyncTokensCHROMIUM(&token_data, 1);
sync_token.SetVerifyFlush();
mailbox_ref_->set_sync_token(sync_token);
}
gpu::MailboxHolder AcceleratedStaticBitmapImage::GetMailboxHolder() const {
if (!IsValid()) {
return gpu::MailboxHolder();
}
return gpu::MailboxHolder(shared_image_->mailbox(),
mailbox_ref_->sync_token(),
shared_image_->GetTextureTarget());
}
scoped_refptr<gpu::ClientSharedImage>
AcceleratedStaticBitmapImage::GetSharedImage() const {
if (!IsValid()) {
return nullptr;
}
return shared_image_;
}
gpu::SyncToken AcceleratedStaticBitmapImage::GetSyncToken() const {
if (!IsValid()) {
return gpu::SyncToken();
}
return mailbox_ref_->sync_token();
}
void AcceleratedStaticBitmapImage::Transfer() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
// SkImage is bound to the current thread so is no longer valid to use
// cross-thread.
texture_backing_.reset();
DETACH_FROM_THREAD(thread_checker_);
}
bool AcceleratedStaticBitmapImage::IsOpaque() {
return SkAlphaTypeIsOpaque(GetAlphaType()) ||
!GetSharedImageFormat().HasAlpha();
}
} // namespace blink
|