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

Unified Diff: cc/surfaces/display.cc

Issue 2870253004: Remove |highp_threshold_min| from GLRenderer() (Closed)
Patch Set: Created 3 years, 7 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/overlay_unittest.cc ('k') | cc/test/pixel_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/surfaces/display.cc
diff --git a/cc/surfaces/display.cc b/cc/surfaces/display.cc
index 1f4c9d1abca99d3be4573db1707150fa41af6c19..e3693207031f15a0056d3d9600f33b45476f3d10 100644
--- a/cc/surfaces/display.cc
+++ b/cc/surfaces/display.cc
@@ -194,9 +194,9 @@ void Display::InitializeRenderer() {
if (output_surface_->context_provider()) {
DCHECK(texture_mailbox_deleter_);
- renderer_ = base::MakeUnique<GLRenderer>(
- &settings_, output_surface_.get(), resource_provider_.get(),
- texture_mailbox_deleter_.get(), settings_.highp_threshold_min);
+ renderer_ = base::MakeUnique<GLRenderer>(&settings_, output_surface_.get(),
+ resource_provider_.get(),
+ texture_mailbox_deleter_.get());
} else if (output_surface_->vulkan_context_provider()) {
#if defined(ENABLE_VULKAN)
DCHECK(texture_mailbox_deleter_);
« no previous file with comments | « cc/output/overlay_unittest.cc ('k') | cc/test/pixel_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698