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

Unified Diff: ui/views/view.cc

Issue 2877483003: Implements core logic for Pixel Canvas (Closed)
Patch Set: Updated GetContextScaleType() from public to protected Created 3 years, 6 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: ui/views/view.cc
diff --git a/ui/views/view.cc b/ui/views/view.cc
index 6d1e20b652f869ce99ef5b48a7a5a2b67f14fd1f..999abd2dabaf2c535f8aedfaaefb0da936687770 100644
--- a/ui/views/view.cc
+++ b/ui/views/view.cc
@@ -838,33 +838,35 @@ void View::SchedulePaintInRect(const gfx::Rect& rect) {
void View::Paint(const ui::PaintContext& parent_context) {
if (!ShouldPaint())
return;
-
- ui::PaintContext context(parent_context, GetPaintContextOffset());
+ ui::PaintContext context(parent_context, GetPaintContextBounds(),
+ GetContextScaleType());
bool is_invalidated = true;
- if (context.CanCheckInvalid()) {
+ if (context.CanCheckRepaint()) {
#if DCHECK_IS_ON()
- gfx::Vector2d offset;
- context.Visited(this);
- View* view = this;
- while (view->parent() && !view->layer()) {
- DCHECK(view->GetTransform().IsIdentity());
- offset += view->GetMirroredPosition().OffsetFromOrigin();
- view = view->parent();
+ if (!context.IsPixelCanvas()) {
+ gfx::Vector2d offset;
+ context.Visited(this);
+ View* view = this;
+ while (view->parent() && !view->layer()) {
+ DCHECK(view->GetTransform().IsIdentity());
+ offset += view->GetMirroredPosition().OffsetFromOrigin();
+ view = view->parent();
+ }
+ // The offset in the PaintContext should be the offset up to the paint
+ // root, which we compute and verify here.
+ DCHECK_EQ(context.PaintOffset().x(), offset.x());
+ DCHECK_EQ(context.PaintOffset().y(), offset.y());
+ // The above loop will stop when |view| is the paint root, which should be
+ // the root of the current paint walk, as verified by storing the root in
+ // the PaintContext.
+ DCHECK_EQ(context.RootVisited(), view);
}
- // The offset in the PaintContext should be the offset up to the paint root,
- // which we compute and verify here.
- DCHECK_EQ(context.PaintOffset().x(), offset.x());
- DCHECK_EQ(context.PaintOffset().y(), offset.y());
- // The above loop will stop when |view| is the paint root, which should be
- // the root of the current paint walk, as verified by storing the root in
- // the PaintContext.
- DCHECK_EQ(context.RootVisited(), view);
#endif
// If the View wasn't invalidated, don't waste time painting it, the output
// would be culled.
- is_invalidated = context.IsRectInvalid(GetLocalBounds());
+ is_invalidated = context.ShouldRepaint();
}
TRACE_EVENT1("views", "View::Paint", "class", GetClassName());
@@ -880,22 +882,26 @@ void View::Paint(const ui::PaintContext& parent_context) {
// into consideration whether or not the View uses a right-to-left layout so
// that we paint the View in its mirrored position if need be.
if (clip_path_.isEmpty()) {
- clip_recorder.ClipRect(GetMirroredBounds());
+ clip_recorder.ClipRect(context.pixel_bounds());
} else {
gfx::Path clip_path_in_parent = clip_path_;
- clip_path_in_parent.offset(GetMirroredX(), y());
+ clip_path_in_parent.transform(SkMatrix::MakeScale(
+ SkFloatToScalar(context.effective_scale_factor_x()),
+ SkFloatToScalar(context.effective_scale_factor_y())));
+ clip_path_in_parent.offset(context.pixel_bounds().OffsetFromOrigin().x(),
+ context.pixel_bounds().OffsetFromOrigin().y());
oshima 2017/06/22 15:24:11 can we move the clipping function to context as we
malaykeshav 2017/06/22 21:02:53 Done
clip_recorder.ClipPathWithAntiAliasing(clip_path_in_parent);
}
}
ui::TransformRecorder transform_recorder(context);
- SetupTransformRecorderForPainting(&transform_recorder);
+ SetupTransformRecorderForPainting(&transform_recorder, context);
// Note that the cache is not aware of the offset of the view
// relative to the parent since painting is always done relative to
// the top left of the individual view.
- if (is_invalidated || !paint_cache_.UseCache(context, size())) {
- ui::PaintRecorder recorder(context, size(), &paint_cache_);
+ if (is_invalidated || !paint_cache_.UseCache(context, context.pixel_size())) {
+ ui::PaintRecorder recorder(context, context.pixel_size(), &paint_cache_);
oshima 2017/06/22 15:24:11 same here. I'm still not convinced that extra argu
malaykeshav 2017/06/22 21:02:53 A lot of files are calling the PaintRecorder's sec
oshima 2017/06/23 18:42:32 You can keep the second ctr. There are only 3~4
malaykeshav 2017/06/23 18:53:21 The second constructor needs this constructor to h
gfx::Canvas* canvas = recorder.canvas();
gfx::ScopedRTLFlipCanvas scoped_canvas(canvas, width(),
flip_canvas_on_paint_for_rtl_ui_);
@@ -1807,6 +1813,10 @@ int View::GetVerticalDragThreshold() {
return kDefaultVerticalDragThreshold;
}
+int View::GetContextScaleType() const {
+ return ui::PaintContext::SCALE_TO_FIT;
+}
+
// Debugging -------------------------------------------------------------------
#if !defined(NDEBUG)
@@ -1959,15 +1969,16 @@ bool View::ShouldPaint() const {
return visible_ && !size().IsEmpty();
}
-gfx::Vector2d View::GetPaintContextOffset() const {
+gfx::Rect View::GetPaintContextBounds() const {
// If the View has a layer() then it is a paint root. Otherwise, we need to
// add the offset from the parent into the total offset from the paint root.
DCHECK(layer() || parent() || origin() == gfx::Point());
- return layer() ? gfx::Vector2d() : GetMirroredPosition().OffsetFromOrigin();
+ return layer() ? GetLocalBounds() : GetMirroredBounds();
}
void View::SetupTransformRecorderForPainting(
- ui::TransformRecorder* recorder) const {
+ ui::TransformRecorder* recorder,
+ const ui::PaintContext& context) const {
// If the view is backed by a layer, it should paint with itself as the origin
// rather than relative to its parent.
if (layer())
@@ -1976,10 +1987,9 @@ void View::SetupTransformRecorderForPainting(
// Translate the graphics such that 0,0 corresponds to where this View is
// located relative to its parent.
gfx::Transform transform_from_parent;
- gfx::Vector2d offset_from_parent = GetMirroredPosition().OffsetFromOrigin();
+ gfx::Vector2d offset_from_parent = context.pixel_bounds().OffsetFromOrigin();
transform_from_parent.Translate(offset_from_parent.x(),
offset_from_parent.y());
- transform_from_parent.PreconcatTransform(GetTransform());
recorder->Transform(transform_from_parent);
}
@@ -2004,14 +2014,15 @@ void View::PaintDebugRects(const ui::PaintContext& parent_context) {
if (!ShouldPaint())
return;
- ui::PaintContext context(parent_context, GetPaintContextOffset());
+ ui::PaintContext context(parent_context, GetPaintContextBounds(),
+ GetContextScaleType());
ui::TransformRecorder transform_recorder(context);
- SetupTransformRecorderForPainting(&transform_recorder);
+ SetupTransformRecorderForPainting(&transform_recorder, context);
RecursivePaintHelper(&View::PaintDebugRects, context);
// Draw outline rects for debugging.
- ui::PaintRecorder recorder(context, size());
+ ui::PaintRecorder recorder(context, context.pixel_size(), &paint_cache_);
gfx::Canvas* canvas = recorder.canvas();
const float scale = canvas->UndoDeviceScaleFactor();
gfx::RectF outline_rect(ScaleToEnclosedRect(GetLocalBounds(), scale));
« ui/compositor/paint_recorder.h ('K') | « ui/views/view.h ('k') | ui/views/view_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698