1 /*
2  * Copyright (C) 2015 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #include "TestSceneBase.h"
18 
19 #include <SkBlendMode.h>
20 
21 class RectGridAnimation;
22 
23 static TestScene::Registrar _RectGrid(TestScene::Info{
24         "rectgrid",
25         "A dense grid of 1x1 rects that should visually look like a single rect. "
26         "Low CPU/GPU load.",
27         TestScene::simpleCreateScene<RectGridAnimation>});
28 
29 class RectGridAnimation : public TestScene {
30 public:
31     sp<RenderNode> card;
createContent(int width,int height,Canvas & canvas)32     void createContent(int width, int height, Canvas& canvas) override {
33         canvas.drawColor(0xFFFFFFFF, SkBlendMode::kSrcOver);
34         canvas.enableZ(true);
35 
36         card = TestUtils::createNode(50, 50, 250, 250, [](RenderProperties& props, Canvas& canvas) {
37             canvas.drawColor(0xFFFF00FF, SkBlendMode::kSrcOver);
38 
39             SkRegion region;
40             for (int xOffset = 0; xOffset < 200; xOffset += 2) {
41                 for (int yOffset = 0; yOffset < 200; yOffset += 2) {
42                     region.op({xOffset, yOffset, xOffset + 1, yOffset + 1}, SkRegion::kUnion_Op);
43                 }
44             }
45 
46             Paint paint;
47             paint.setColor(0xff00ffff);
48             canvas.drawRegion(region, paint);
49         });
50         canvas.drawRenderNode(card.get());
51 
52         canvas.enableZ(false);
53     }
doFrame(int frameNr)54     void doFrame(int frameNr) override {
55         int curFrame = frameNr % 150;
56         card->mutateStagingProperties().setTranslationX(curFrame);
57         card->mutateStagingProperties().setTranslationY(curFrame);
58         card->setPropertyFieldsDirty(RenderNode::X | RenderNode::Y);
59     }
60 };
61