2009-03-04 03:31:44 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ANDROID_LAYER_H
|
|
|
|
#define ANDROID_LAYER_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2011-04-20 21:20:59 +00:00
|
|
|
#include <gui/SurfaceTexture.h>
|
|
|
|
|
|
|
|
#include <pixelflinger/pixelflinger.h>
|
2009-10-06 00:07:12 +00:00
|
|
|
#include <ui/GraphicBuffer.h>
|
2009-03-04 03:31:44 +00:00
|
|
|
#include <ui/PixelFormat.h>
|
|
|
|
|
2009-04-10 21:24:30 +00:00
|
|
|
#include <EGL/egl.h>
|
|
|
|
#include <EGL/eglext.h>
|
|
|
|
#include <GLES/gl.h>
|
|
|
|
#include <GLES/glext.h>
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
#include "LayerBase.h"
|
2011-04-20 21:20:59 +00:00
|
|
|
#include "SurfaceTextureLayer.h"
|
2009-03-04 03:31:44 +00:00
|
|
|
#include "Transform.h"
|
2012-01-20 02:34:40 +00:00
|
|
|
#include <utils/Timers.h>
|
2009-03-04 03:31:44 +00:00
|
|
|
|
|
|
|
namespace android {
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class Client;
|
2010-06-26 01:02:21 +00:00
|
|
|
class GLExtensions;
|
2009-03-04 03:31:44 +00:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2011-08-12 01:18:50 +00:00
|
|
|
class Layer : public LayerBaseClient
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
2010-05-11 03:06:11 +00:00
|
|
|
public:
|
2010-06-01 22:12:58 +00:00
|
|
|
Layer(SurfaceFlinger* flinger, DisplayID display,
|
|
|
|
const sp<Client>& client);
|
2010-05-11 03:06:11 +00:00
|
|
|
|
2010-06-01 22:12:58 +00:00
|
|
|
virtual ~Layer();
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2010-06-01 22:12:58 +00:00
|
|
|
virtual const char* getTypeId() const { return "Layer"; }
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2010-06-01 22:12:58 +00:00
|
|
|
// the this layer's size and format
|
fix [2068105] implement queueBuffer/lockBuffer/dequeueBuffer properly
Rewrote SurfaceFlinger's buffer management from the ground-up.
The design now support an arbitrary number of buffers per surface, however the current implementation is limited to four. Currently only 2 buffers are used in practice.
The main new feature is to be able to dequeue all buffers at once (very important when there are only two).
A client can dequeue all buffers until there are none available, it can lock all buffers except the last one that is used for composition. The client will block then, until a new buffer is enqueued.
The current implementation requires that buffers are locked in the same order they are dequeued and enqueued in the same order they are locked. Only one buffer can be locked at a time.
eg. Allowed sequence: DQ, DQ, LOCK, Q, LOCK, Q
eg. Forbidden sequence: DQ, DQ, LOCK, LOCK, Q, Q
2009-09-07 23:32:45 +00:00
|
|
|
status_t setBuffers(uint32_t w, uint32_t h,
|
|
|
|
PixelFormat format, uint32_t flags=0);
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2010-05-22 00:24:35 +00:00
|
|
|
bool isFixedSize() const;
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2010-06-01 22:12:58 +00:00
|
|
|
// LayerBase interface
|
2010-08-11 00:14:02 +00:00
|
|
|
virtual void setGeometry(hwc_layer_t* hwcl);
|
|
|
|
virtual void setPerFrameData(hwc_layer_t* hwcl);
|
2009-03-04 03:31:44 +00:00
|
|
|
virtual void onDraw(const Region& clip) const;
|
|
|
|
virtual uint32_t doTransaction(uint32_t transactionFlags);
|
|
|
|
virtual void lockPageFlip(bool& recomputeVisibleRegions);
|
|
|
|
virtual void unlockPageFlip(const Transform& planeTransform, Region& outDirtyRegion);
|
2011-04-20 21:20:59 +00:00
|
|
|
virtual bool isOpaque() const;
|
2009-09-24 02:16:27 +00:00
|
|
|
virtual bool needsDithering() const { return mNeedsDithering; }
|
2009-03-04 03:31:44 +00:00
|
|
|
virtual bool isSecure() const { return mSecure; }
|
2011-03-10 01:05:02 +00:00
|
|
|
virtual bool isProtected() const;
|
2010-05-11 03:06:11 +00:00
|
|
|
virtual void onRemoved();
|
2011-09-20 22:13:14 +00:00
|
|
|
virtual sp<Layer> getLayer() const { return const_cast<Layer*>(this); }
|
2011-09-17 00:31:54 +00:00
|
|
|
virtual void setName(const String8& name);
|
2010-06-01 22:12:58 +00:00
|
|
|
|
2011-08-18 01:19:00 +00:00
|
|
|
// LayerBaseClient interface
|
|
|
|
virtual wp<IBinder> getSurfaceTextureBinder() const;
|
|
|
|
|
2012-01-16 02:54:57 +00:00
|
|
|
virtual void onLayerDisplayed();
|
2012-02-01 02:24:27 +00:00
|
|
|
virtual bool onPreComposition();
|
2012-01-16 02:54:57 +00:00
|
|
|
|
fix [2068105] implement queueBuffer/lockBuffer/dequeueBuffer properly
Rewrote SurfaceFlinger's buffer management from the ground-up.
The design now support an arbitrary number of buffers per surface, however the current implementation is limited to four. Currently only 2 buffers are used in practice.
The main new feature is to be able to dequeue all buffers at once (very important when there are only two).
A client can dequeue all buffers until there are none available, it can lock all buffers except the last one that is used for composition. The client will block then, until a new buffer is enqueued.
The current implementation requires that buffers are locked in the same order they are dequeued and enqueued in the same order they are locked. Only one buffer can be locked at a time.
eg. Allowed sequence: DQ, DQ, LOCK, Q, LOCK, Q
eg. Forbidden sequence: DQ, DQ, LOCK, LOCK, Q, Q
2009-09-07 23:32:45 +00:00
|
|
|
// only for debugging
|
2011-09-20 22:13:14 +00:00
|
|
|
inline const sp<GraphicBuffer>& getActiveBuffer() const { return mActiveBuffer; }
|
2010-04-21 00:55:49 +00:00
|
|
|
|
|
|
|
protected:
|
2011-04-20 21:20:59 +00:00
|
|
|
virtual void onFirstRef();
|
2010-04-21 00:55:49 +00:00
|
|
|
virtual void dump(String8& result, char* scratch, size_t size) const;
|
2012-01-20 02:34:40 +00:00
|
|
|
virtual void dumpStats(String8& result, char* buffer, size_t SIZE) const;
|
2012-01-29 06:31:55 +00:00
|
|
|
virtual void clearStats();
|
2010-04-21 00:55:49 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
private:
|
2011-04-20 21:20:59 +00:00
|
|
|
friend class SurfaceTextureLayer;
|
|
|
|
void onFrameQueued();
|
|
|
|
virtual sp<ISurface> createSurface();
|
2009-10-06 00:07:12 +00:00
|
|
|
uint32_t getEffectiveUsage(uint32_t usage) const;
|
2011-08-24 01:03:18 +00:00
|
|
|
uint32_t getTransformHint() const;
|
2011-04-20 21:20:59 +00:00
|
|
|
bool isCropped() const;
|
|
|
|
static bool getOpacityForFormat(uint32_t format);
|
2010-06-01 22:12:58 +00:00
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2011-04-20 21:20:59 +00:00
|
|
|
// constants
|
|
|
|
sp<SurfaceTextureLayer> mSurfaceTexture;
|
|
|
|
GLuint mTextureName;
|
2010-06-01 22:12:58 +00:00
|
|
|
|
|
|
|
// thread-safe
|
2011-04-20 21:20:59 +00:00
|
|
|
volatile int32_t mQueuedFrames;
|
|
|
|
|
|
|
|
// main thread
|
|
|
|
sp<GraphicBuffer> mActiveBuffer;
|
|
|
|
GLfloat mTextureMatrix[16];
|
|
|
|
Rect mCurrentCrop;
|
|
|
|
uint32_t mCurrentTransform;
|
2011-07-18 23:15:08 +00:00
|
|
|
uint32_t mCurrentScalingMode;
|
2011-04-20 21:20:59 +00:00
|
|
|
bool mCurrentOpacity;
|
2012-02-01 02:24:27 +00:00
|
|
|
size_t mRefreshPending;
|
2012-01-16 02:54:57 +00:00
|
|
|
bool mFrameLatencyNeeded;
|
|
|
|
int mFrameLatencyOffset;
|
2012-02-01 02:24:27 +00:00
|
|
|
|
2012-01-20 02:34:40 +00:00
|
|
|
struct Statistics {
|
|
|
|
Statistics() : timestamp(0), set(0), vsync(0) { }
|
|
|
|
nsecs_t timestamp; // buffer timestamp
|
|
|
|
nsecs_t set; // buffer displayed timestamp
|
|
|
|
nsecs_t vsync; // vsync immediately before set
|
|
|
|
};
|
2012-02-01 02:24:27 +00:00
|
|
|
|
2012-01-20 02:34:40 +00:00
|
|
|
// protected by mLock
|
|
|
|
Statistics mFrameStats[128];
|
2010-06-01 22:12:58 +00:00
|
|
|
|
|
|
|
// constants
|
|
|
|
PixelFormat mFormat;
|
2010-06-26 01:02:21 +00:00
|
|
|
const GLExtensions& mGLExtensions;
|
2011-04-20 21:20:59 +00:00
|
|
|
bool mOpaqueLayer;
|
2010-06-01 22:12:58 +00:00
|
|
|
bool mNeedsDithering;
|
|
|
|
|
|
|
|
// page-flip thread (currently main thread)
|
2011-01-19 23:27:27 +00:00
|
|
|
bool mSecure; // no screenshots
|
|
|
|
bool mProtectedByApp; // application requires protected path to external sink
|
2010-06-01 22:12:58 +00:00
|
|
|
Region mPostedDirtyRegion;
|
2009-03-04 03:31:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
}; // namespace android
|
|
|
|
|
|
|
|
#endif // ANDROID_LAYER_H
|