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_PLAYBACK_DISPLAY_LIST_RECORDING_SOURCE_H_ | 5 #ifndef CC_PLAYBACK_DISPLAY_LIST_RECORDING_SOURCE_H_ |
6 #define CC_PLAYBACK_DISPLAY_LIST_RECORDING_SOURCE_H_ | 6 #define CC_PLAYBACK_DISPLAY_LIST_RECORDING_SOURCE_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "cc/playback/recording_source.h" | 9 #include "cc/playback/recording_source.h" |
10 | 10 |
(...skipping 15 matching lines...) Expand all Loading... |
26 RecordingMode recording_mode) override; | 26 RecordingMode recording_mode) override; |
27 scoped_refptr<RasterSource> CreateRasterSource( | 27 scoped_refptr<RasterSource> CreateRasterSource( |
28 bool can_use_lcd_text) const override; | 28 bool can_use_lcd_text) const override; |
29 gfx::Size GetSize() const final; | 29 gfx::Size GetSize() const final; |
30 void SetEmptyBounds() override; | 30 void SetEmptyBounds() override; |
31 void SetSlowdownRasterScaleFactor(int factor) override; | 31 void SetSlowdownRasterScaleFactor(int factor) override; |
32 void SetGatherDiscardableImages(bool gather_images) override; | 32 void SetGatherDiscardableImages(bool gather_images) override; |
33 void SetBackgroundColor(SkColor background_color) override; | 33 void SetBackgroundColor(SkColor background_color) override; |
34 void SetRequiresClear(bool requires_clear) override; | 34 void SetRequiresClear(bool requires_clear) override; |
35 bool IsSuitableForGpuRasterization() const override; | 35 bool IsSuitableForGpuRasterization() const override; |
| 36 void SetUnsuitableForGpuRasterizationForTesting() override; |
36 // Returns true if the new recorded viewport exposes enough new area to be | 37 // Returns true if the new recorded viewport exposes enough new area to be |
37 // worth re-recording. | 38 // worth re-recording. |
38 static bool ExposesEnoughNewArea( | 39 static bool ExposesEnoughNewArea( |
39 const gfx::Rect& current_recorded_viewport, | 40 const gfx::Rect& current_recorded_viewport, |
40 const gfx::Rect& potential_new_recorded_viewport, | 41 const gfx::Rect& potential_new_recorded_viewport, |
41 const gfx::Size& layer_size); | 42 const gfx::Size& layer_size); |
42 | 43 |
43 gfx::Rect recorded_viewport() const { return recorded_viewport_; } | 44 gfx::Rect recorded_viewport() const { return recorded_viewport_; } |
44 | 45 |
45 protected: | 46 protected: |
(...skipping 12 matching lines...) Expand all Loading... |
58 gfx::Size grid_cell_size_; | 59 gfx::Size grid_cell_size_; |
59 | 60 |
60 scoped_refptr<DisplayItemList> display_list_; | 61 scoped_refptr<DisplayItemList> display_list_; |
61 size_t painter_reported_memory_usage_; | 62 size_t painter_reported_memory_usage_; |
62 | 63 |
63 private: | 64 private: |
64 friend class DisplayListRasterSource; | 65 friend class DisplayListRasterSource; |
65 | 66 |
66 void DetermineIfSolidColor(); | 67 void DetermineIfSolidColor(); |
67 | 68 |
| 69 bool is_suitable_for_gpu_rasterization_; |
| 70 |
68 DISALLOW_COPY_AND_ASSIGN(DisplayListRecordingSource); | 71 DISALLOW_COPY_AND_ASSIGN(DisplayListRecordingSource); |
69 }; | 72 }; |
70 | 73 |
71 } // namespace cc | 74 } // namespace cc |
72 | 75 |
73 #endif // CC_PLAYBACK_DISPLAY_LIST_RECORDING_SOURCE_H_ | 76 #endif // CC_PLAYBACK_DISPLAY_LIST_RECORDING_SOURCE_H_ |
OLD | NEW |