Index: cc/output/filter_operation.cc |
diff --git a/cc/output/filter_operation.cc b/cc/output/filter_operation.cc |
index 289ca348b7ee58de687148fb8ebd7d1fe216f338..5b30c42bb56853eadbcabff9955bad9987be5568 100644 |
--- a/cc/output/filter_operation.cc |
+++ b/cc/output/filter_operation.cc |
@@ -247,7 +247,7 @@ FilterOperation FilterOperation::Blend(const FilterOperation* from, |
} else if (to_op.type() == FilterOperation::ZOOM) { |
blended_filter.set_zoom_inset( |
std::max(gfx::Tween::LinearIntValueBetween( |
- from_op.zoom_inset(), to_op.zoom_inset(), progress), |
+ progress, from_op.zoom_inset(), to_op.zoom_inset()), |
0)); |
} else if (to_op.type() == FilterOperation::ALPHA_THRESHOLD) { |
blended_filter.set_outer_threshold(ClampAmountForFilterType( |