| OLD | NEW |
| (Empty) |
| 1 // Copyright 2011 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "cc/content_layer_updater.h" | |
| 6 | |
| 7 #include "base/debug/trace_event.h" | |
| 8 #include "base/time.h" | |
| 9 #include "cc/debug/rendering_stats.h" | |
| 10 #include "cc/layer_painter.h" | |
| 11 #include "third_party/skia/include/core/SkCanvas.h" | |
| 12 #include "third_party/skia/include/core/SkPaint.h" | |
| 13 #include "third_party/skia/include/core/SkRect.h" | |
| 14 #include "third_party/skia/include/core/SkScalar.h" | |
| 15 #include "ui/gfx/rect_conversions.h" | |
| 16 #include "ui/gfx/rect_f.h" | |
| 17 | |
| 18 namespace cc { | |
| 19 | |
| 20 ContentLayerUpdater::ContentLayerUpdater(scoped_ptr<LayerPainter> painter) | |
| 21 : painter_(painter.Pass()) {} | |
| 22 | |
| 23 ContentLayerUpdater::~ContentLayerUpdater() {} | |
| 24 | |
| 25 void ContentLayerUpdater::PaintContents(SkCanvas* canvas, | |
| 26 gfx::Rect content_rect, | |
| 27 float contents_width_scale, | |
| 28 float contents_height_scale, | |
| 29 gfx::Rect* resulting_opaque_rect, | |
| 30 RenderingStats* stats) { | |
| 31 TRACE_EVENT0("cc", "ContentLayerUpdater::paintContents"); | |
| 32 canvas->save(); | |
| 33 canvas->translate(SkFloatToScalar(-content_rect.x()), | |
| 34 SkFloatToScalar(-content_rect.y())); | |
| 35 | |
| 36 gfx::Rect layer_rect = content_rect; | |
| 37 | |
| 38 if (contents_width_scale != 1.f || contents_height_scale != 1.f) { | |
| 39 canvas->scale(SkFloatToScalar(contents_width_scale), | |
| 40 SkFloatToScalar(contents_height_scale)); | |
| 41 | |
| 42 gfx::RectF rect = gfx::ScaleRect( | |
| 43 content_rect, 1.f / contents_width_scale, 1.f / contents_height_scale); | |
| 44 layer_rect = gfx::ToEnclosingRect(rect); | |
| 45 } | |
| 46 | |
| 47 SkPaint paint; | |
| 48 paint.setAntiAlias(false); | |
| 49 paint.setXfermodeMode(SkXfermode::kClear_Mode); | |
| 50 SkRect layer_sk_rect = SkRect::MakeXYWH( | |
| 51 layer_rect.x(), layer_rect.y(), layer_rect.width(), layer_rect.height()); | |
| 52 canvas->drawRect(layer_sk_rect, paint); | |
| 53 canvas->clipRect(layer_sk_rect); | |
| 54 | |
| 55 gfx::RectF opaque_layer_rect; | |
| 56 base::TimeTicks paint_begin_time; | |
| 57 if (stats) | |
| 58 paint_begin_time = base::TimeTicks::Now(); | |
| 59 painter_->Paint(canvas, layer_rect, &opaque_layer_rect); | |
| 60 if (stats) { | |
| 61 stats->totalPaintTime += base::TimeTicks::Now() - paint_begin_time; | |
| 62 stats->totalPixelsPainted += content_rect.width() * content_rect.height(); | |
| 63 } | |
| 64 canvas->restore(); | |
| 65 | |
| 66 gfx::RectF opaque_content_rect = gfx::ScaleRect( | |
| 67 opaque_layer_rect, contents_width_scale, contents_height_scale); | |
| 68 *resulting_opaque_rect = gfx::ToEnclosedRect(opaque_content_rect); | |
| 69 | |
| 70 content_rect_ = content_rect; | |
| 71 } | |
| 72 | |
| 73 } // namespace cc | |
| OLD | NEW |