2019-04-17 21:10:04 +00:00
|
|
|
// Copyright (c) 2019 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/osr/osr_host_display_client.h"
|
2019-04-17 21:10:04 +00:00
|
|
|
|
|
|
|
#include <utility>
|
|
|
|
|
2019-05-01 00:18:22 +00:00
|
|
|
#include "base/memory/shared_memory.h"
|
2019-04-17 21:10:04 +00:00
|
|
|
#include "components/viz/common/resources/resource_format.h"
|
|
|
|
#include "components/viz/common/resources/resource_sizes.h"
|
|
|
|
#include "mojo/public/cpp/system/platform_handle.h"
|
|
|
|
#include "skia/ext/platform_canvas.h"
|
|
|
|
#include "third_party/skia/include/core/SkColor.h"
|
|
|
|
#include "third_party/skia/include/core/SkRect.h"
|
|
|
|
#include "third_party/skia/src/core/SkDevice.h"
|
|
|
|
#include "ui/gfx/skia_util.h"
|
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
#include "skia/ext/skia_utils_win.h"
|
|
|
|
#endif
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2019-04-17 21:10:04 +00:00
|
|
|
|
|
|
|
LayeredWindowUpdater::LayeredWindowUpdater(
|
|
|
|
viz::mojom::LayeredWindowUpdaterRequest request,
|
|
|
|
OnPaintCallback callback)
|
|
|
|
: callback_(callback), binding_(this, std::move(request)) {}
|
|
|
|
|
|
|
|
LayeredWindowUpdater::~LayeredWindowUpdater() = default;
|
|
|
|
|
|
|
|
void LayeredWindowUpdater::SetActive(bool active) {
|
|
|
|
active_ = active;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LayeredWindowUpdater::OnAllocatedSharedMemory(
|
|
|
|
const gfx::Size& pixel_size,
|
2019-07-03 01:22:09 +00:00
|
|
|
base::UnsafeSharedMemoryRegion region) {
|
2019-04-17 21:10:04 +00:00
|
|
|
canvas_.reset();
|
|
|
|
|
2019-07-03 01:22:09 +00:00
|
|
|
if (!region.IsValid())
|
|
|
|
return;
|
|
|
|
|
2019-04-17 21:10:04 +00:00
|
|
|
// Make sure |pixel_size| is sane.
|
|
|
|
size_t expected_bytes;
|
|
|
|
bool size_result = viz::ResourceSizes::MaybeSizeInBytes(
|
|
|
|
pixel_size, viz::ResourceFormat::RGBA_8888, &expected_bytes);
|
|
|
|
if (!size_result)
|
|
|
|
return;
|
|
|
|
|
|
|
|
#if defined(WIN32)
|
|
|
|
canvas_ = skia::CreatePlatformCanvasWithSharedSection(
|
2019-07-03 01:22:09 +00:00
|
|
|
pixel_size.width(), pixel_size.height(), false,
|
|
|
|
region.GetPlatformHandle(), skia::CRASH_ON_FAILURE);
|
2019-04-17 21:10:04 +00:00
|
|
|
#else
|
2019-07-03 01:22:09 +00:00
|
|
|
shm_mapping_ = region.Map();
|
2019-04-17 21:10:04 +00:00
|
|
|
if (!shm_mapping_.IsValid()) {
|
|
|
|
DLOG(ERROR) << "Failed to map shared memory region";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
canvas_ = skia::CreatePlatformCanvasWithPixels(
|
|
|
|
pixel_size.width(), pixel_size.height(), false,
|
|
|
|
static_cast<uint8_t*>(shm_mapping_.memory()), skia::CRASH_ON_FAILURE);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void LayeredWindowUpdater::Draw(const gfx::Rect& damage_rect,
|
|
|
|
DrawCallback draw_callback) {
|
|
|
|
SkPixmap pixmap;
|
|
|
|
SkBitmap bitmap;
|
|
|
|
|
|
|
|
if (active_ && canvas_->peekPixels(&pixmap)) {
|
|
|
|
bitmap.installPixels(pixmap);
|
|
|
|
callback_.Run(damage_rect, bitmap);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::move(draw_callback).Run();
|
|
|
|
}
|
|
|
|
|
|
|
|
OffScreenHostDisplayClient::OffScreenHostDisplayClient(
|
|
|
|
gfx::AcceleratedWidget widget,
|
|
|
|
OnPaintCallback callback)
|
|
|
|
: viz::HostDisplayClient(widget), callback_(callback) {}
|
|
|
|
OffScreenHostDisplayClient::~OffScreenHostDisplayClient() {}
|
|
|
|
|
|
|
|
void OffScreenHostDisplayClient::SetActive(bool active) {
|
|
|
|
active_ = active;
|
|
|
|
if (layered_window_updater_) {
|
|
|
|
layered_window_updater_->SetActive(active_);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void OffScreenHostDisplayClient::IsOffscreen(IsOffscreenCallback callback) {
|
|
|
|
std::move(callback).Run(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OffScreenHostDisplayClient::CreateLayeredWindowUpdater(
|
|
|
|
viz::mojom::LayeredWindowUpdaterRequest request) {
|
|
|
|
layered_window_updater_ =
|
|
|
|
std::make_unique<LayeredWindowUpdater>(std::move(request), callback_);
|
|
|
|
layered_window_updater_->SetActive(active_);
|
|
|
|
}
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|