2010-12-20 19:27:26 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 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_GUI_SURFACETEXTURE_H
|
|
|
|
#define ANDROID_GUI_SURFACETEXTURE_H
|
|
|
|
|
|
|
|
#include <EGL/egl.h>
|
|
|
|
#include <EGL/eglext.h>
|
|
|
|
#include <GLES2/gl2.h>
|
2011-09-28 19:13:31 +00:00
|
|
|
#include <GLES2/gl2ext.h>
|
2010-12-20 19:27:26 +00:00
|
|
|
|
|
|
|
#include <gui/ISurfaceTexture.h>
|
2012-01-22 23:26:27 +00:00
|
|
|
#include <gui/BufferQueue.h>
|
2012-08-08 01:03:04 +00:00
|
|
|
#include <gui/ConsumerBase.h>
|
2010-12-20 19:27:26 +00:00
|
|
|
|
|
|
|
#include <ui/GraphicBuffer.h>
|
|
|
|
|
2011-09-17 00:30:26 +00:00
|
|
|
#include <utils/String8.h>
|
2011-01-13 02:30:40 +00:00
|
|
|
#include <utils/Vector.h>
|
2011-09-17 00:30:26 +00:00
|
|
|
#include <utils/threads.h>
|
2010-12-20 19:27:26 +00:00
|
|
|
|
|
|
|
#define ANDROID_GRAPHICS_SURFACETEXTURE_JNI_ID "mSurfaceTexture"
|
|
|
|
|
|
|
|
namespace android {
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2012-01-22 23:26:27 +00:00
|
|
|
|
2011-05-10 02:08:33 +00:00
|
|
|
class String8;
|
2011-01-13 02:30:40 +00:00
|
|
|
|
2012-08-08 01:03:04 +00:00
|
|
|
class SurfaceTexture : public ConsumerBase {
|
2010-12-20 19:27:26 +00:00
|
|
|
public:
|
2012-08-08 01:03:04 +00:00
|
|
|
typedef ConsumerBase::FrameAvailableListener FrameAvailableListener;
|
2011-01-13 22:43:36 +00:00
|
|
|
|
2011-11-14 22:51:01 +00:00
|
|
|
// SurfaceTexture constructs a new SurfaceTexture object. tex indicates the
|
2012-03-29 02:05:54 +00:00
|
|
|
// name of the OpenGL ES texture to which images are to be streamed.
|
2011-11-14 22:51:01 +00:00
|
|
|
// allowSynchronousMode specifies whether or not synchronous mode can be
|
|
|
|
// enabled. texTarget specifies the OpenGL ES texture target to which the
|
|
|
|
// texture will be bound in updateTexImage. useFenceSync specifies whether
|
|
|
|
// fences should be used to synchronize access to buffers if that behavior
|
2012-02-23 22:35:13 +00:00
|
|
|
// is enabled at compile-time. A custom bufferQueue can be specified
|
|
|
|
// if behavior for queue/dequeue/connect etc needs to be customized.
|
|
|
|
// Otherwise a default BufferQueue will be created and used.
|
2012-03-29 02:05:54 +00:00
|
|
|
//
|
|
|
|
// For legacy reasons, the SurfaceTexture is created in a state where it is
|
|
|
|
// considered attached to an OpenGL ES context for the purposes of the
|
|
|
|
// attachToContext and detachFromContext methods. However, despite being
|
|
|
|
// considered "attached" to a context, the specific OpenGL ES context
|
|
|
|
// doesn't get latched until the first call to updateTexImage. After that
|
|
|
|
// point, all calls to updateTexImage must be made with the same OpenGL ES
|
|
|
|
// context current.
|
|
|
|
//
|
|
|
|
// A SurfaceTexture may be detached from one OpenGL ES context and then
|
|
|
|
// attached to a different context using the detachFromContext and
|
|
|
|
// attachToContext methods, respectively. The intention of these methods is
|
|
|
|
// purely to allow a SurfaceTexture to be transferred from one consumer
|
|
|
|
// context to another. If such a transfer is not needed there is no
|
|
|
|
// requirement that either of these methods be called.
|
2011-09-28 19:13:31 +00:00
|
|
|
SurfaceTexture(GLuint tex, bool allowSynchronousMode = true,
|
2012-02-23 22:35:13 +00:00
|
|
|
GLenum texTarget = GL_TEXTURE_EXTERNAL_OES, bool useFenceSync = true,
|
|
|
|
const sp<BufferQueue> &bufferQueue = 0);
|
2010-12-20 19:27:26 +00:00
|
|
|
|
|
|
|
// updateTexImage sets the image contents of the target texture to that of
|
|
|
|
// the most recently queued buffer.
|
|
|
|
//
|
|
|
|
// This call may only be made while the OpenGL ES context to which the
|
|
|
|
// target texture belongs is bound to the calling thread.
|
2012-09-10 00:48:42 +00:00
|
|
|
//
|
|
|
|
// After calling this method the doGLFenceWait method must be called
|
|
|
|
// before issuing OpenGL ES commands that access the texture contents.
|
2010-12-20 19:27:26 +00:00
|
|
|
status_t updateTexImage();
|
|
|
|
|
2012-06-14 21:45:17 +00:00
|
|
|
// setReleaseFence stores a fence file descriptor that will signal when the
|
|
|
|
// current buffer is no longer being read. This fence will be returned to
|
|
|
|
// the producer when the current buffer is released by updateTexImage().
|
|
|
|
// Multiple fences can be set for a given buffer; they will be merged into
|
|
|
|
// a single union fence. The SurfaceTexture will close the file descriptor
|
|
|
|
// when finished with it.
|
|
|
|
void setReleaseFence(int fenceFd);
|
|
|
|
|
2012-08-25 00:25:13 +00:00
|
|
|
// setDefaultMaxBufferCount sets the default limit on the maximum number
|
|
|
|
// of buffers that will be allocated at one time. The image producer may
|
|
|
|
// override the limit.
|
|
|
|
status_t setDefaultMaxBufferCount(int bufferCount);
|
2011-05-03 02:51:12 +00:00
|
|
|
|
2011-01-10 00:33:17 +00:00
|
|
|
// getTransformMatrix retrieves the 4x4 texture coordinate transform matrix
|
|
|
|
// associated with the texture image set by the most recent call to
|
|
|
|
// updateTexImage.
|
|
|
|
//
|
|
|
|
// This transform matrix maps 2D homogeneous texture coordinates of the form
|
|
|
|
// (s, t, 0, 1) with s and t in the inclusive range [0, 1] to the texture
|
|
|
|
// coordinate that should be used to sample that location from the texture.
|
|
|
|
// Sampling the texture outside of the range of this transform is undefined.
|
|
|
|
//
|
|
|
|
// This transform is necessary to compensate for transforms that the stream
|
|
|
|
// content producer may implicitly apply to the content. By forcing users of
|
|
|
|
// a SurfaceTexture to apply this transform we avoid performing an extra
|
|
|
|
// copy of the data that would be needed to hide the transform from the
|
|
|
|
// user.
|
|
|
|
//
|
|
|
|
// The matrix is stored in column-major order so that it may be passed
|
|
|
|
// directly to OpenGL ES via the glLoadMatrixf or glUniformMatrix4fv
|
|
|
|
// functions.
|
|
|
|
void getTransformMatrix(float mtx[16]);
|
|
|
|
|
2011-02-18 19:02:42 +00:00
|
|
|
// getTimestamp retrieves the timestamp associated with the texture image
|
|
|
|
// set by the most recent call to updateTexImage.
|
|
|
|
//
|
|
|
|
// The timestamp is in nanoseconds, and is monotonically increasing. Its
|
|
|
|
// other semantics (zero point, etc) are source-dependent and should be
|
|
|
|
// documented by the source.
|
|
|
|
int64_t getTimestamp();
|
|
|
|
|
2011-04-01 02:10:24 +00:00
|
|
|
// setDefaultBufferSize is used to set the size of buffers returned by
|
|
|
|
// requestBuffers when a with and height of zero is requested.
|
|
|
|
// A call to setDefaultBufferSize() may trigger requestBuffers() to
|
|
|
|
// be called from the client.
|
2011-11-10 22:34:26 +00:00
|
|
|
// The width and height parameters must be no greater than the minimum of
|
|
|
|
// GL_MAX_VIEWPORT_DIMS and GL_MAX_TEXTURE_SIZE (see: glGetIntegerv).
|
|
|
|
// An error due to invalid dimensions might not be reported until
|
|
|
|
// updateTexImage() is called.
|
|
|
|
status_t setDefaultBufferSize(uint32_t width, uint32_t height);
|
2011-04-01 02:10:24 +00:00
|
|
|
|
2012-05-08 23:56:34 +00:00
|
|
|
// setFilteringEnabled sets whether the transform matrix should be computed
|
|
|
|
// for use with bilinear filtering.
|
|
|
|
void setFilteringEnabled(bool enabled);
|
|
|
|
|
2011-04-12 04:19:55 +00:00
|
|
|
// getCurrentBuffer returns the buffer associated with the current image.
|
|
|
|
sp<GraphicBuffer> getCurrentBuffer() const;
|
|
|
|
|
|
|
|
// getCurrentTextureTarget returns the texture target of the current
|
|
|
|
// texture as returned by updateTexImage().
|
|
|
|
GLenum getCurrentTextureTarget() const;
|
|
|
|
|
2012-04-18 02:36:18 +00:00
|
|
|
// getCurrentCrop returns the cropping rectangle of the current buffer.
|
2011-04-12 04:19:55 +00:00
|
|
|
Rect getCurrentCrop() const;
|
|
|
|
|
2012-04-18 02:36:18 +00:00
|
|
|
// getCurrentTransform returns the transform of the current buffer.
|
2011-04-12 04:19:55 +00:00
|
|
|
uint32_t getCurrentTransform() const;
|
|
|
|
|
2012-04-18 02:36:18 +00:00
|
|
|
// getCurrentScalingMode returns the scaling mode of the current buffer.
|
2011-07-13 22:24:42 +00:00
|
|
|
uint32_t getCurrentScalingMode() const;
|
|
|
|
|
2012-06-29 22:21:18 +00:00
|
|
|
// getCurrentFence returns the fence indicating when the current buffer is
|
|
|
|
// ready to be read from.
|
|
|
|
sp<Fence> getCurrentFence() const;
|
|
|
|
|
2012-09-10 00:48:42 +00:00
|
|
|
// doGLFenceWait inserts a wait command into the OpenGL ES command stream
|
|
|
|
// to ensure that it is safe for future OpenGL ES commands to access the
|
|
|
|
// current texture buffer. This must be called each time updateTexImage
|
|
|
|
// is called before issuing OpenGL ES commands that access the texture.
|
|
|
|
status_t doGLFenceWait() const;
|
|
|
|
|
2011-11-20 02:04:43 +00:00
|
|
|
// isSynchronousMode returns whether the SurfaceTexture is currently in
|
|
|
|
// synchronous mode.
|
|
|
|
bool isSynchronousMode() const;
|
|
|
|
|
2011-09-17 00:30:26 +00:00
|
|
|
// set the name of the SurfaceTexture that will be used to identify it in
|
|
|
|
// log messages.
|
|
|
|
void setName(const String8& name);
|
|
|
|
|
2012-02-23 22:35:13 +00:00
|
|
|
// These functions call the corresponding BufferQueue implementation
|
|
|
|
// so the refactoring can proceed smoothly
|
|
|
|
status_t setDefaultBufferFormat(uint32_t defaultFormat);
|
|
|
|
status_t setConsumerUsageBits(uint32_t usage);
|
|
|
|
status_t setTransformHint(uint32_t hint);
|
|
|
|
virtual status_t setSynchronousMode(bool enabled);
|
|
|
|
|
2012-03-29 02:05:54 +00:00
|
|
|
// getBufferQueue returns the BufferQueue object to which this
|
|
|
|
// SurfaceTexture is connected.
|
2012-08-08 01:03:04 +00:00
|
|
|
sp<BufferQueue> getBufferQueue() const {
|
|
|
|
return mBufferQueue;
|
|
|
|
}
|
2012-02-23 22:35:13 +00:00
|
|
|
|
2012-03-29 02:05:54 +00:00
|
|
|
// detachFromContext detaches the SurfaceTexture from the calling thread's
|
|
|
|
// current OpenGL ES context. This context must be the same as the context
|
|
|
|
// that was current for previous calls to updateTexImage.
|
|
|
|
//
|
|
|
|
// Detaching a SurfaceTexture from an OpenGL ES context will result in the
|
|
|
|
// deletion of the OpenGL ES texture object into which the images were being
|
|
|
|
// streamed. After a SurfaceTexture has been detached from the OpenGL ES
|
|
|
|
// context calls to updateTexImage will fail returning INVALID_OPERATION
|
|
|
|
// until the SurfaceTexture is attached to a new OpenGL ES context using the
|
|
|
|
// attachToContext method.
|
|
|
|
status_t detachFromContext();
|
|
|
|
|
|
|
|
// attachToContext attaches a SurfaceTexture that is currently in the
|
|
|
|
// 'detached' state to the current OpenGL ES context. A SurfaceTexture is
|
|
|
|
// in the 'detached' state iff detachFromContext has successfully been
|
|
|
|
// called and no calls to attachToContext have succeeded since the last
|
|
|
|
// detachFromContext call. Calls to attachToContext made on a
|
|
|
|
// SurfaceTexture that is not in the 'detached' state will result in an
|
|
|
|
// INVALID_OPERATION error.
|
|
|
|
//
|
|
|
|
// The tex argument specifies the OpenGL ES texture object name in the
|
|
|
|
// new context into which the image contents will be streamed. A successful
|
|
|
|
// call to attachToContext will result in this texture object being bound to
|
|
|
|
// the texture target and populated with the image contents that were
|
|
|
|
// current at the time of the last call to detachFromContext.
|
|
|
|
status_t attachToContext(GLuint tex);
|
|
|
|
|
2012-08-20 21:28:53 +00:00
|
|
|
protected:
|
2012-08-08 01:03:04 +00:00
|
|
|
|
2012-08-08 01:03:04 +00:00
|
|
|
// abandonLocked overrides the ConsumerBase method to clear
|
|
|
|
// mCurrentTextureBuf in addition to the ConsumerBase behavior.
|
|
|
|
virtual void abandonLocked();
|
|
|
|
|
|
|
|
// dumpLocked overrides the ConsumerBase method to dump SurfaceTexture-
|
|
|
|
// specific info in addition to the ConsumerBase behavior.
|
|
|
|
virtual void dumpLocked(String8& result, const char* prefix, char* buffer,
|
|
|
|
size_t size) const;
|
|
|
|
|
|
|
|
// acquireBufferLocked overrides the ConsumerBase method to update the
|
|
|
|
// mEglSlots array in addition to the ConsumerBase behavior.
|
|
|
|
virtual status_t acquireBufferLocked(BufferQueue::BufferItem *item);
|
|
|
|
|
|
|
|
// releaseBufferLocked overrides the ConsumerBase method to update the
|
|
|
|
// mEglSlots array in addition to the ConsumerBase.
|
|
|
|
virtual status_t releaseBufferLocked(int buf, EGLDisplay display,
|
2012-09-06 03:09:05 +00:00
|
|
|
EGLSyncKHR eglFence);
|
2012-03-15 21:01:24 +00:00
|
|
|
|
2011-04-12 04:19:55 +00:00
|
|
|
static bool isExternalFormat(uint32_t format);
|
|
|
|
|
|
|
|
private:
|
2012-05-24 00:56:42 +00:00
|
|
|
// this version of updateTexImage() takes a functor used to reject or not
|
|
|
|
// the newly acquired buffer.
|
|
|
|
// this API is TEMPORARY and intended to be used by SurfaceFlinger only,
|
|
|
|
// which is why class Layer is made a friend of SurfaceTexture below.
|
|
|
|
class BufferRejecter {
|
|
|
|
friend class SurfaceTexture;
|
|
|
|
virtual bool reject(const sp<GraphicBuffer>& buf,
|
|
|
|
const BufferQueue::BufferItem& item) = 0;
|
|
|
|
protected:
|
|
|
|
virtual ~BufferRejecter() { }
|
|
|
|
};
|
|
|
|
friend class Layer;
|
2012-09-17 23:58:17 +00:00
|
|
|
status_t updateTexImage(BufferRejecter* rejecter, bool skipSync);
|
2010-12-20 19:27:26 +00:00
|
|
|
|
|
|
|
// createImage creates a new EGLImage from a GraphicBuffer.
|
|
|
|
EGLImageKHR createImage(EGLDisplay dpy,
|
|
|
|
const sp<GraphicBuffer>& graphicBuffer);
|
|
|
|
|
2012-03-15 21:01:24 +00:00
|
|
|
// freeBufferLocked frees up the given buffer slot. If the slot has been
|
|
|
|
// initialized this will release the reference to the GraphicBuffer in that
|
|
|
|
// slot and destroy the EGLImage in that slot. Otherwise it has no effect.
|
|
|
|
//
|
|
|
|
// This method must be called with mMutex locked.
|
2012-08-08 01:03:04 +00:00
|
|
|
virtual void freeBufferLocked(int slotIndex);
|
2012-03-15 21:01:24 +00:00
|
|
|
|
2012-09-25 02:26:11 +00:00
|
|
|
// computeCurrentTransformMatrixLocked computes the transform matrix for the
|
2011-06-13 00:03:06 +00:00
|
|
|
// current texture. It uses mCurrentTransform and the current GraphicBuffer
|
|
|
|
// to compute this matrix and stores it in mCurrentTransformMatrix.
|
2012-09-25 02:26:11 +00:00
|
|
|
// mCurrentTextureBuf must not be NULL.
|
|
|
|
void computeCurrentTransformMatrixLocked();
|
2011-06-13 00:03:06 +00:00
|
|
|
|
2012-09-17 23:58:17 +00:00
|
|
|
// doGLFenceWaitLocked inserts a wait command into the OpenGL ES command
|
|
|
|
// stream to ensure that it is safe for future OpenGL ES commands to
|
|
|
|
// access the current texture buffer. This must be called each time
|
|
|
|
// updateTexImage is called before issuing OpenGL ES commands that access
|
|
|
|
// the texture.
|
|
|
|
status_t doGLFenceWaitLocked() const;
|
|
|
|
|
2012-03-29 02:05:54 +00:00
|
|
|
// syncForReleaseLocked performs the synchronization needed to release the
|
|
|
|
// current slot from an OpenGL ES context. If needed it will set the
|
|
|
|
// current slot's fence to guard against a producer accessing the buffer
|
|
|
|
// before the outstanding accesses have completed.
|
|
|
|
status_t syncForReleaseLocked(EGLDisplay dpy);
|
|
|
|
|
2012-04-13 22:16:31 +00:00
|
|
|
// The default consumer usage flags that SurfaceTexture always sets on its
|
|
|
|
// BufferQueue instance; these will be OR:d with any additional flags passed
|
|
|
|
// from the SurfaceTexture user. In particular, SurfaceTexture will always
|
|
|
|
// consume buffers as hardware textures.
|
|
|
|
static const uint32_t DEFAULT_USAGE_FLAGS = GraphicBuffer::USAGE_HW_TEXTURE;
|
|
|
|
|
2011-01-13 02:30:40 +00:00
|
|
|
// mCurrentTextureBuf is the graphic buffer of the current texture. It's
|
|
|
|
// possible that this buffer is not associated with any buffer slot, so we
|
2011-07-19 19:11:52 +00:00
|
|
|
// must track it separately in order to support the getCurrentBuffer method.
|
2011-01-13 02:30:40 +00:00
|
|
|
sp<GraphicBuffer> mCurrentTextureBuf;
|
|
|
|
|
2011-01-10 00:33:17 +00:00
|
|
|
// mCurrentCrop is the crop rectangle that applies to the current texture.
|
2011-07-13 22:24:42 +00:00
|
|
|
// It gets set each time updateTexImage is called.
|
2011-01-10 00:33:17 +00:00
|
|
|
Rect mCurrentCrop;
|
|
|
|
|
|
|
|
// mCurrentTransform is the transform identifier for the current texture. It
|
2011-07-13 22:24:42 +00:00
|
|
|
// gets set each time updateTexImage is called.
|
2011-01-10 00:33:17 +00:00
|
|
|
uint32_t mCurrentTransform;
|
|
|
|
|
2011-07-13 22:24:42 +00:00
|
|
|
// mCurrentScalingMode is the scaling mode for the current texture. It gets
|
|
|
|
// set to each time updateTexImage is called.
|
|
|
|
uint32_t mCurrentScalingMode;
|
|
|
|
|
2012-06-29 22:21:18 +00:00
|
|
|
// mCurrentFence is the fence received from BufferQueue in updateTexImage.
|
|
|
|
sp<Fence> mCurrentFence;
|
|
|
|
|
2011-06-13 00:03:06 +00:00
|
|
|
// mCurrentTransformMatrix is the transform matrix for the current texture.
|
|
|
|
// It gets computed by computeTransformMatrix each time updateTexImage is
|
|
|
|
// called.
|
|
|
|
float mCurrentTransformMatrix[16];
|
|
|
|
|
2011-02-18 19:02:42 +00:00
|
|
|
// mCurrentTimestamp is the timestamp for the current texture. It
|
2011-07-13 22:24:42 +00:00
|
|
|
// gets set each time updateTexImage is called.
|
2011-02-18 19:02:42 +00:00
|
|
|
int64_t mCurrentTimestamp;
|
|
|
|
|
2012-04-03 22:54:58 +00:00
|
|
|
uint32_t mDefaultWidth, mDefaultHeight;
|
|
|
|
|
2012-05-08 23:56:34 +00:00
|
|
|
// mFilteringEnabled indicates whether the transform matrix is computed for
|
|
|
|
// use with bilinear filtering. It defaults to true and is changed by
|
|
|
|
// setFilteringEnabled().
|
|
|
|
bool mFilteringEnabled;
|
|
|
|
|
2010-12-20 19:27:26 +00:00
|
|
|
// mTexName is the name of the OpenGL texture to which streamed images will
|
2011-06-24 16:56:27 +00:00
|
|
|
// be bound when updateTexImage is called. It is set at construction time
|
2012-03-29 02:05:54 +00:00
|
|
|
// and can be changed with a call to attachToContext.
|
|
|
|
GLuint mTexName;
|
2010-12-20 19:27:26 +00:00
|
|
|
|
2011-11-14 22:51:01 +00:00
|
|
|
// mUseFenceSync indicates whether creation of the EGL_KHR_fence_sync
|
|
|
|
// extension should be used to prevent buffers from being dequeued before
|
|
|
|
// it's safe for them to be written. It gets set at construction time and
|
|
|
|
// never changes.
|
|
|
|
const bool mUseFenceSync;
|
|
|
|
|
2011-09-28 19:13:31 +00:00
|
|
|
// mTexTarget is the GL texture target with which the GL texture object is
|
|
|
|
// associated. It is set in the constructor and never changed. It is
|
|
|
|
// almost always GL_TEXTURE_EXTERNAL_OES except for one use case in Android
|
|
|
|
// Browser. In that case it is set to GL_TEXTURE_2D to allow
|
|
|
|
// glCopyTexSubImage to read from the texture. This is a hack to work
|
|
|
|
// around a GL driver limitation on the number of FBO attachments, which the
|
|
|
|
// browser's tile cache exceeds.
|
|
|
|
const GLenum mTexTarget;
|
2011-11-10 00:23:41 +00:00
|
|
|
|
2012-03-15 21:01:24 +00:00
|
|
|
// EGLSlot contains the information and object references that
|
|
|
|
// SurfaceTexture maintains about a BufferQueue buffer slot.
|
2012-01-22 23:26:27 +00:00
|
|
|
struct EGLSlot {
|
|
|
|
EGLSlot()
|
|
|
|
: mEglImage(EGL_NO_IMAGE_KHR),
|
2012-08-08 01:03:04 +00:00
|
|
|
mEglFence(EGL_NO_SYNC_KHR) {
|
2012-01-22 23:26:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// mEglImage is the EGLImage created from mGraphicBuffer.
|
|
|
|
EGLImageKHR mEglImage;
|
|
|
|
|
|
|
|
// mFence is the EGL sync object that must signal before the buffer
|
|
|
|
// associated with this buffer slot may be dequeued. It is initialized
|
|
|
|
// to EGL_NO_SYNC_KHR when the buffer is created and (optionally, based
|
|
|
|
// on a compile-time option) set to a new sync object in updateTexImage.
|
2012-08-08 01:03:04 +00:00
|
|
|
EGLSyncKHR mEglFence;
|
2012-01-22 23:26:27 +00:00
|
|
|
};
|
|
|
|
|
2012-03-20 01:33:05 +00:00
|
|
|
// mEglDisplay is the EGLDisplay with which this SurfaceTexture is currently
|
|
|
|
// associated. It is intialized to EGL_NO_DISPLAY and gets set to the
|
2012-03-29 02:05:54 +00:00
|
|
|
// current display when updateTexImage is called for the first time and when
|
|
|
|
// attachToContext is called.
|
2012-03-20 01:33:05 +00:00
|
|
|
EGLDisplay mEglDisplay;
|
|
|
|
|
|
|
|
// mEglContext is the OpenGL ES context with which this SurfaceTexture is
|
|
|
|
// currently associated. It is initialized to EGL_NO_CONTEXT and gets set
|
|
|
|
// to the current GL context when updateTexImage is called for the first
|
2012-03-29 02:05:54 +00:00
|
|
|
// time and when attachToContext is called.
|
2012-03-20 01:33:05 +00:00
|
|
|
EGLContext mEglContext;
|
|
|
|
|
2012-03-15 21:01:24 +00:00
|
|
|
// mEGLSlots stores the buffers that have been allocated by the BufferQueue
|
|
|
|
// for each buffer slot. It is initialized to null pointers, and gets
|
|
|
|
// filled in with the result of BufferQueue::acquire when the
|
|
|
|
// client dequeues a buffer from a
|
|
|
|
// slot that has not yet been used. The buffer allocated to a slot will also
|
|
|
|
// be replaced if the requested buffer usage or geometry differs from that
|
|
|
|
// of the buffer allocated to a slot.
|
2012-08-08 01:03:04 +00:00
|
|
|
EGLSlot mEglSlots[BufferQueue::NUM_BUFFER_SLOTS];
|
2012-01-22 23:26:27 +00:00
|
|
|
|
|
|
|
// mCurrentTexture is the buffer slot index of the buffer that is currently
|
|
|
|
// bound to the OpenGL texture. It is initialized to INVALID_BUFFER_SLOT,
|
|
|
|
// indicating that no buffer slot is currently bound to the texture. Note,
|
|
|
|
// however, that a value of INVALID_BUFFER_SLOT does not necessarily mean
|
|
|
|
// that no buffer is bound to the texture. A call to setBufferCount will
|
|
|
|
// reset mCurrentTexture to INVALID_BUFFER_SLOT.
|
|
|
|
int mCurrentTexture;
|
|
|
|
|
2012-08-08 01:03:04 +00:00
|
|
|
// mAttached indicates whether the ConsumerBase is currently attached to
|
2012-03-29 02:05:54 +00:00
|
|
|
// an OpenGL ES context. For legacy reasons, this is initialized to true,
|
2012-08-08 01:03:04 +00:00
|
|
|
// indicating that the ConsumerBase is considered to be attached to
|
2012-03-29 02:05:54 +00:00
|
|
|
// whatever context is current at the time of the first updateTexImage call.
|
|
|
|
// It is set to false by detachFromContext, and then set to true again by
|
|
|
|
// attachToContext.
|
|
|
|
bool mAttached;
|
2010-12-20 19:27:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
}; // namespace android
|
|
|
|
|
|
|
|
#endif // ANDROID_GUI_SURFACETEXTURE_H
|