blob: 91022cfe734b5c740938b919f1b2b5411d2a27dc [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 */
Chris Craik5e00c7c2016-07-06 16:10:09 -070016
17#pragma once
John Reck16c9d6a2015-11-17 15:51:08 -080018
John Recked024d22017-11-10 15:06:32 -080019#include <gui/Surface.h>
20#include <utils/StrongPointer.h>
21
Chris Craik27e58b42015-12-07 10:01:38 -080022#include <string>
23#include <unordered_map>
24
John Reck16c9d6a2015-11-17 15:51:08 -080025namespace android {
Stan Iliev06152cd2016-07-27 17:55:43 -040026
27class Canvas;
28
John Reck16c9d6a2015-11-17 15:51:08 -080029namespace uirenderer {
30class RenderNode;
John Reck16c9d6a2015-11-17 15:51:08 -080031class RecordingCanvas;
Chris Craik5e00c7c2016-07-06 16:10:09 -070032
John Reck16c9d6a2015-11-17 15:51:08 -080033namespace test {
34
35class TestScene {
36public:
Chris Craik27e58b42015-12-07 10:01:38 -080037 struct Options {
38 int count = 0;
John Reck682573c2015-10-30 10:37:35 -070039 int reportFrametimeWeight = 0;
sergeyv202c10b2016-07-11 17:53:45 -070040 bool renderOffscreen = true;
Chris Craik27e58b42015-12-07 10:01:38 -080041 };
42
43 template <class T>
44 static test::TestScene* simpleCreateScene(const TestScene::Options&) {
45 return new T();
46 }
47
48 typedef test::TestScene* (*CreateScene)(const TestScene::Options&);
49
50 struct Info {
51 std::string name;
52 std::string description;
53 CreateScene createScene;
54 };
55
56 class Registrar {
57 public:
John Reck1bcacfd2017-11-03 10:12:19 -070058 explicit Registrar(const TestScene::Info& info) { TestScene::registerScene(info); }
59
Chris Craik27e58b42015-12-07 10:01:38 -080060 private:
61 Registrar() = delete;
62 Registrar(const Registrar&) = delete;
63 Registrar& operator=(const Registrar&) = delete;
64 };
65
John Reck16c9d6a2015-11-17 15:51:08 -080066 virtual ~TestScene() {}
Stan Iliev06152cd2016-07-27 17:55:43 -040067 virtual void createContent(int width, int height, Canvas& renderer) = 0;
John Reck16c9d6a2015-11-17 15:51:08 -080068 virtual void doFrame(int frameNr) = 0;
Chris Craik27e58b42015-12-07 10:01:38 -080069
70 static std::unordered_map<std::string, Info>& testMap();
71 static void registerScene(const Info& info);
John Recked024d22017-11-10 15:06:32 -080072
73 sp<Surface> renderTarget;
John Reck16c9d6a2015-11-17 15:51:08 -080074};
75
John Reck1bcacfd2017-11-03 10:12:19 -070076} // namespace test
77} // namespace uirenderer
78} // namespace android