blob: a07c6890a0795c2870b06ceb64a8f354dbc57cc1 [file] [log] [blame]
Wonsik Kimf837c932014-02-24 14:20:35 +09001/*
2 * Copyright (C) 2014 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#ifndef ANDROID_LAYER_VIDEO_PLANE_H
18#define ANDROID_LAYER_VIDEO_PLANE_H
19
20#include <stdint.h>
21#include <sys/types.h>
22
23#include "Layer.h"
24
25// ---------------------------------------------------------------------------
26
27namespace android {
28
29class LayerVideoPlane : public Layer
30{
31public:
32 LayerVideoPlane(SurfaceFlinger* flinger, const sp<Client>& client,
33 const String8& name, uint32_t w, uint32_t h, uint32_t flags);
34 virtual ~LayerVideoPlane();
35
36 virtual const char* getTypeId() const { return "LayerVideoPlane"; }
37 virtual void onDraw(const sp<const DisplayDevice>& hw, const Region& clip,
38 bool useIdentityTransform) const;
39 virtual bool isFixedSize() const { return true; }
40 virtual bool isVisible() const;
41};
42
43// ---------------------------------------------------------------------------
44
45}; // namespace android
46
47#endif // ANDROID_LAYER_VIDEO_PLANE_H