blob: 5c47fbf8ae86245f827a6f8cc6f9663c30e8cb07 [file] [log] [blame]
Sean Paulb386f1b2015-05-13 06:33:23 -07001/*
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#ifndef ANDROID_DRM_COMPOSITION_H_
18#define ANDROID_DRM_COMPOSITION_H_
19
20#include "compositor.h"
21#include "drm_hwcomposer.h"
22#include "drmplane.h"
23#include "importer.h"
24
25#include <deque>
26#include <map>
27#include <vector>
28
29#include <hardware/hardware.h>
30#include <hardware/hwcomposer.h>
31
32namespace android {
33
34typedef struct DrmCompositionLayer {
35 DrmCompositionLayer();
36 ~DrmCompositionLayer();
37
38 hwc_layer_1_t layer;
39 hwc_drm_bo_t bo;
40 DrmCrtc *crtc;
41 DrmPlane *plane;
42} DrmCompositionLayer_t;
43
44typedef std::multimap<int, DrmCompositionLayer> DrmCompositionLayerMap_t;
45typedef std::pair<int, DrmCompositionLayer> DrmCompositionLayerPair_t;
46
47class DrmComposition : public Composition {
48 public:
49 DrmComposition(DrmResources *drm, Importer *importer, uint64_t frame_no);
50 ~DrmComposition();
51
52 virtual int Init();
53
54 virtual unsigned GetRemainingLayers(int display, unsigned num_needed) const;
55 virtual int AddLayer(int display, hwc_layer_1_t *layer, hwc_drm_bo_t *bo);
56
57 int FinishComposition();
58
59 DrmCompositionLayerMap_t *GetCompositionMap();
60
61 private:
62 DrmResources *drm_;
63 Importer *importer_;
64
65 uint64_t frame_no_;
66
67 int timeline_fd_;
68 int timeline_;
69
70 std::vector<DrmPlane *> primary_planes_;
71 std::deque<DrmPlane *> overlay_planes_;
72 DrmCompositionLayerMap_t composition_map_;
73};
74}
75
76#endif // ANDROID_DRM_COMPOSITION_H_