116c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck/*
216c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck * Copyright (C) 2015 The Android Open Source Project
316c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck *
416c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck * Licensed under the Apache License, Version 2.0 (the "License");
516c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck * you may not use this file except in compliance with the License.
616c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck * You may obtain a copy of the License at
716c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck *
816c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck *      http://www.apache.org/licenses/LICENSE-2.0
916c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck *
1016c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck * Unless required by applicable law or agreed to in writing, software
1116c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck * distributed under the License is distributed on an "AS IS" BASIS,
1216c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1316c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck * See the License for the specific language governing permissions and
1416c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck * limitations under the License.
1516c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck */
1616c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck#ifndef TESTS_SCENES_TESTSCENEBASE_H
1716c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck#define TESTS_SCENES_TESTSCENEBASE_H
1816c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck
1916c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck#include "DisplayListCanvas.h"
2016c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck#include "RecordingCanvas.h"
2116c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck#include "RenderNode.h"
2227e58b4f54d693ff1db7ab2edb5d47ca296c1278Chris Craik#include "tests/common/TestContext.h"
238160f20b0aca8c6595d4b385d673f59b6bcd16a4Chris Craik#include "tests/common/TestScene.h"
248160f20b0aca8c6595d4b385d673f59b6bcd16a4Chris Craik#include "tests/common/TestUtils.h"
25e4db79de127cfe961195f52907af8451026eaa20Chris Craik#include "utils/Color.h"
2616c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck
2716c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck#include <functional>
2816c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck
2916c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reckusing namespace android;
3016c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reckusing namespace android::uirenderer;
3116c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reckusing namespace android::uirenderer::renderthread;
3216c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reckusing namespace android::uirenderer::test;
3316c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck
3416c9d6a92e1b86d448c00c52a1630f3e71e6df76John Reck#endif /* TESTS_SCENES_TESTSCENEBASE_H_ */
35