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

Unified Diff: cc/output/renderer_capabilities.cc

Issue 2270533002: cc: Remove the software compositing bool from PrepareTextureMailbox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@softwarerendering
Patch Set: remove-prepare-mailbox-param: test_runner 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
Index: cc/output/renderer_capabilities.cc
diff --git a/cc/output/renderer_capabilities.cc b/cc/output/renderer_capabilities.cc
index 1ad2424a5376c3d0d445b142fa8209ad887666c4..9a8ec3a354ff34fa8ff3ee585d8fceaf1bf7ad43 100644
--- a/cc/output/renderer_capabilities.cc
+++ b/cc/output/renderer_capabilities.cc
@@ -7,12 +7,9 @@
namespace cc {
RendererCapabilities::RendererCapabilities(ResourceFormat best_texture_format,
- int max_texture_size,
- bool using_shared_memory_resources)
+ int max_texture_size)
: best_texture_format(best_texture_format),
- max_texture_size(max_texture_size),
- using_shared_memory_resources(using_shared_memory_resources) {
-}
+ max_texture_size(max_texture_size) {}
RendererCapabilities::RendererCapabilities() = default;
RendererCapabilities::~RendererCapabilities() = default;

Powered by Google App Engine
This is Rietveld 408576698