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 |
11 namespace cc { | 11 namespace cc { |
12 class DisplayItemList; | 12 class DisplayItemList; |
13 class DisplayListRasterSource; | 13 class DisplayListRasterSource; |
14 | 14 |
15 class CC_EXPORT DisplayListRecordingSource : public RecordingSource { | 15 class CC_EXPORT DisplayListRecordingSource : public RecordingSource { |
16 public: | 16 public: |
17 explicit DisplayListRecordingSource(const gfx::Size& grid_cell_size); | 17 DisplayListRecordingSource(); |
18 ~DisplayListRecordingSource() override; | 18 ~DisplayListRecordingSource() override; |
19 | 19 |
20 // RecordingSource overrides. | 20 // RecordingSource overrides. |
21 bool UpdateAndExpandInvalidation(ContentLayerClient* painter, | 21 bool UpdateAndExpandInvalidation(ContentLayerClient* painter, |
22 Region* invalidation, | 22 Region* invalidation, |
23 const gfx::Size& layer_size, | 23 const gfx::Size& layer_size, |
24 const gfx::Rect& visible_layer_rect, | 24 const gfx::Rect& visible_layer_rect, |
25 int frame_number, | 25 int frame_number, |
26 RecordingMode recording_mode) override; | 26 RecordingMode recording_mode) override; |
27 void DidMoveToNewCompositor() override; | 27 void DidMoveToNewCompositor() override; |
(...skipping 14 matching lines...) Expand all Loading... |
42 | 42 |
43 gfx::Rect recorded_viewport_; | 43 gfx::Rect recorded_viewport_; |
44 gfx::Size size_; | 44 gfx::Size size_; |
45 int slow_down_raster_scale_factor_for_debug_; | 45 int slow_down_raster_scale_factor_for_debug_; |
46 bool gather_pixel_refs_; | 46 bool gather_pixel_refs_; |
47 bool requires_clear_; | 47 bool requires_clear_; |
48 bool is_solid_color_; | 48 bool is_solid_color_; |
49 SkColor solid_color_; | 49 SkColor solid_color_; |
50 SkColor background_color_; | 50 SkColor background_color_; |
51 int pixel_record_distance_; | 51 int pixel_record_distance_; |
52 gfx::Size grid_cell_size_; | |
53 | 52 |
54 scoped_refptr<DisplayItemList> display_list_; | 53 scoped_refptr<DisplayItemList> display_list_; |
55 | 54 |
56 private: | 55 private: |
57 friend class DisplayListRasterSource; | 56 friend class DisplayListRasterSource; |
58 | 57 |
59 void DetermineIfSolidColor(); | 58 void DetermineIfSolidColor(); |
60 | 59 |
61 bool is_suitable_for_gpu_rasterization_; | 60 bool is_suitable_for_gpu_rasterization_; |
62 | 61 |
63 DISALLOW_COPY_AND_ASSIGN(DisplayListRecordingSource); | 62 DISALLOW_COPY_AND_ASSIGN(DisplayListRecordingSource); |
64 }; | 63 }; |
65 | 64 |
66 } // namespace cc | 65 } // namespace cc |
67 | 66 |
68 #endif // CC_RESOURCES_DISPLAY_LIST_RECORDING_SOURCE_H_ | 67 #endif // CC_RESOURCES_DISPLAY_LIST_RECORDING_SOURCE_H_ |
OLD | NEW |