blob: 919a53d118b3cb46e79b803e84229997d3ab1c46 [file] [log] [blame]
John Reck16c9d6a2015-11-17 15:51:08 -08001/*
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
19class OvalAnimation;
20
21static Benchmark _Oval(BenchmarkInfo{
22 "oval",
23 "Draws 1 oval.",
24 simpleCreateScene<OvalAnimation>
25});
26
27class OvalAnimation : public TestScene {
28public:
29 sp<RenderNode> card;
30 void createContent(int width, int height, TestCanvas& canvas) override {
31 canvas.drawColor(0xFFFFFFFF, SkXfermode::kSrcOver_Mode);
32 canvas.insertReorderBarrier(true);
33
34 card = TestUtils::createNode(0, 0, 200, 200, [](TestCanvas& canvas) {
35 SkPaint paint;
36 paint.setAntiAlias(true);
37 paint.setColor(0xFF000000);
38 canvas.drawOval(0, 0, 200, 200, paint);
39 });
40
41 canvas.drawRenderNode(card.get());
42 canvas.insertReorderBarrier(false);
43 }
44
45 void doFrame(int frameNr) override {
46 int curFrame = frameNr % 150;
47 card->mutateStagingProperties().setTranslationX(curFrame);
48 card->mutateStagingProperties().setTranslationY(curFrame);
49 card->setPropertyFieldsDirty(RenderNode::X | RenderNode::Y);
50 }
51};