2011-12-21 19:03:26 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-12-21 19:03:26 +00:00
|
|
|
|
|
|
|
#ifndef AndroidGraphicBuffer_h_
|
|
|
|
#define AndroidGraphicBuffer_h_
|
|
|
|
|
|
|
|
#include "gfxASurface.h"
|
|
|
|
#include "nsRect.h"
|
|
|
|
|
2012-02-01 21:18:35 +00:00
|
|
|
typedef void* EGLImageKHR;
|
|
|
|
typedef void* EGLClientBuffer;
|
|
|
|
|
2011-12-21 19:03:26 +00:00
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class allows access to Android's direct texturing mechanism. Locking
|
|
|
|
* the buffer gives you a pointer you can read/write to directly. It is fully
|
|
|
|
* threadsafe, but you probably really want to use the AndroidDirectTexture
|
|
|
|
* class which will handle double buffering.
|
|
|
|
*
|
|
|
|
* In order to use the buffer in OpenGL, just call Bind() and it will attach
|
|
|
|
* to whatever texture is bound to GL_TEXTURE_2D.
|
|
|
|
*/
|
|
|
|
class AndroidGraphicBuffer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum {
|
|
|
|
UsageSoftwareRead = 1,
|
|
|
|
UsageSoftwareWrite = 1 << 1,
|
|
|
|
UsageTexture = 1 << 2,
|
|
|
|
UsageTarget = 1 << 3,
|
|
|
|
Usage2D = 1 << 4
|
|
|
|
};
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
AndroidGraphicBuffer(uint32_t width, uint32_t height, uint32_t usage, gfxASurface::gfxImageFormat format);
|
2011-12-21 19:03:26 +00:00
|
|
|
virtual ~AndroidGraphicBuffer();
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int Lock(uint32_t usage, unsigned char **bits);
|
|
|
|
int Lock(uint32_t usage, const nsIntRect& rect, unsigned char **bits);
|
2012-01-17 20:00:56 +00:00
|
|
|
int Unlock();
|
2012-08-22 15:56:38 +00:00
|
|
|
bool Reallocate(uint32_t aWidth, uint32_t aHeight, gfxASurface::gfxImageFormat aFormat);
|
2011-12-21 19:03:26 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t Width() { return mWidth; }
|
|
|
|
uint32_t Height() { return mHeight; }
|
2011-12-21 19:03:26 +00:00
|
|
|
|
2012-03-16 06:21:54 +00:00
|
|
|
bool Bind();
|
2011-12-21 19:03:26 +00:00
|
|
|
|
2012-01-19 01:41:28 +00:00
|
|
|
static bool IsBlacklisted();
|
|
|
|
|
2011-12-21 19:03:26 +00:00
|
|
|
private:
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mWidth;
|
|
|
|
uint32_t mHeight;
|
|
|
|
uint32_t mUsage;
|
2011-12-21 19:03:26 +00:00
|
|
|
gfxASurface::gfxImageFormat mFormat;
|
|
|
|
|
|
|
|
bool EnsureInitialized();
|
|
|
|
bool EnsureEGLImage();
|
|
|
|
|
|
|
|
void DestroyBuffer();
|
2012-01-05 02:53:09 +00:00
|
|
|
bool EnsureBufferCreated();
|
2011-12-21 19:03:26 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t GetAndroidUsage(uint32_t aUsage);
|
|
|
|
uint32_t GetAndroidFormat(gfxASurface::gfxImageFormat aFormat);
|
2011-12-21 19:03:26 +00:00
|
|
|
|
|
|
|
void *mHandle;
|
|
|
|
void *mEGLImage;
|
|
|
|
};
|
|
|
|
|
|
|
|
} /* mozilla */
|
|
|
|
#endif /* AndroidGraphicBuffer_h_ */
|