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

Unified Diff: cc/output/filter_operation.cc

Issue 1900633002: cc: remove call to SkImageFilter::canFilterImageGPU(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/filter_operation.cc
diff --git a/cc/output/filter_operation.cc b/cc/output/filter_operation.cc
index 37ff8711c2b6a2c628747d5defb18395f4d6301f..72c03718efc5540a5dace726a78443728b9b6222 100644
--- a/cc/output/filter_operation.cc
+++ b/cc/output/filter_operation.cc
@@ -293,14 +293,11 @@ void FilterOperation::AsValueInto(base::trace_event::TracedValue* value) const {
break;
case FilterOperation::REFERENCE: {
int count_inputs = 0;
- bool can_filter_image_gpu = false;
if (image_filter_) {
count_inputs = image_filter_->countInputs();
- can_filter_image_gpu = image_filter_->canFilterImageGPU();
}
value->SetBoolean("is_null", !image_filter_);
value->SetInteger("count_inputs", count_inputs);
- value->SetBoolean("can_filter_image_gpu", can_filter_image_gpu);
break;
}
case FilterOperation::ALPHA_THRESHOLD: {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698