Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(624)

Side by Side Diff: cc/trees/layer_tree_host_pixeltest_tiles.cc

Issue 2509983004: Revert "Change call-sites now that SkCanvas is not ref-counted" (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <stddef.h> 5 #include <stddef.h>
6 6
7 #include "cc/layers/content_layer_client.h" 7 #include "cc/layers/content_layer_client.h"
8 #include "cc/layers/picture_layer.h" 8 #include "cc/layers/picture_layer.h"
9 #include "cc/output/copy_output_request.h" 9 #include "cc/output/copy_output_request.h"
10 #include "cc/playback/display_item_list.h" 10 #include "cc/playback/display_item_list.h"
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 108
109 gfx::Rect PaintableRegion() override { return gfx::Rect(size_); } 109 gfx::Rect PaintableRegion() override { return gfx::Rect(size_); }
110 scoped_refptr<DisplayItemList> PaintContentsToDisplayList( 110 scoped_refptr<DisplayItemList> PaintContentsToDisplayList(
111 PaintingControlSetting painting_status) override { 111 PaintingControlSetting painting_status) override {
112 DisplayItemListSettings settings; 112 DisplayItemListSettings settings;
113 settings.use_cached_picture = false; 113 settings.use_cached_picture = false;
114 scoped_refptr<DisplayItemList> display_list = 114 scoped_refptr<DisplayItemList> display_list =
115 DisplayItemList::Create(settings); 115 DisplayItemList::Create(settings);
116 116
117 SkPictureRecorder recorder; 117 SkPictureRecorder recorder;
118 SkCanvas* canvas = 118 sk_sp<SkCanvas> canvas =
119 recorder.beginRecording(gfx::RectToSkRect(gfx::Rect(size_))); 119 sk_ref_sp(recorder.beginRecording(gfx::RectToSkRect(gfx::Rect(size_))));
120 gfx::Rect top(0, 0, size_.width(), size_.height() / 2); 120 gfx::Rect top(0, 0, size_.width(), size_.height() / 2);
121 gfx::Rect bottom(0, size_.height() / 2, size_.width(), size_.height() / 2); 121 gfx::Rect bottom(0, size_.height() / 2, size_.width(), size_.height() / 2);
122 122
123 gfx::Rect blue_rect = blue_top_ ? top : bottom; 123 gfx::Rect blue_rect = blue_top_ ? top : bottom;
124 gfx::Rect yellow_rect = blue_top_ ? bottom : top; 124 gfx::Rect yellow_rect = blue_top_ ? bottom : top;
125 125
126 SkPaint paint; 126 SkPaint paint;
127 paint.setStyle(SkPaint::kFill_Style); 127 paint.setStyle(SkPaint::kFill_Style);
128 128
129 paint.setColor(SK_ColorBLUE); 129 paint.setColor(SK_ColorBLUE);
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 FullRaster_SingleThread_GpuRaster) { 233 FullRaster_SingleThread_GpuRaster) {
234 RunRasterPixelTest( 234 RunRasterPixelTest(
235 false, FULL_GPU, picture_layer_, 235 false, FULL_GPU, picture_layer_,
236 base::FilePath(FILE_PATH_LITERAL("blue_yellow_flipped.png"))); 236 base::FilePath(FILE_PATH_LITERAL("blue_yellow_flipped.png")));
237 } 237 }
238 238
239 } // namespace 239 } // namespace
240 } // namespace cc 240 } // namespace cc
241 241
242 #endif // !defined(OS_ANDROID) 242 #endif // !defined(OS_ANDROID)
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_host_pixeltest_masks.cc ('k') | chrome/browser/android/compositor/layer/crushed_sprite_layer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698