OSDN Git Service

drm_hwcomposer: correctly handle rotation + cropping
[android-x86/external-drm_hwcomposer.git] / drmdisplaycompositor.h
1 /*
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 #include "drmframebuffer.h"
24
25 #include <pthread.h>
26 #include <queue>
27 #include <sstream>
28
29 #include <hardware/hardware.h>
30 #include <hardware/hwcomposer.h>
31
32 #define DRM_DISPLAY_BUFFERS 2
33
34 namespace android {
35
36 class GLWorkerCompositor;
37
38 class DrmDisplayCompositor {
39  public:
40   DrmDisplayCompositor();
41   ~DrmDisplayCompositor();
42
43   int Init(DrmResources *drm, int display);
44
45   int QueueComposition(std::unique_ptr<DrmDisplayComposition> composition);
46   int Composite();
47   void Dump(std::ostringstream *out) const;
48
49   bool HaveQueuedComposites() const;
50
51  private:
52   DrmDisplayCompositor(const DrmDisplayCompositor &) = delete;
53
54   int ApplyPreComposite(DrmDisplayComposition *display_comp);
55   int ApplyFrame(DrmDisplayComposition *display_comp);
56   int ApplyDpms(DrmDisplayComposition *display_comp);
57
58   DrmResources *drm_;
59   int display_;
60
61   DrmCompositorWorker worker_;
62
63   std::queue<std::unique_ptr<DrmDisplayComposition>> composite_queue_;
64   std::unique_ptr<DrmDisplayComposition> active_composition_;
65
66   uint64_t frame_no_;
67
68   bool initialized_;
69   bool active_;
70
71   int framebuffer_index_;
72   DrmFramebuffer framebuffers_[DRM_DISPLAY_BUFFERS];
73   std::unique_ptr<GLWorkerCompositor> pre_compositor_;
74
75   // mutable since we need to acquire in HaveQueuedComposites
76   mutable pthread_mutex_t lock_;
77
78   // State tracking progress since our last Dump(). These are mutable since
79   // we need to reset them on every Dump() call.
80   mutable uint64_t dump_frames_composited_;
81   mutable uint64_t dump_last_timestamp_ns_;
82 };
83 }
84
85 #endif  // ANDROID_DRM_DISPLAY_COMPOSITOR_H_