| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/test/fake_recording_source.h" | 5 #include "cc/test/fake_recording_source.h" |
| 6 | 6 |
| 7 #include "cc/test/fake_raster_source.h" | 7 #include "cc/test/fake_raster_source.h" |
| 8 #include "cc/test/skia_common.h" | |
| 9 | 8 |
| 10 namespace cc { | 9 namespace cc { |
| 11 | 10 |
| 12 FakeRecordingSource::FakeRecordingSource() | 11 FakeRecordingSource::FakeRecordingSource() : playback_allowed_event_(nullptr) {} |
| 13 : force_unsuitable_for_gpu_rasterization_(false), | |
| 14 playback_allowed_event_(nullptr) {} | |
| 15 | |
| 16 bool FakeRecordingSource::IsSuitableForGpuRasterization() const { | |
| 17 if (force_unsuitable_for_gpu_rasterization_) | |
| 18 return false; | |
| 19 return RecordingSource::IsSuitableForGpuRasterization(); | |
| 20 } | |
| 21 | 12 |
| 22 scoped_refptr<RasterSource> FakeRecordingSource::CreateRasterSource( | 13 scoped_refptr<RasterSource> FakeRecordingSource::CreateRasterSource( |
| 23 bool can_use_lcd) const { | 14 bool can_use_lcd) const { |
| 24 return FakeRasterSource::CreateFromRecordingSourceWithWaitable( | 15 return FakeRasterSource::CreateFromRecordingSourceWithWaitable( |
| 25 this, can_use_lcd, playback_allowed_event_); | 16 this, can_use_lcd, playback_allowed_event_); |
| 26 } | 17 } |
| 27 | 18 |
| 28 bool FakeRecordingSource::EqualsTo(const FakeRecordingSource& other) { | 19 bool FakeRecordingSource::EqualsTo(const FakeRecordingSource& other) { |
| 29 // The DisplayItemLists are equal if they are both null or they are both not | 20 return size_ == other.size_ && |
| 30 // null and render to the same thing. | |
| 31 bool display_lists_equal = !display_list_ && !other.display_list_; | |
| 32 if (display_list_ && other.display_list_) { | |
| 33 display_lists_equal = AreDisplayListDrawingResultsSame( | |
| 34 recorded_viewport_, display_list_.get(), other.display_list_.get()); | |
| 35 } | |
| 36 | |
| 37 return recorded_viewport_ == other.recorded_viewport_ && | |
| 38 size_ == other.size_ && | |
| 39 slow_down_raster_scale_factor_for_debug_ == | 21 slow_down_raster_scale_factor_for_debug_ == |
| 40 other.slow_down_raster_scale_factor_for_debug_ && | 22 other.slow_down_raster_scale_factor_for_debug_ && |
| 41 generate_discardable_images_metadata_ == | 23 generate_discardable_images_metadata_ == |
| 42 other.generate_discardable_images_metadata_ && | 24 other.generate_discardable_images_metadata_ && |
| 43 requires_clear_ == other.requires_clear_ && | 25 requires_clear_ == other.requires_clear_ && |
| 44 is_solid_color_ == other.is_solid_color_ && | 26 is_solid_color_ == other.is_solid_color_ && |
| 45 clear_canvas_with_debug_color_ == | 27 clear_canvas_with_debug_color_ == |
| 46 other.clear_canvas_with_debug_color_ && | 28 other.clear_canvas_with_debug_color_ && |
| 47 solid_color_ == other.solid_color_ && | 29 solid_color_ == other.solid_color_ && |
| 48 background_color_ == other.background_color_ && display_lists_equal; | 30 background_color_ == other.background_color_; |
| 49 } | 31 } |
| 50 | 32 |
| 51 } // namespace cc | 33 } // namespace cc |
| OLD | NEW |