Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4112)

Unified Diff: cc/output/vulkan_renderer.cc

Issue 2194013002: cc: Delete the Renderer base class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dcheck-delegating
Patch Set: delete-renderer-base-class: rebase Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/output/vulkan_renderer.h ('k') | cc/resources/resource_pool.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/vulkan_renderer.cc
diff --git a/cc/output/vulkan_renderer.cc b/cc/output/vulkan_renderer.cc
index 688491e62195c7a3dae0c4d20604cbceaf9866ad..7f046b1d8c84be0c6533cb7d6b3d185bf0fa09bc 100644
--- a/cc/output/vulkan_renderer.cc
+++ b/cc/output/vulkan_renderer.cc
@@ -12,10 +12,6 @@ const RendererCapabilitiesImpl& VulkanRenderer::Capabilities() const {
return capabilities_;
}
-void VulkanRenderer::Finish() {
- NOTIMPLEMENTED();
-}
-
void VulkanRenderer::SwapBuffers(const CompositorFrameMetadata& metadata) {
CompositorFrame* compositor_frame = nullptr;
output_surface_->SwapBuffers(compositor_frame);
@@ -25,13 +21,12 @@ void VulkanRenderer::ReceiveSwapBuffersAck(const CompositorFrameAck& ack) {
NOTIMPLEMENTED();
}
-VulkanRenderer::VulkanRenderer(RendererClient* client,
- const RendererSettings* settings,
+VulkanRenderer::VulkanRenderer(const RendererSettings* settings,
OutputSurface* output_surface,
ResourceProvider* resource_provider,
TextureMailboxDeleter* texture_mailbox_deleter,
int highp_threshold_min)
- : DirectRenderer(client, settings, output_surface, resource_provider) {}
+ : DirectRenderer(settings, output_surface, resource_provider) {}
void VulkanRenderer::DidChangeVisibility() {
NOTIMPLEMENTED();
« no previous file with comments | « cc/output/vulkan_renderer.h ('k') | cc/resources/resource_pool.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698