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
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/ozone/demo/skia/skia_surfaceless_gl_renderer.h"
#include <stddef.h>
#include <memory>
#include <utility>
#include "base/command_line.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/trace_event/trace_event.h"
#include "third_party/skia/include/core/SkCanvas.h"
#include "third_party/skia/include/core/SkTypeface.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/SkSurfaceGanesh.h"
#include "third_party/skia/include/gpu/ganesh/gl/GrGLAssembleInterface.h"
#include "third_party/skia/include/gpu/ganesh/gl/GrGLBackendSurface.h"
#include "third_party/skia/include/gpu/ganesh/gl/GrGLInterface.h"
#include "third_party/skia/include/private/chromium/GrDeferredDisplayList.h"
#include "ui/display/types/display_snapshot.h"
#include "ui/gfx/geometry/rect_conversions.h"
#include "ui/gfx/geometry/rrect_f.h"
#include "ui/gfx/gpu_fence.h"
#include "ui/gfx/native_pixmap.h"
#include "ui/gfx/overlay_plane_data.h"
#include "ui/gl/gl_bindings.h"
#include "ui/gl/gl_context.h"
#include "ui/gl/gl_surface.h"
#include "ui/ozone/public/native_pixmap_gl_binding.h"
#include "ui/ozone/public/overlay_candidates_ozone.h"
#include "ui/ozone/public/overlay_manager_ozone.h"
#include "ui/ozone/public/ozone_platform.h"
#include "ui/ozone/public/platform_window_surface.h"
#include "ui/ozone/public/surface_factory_ozone.h"
namespace ui {
namespace {
const char kPartialPrimaryPlane[] = "partial-primary-plane";
const char kEnableOverlay[] = "enable-overlay";
const char kDisablePrimaryPlane[] = "disable-primary-plane";
OverlaySurfaceCandidate MakeOverlayCandidate(int z_order,
gfx::Rect bounds_rect,
gfx::RectF crop_rect) {
// The overlay checking interface is designed to satisfy the needs of CC which
// will be producing RectF target rectangles. But we use the bounds produced
// in RenderFrame for GLSurface::ScheduleOverlayPlane.
gfx::RectF display_rect(bounds_rect.x(), bounds_rect.y(), bounds_rect.width(),
bounds_rect.height());
OverlaySurfaceCandidate overlay_candidate;
// Use default display format since this should be compatible with most
// devices.
overlay_candidate.format = display::DisplaySnapshot::PrimaryFormat();
// The bounds rectangle of the candidate overlay buffer.
overlay_candidate.buffer_size = bounds_rect.size();
// The same rectangle in floating point coordinates.
overlay_candidate.display_rect = display_rect;
overlay_candidate.crop_rect = crop_rect;
// The demo overlay instance is always ontop and not clipped. Clipped quads
// cannot be placed in overlays.
return overlay_candidate;
}
} // namespace
class SurfacelessSkiaGlRenderer::BufferWrapper {
public:
BufferWrapper();
~BufferWrapper();
scoped_refptr<gfx::NativePixmap> image() const { return pixmap_; }
SkSurface* sk_surface() const { return sk_surface_.get(); }
bool Initialize(GrDirectContext* gr_context,
gfx::AcceleratedWidget widget,
const gfx::Size& size);
void BindFramebuffer();
const gfx::Size size() const { return size_; }
private:
gfx::AcceleratedWidget widget_ = gfx::kNullAcceleratedWidget;
gfx::Size size_;
scoped_refptr<gfx::NativePixmap> pixmap_;
std::unique_ptr<NativePixmapGLBinding> pixmap_gl_binding_;
unsigned int gl_tex_ = 0;
sk_sp<SkSurface> sk_surface_;
};
SurfacelessSkiaGlRenderer::BufferWrapper::BufferWrapper() = default;
SurfacelessSkiaGlRenderer::BufferWrapper::~BufferWrapper() {
if (gl_tex_) {
glDeleteTextures(1, &gl_tex_);
}
}
bool SurfacelessSkiaGlRenderer::BufferWrapper::Initialize(
GrDirectContext* gr_context,
gfx::AcceleratedWidget widget,
const gfx::Size& size) {
glGenTextures(1, &gl_tex_);
gfx::BufferFormat format = display::DisplaySnapshot::PrimaryFormat();
pixmap_ = OzonePlatform::GetInstance()
->GetSurfaceFactoryOzone()
->CreateNativePixmap(widget, nullptr, size, format,
gfx::BufferUsage::SCANOUT);
pixmap_gl_binding_ =
OzonePlatform::GetInstance()
->GetSurfaceFactoryOzone()
->GetCurrentGLOzone()
->ImportNativePixmap(pixmap_, format, gfx::BufferPlane::DEFAULT, size,
gfx::ColorSpace(), GL_TEXTURE_2D, gl_tex_);
if (!pixmap_gl_binding_) {
LOG(ERROR) << "Failed to create NativePixmapEGLBinding";
return false;
}
widget_ = widget;
size_ = size;
GrGLTextureInfo texture_info;
texture_info.fTarget = GL_TEXTURE_2D;
texture_info.fID = gl_tex_;
texture_info.fFormat = GL_BGRA8_EXT;
auto backend_texture = GrBackendTextures::MakeGL(
size_.width(), size_.height(), skgpu::Mipmapped::kNo, texture_info);
sk_surface_ = SkSurfaces::WrapBackendTexture(
gr_context, backend_texture, kTopLeft_GrSurfaceOrigin, 0,
kBGRA_8888_SkColorType, nullptr, nullptr);
if (!sk_surface_) {
LOG(ERROR) << "Failed to create skia surface";
return false;
}
return true;
}
SurfacelessSkiaGlRenderer::SurfacelessSkiaGlRenderer(
gfx::AcceleratedWidget widget,
std::unique_ptr<PlatformWindowSurface> window_surface,
const scoped_refptr<gl::GLSurface>& offscreen_surface,
const scoped_refptr<gl::Presenter>& presenter,
const gfx::Size& size)
: SkiaGlRenderer(widget,
std::move(window_surface),
std::move(offscreen_surface),
size),
overlay_checker_(ui::OzonePlatform::GetInstance()
->GetOverlayManager()
->CreateOverlayCandidates(widget)),
presenter_(presenter) {}
SurfacelessSkiaGlRenderer::~SurfacelessSkiaGlRenderer() {
// Need to make current when deleting the framebuffer resources allocated in
// the buffers.
gl_context_->MakeCurrent(gl_surface_.get());
}
bool SurfacelessSkiaGlRenderer::Initialize() {
if (!SkiaGlRenderer::Initialize())
return false;
presenter_->Resize(size_, 1.f, gfx::ColorSpace(), true);
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
if (command_line->HasSwitch(kPartialPrimaryPlane))
primary_plane_rect_ = gfx::Rect(200, 200, 800, 800);
else
primary_plane_rect_ = gfx::Rect(size_);
for (size_t i = 0; i < std::size(buffers_); ++i) {
buffers_[i] = std::make_unique<BufferWrapper>();
if (!buffers_[i]->Initialize(gr_context_.get(), widget_,
primary_plane_rect_.size()))
return false;
}
if (command_line->HasSwitch(kEnableOverlay)) {
gfx::Size overlay_size = gfx::Size(size_.width() / 8, size_.height() / 8);
for (size_t i = 0; i < std::size(overlay_buffer_); ++i) {
overlay_buffer_[i] = std::make_unique<BufferWrapper>();
overlay_buffer_[i]->Initialize(gr_context_.get(),
gfx::kNullAcceleratedWidget, overlay_size);
SkCanvas* sk_canvas = overlay_buffer_[i]->sk_surface()->getCanvas();
sk_canvas->clear(SkColorSetARGB(96, 255 * i, 255, 0));
}
}
disable_primary_plane_ = command_line->HasSwitch(kDisablePrimaryPlane);
return true;
}
void SurfacelessSkiaGlRenderer::RenderFrame() {
TRACE_EVENT0("ozone", "SurfacelessSkiaGlRenderer::RenderFrame");
float fraction = CurrentFraction();
gfx::Rect overlay_rect;
const gfx::RectF unity_rect = gfx::RectF(0, 0, 1, 1);
OverlayCandidatesOzone::OverlaySurfaceCandidateList overlay_list;
if (!disable_primary_plane_) {
overlay_list.push_back(
MakeOverlayCandidate(1, gfx::Rect(size_), unity_rect));
// We know at least the primary plane can be scanned out.
overlay_list.back().overlay_handled = true;
}
if (overlay_buffer_[0]) {
overlay_rect = gfx::Rect(overlay_buffer_[0]->size());
float steps_num = 5.0f;
float stepped_fraction =
std::floor((fraction + 0.5f / steps_num) * steps_num) / steps_num;
gfx::Vector2d offset(
stepped_fraction * (size_.width() - overlay_rect.width()),
(size_.height() - overlay_rect.height()) / 2);
overlay_rect += offset;
overlay_list.push_back(MakeOverlayCandidate(1, overlay_rect, unity_rect));
}
// The actual validation for a specific overlay configuration is done
// asynchronously and then cached inside overlay_checker_ once a reply
// is sent back.
// This means that the first few frames we call this method for a specific
// overlay_list, all the overlays but the primary plane, that we explicitly
// marked as handled, will be rejected even if they might be handled at a
// later time.
overlay_checker_->CheckOverlaySupport(&overlay_list);
gl_context_->MakeCurrent(gl_surface_.get());
SkSurface* sk_surface = buffers_[back_buffer_]->sk_surface();
if (use_ddl_) {
StartDDLRenderThreadIfNecessary(sk_surface);
skgpu::ganesh::DrawDDL(sk_surface, GetDDL());
} else {
Draw(sk_surface->getCanvas(), NextFraction());
}
gr_context_->flushAndSubmit();
glFinish();
if (!disable_primary_plane_) {
CHECK(overlay_list.front().overlay_handled);
presenter_->ScheduleOverlayPlane(
buffers_[back_buffer_]->image(), /* gpu_fence */ nullptr,
gfx::OverlayPlaneData(
0, gfx::OVERLAY_TRANSFORM_NONE, gfx::RectF(primary_plane_rect_),
unity_rect,
/* enable_blend */ true, gfx::Rect(buffers_[back_buffer_]->size()),
/* opacity */ 1.0f, gfx::OverlayPriorityHint::kNone,
/* rounded_corners */ gfx::RRectF(), gfx::ColorSpace::CreateSRGB(),
/*hdr_metadata=*/std::nullopt));
}
if (overlay_buffer_[0] && overlay_list.back().overlay_handled) {
presenter_->ScheduleOverlayPlane(
overlay_buffer_[back_buffer_]->image(), /* gpu_fence */ nullptr,
gfx::OverlayPlaneData(
1, gfx::OVERLAY_TRANSFORM_NONE, gfx::RectF(overlay_rect),
unity_rect,
/* enable_blend */ true, gfx::Rect(buffers_[back_buffer_]->size()),
/* opacity */ 1.0f, gfx::OverlayPriorityHint::kNone,
/* rounded_corners */ gfx::RRectF(), gfx::ColorSpace::CreateSRGB(),
/*hdr_metadata=*/std::nullopt));
}
back_buffer_ ^= 1;
presenter_->Present(
base::BindOnce(&SurfacelessSkiaGlRenderer::PostRenderFrameTask,
weak_ptr_factory_.GetWeakPtr()),
base::DoNothing(), gfx::FrameData());
}
void SurfacelessSkiaGlRenderer::PostRenderFrameTask(
gfx::SwapCompletionResult result) {
switch (result.swap_result) {
case gfx::SwapResult::SWAP_NAK_RECREATE_BUFFERS:
for (size_t i = 0; i < std::size(buffers_); ++i) {
buffers_[i] = std::make_unique<BufferWrapper>();
if (!buffers_[i]->Initialize(gr_context_.get(), widget_,
primary_plane_rect_.size()))
LOG(FATAL) << "Failed to recreate buffer";
}
[[fallthrough]]; // We want to render a new frame anyways.
case gfx::SwapResult::SWAP_ACK:
SkiaGlRenderer::PostRenderFrameTask(std::move(result));
break;
case gfx::SwapResult::SWAP_SKIPPED:
case gfx::SwapResult::SWAP_FAILED:
case gfx::SwapResult::SWAP_NON_SIMPLE_OVERLAYS_FAILED:
LOG(FATAL) << "Failed to swap buffers";
}
}
} // namespace ui
|