2019-07-16 22:09:04 +02:00
|
|
|
diff --git components/viz/host/host_display_client.cc components/viz/host/host_display_client.cc
|
2020-02-10 18:10:17 +01:00
|
|
|
index 3547ee865c22..2215296ffadc 100644
|
2019-07-16 22:09:04 +02:00
|
|
|
--- components/viz/host/host_display_client.cc
|
|
|
|
+++ components/viz/host/host_display_client.cc
|
2020-02-10 18:10:17 +01:00
|
|
|
@@ -43,9 +43,14 @@ void HostDisplayClient::OnDisplayReceivedCALayerParams(
|
2019-07-16 22:09:04 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
-#if defined(OS_WIN)
|
|
|
|
+void HostDisplayClient::UseProxyOutputDevice(
|
|
|
|
+ UseProxyOutputDeviceCallback callback) {
|
|
|
|
+ std::move(callback).Run(false);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
void HostDisplayClient::CreateLayeredWindowUpdater(
|
2019-11-12 17:11:44 +01:00
|
|
|
mojo::PendingReceiver<mojom::LayeredWindowUpdater> receiver) {
|
|
|
|
+#if defined(OS_WIN)
|
2019-07-16 22:09:04 +02:00
|
|
|
if (!NeedsToUseLayerWindow(widget_)) {
|
|
|
|
DLOG(ERROR) << "HWND shouldn't be using a layered window";
|
|
|
|
return;
|
2020-02-10 18:10:17 +01:00
|
|
|
@@ -53,8 +58,8 @@ void HostDisplayClient::CreateLayeredWindowUpdater(
|
2019-07-16 22:09:04 +02:00
|
|
|
|
|
|
|
layered_window_updater_ =
|
2019-11-12 17:11:44 +01:00
|
|
|
std::make_unique<LayeredWindowUpdaterImpl>(widget_, std::move(receiver));
|
2019-07-16 22:09:04 +02:00
|
|
|
-}
|
|
|
|
#endif
|
|
|
|
+}
|
|
|
|
|
2019-11-12 17:11:44 +01:00
|
|
|
#if defined(OS_LINUX) && !defined(OS_CHROMEOS)
|
2019-07-16 22:09:04 +02:00
|
|
|
void HostDisplayClient::DidCompleteSwapWithNewSize(const gfx::Size& size) {
|
|
|
|
diff --git components/viz/host/host_display_client.h components/viz/host/host_display_client.h
|
2020-02-10 18:10:17 +01:00
|
|
|
index cedf833d2358..04456e045304 100644
|
2019-07-16 22:09:04 +02:00
|
|
|
--- components/viz/host/host_display_client.h
|
|
|
|
+++ components/viz/host/host_display_client.h
|
2020-02-10 18:10:17 +01:00
|
|
|
@@ -31,17 +31,17 @@ class VIZ_HOST_EXPORT HostDisplayClient : public mojom::DisplayClient {
|
|
|
|
mojo::PendingRemote<mojom::DisplayClient> GetBoundRemote(
|
2019-07-16 22:09:04 +02:00
|
|
|
scoped_refptr<base::SingleThreadTaskRunner> task_runner);
|
|
|
|
|
|
|
|
- private:
|
|
|
|
+ protected:
|
|
|
|
// mojom::DisplayClient implementation:
|
|
|
|
+ void UseProxyOutputDevice(UseProxyOutputDeviceCallback callback) override;
|
|
|
|
+
|
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
void OnDisplayReceivedCALayerParams(
|
|
|
|
const gfx::CALayerParams& ca_layer_params) override;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
-#if defined(OS_WIN)
|
|
|
|
void CreateLayeredWindowUpdater(
|
2019-11-12 17:11:44 +01:00
|
|
|
mojo::PendingReceiver<mojom::LayeredWindowUpdater> receiver) override;
|
2019-07-16 22:09:04 +02:00
|
|
|
-#endif
|
|
|
|
|
2019-11-12 17:11:44 +01:00
|
|
|
#if defined(OS_LINUX) && !defined(OS_CHROMEOS)
|
2019-07-16 22:09:04 +02:00
|
|
|
void DidCompleteSwapWithNewSize(const gfx::Size& size) override;
|
|
|
|
diff --git components/viz/host/layered_window_updater_impl.cc components/viz/host/layered_window_updater_impl.cc
|
2019-11-12 17:11:44 +01:00
|
|
|
index b04f654fe820..131977a36591 100644
|
2019-07-16 22:09:04 +02:00
|
|
|
--- components/viz/host/layered_window_updater_impl.cc
|
|
|
|
+++ components/viz/host/layered_window_updater_impl.cc
|
2019-11-12 17:11:44 +01:00
|
|
|
@@ -44,7 +44,7 @@ void LayeredWindowUpdaterImpl::OnAllocatedSharedMemory(
|
2019-09-04 17:13:32 +02:00
|
|
|
// |region|'s handle will close when it goes out of scope.
|
2019-07-16 22:09:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
-void LayeredWindowUpdaterImpl::Draw(DrawCallback draw_callback) {
|
|
|
|
+void LayeredWindowUpdaterImpl::Draw(const gfx::Rect& damage_rect, DrawCallback draw_callback) {
|
|
|
|
TRACE_EVENT0("viz", "LayeredWindowUpdaterImpl::Draw");
|
|
|
|
|
|
|
|
if (!canvas_) {
|
|
|
|
diff --git components/viz/host/layered_window_updater_impl.h components/viz/host/layered_window_updater_impl.h
|
2019-11-12 17:11:44 +01:00
|
|
|
index 1026b739d283..fe562ab60ce9 100644
|
2019-07-16 22:09:04 +02:00
|
|
|
--- components/viz/host/layered_window_updater_impl.h
|
|
|
|
+++ components/viz/host/layered_window_updater_impl.h
|
2019-11-12 17:11:44 +01:00
|
|
|
@@ -35,7 +35,7 @@ class VIZ_HOST_EXPORT LayeredWindowUpdaterImpl
|
2019-09-04 17:13:32 +02:00
|
|
|
// mojom::LayeredWindowUpdater implementation.
|
|
|
|
void OnAllocatedSharedMemory(const gfx::Size& pixel_size,
|
|
|
|
base::UnsafeSharedMemoryRegion region) override;
|
2019-07-16 22:09:04 +02:00
|
|
|
- void Draw(DrawCallback draw_callback) override;
|
|
|
|
+ void Draw(const gfx::Rect& damage_rect, DrawCallback draw_callback) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
const HWND hwnd_;
|
|
|
|
diff --git components/viz/service/BUILD.gn components/viz/service/BUILD.gn
|
2020-07-08 19:23:29 +02:00
|
|
|
index 7b6f69e3dcce..b04d7984d855 100644
|
2019-07-16 22:09:04 +02:00
|
|
|
--- components/viz/service/BUILD.gn
|
|
|
|
+++ components/viz/service/BUILD.gn
|
2020-03-04 01:29:39 +01:00
|
|
|
@@ -13,7 +13,10 @@ config("viz_service_implementation") {
|
|
|
|
}
|
2019-07-16 22:09:04 +02:00
|
|
|
|
|
|
|
viz_component("service") {
|
2020-03-04 01:29:39 +01:00
|
|
|
+ never_build_jumbo = true
|
2019-07-16 22:09:04 +02:00
|
|
|
sources = [
|
|
|
|
+ "//cef/libcef/browser/osr/software_output_device_proxy.cc",
|
|
|
|
+ "//cef/libcef/browser/osr/software_output_device_proxy.h",
|
|
|
|
"display/bsp_tree.cc",
|
|
|
|
"display/bsp_tree.h",
|
|
|
|
"display/bsp_walk_action.cc",
|
|
|
|
diff --git components/viz/service/display_embedder/output_surface_provider_impl.cc components/viz/service/display_embedder/output_surface_provider_impl.cc
|
2020-07-08 19:23:29 +02:00
|
|
|
index da8936a87cfe..2992b7616f05 100644
|
2019-07-16 22:09:04 +02:00
|
|
|
--- components/viz/service/display_embedder/output_surface_provider_impl.cc
|
|
|
|
+++ components/viz/service/display_embedder/output_surface_provider_impl.cc
|
2020-03-04 01:29:39 +01:00
|
|
|
@@ -13,6 +13,7 @@
|
2019-07-16 22:09:04 +02:00
|
|
|
#include "base/threading/thread_task_runner_handle.h"
|
2020-03-04 01:29:39 +01:00
|
|
|
#include "build/chromecast_buildflags.h"
|
2019-07-16 22:09:04 +02:00
|
|
|
#include "cc/base/switches.h"
|
|
|
|
+#include "cef/libcef/browser/osr/software_output_device_proxy.h"
|
|
|
|
#include "components/viz/common/display/renderer_settings.h"
|
|
|
|
#include "components/viz/common/frame_sinks/begin_frame_source.h"
|
|
|
|
#include "components/viz/service/display_embedder/gl_output_surface.h"
|
2020-07-08 19:23:29 +02:00
|
|
|
@@ -223,6 +224,20 @@ OutputSurfaceProviderImpl::CreateSoftwareOutputDeviceForPlatform(
|
2019-07-16 22:09:04 +02:00
|
|
|
if (headless_)
|
|
|
|
return std::make_unique<SoftwareOutputDevice>();
|
|
|
|
|
|
|
|
+ {
|
|
|
|
+ mojo::ScopedAllowSyncCallForTesting allow_sync;
|
|
|
|
+ DCHECK(display_client);
|
|
|
|
+ bool use_proxy_output_device = false;
|
|
|
|
+ if (display_client->UseProxyOutputDevice(&use_proxy_output_device) &&
|
|
|
|
+ use_proxy_output_device) {
|
|
|
|
+ mojom::LayeredWindowUpdaterPtr layered_window_updater;
|
|
|
|
+ display_client->CreateLayeredWindowUpdater(
|
|
|
|
+ mojo::MakeRequest(&layered_window_updater));
|
|
|
|
+ return std::make_unique<SoftwareOutputDeviceProxy>(
|
|
|
|
+ std::move(layered_window_updater));
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
return CreateSoftwareOutputDeviceWin(surface_handle, &output_device_backing_,
|
|
|
|
display_client);
|
|
|
|
diff --git components/viz/service/display_embedder/software_output_device_win.cc components/viz/service/display_embedder/software_output_device_win.cc
|
2020-04-14 21:31:00 +02:00
|
|
|
index 2bb30e5318b6..535535dd6c10 100644
|
2019-07-16 22:09:04 +02:00
|
|
|
--- components/viz/service/display_embedder/software_output_device_win.cc
|
|
|
|
+++ components/viz/service/display_embedder/software_output_device_win.cc
|
2020-04-14 21:31:00 +02:00
|
|
|
@@ -188,8 +188,9 @@ void SoftwareOutputDeviceWinProxy::EndPaintDelegated(
|
2019-07-16 22:09:04 +02:00
|
|
|
if (!canvas_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
- layered_window_updater_->Draw(base::BindOnce(
|
|
|
|
- &SoftwareOutputDeviceWinProxy::DrawAck, base::Unretained(this)));
|
|
|
|
+ layered_window_updater_->Draw(
|
|
|
|
+ damage_rect, base::BindOnce(&SoftwareOutputDeviceWinProxy::DrawAck,
|
|
|
|
+ base::Unretained(this)));
|
|
|
|
waiting_on_draw_ack_ = true;
|
|
|
|
|
|
|
|
TRACE_EVENT_ASYNC_BEGIN0("viz", "SoftwareOutputDeviceWinProxy::Draw", this);
|
2020-03-30 22:13:42 +02:00
|
|
|
diff --git content/browser/compositor/viz_process_transport_factory.cc content/browser/compositor/viz_process_transport_factory.cc
|
2020-07-08 19:23:29 +02:00
|
|
|
index 641a63e8c18e..cdb9a23a1f3e 100644
|
2020-03-30 22:13:42 +02:00
|
|
|
--- content/browser/compositor/viz_process_transport_factory.cc
|
|
|
|
+++ content/browser/compositor/viz_process_transport_factory.cc
|
2020-07-08 19:23:29 +02:00
|
|
|
@@ -403,8 +403,13 @@ void VizProcessTransportFactory::OnEstablishedGpuChannel(
|
2020-03-30 22:13:42 +02:00
|
|
|
compositor_data.display_private.reset();
|
|
|
|
root_params->display_private =
|
|
|
|
compositor_data.display_private.BindNewEndpointAndPassReceiver();
|
|
|
|
- compositor_data.display_client =
|
|
|
|
- std::make_unique<HostDisplayClient>(compositor);
|
|
|
|
+ if (compositor->delegate()) {
|
|
|
|
+ compositor_data.display_client =
|
|
|
|
+ compositor->delegate()->CreateHostDisplayClient();
|
|
|
|
+ } else {
|
|
|
|
+ compositor_data.display_client =
|
|
|
|
+ std::make_unique<HostDisplayClient>(compositor);
|
|
|
|
+ }
|
|
|
|
root_params->display_client =
|
|
|
|
compositor_data.display_client->GetBoundRemote(resize_task_runner_);
|
|
|
|
|
2019-07-16 22:09:04 +02:00
|
|
|
diff --git mojo/public/cpp/bindings/sync_call_restrictions.h mojo/public/cpp/bindings/sync_call_restrictions.h
|
2020-07-08 19:23:29 +02:00
|
|
|
index 599d24e260ae..13bb4cc5910f 100644
|
2019-07-16 22:09:04 +02:00
|
|
|
--- mojo/public/cpp/bindings/sync_call_restrictions.h
|
|
|
|
+++ mojo/public/cpp/bindings/sync_call_restrictions.h
|
2020-07-08 19:23:29 +02:00
|
|
|
@@ -33,6 +33,7 @@ class Compositor;
|
2019-07-16 22:09:04 +02:00
|
|
|
|
|
|
|
namespace viz {
|
|
|
|
class HostFrameSinkManager;
|
|
|
|
+class GpuDisplayProvider;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace mojo {
|
2020-07-08 19:23:29 +02:00
|
|
|
@@ -86,6 +87,8 @@ class COMPONENT_EXPORT(MOJO_CPP_BINDINGS) SyncCallRestrictions {
|
2019-07-16 22:09:04 +02:00
|
|
|
// For preventing frame swaps of wrong size during resize on Windows.
|
|
|
|
// (https://crbug.com/811945)
|
2020-03-30 22:13:42 +02:00
|
|
|
friend class ui::Compositor;
|
|
|
|
+ // For query of whether to use SoftwareOutputDevice or not.
|
2019-07-16 22:09:04 +02:00
|
|
|
+ friend class viz::GpuDisplayProvider;
|
2020-07-08 19:23:29 +02:00
|
|
|
// For calling sync mojo API to get cdm origin. The service and the client are
|
|
|
|
// running in the same process, so it won't block anything.
|
|
|
|
// TODO(159346933) Remove once the origin isolation logic is moved outside of
|
2019-10-01 15:55:16 +02:00
|
|
|
diff --git services/viz/privileged/mojom/compositing/display_private.mojom services/viz/privileged/mojom/compositing/display_private.mojom
|
2020-06-09 19:48:00 +02:00
|
|
|
index d88fab3b7d0a..54984d27a75e 100644
|
2019-10-01 15:55:16 +02:00
|
|
|
--- services/viz/privileged/mojom/compositing/display_private.mojom
|
|
|
|
+++ services/viz/privileged/mojom/compositing/display_private.mojom
|
2020-03-30 22:13:42 +02:00
|
|
|
@@ -74,12 +74,14 @@ interface DisplayPrivate {
|
2019-07-16 22:09:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
interface DisplayClient {
|
|
|
|
+ [Sync]
|
|
|
|
+ UseProxyOutputDevice() => (bool success);
|
|
|
|
+
|
|
|
|
[EnableIf=is_mac]
|
|
|
|
OnDisplayReceivedCALayerParams(gfx.mojom.CALayerParams ca_layer_params);
|
|
|
|
|
|
|
|
// Creates a LayeredWindowUpdater implementation to draw into a layered
|
|
|
|
// window.
|
|
|
|
- [EnableIf=is_win]
|
2019-11-12 17:11:44 +01:00
|
|
|
CreateLayeredWindowUpdater(pending_receiver<LayeredWindowUpdater> receiver);
|
2019-07-16 22:09:04 +02:00
|
|
|
|
|
|
|
// Notifies that a swap has occurred and provides information about the pixel
|
2019-10-01 15:55:16 +02:00
|
|
|
diff --git services/viz/privileged/mojom/compositing/layered_window_updater.mojom services/viz/privileged/mojom/compositing/layered_window_updater.mojom
|
|
|
|
index 6b7fbb6cf13d..e2af75168cb9 100644
|
|
|
|
--- services/viz/privileged/mojom/compositing/layered_window_updater.mojom
|
|
|
|
+++ services/viz/privileged/mojom/compositing/layered_window_updater.mojom
|
2019-09-04 17:13:32 +02:00
|
|
|
@@ -26,5 +26,5 @@ interface LayeredWindowUpdater {
|
2019-07-16 22:09:04 +02:00
|
|
|
// Draws to the HWND by copying pixels from shared memory. Callback must be
|
|
|
|
// called after draw operation is complete to signal shared memory can be
|
|
|
|
// modified.
|
|
|
|
- Draw() => ();
|
|
|
|
+ Draw(gfx.mojom.Rect damage_rect) => ();
|
|
|
|
};
|
|
|
|
diff --git ui/compositor/compositor.h ui/compositor/compositor.h
|
2020-07-08 19:23:29 +02:00
|
|
|
index 438dd212d881..c2e112def4e9 100644
|
2019-07-16 22:09:04 +02:00
|
|
|
--- ui/compositor/compositor.h
|
|
|
|
+++ ui/compositor/compositor.h
|
2020-06-09 19:48:00 +02:00
|
|
|
@@ -25,7 +25,9 @@
|
2019-07-16 22:09:04 +02:00
|
|
|
#include "cc/trees/layer_tree_host_single_thread_client.h"
|
|
|
|
#include "components/viz/common/frame_sinks/begin_frame_args.h"
|
|
|
|
#include "components/viz/common/surfaces/frame_sink_id.h"
|
|
|
|
+#include "components/viz/host/host_display_client.h"
|
|
|
|
#include "components/viz/host/host_frame_sink_client.h"
|
|
|
|
+#include "components/viz/service/display/software_output_device.h"
|
2020-02-10 18:10:17 +01:00
|
|
|
#include "mojo/public/cpp/bindings/pending_remote.h"
|
2019-10-01 15:55:16 +02:00
|
|
|
#include "services/viz/privileged/mojom/compositing/vsync_parameter_observer.mojom-forward.h"
|
2019-07-16 22:09:04 +02:00
|
|
|
#include "third_party/skia/include/core/SkColor.h"
|
2020-06-09 19:48:00 +02:00
|
|
|
@@ -127,6 +129,14 @@ class COMPOSITOR_EXPORT ContextFactory {
|
2020-03-30 22:13:42 +02:00
|
|
|
virtual viz::HostFrameSinkManager* GetHostFrameSinkManager() = 0;
|
2019-07-16 22:09:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
+class COMPOSITOR_EXPORT CompositorDelegate {
|
|
|
|
+ public:
|
|
|
|
+ virtual std::unique_ptr<viz::HostDisplayClient> CreateHostDisplayClient() = 0;
|
|
|
|
+
|
|
|
|
+ protected:
|
|
|
|
+ virtual ~CompositorDelegate() {}
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
// Compositor object to take care of GPU painting.
|
|
|
|
// A Browser compositor object is responsible for generating the final
|
|
|
|
// displayable form of pixels comprising a single widget's contents. It draws an
|
2020-06-09 19:48:00 +02:00
|
|
|
@@ -161,6 +171,9 @@ class COMPOSITOR_EXPORT Compositor : public cc::LayerTreeHostClient,
|
2019-07-16 22:09:04 +02:00
|
|
|
// Schedules a redraw of the layer tree associated with this compositor.
|
|
|
|
void ScheduleDraw();
|
|
|
|
|
|
|
|
+ CompositorDelegate* delegate() const { return delegate_; }
|
|
|
|
+ void SetDelegate(CompositorDelegate* delegate) { delegate_ = delegate; }
|
|
|
|
+
|
|
|
|
// Sets the root of the layer tree drawn by this Compositor. The root layer
|
|
|
|
// must have no parent. The compositor's root layer is reset if the root layer
|
|
|
|
// is destroyed. NULL can be passed to reset the root layer, in which case the
|
2020-07-08 19:23:29 +02:00
|
|
|
@@ -424,6 +437,8 @@ class COMPOSITOR_EXPORT Compositor : public cc::LayerTreeHostClient,
|
2020-03-30 22:13:42 +02:00
|
|
|
|
|
|
|
std::unique_ptr<PendingBeginFrameArgs> pending_begin_frame_args_;
|
2019-07-16 22:09:04 +02:00
|
|
|
|
|
|
|
+ CompositorDelegate* delegate_ = nullptr;
|
|
|
|
+
|
|
|
|
// The root of the Layer tree drawn by this compositor.
|
|
|
|
Layer* root_layer_ = nullptr;
|
|
|
|
|