blob: dc63e5db4a707c37aa867dc08d099781757ac3ca [file] [log] [blame]
Chris Craik0776a602013-02-14 15:36:01 -08001/*
2 * Copyright (C) 2013 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
Chris Craik5e00c7c2016-07-06 16:10:09 -070017#pragma once
Chris Craik0776a602013-02-14 15:36:01 -080018
John Reckd9d7f122018-05-03 14:40:56 -070019#include "pipeline/skia/SkiaDisplayList.h"
Chris Craik0776a602013-02-14 15:36:01 -080020
21namespace android {
22namespace uirenderer {
23
Doris Liu67ce99b2016-05-17 16:50:31 -070024namespace VectorDrawable {
25class Tree;
26};
27typedef uirenderer::VectorDrawable::Tree VectorDrawableRoot;
28
Doris Liu1d8e1942016-03-02 15:16:28 -080029/**
John Reck44fd8d22014-02-26 11:00:11 -080030 * Data structure that holds the list of commands used in display list stream
Chris Craik0776a602013-02-14 15:36:01 -080031 */
John Reckd9d7f122018-05-03 14:40:56 -070032using DisplayList = skiapipeline::SkiaDisplayList;
Chris Craik0776a602013-02-14 15:36:01 -080033
Chris Blume7b8a8082018-11-30 15:51:58 -080034} // namespace uirenderer
35} // namespace android