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

Side by Side Diff: cc/test/fake_mask_layer_impl.cc

Issue 2717533005: cc: RenderSurfaceImpl tile mask layer. (Closed)
Patch Set: Prevent single_texture_mask to multi_texture_mask conversion. Created 3 years, 8 months 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
« no previous file with comments | « cc/test/fake_mask_layer_impl.h ('k') | cc/trees/draw_property_utils.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "cc/test/fake_mask_layer_impl.h" 5 #include "cc/test/fake_mask_layer_impl.h"
6 6
7 #include "base/memory/ptr_util.h" 7 #include "base/memory/ptr_util.h"
8 8
9 namespace cc { 9 namespace cc {
10 10
11 FakeMaskLayerImpl::FakeMaskLayerImpl(LayerTreeImpl* tree_impl, int id) 11 FakeMaskLayerImpl::FakeMaskLayerImpl(LayerTreeImpl* tree_impl,
12 : LayerImpl(tree_impl, id) {} 12 int id,
13 scoped_refptr<RasterSource> raster_source,
14 Layer::LayerMaskType mask_type)
15 : PictureLayerImpl(tree_impl, id, mask_type) {
16 SetBounds(raster_source->GetSize());
17 Region region;
18 UpdateRasterSource(raster_source, &region, nullptr);
19 }
13 20
14 std::unique_ptr<FakeMaskLayerImpl> FakeMaskLayerImpl::Create( 21 std::unique_ptr<FakeMaskLayerImpl> FakeMaskLayerImpl::Create(
15 LayerTreeImpl* tree_impl, 22 LayerTreeImpl* tree_impl,
16 int id) { 23 int id,
17 return base::WrapUnique(new FakeMaskLayerImpl(tree_impl, id)); 24 scoped_refptr<RasterSource> raster_source,
25 Layer::LayerMaskType mask_type) {
26 return base::WrapUnique(
27 new FakeMaskLayerImpl(tree_impl, id, raster_source, mask_type));
18 } 28 }
19 29
20 void FakeMaskLayerImpl::GetContentsResourceId(ResourceId* resource_id, 30 void FakeMaskLayerImpl::GetContentsResourceId(ResourceId* resource_id,
21 gfx::Size* resource_size) const { 31 gfx::Size* resource_size) const {
22 *resource_id = 0; 32 *resource_id = 0;
23 } 33 }
24 34
25 } // namespace cc 35 } // namespace cc
OLDNEW
« no previous file with comments | « cc/test/fake_mask_layer_impl.h ('k') | cc/trees/draw_property_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698