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 #ifndef CC_RESOURCES_DISPLAY_LIST_RECORDING_SOURCE_H_ | 5 #ifndef CC_RESOURCES_DISPLAY_LIST_RECORDING_SOURCE_H_ |
6 #define CC_RESOURCES_DISPLAY_LIST_RECORDING_SOURCE_H_ | 6 #define CC_RESOURCES_DISPLAY_LIST_RECORDING_SOURCE_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "cc/resources/recording_source.h" | 9 #include "cc/resources/recording_source.h" |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 ContentLayerClient* painter, | 22 ContentLayerClient* painter, |
23 Region* invalidation, | 23 Region* invalidation, |
24 bool can_use_lcd_text, | 24 bool can_use_lcd_text, |
25 const gfx::Size& layer_size, | 25 const gfx::Size& layer_size, |
26 const gfx::Rect& visible_layer_rect, | 26 const gfx::Rect& visible_layer_rect, |
27 int frame_number, | 27 int frame_number, |
28 Picture::RecordingMode recording_mode) override; | 28 Picture::RecordingMode recording_mode) override; |
29 scoped_refptr<RasterSource> CreateRasterSource() const override; | 29 scoped_refptr<RasterSource> CreateRasterSource() const override; |
30 gfx::Size GetSize() const final; | 30 gfx::Size GetSize() const final; |
31 void SetEmptyBounds() override; | 31 void SetEmptyBounds() override; |
| 32 void SetMinContentsScale(float min_contents_scale) override; |
32 void SetSlowdownRasterScaleFactor(int factor) override; | 33 void SetSlowdownRasterScaleFactor(int factor) override; |
33 bool IsSuitableForGpuRasterization() const override; | 34 bool IsSuitableForGpuRasterization() const override; |
| 35 void SetTileGridSize(const gfx::Size& tile_grid_size) override; |
34 void SetUnsuitableForGpuRasterizationForTesting() override; | 36 void SetUnsuitableForGpuRasterizationForTesting() override; |
35 SkTileGridFactory::TileGridInfo GetTileGridInfoForTesting() const override; | 37 SkTileGridFactory::TileGridInfo GetTileGridInfoForTesting() const override; |
36 | 38 |
37 protected: | 39 protected: |
38 void Clear(); | 40 void Clear(); |
39 | 41 |
40 gfx::Rect recorded_viewport_; | 42 gfx::Rect recorded_viewport_; |
41 gfx::Size size_; | 43 gfx::Size size_; |
42 int slow_down_raster_scale_factor_for_debug_; | 44 int slow_down_raster_scale_factor_for_debug_; |
43 bool can_use_lcd_text_; | 45 bool can_use_lcd_text_; |
44 bool is_solid_color_; | 46 bool is_solid_color_; |
45 SkColor solid_color_; | 47 SkColor solid_color_; |
46 int pixel_record_distance_; | 48 int pixel_record_distance_; |
47 | 49 |
48 scoped_refptr<DisplayItemList> display_list_; | 50 scoped_refptr<DisplayItemList> display_list_; |
49 | 51 |
50 private: | 52 private: |
51 friend class DisplayListRasterSource; | 53 friend class DisplayListRasterSource; |
52 | 54 |
53 void DetermineIfSolidColor(); | 55 void DetermineIfSolidColor(); |
54 | 56 |
55 bool is_suitable_for_gpu_rasterization_; | 57 bool is_suitable_for_gpu_rasterization_; |
56 | 58 |
57 DISALLOW_COPY_AND_ASSIGN(DisplayListRecordingSource); | 59 DISALLOW_COPY_AND_ASSIGN(DisplayListRecordingSource); |
58 }; | 60 }; |
59 | 61 |
60 } // namespace cc | 62 } // namespace cc |
61 | 63 |
62 #endif // CC_RESOURCES_DISPLAY_LIST_RECORDING_SOURCE_H_ | 64 #endif // CC_RESOURCES_DISPLAY_LIST_RECORDING_SOURCE_H_ |
OLD | NEW |