blob: 928ce460fe8a42ae9c2ed8b90fbb300d9a0b1590 [file] [log] [blame]
Sean Paul98e73c82015-06-24 14:38:49 -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_DISPLAY_COMPOSITOR_H_
18#define ANDROID_DRM_DISPLAY_COMPOSITOR_H_
19
20#include "drm_hwcomposer.h"
21#include "drmcomposition.h"
22#include "drmcompositorworker.h"
23
24#include <pthread.h>
25#include <queue>
26#include <sstream>
27
28#include <hardware/hardware.h>
29#include <hardware/hwcomposer.h>
30
31namespace android {
32
33class DrmDisplayCompositor {
34 public:
35 DrmDisplayCompositor();
36 ~DrmDisplayCompositor();
37
38 int Init(DrmResources *drm, int display);
39
40 int QueueComposition(std::unique_ptr<DrmDisplayComposition> composition);
41 int Composite();
42 void Dump(std::ostringstream *out) const;
43
44 bool HaveQueuedComposites() const;
45
46 private:
47 DrmDisplayCompositor(const DrmDisplayCompositor &) = delete;
48
49 int ApplyFrame(DrmDisplayComposition *display_comp);
50
51 DrmResources *drm_;
52 int display_;
53
54 DrmCompositorWorker worker_;
55
56 std::queue<std::unique_ptr<DrmDisplayComposition>> composite_queue_;
57 std::unique_ptr<DrmDisplayComposition> active_composition_;
58
59 uint64_t frame_no_;
60
61 bool initialized_;
62
63 // mutable since we need to acquire in HaveQueuedComposites
64 mutable pthread_mutex_t lock_;
65
66 // State tracking progress since our last Dump(). These are mutable since
67 // we need to reset them on every Dump() call.
68 mutable uint64_t dump_frames_composited_;
69 mutable uint64_t dump_last_timestamp_ns_;
70};
71}
72
73#endif // ANDROID_DRM_DISPLAY_COMPOSITOR_H_