blob: e1c2d11ded703f1653af661c2391879f9b8519eb [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 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
Mathias Agopiand3ee2312012-08-02 14:01:42 -070017#ifndef ANDROID_DISPLAY_DEVICE_H
18#define ANDROID_DISPLAY_DEVICE_H
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080019
20#include <stdlib.h>
21
22#include <ui/PixelFormat.h>
23#include <ui/Region.h>
24
25#include <EGL/egl.h>
Mathias Agopian076b1cc2009-04-10 14:24:30 -070026#include <EGL/eglext.h>
27
Mathias Agopian86303202012-07-24 22:46:10 -070028#include <utils/Mutex.h>
29#include <utils/Timers.h>
30
Mathias Agopian1b031492012-06-20 17:51:20 -070031#include "Transform.h"
Mathias Agopian1f7bec62010-06-25 18:02:21 -070032
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080033namespace android {
34
Mathias Agopianc666cae2012-07-25 18:56:13 -070035class DisplayInfo;
Mathias Agopian3e876012012-06-07 17:52:54 -070036class FramebufferSurface;
Mathias Agopian86303202012-07-24 22:46:10 -070037class LayerBase;
38class SurfaceFlinger;
Mathias Agopiana4912602012-07-12 14:25:33 -070039class SurfaceTextureClient;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080040
Mathias Agopiand3ee2312012-08-02 14:01:42 -070041class DisplayDevice
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080042{
43public:
Mathias Agopian87baae12012-07-31 12:38:26 -070044 // region in layer-stack space
45 mutable Region dirtyRegion;
46 // region in screen space
47 mutable Region swapRegion;
48 // region in screen space
49 Region undefinedRegion;
Mathias Agopian3eb38cb2012-04-03 22:09:52 -070050
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080051 enum {
Mathias Agopian87baae12012-07-31 12:38:26 -070052 PARTIAL_UPDATES = 0x00020000, // video driver feature
53 SWAP_RECTANGLE = 0x00080000,
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080054 };
55
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -070056 DisplayDevice(
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080057 const sp<SurfaceFlinger>& flinger,
Mathias Agopiana4912602012-07-12 14:25:33 -070058 int dpy,
59 const sp<SurfaceTextureClient>& surface,
60 EGLConfig config);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080061
Mathias Agopiand3ee2312012-08-02 14:01:42 -070062 ~DisplayDevice();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080063
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080064 // Flip the front and back buffers if the back buffer is "dirty". Might
65 // be instantaneous, might involve copying the frame buffer around.
66 void flip(const Region& dirty) const;
67
68 float getDpiX() const;
69 float getDpiY() const;
70 float getRefreshRate() const;
71 float getDensity() const;
72 int getWidth() const;
73 int getHeight() const;
74 PixelFormat getFormat() const;
75 uint32_t getFlags() const;
Mathias Agopian82d7ab62012-01-19 18:34:40 -080076 nsecs_t getRefreshPeriod() const;
Mathias Agopianc666cae2012-07-25 18:56:13 -070077 status_t getInfo(DisplayInfo* info) const;
Mathias Agopian3eb38cb2012-04-03 22:09:52 -070078
Mathias Agopiana4912602012-07-12 14:25:33 -070079 EGLSurface getEGLSurface() const;
Mathias Agopian3b1d2b62012-07-11 13:48:17 -070080
81 void setVisibleLayersSortedByZ(const Vector< sp<LayerBase> >& layers);
82 Vector< sp<LayerBase> > getVisibleLayersSortedByZ() const;
83 bool getSecureLayerVisible() const;
84
Mathias Agopian1b031492012-06-20 17:51:20 -070085 status_t setOrientation(int orientation);
86 int getOrientation() const { return mOrientation; }
87 const Transform& getTransform() const { return mGlobalTransform; }
Mathias Agopian87baae12012-07-31 12:38:26 -070088 uint32_t getLayerStack() const { return mLayerStack; }
89
Mathias Agopian74faca22009-09-17 16:18:16 -070090 status_t compositionComplete() const;
91
Mathias Agopian9c6e2972011-09-20 17:21:56 -070092 Rect getBounds() const {
Mathias Agopian1b031492012-06-20 17:51:20 -070093 return Rect(mDisplayWidth, mDisplayHeight);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080094 }
Mathias Agopian9c6e2972011-09-20 17:21:56 -070095 inline Rect bounds() const { return getBounds(); }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080096
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -070097 static void makeCurrent(const DisplayDevice& hw, EGLContext ctx);
Mathias Agopian52bbb1a2012-07-31 19:01:53 -070098
Mathias Agopiand3ee2312012-08-02 14:01:42 -070099 /* ------------------------------------------------------------------------
100 * blank / unplank management
101 */
102 void releaseScreen() const;
103 void acquireScreen() const;
104 bool isScreenAcquired() const;
105 bool canDraw() const;
106
107 /* ------------------------------------------------------------------------
108 * Debugging
109 */
110 uint32_t getPageFlipCount() const;
111 void dump(String8& res) const;
112
113
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800114private:
Mathias Agopiana4912602012-07-12 14:25:33 -0700115 void init(EGLConfig config);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800116
Mathias Agopiana4912602012-07-12 14:25:33 -0700117 /*
118 * Constants, set during initialization
119 */
Mathias Agopianc7d14e22011-08-01 16:32:21 -0700120 sp<SurfaceFlinger> mFlinger;
Mathias Agopiana4912602012-07-12 14:25:33 -0700121 int mDisplayId;
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700122
Mathias Agopiana4912602012-07-12 14:25:33 -0700123 // ANativeWindow this display is rendering into
124 sp<SurfaceTextureClient> mNativeWindow;
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700125
Mathias Agopiana4912602012-07-12 14:25:33 -0700126 // set if mNativeWindow is a FramebufferSurface
127 sp<FramebufferSurface> mFramebufferSurface;
128
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800129 EGLDisplay mDisplay;
130 EGLSurface mSurface;
131 EGLContext mContext;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800132 float mDpiX;
133 float mDpiY;
134 float mRefreshRate;
135 float mDensity;
Mathias Agopian1b031492012-06-20 17:51:20 -0700136 int mDisplayWidth;
137 int mDisplayHeight;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800138 PixelFormat mFormat;
139 uint32_t mFlags;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700140 mutable uint32_t mPageFlipCount;
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800141 nsecs_t mRefreshPeriod;
Mathias Agopian03e40722012-04-26 16:11:59 -0700142
Mathias Agopiana4912602012-07-12 14:25:33 -0700143 /*
144 * Can only accessed from the main thread, these members
145 * don't need synchronization.
146 */
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700147
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700148 // list of visible layers on that display
149 Vector< sp<LayerBase> > mVisibleLayersSortedByZ;
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700150
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700151 // Whether we have a visible secure layer on this display
152 bool mSecureLayerVisible;
153
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700154 // Whether the screen is blanked;
155 mutable int mScreenAcquired;
Mathias Agopiana350ff92010-08-10 17:14:02 -0700156
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700157
158 /*
159 * Transaction state
160 */
Mathias Agopian1b031492012-06-20 17:51:20 -0700161 static status_t orientationToTransfrom(int orientation, int w, int h,
162 Transform* tr);
Mathias Agopian98a121a2012-07-24 21:08:59 -0700163 Transform mGlobalTransform;
164 int mOrientation;
Mathias Agopian87baae12012-07-31 12:38:26 -0700165 uint32_t mLayerStack;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800166};
167
168}; // namespace android
169
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700170#endif // ANDROID_DISPLAY_DEVICE_H