OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "cc/resources/gpu_raster_worker_pool.h" | 5 #include "cc/resources/gpu_raster_worker_pool.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/debug/trace_event.h" | 9 #include "base/debug/trace_event.h" |
10 #include "cc/output/context_provider.h" | 10 #include "cc/output/context_provider.h" |
(...skipping 18 matching lines...) Expand all Loading... |
29 SkMultiPictureDraw* multi_picture_draw, | 29 SkMultiPictureDraw* multi_picture_draw, |
30 bool use_distance_field_text) | 30 bool use_distance_field_text) |
31 : lock_(resource_provider, resource->id()), | 31 : lock_(resource_provider, resource->id()), |
32 resource_(resource), | 32 resource_(resource), |
33 multi_picture_draw_(multi_picture_draw), | 33 multi_picture_draw_(multi_picture_draw), |
34 use_distance_field_text_(use_distance_field_text) {} | 34 use_distance_field_text_(use_distance_field_text) {} |
35 | 35 |
36 // Overridden from RasterBuffer: | 36 // Overridden from RasterBuffer: |
37 void Playback(const RasterSource* raster_source, | 37 void Playback(const RasterSource* raster_source, |
38 const gfx::Rect& rect, | 38 const gfx::Rect& rect, |
39 float scale, | 39 float scale) override { |
40 RenderingStatsInstrumentation* stats) override { | |
41 // Turn on distance fields for layers that have ever animated. | 40 // Turn on distance fields for layers that have ever animated. |
42 bool use_distance_field_text = | 41 bool use_distance_field_text = |
43 use_distance_field_text_ || | 42 use_distance_field_text_ || |
44 raster_source->SuitableForDistanceFieldText(); | 43 raster_source->SuitableForDistanceFieldText(); |
45 SkSurface* sk_surface = lock_.GetSkSurface(use_distance_field_text); | 44 SkSurface* sk_surface = lock_.GetSkSurface(use_distance_field_text); |
46 | 45 |
47 if (!sk_surface) | 46 if (!sk_surface) |
48 return; | 47 return; |
49 | 48 |
50 SkPictureRecorder recorder; | 49 SkPictureRecorder recorder; |
51 gfx::Size size = resource_->size(); | 50 gfx::Size size = resource_->size(); |
52 skia::RefPtr<SkCanvas> canvas = | 51 skia::RefPtr<SkCanvas> canvas = |
53 skia::SharePtr(recorder.beginRecording(size.width(), size.height())); | 52 skia::SharePtr(recorder.beginRecording(size.width(), size.height())); |
54 | 53 |
55 canvas->save(); | 54 canvas->save(); |
56 raster_source->PlaybackToCanvas(canvas.get(), rect, scale, stats); | 55 raster_source->PlaybackToCanvas(canvas.get(), rect, scale); |
57 canvas->restore(); | 56 canvas->restore(); |
58 | 57 |
59 // Add the canvas and recorded picture to |multi_picture_draw_|. | 58 // Add the canvas and recorded picture to |multi_picture_draw_|. |
60 skia::RefPtr<SkPicture> picture = skia::AdoptRef(recorder.endRecording()); | 59 skia::RefPtr<SkPicture> picture = skia::AdoptRef(recorder.endRecording()); |
61 multi_picture_draw_->add(sk_surface->getCanvas(), picture.get()); | 60 multi_picture_draw_->add(sk_surface->getCanvas(), picture.get()); |
62 } | 61 } |
63 | 62 |
64 private: | 63 private: |
65 ResourceProvider::ScopedWriteLockGr lock_; | 64 ResourceProvider::ScopedWriteLockGr lock_; |
66 const Resource* resource_; | 65 const Resource* resource_; |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 | 243 |
245 ScopedGpuRaster gpu_raster(context_provider_); | 244 ScopedGpuRaster gpu_raster(context_provider_); |
246 task_graph_runner_->RunUntilIdle(); | 245 task_graph_runner_->RunUntilIdle(); |
247 | 246 |
248 // Draw each all of the pictures that were collected. This will also clear | 247 // Draw each all of the pictures that were collected. This will also clear |
249 // the pictures and canvases added to |multi_picture_draw_| | 248 // the pictures and canvases added to |multi_picture_draw_| |
250 multi_picture_draw_.draw(); | 249 multi_picture_draw_.draw(); |
251 } | 250 } |
252 | 251 |
253 } // namespace cc | 252 } // namespace cc |
OLD | NEW |