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>
|
|
|
|
|
2009-10-06 00:07:12 +00:00
|
|
|
#include <ui/GraphicBuffer.h>
|
2009-03-04 03:31:44 +00:00
|
|
|
#include <ui/PixelFormat.h>
|
|
|
|
#include <pixelflinger/pixelflinger.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"
|
|
|
|
#include "Transform.h"
|
2010-05-11 03:06:11 +00:00
|
|
|
#include "TextureManager.h"
|
2009-03-04 03:31:44 +00:00
|
|
|
|
|
|
|
namespace android {
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class Client;
|
|
|
|
class FreezeLock;
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class Layer : public LayerBaseClient
|
|
|
|
{
|
2010-05-11 03:06:11 +00:00
|
|
|
public:
|
|
|
|
// lcblk is (almost) only accessed from the main SF thread, in the places
|
|
|
|
// where it's not, a reference to Client must be held
|
|
|
|
SharedBufferServer* lcblk;
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
Layer(SurfaceFlinger* flinger, DisplayID display,
|
2009-06-20 00:00:27 +00:00
|
|
|
const sp<Client>& client, int32_t i);
|
2009-03-04 03:31:44 +00:00
|
|
|
|
|
|
|
virtual ~Layer();
|
|
|
|
|
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
|
|
|
void setBufferSize(uint32_t w, uint32_t h);
|
|
|
|
bool isFixedSize() const;
|
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);
|
|
|
|
virtual void finishPageFlip();
|
|
|
|
virtual bool needsBlending() const { return mNeedsBlending; }
|
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; }
|
2009-04-10 21:24:30 +00:00
|
|
|
virtual sp<Surface> createSurface() const;
|
2009-04-18 02:36:26 +00:00
|
|
|
virtual status_t ditch();
|
2010-05-11 03:06:11 +00:00
|
|
|
virtual void onRemoved();
|
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
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
// only for debugging
|
2010-05-11 03:06:11 +00:00
|
|
|
inline sp<GraphicBuffer> getBuffer(int i) const { return mBufferManager.getBuffer(i); }
|
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
|
|
|
|
inline const sp<FreezeLock>& getFreezeLock() const { return mFreezeLock; }
|
|
|
|
// only for debugging
|
|
|
|
inline PixelFormat pixelFormat() const { return mFormat; }
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2010-04-21 00:55:49 +00:00
|
|
|
virtual const char* getTypeId() const { return "Layer"; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void dump(String8& result, char* scratch, size_t size) const;
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
private:
|
|
|
|
void reloadTexture(const Region& dirty);
|
|
|
|
|
2009-10-06 00:07:12 +00:00
|
|
|
uint32_t getEffectiveUsage(uint32_t usage) const;
|
|
|
|
|
2010-05-22 00:24:35 +00:00
|
|
|
sp<GraphicBuffer> requestBuffer(int bufferIdx,
|
|
|
|
uint32_t w, uint32_t h, uint32_t format, uint32_t usage);
|
2010-05-07 22:58:44 +00:00
|
|
|
status_t setBufferCount(int bufferCount);
|
2009-04-22 22:23:34 +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
|
|
|
class SurfaceLayer : public LayerBaseClient::Surface {
|
2009-04-10 21:24:30 +00:00
|
|
|
public:
|
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
|
|
|
SurfaceLayer(const sp<SurfaceFlinger>& flinger,
|
|
|
|
SurfaceID id, const sp<Layer>& owner);
|
|
|
|
~SurfaceLayer();
|
2009-04-10 21:24:30 +00:00
|
|
|
private:
|
2010-05-22 00:24:35 +00:00
|
|
|
virtual sp<GraphicBuffer> requestBuffer(int bufferIdx,
|
|
|
|
uint32_t w, uint32_t h, uint32_t format, uint32_t usage);
|
2010-05-07 22:58:44 +00:00
|
|
|
virtual status_t setBufferCount(int bufferCount);
|
2009-04-10 21:24:30 +00:00
|
|
|
sp<Layer> getOwner() const {
|
|
|
|
return static_cast<Layer*>(Surface::getOwner().get());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
friend class SurfaceLayer;
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
sp<Surface> mSurface;
|
|
|
|
|
|
|
|
bool mSecure;
|
|
|
|
int32_t mFrontBufferIndex;
|
|
|
|
bool mNeedsBlending;
|
2009-09-24 02:16:27 +00:00
|
|
|
bool mNeedsDithering;
|
2009-03-04 03:31:44 +00:00
|
|
|
Region mPostedDirtyRegion;
|
|
|
|
sp<FreezeLock> mFreezeLock;
|
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
|
|
|
PixelFormat mFormat;
|
2010-05-11 03:06:11 +00:00
|
|
|
|
|
|
|
class BufferManager {
|
|
|
|
static const size_t NUM_BUFFERS = 2;
|
|
|
|
struct BufferData {
|
|
|
|
sp<GraphicBuffer> buffer;
|
2010-05-19 00:06:55 +00:00
|
|
|
Image texture;
|
2010-05-11 03:06:11 +00:00
|
|
|
};
|
2010-05-19 00:06:55 +00:00
|
|
|
// this lock protect mBufferData[].buffer but since there
|
|
|
|
// is very little contention, we have only one like for
|
|
|
|
// the whole array, we also use it to protect mNumBuffers.
|
2010-05-11 03:06:11 +00:00
|
|
|
mutable Mutex mLock;
|
2010-05-19 00:06:55 +00:00
|
|
|
BufferData mBufferData[SharedBufferStack::NUM_BUFFER_MAX];
|
|
|
|
size_t mNumBuffers;
|
2010-05-11 03:06:11 +00:00
|
|
|
Texture mFailoverTexture;
|
|
|
|
TextureManager& mTextureManager;
|
|
|
|
ssize_t mActiveBuffer;
|
|
|
|
bool mFailover;
|
2010-05-19 00:06:55 +00:00
|
|
|
static status_t destroyTexture(Image* tex, EGLDisplay dpy);
|
2010-05-11 03:06:11 +00:00
|
|
|
|
|
|
|
public:
|
2010-05-19 00:06:55 +00:00
|
|
|
static size_t getDefaultBufferCount() { return NUM_BUFFERS; }
|
2010-05-11 03:06:11 +00:00
|
|
|
BufferManager(TextureManager& tm);
|
2010-05-19 00:06:55 +00:00
|
|
|
~BufferManager();
|
2010-05-11 03:06:11 +00:00
|
|
|
|
|
|
|
// detach/attach buffer from/to given index
|
|
|
|
sp<GraphicBuffer> detachBuffer(size_t index);
|
|
|
|
status_t attachBuffer(size_t index, const sp<GraphicBuffer>& buffer);
|
|
|
|
|
2010-05-19 00:06:55 +00:00
|
|
|
// resize the number of active buffers
|
|
|
|
status_t resize(size_t size);
|
|
|
|
|
2010-05-11 03:06:11 +00:00
|
|
|
// ----------------------------------------------
|
|
|
|
// must be called from GL thread
|
|
|
|
|
|
|
|
// set/get active buffer index
|
|
|
|
status_t setActiveBufferIndex(size_t index);
|
|
|
|
size_t getActiveBufferIndex() const;
|
|
|
|
|
|
|
|
// return the active buffer
|
|
|
|
sp<GraphicBuffer> getActiveBuffer() const;
|
|
|
|
|
|
|
|
// return the active texture (or fail-over)
|
|
|
|
Texture getActiveTexture() const;
|
|
|
|
|
|
|
|
// frees resources associated with all buffers
|
|
|
|
status_t destroy(EGLDisplay dpy);
|
|
|
|
|
|
|
|
// load bitmap data into the active buffer
|
|
|
|
status_t loadTexture(const Region& dirty, const GGLSurface& t);
|
|
|
|
|
|
|
|
// make active buffer an EGLImage if needed
|
|
|
|
status_t initEglImage(EGLDisplay dpy,
|
|
|
|
const sp<GraphicBuffer>& buffer);
|
|
|
|
|
|
|
|
// ----------------------------------------------
|
|
|
|
// only for debugging
|
|
|
|
sp<GraphicBuffer> getBuffer(size_t index) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
TextureManager mTextureManager;
|
|
|
|
BufferManager mBufferManager;
|
|
|
|
|
2010-05-19 00:06:55 +00:00
|
|
|
// this lock protects mWidth and mHeight which are accessed from
|
|
|
|
// the main thread and requestBuffer's binder transaction thread.
|
2010-05-11 03:06:11 +00:00
|
|
|
mutable Mutex mLock;
|
|
|
|
uint32_t mWidth;
|
|
|
|
uint32_t mHeight;
|
2010-05-22 00:24:35 +00:00
|
|
|
uint32_t mReqWidth;
|
|
|
|
uint32_t mReqHeight;
|
|
|
|
uint32_t mReqFormat;
|
|
|
|
bool mFixedSize;
|
2009-03-04 03:31:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
}; // namespace android
|
|
|
|
|
|
|
|
#endif // ANDROID_LAYER_H
|