2013-10-11 13:16:44 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#include "TextureImageEGL.h"
|
|
|
|
#include "GLLibraryEGL.h"
|
|
|
|
#include "GLContext.h"
|
2013-12-03 18:44:38 +00:00
|
|
|
#include "GLUploadHelpers.h"
|
2013-10-11 13:16:44 +00:00
|
|
|
#include "gfxPlatform.h"
|
2013-12-13 17:32:06 +00:00
|
|
|
#include "gfx2DGlue.h"
|
2013-10-11 13:16:44 +00:00
|
|
|
#include "mozilla/gfx/Types.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gl {
|
|
|
|
|
|
|
|
static GLenum
|
2014-02-13 18:00:01 +00:00
|
|
|
GLFormatForImage(gfx::SurfaceFormat aFormat)
|
2013-10-11 13:16:44 +00:00
|
|
|
{
|
|
|
|
switch (aFormat) {
|
2014-02-13 18:00:01 +00:00
|
|
|
case gfx::SurfaceFormat::B8G8R8A8:
|
|
|
|
case gfx::SurfaceFormat::B8G8R8X8:
|
2013-10-11 13:16:44 +00:00
|
|
|
return LOCAL_GL_RGBA;
|
2014-02-13 18:00:01 +00:00
|
|
|
case gfx::SurfaceFormat::R5G6B5:
|
2013-10-11 13:16:44 +00:00
|
|
|
return LOCAL_GL_RGB;
|
2014-02-13 18:00:01 +00:00
|
|
|
case gfx::SurfaceFormat::A8:
|
2013-10-11 13:16:44 +00:00
|
|
|
return LOCAL_GL_LUMINANCE;
|
|
|
|
default:
|
2014-02-13 18:00:01 +00:00
|
|
|
NS_WARNING("Unknown GL format for Surface format");
|
2013-10-11 13:16:44 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GLenum
|
2014-02-13 18:00:01 +00:00
|
|
|
GLTypeForImage(gfx::SurfaceFormat aFormat)
|
2013-10-11 13:16:44 +00:00
|
|
|
{
|
|
|
|
switch (aFormat) {
|
2014-02-13 18:00:01 +00:00
|
|
|
case gfx::SurfaceFormat::B8G8R8A8:
|
|
|
|
case gfx::SurfaceFormat::B8G8R8X8:
|
|
|
|
case gfx::SurfaceFormat::A8:
|
2013-10-11 13:16:44 +00:00
|
|
|
return LOCAL_GL_UNSIGNED_BYTE;
|
2014-02-13 18:00:01 +00:00
|
|
|
case gfx::SurfaceFormat::R5G6B5:
|
2013-10-11 13:16:44 +00:00
|
|
|
return LOCAL_GL_UNSIGNED_SHORT_5_6_5;
|
|
|
|
default:
|
2014-02-13 18:00:01 +00:00
|
|
|
NS_WARNING("Unknown GL format for Surface format");
|
2013-10-11 13:16:44 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
TextureImageEGL::TextureImageEGL(GLuint aTexture,
|
|
|
|
const nsIntSize& aSize,
|
|
|
|
GLenum aWrapMode,
|
|
|
|
ContentType aContentType,
|
|
|
|
GLContext* aContext,
|
|
|
|
Flags aFlags,
|
|
|
|
TextureState aTextureState,
|
|
|
|
TextureImage::ImageFormat aImageFormat)
|
|
|
|
: TextureImage(aSize, aWrapMode, aContentType, aFlags)
|
|
|
|
, mGLContext(aContext)
|
2014-02-13 18:00:01 +00:00
|
|
|
, mUpdateFormat(gfx::ImageFormatToSurfaceFormat(aImageFormat))
|
2013-10-11 13:16:44 +00:00
|
|
|
, mEGLImage(nullptr)
|
|
|
|
, mTexture(aTexture)
|
|
|
|
, mSurface(nullptr)
|
|
|
|
, mConfig(nullptr)
|
|
|
|
, mTextureState(aTextureState)
|
|
|
|
, mBound(false)
|
|
|
|
{
|
2014-02-13 18:00:01 +00:00
|
|
|
if (mUpdateFormat == gfx::SurfaceFormat::UNKNOWN) {
|
|
|
|
mUpdateFormat = gfx::ImageFormatToSurfaceFormat(
|
|
|
|
gfxPlatform::GetPlatform()->OptimalFormatForContent(GetContentType()));
|
2013-10-11 13:16:44 +00:00
|
|
|
}
|
|
|
|
|
2014-02-13 18:00:01 +00:00
|
|
|
if (mUpdateFormat == gfx::SurfaceFormat::R5G6B5) {
|
2014-01-10 19:06:16 +00:00
|
|
|
mTextureFormat = gfx::SurfaceFormat::R8G8B8X8;
|
2014-02-13 18:00:01 +00:00
|
|
|
} else if (mUpdateFormat == gfx::SurfaceFormat::B8G8R8X8) {
|
2014-01-10 19:06:16 +00:00
|
|
|
mTextureFormat = gfx::SurfaceFormat::B8G8R8X8;
|
2013-10-11 13:16:44 +00:00
|
|
|
} else {
|
2014-01-10 19:06:16 +00:00
|
|
|
mTextureFormat = gfx::SurfaceFormat::B8G8R8A8;
|
2013-10-11 13:16:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TextureImageEGL::~TextureImageEGL()
|
|
|
|
{
|
|
|
|
if (mGLContext->IsDestroyed() || !mGLContext->IsOwningThreadCurrent()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we have a context, then we need to delete the texture;
|
|
|
|
// if we don't have a context (either real or shared),
|
|
|
|
// then they went away when the contex was deleted, because it
|
|
|
|
// was the only one that had access to it.
|
|
|
|
mGLContext->MakeCurrent();
|
|
|
|
mGLContext->fDeleteTextures(1, &mTexture);
|
|
|
|
ReleaseTexImage();
|
|
|
|
DestroyEGLSurface();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TextureImageEGL::GetUpdateRegion(nsIntRegion& aForRegion)
|
|
|
|
{
|
|
|
|
if (mTextureState != Valid) {
|
|
|
|
// if the texture hasn't been initialized yet, force the
|
|
|
|
// client to paint everything
|
2013-12-13 17:32:06 +00:00
|
|
|
aForRegion = nsIntRect(nsIntPoint(0, 0), gfx::ThebesIntSize(mSize));
|
2013-10-11 13:16:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// We can only draw a rectangle, not subregions due to
|
|
|
|
// the way that our texture upload functions work. If
|
|
|
|
// needed, we /could/ do multiple texture uploads if we have
|
|
|
|
// non-overlapping rects, but that's a tradeoff.
|
|
|
|
aForRegion = nsIntRegion(aForRegion.GetBounds());
|
|
|
|
}
|
|
|
|
|
2014-02-13 18:00:01 +00:00
|
|
|
gfx::DrawTarget*
|
2013-10-11 13:16:44 +00:00
|
|
|
TextureImageEGL::BeginUpdate(nsIntRegion& aRegion)
|
|
|
|
{
|
2014-02-13 18:00:01 +00:00
|
|
|
NS_ASSERTION(!mUpdateDrawTarget, "BeginUpdate() without EndUpdate()?");
|
2013-10-11 13:16:44 +00:00
|
|
|
|
|
|
|
// determine the region the client will need to repaint
|
|
|
|
GetUpdateRegion(aRegion);
|
|
|
|
mUpdateRect = aRegion.GetBounds();
|
|
|
|
|
|
|
|
//printf_stderr("BeginUpdate with updateRect [%d %d %d %d]\n", mUpdateRect.x, mUpdateRect.y, mUpdateRect.width, mUpdateRect.height);
|
2013-12-13 17:32:06 +00:00
|
|
|
if (!nsIntRect(nsIntPoint(0, 0), gfx::ThebesIntSize(mSize)).Contains(mUpdateRect)) {
|
2013-10-11 13:16:44 +00:00
|
|
|
NS_ERROR("update outside of image");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
//printf_stderr("creating image surface %dx%d format %d\n", mUpdateRect.width, mUpdateRect.height, mUpdateFormat);
|
|
|
|
|
2014-02-13 18:00:01 +00:00
|
|
|
mUpdateDrawTarget = gfx::Factory::CreateDrawTarget(gfx::BackendType::CAIRO,
|
|
|
|
gfx::IntSize(mUpdateRect.width, mUpdateRect.height),
|
|
|
|
mUpdateFormat);
|
2013-10-11 13:16:44 +00:00
|
|
|
|
2014-02-13 18:00:01 +00:00
|
|
|
return mUpdateDrawTarget;
|
2013-10-11 13:16:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TextureImageEGL::EndUpdate()
|
|
|
|
{
|
2014-02-13 18:00:01 +00:00
|
|
|
NS_ASSERTION(!!mUpdateDrawTarget, "EndUpdate() without BeginUpdate()?");
|
2013-10-11 13:16:44 +00:00
|
|
|
|
|
|
|
//printf_stderr("EndUpdate: slow path");
|
|
|
|
|
|
|
|
// This is the slower path -- we didn't have any way to set up
|
|
|
|
// a fast mapping between our cairo target surface and the GL
|
|
|
|
// texture, so we have to upload data.
|
|
|
|
|
2014-02-13 18:00:01 +00:00
|
|
|
RefPtr<gfx::SourceSurface> updateSurface = nullptr;
|
|
|
|
RefPtr<gfx::DataSourceSurface> uploadImage = nullptr;
|
|
|
|
gfx::IntSize updateSize(mUpdateRect.width, mUpdateRect.height);
|
2013-10-11 13:16:44 +00:00
|
|
|
|
2014-02-13 18:00:01 +00:00
|
|
|
NS_ASSERTION(mUpdateDrawTarget->GetSize() == updateSize,
|
|
|
|
"Upload image is the wrong size!");
|
2013-10-11 13:16:44 +00:00
|
|
|
|
2014-02-13 18:00:01 +00:00
|
|
|
updateSurface = mUpdateDrawTarget->Snapshot();
|
|
|
|
uploadImage = updateSurface->GetDataSurface();
|
2013-10-11 13:16:44 +00:00
|
|
|
|
|
|
|
if (!uploadImage) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mGLContext->MakeCurrent();
|
|
|
|
mGLContext->fBindTexture(LOCAL_GL_TEXTURE_2D, mTexture);
|
|
|
|
|
|
|
|
if (mTextureState != Valid) {
|
|
|
|
NS_ASSERTION(mUpdateRect.x == 0 && mUpdateRect.y == 0 &&
|
2013-12-13 17:32:06 +00:00
|
|
|
mUpdateRect.Size() == gfx::ThebesIntSize(mSize),
|
2013-10-11 13:16:44 +00:00
|
|
|
"Bad initial update on non-created texture!");
|
|
|
|
|
|
|
|
mGLContext->fTexImage2D(LOCAL_GL_TEXTURE_2D,
|
|
|
|
0,
|
|
|
|
GLFormatForImage(mUpdateFormat),
|
|
|
|
mUpdateRect.width,
|
|
|
|
mUpdateRect.height,
|
|
|
|
0,
|
2014-02-13 18:00:01 +00:00
|
|
|
GLFormatForImage(uploadImage->GetFormat()),
|
|
|
|
GLTypeForImage(uploadImage->GetFormat()),
|
|
|
|
uploadImage->GetData());
|
2013-10-11 13:16:44 +00:00
|
|
|
} else {
|
|
|
|
mGLContext->fTexSubImage2D(LOCAL_GL_TEXTURE_2D,
|
|
|
|
0,
|
|
|
|
mUpdateRect.x,
|
|
|
|
mUpdateRect.y,
|
|
|
|
mUpdateRect.width,
|
|
|
|
mUpdateRect.height,
|
2014-02-13 18:00:01 +00:00
|
|
|
GLFormatForImage(uploadImage->GetFormat()),
|
|
|
|
GLTypeForImage(uploadImage->GetFormat()),
|
|
|
|
uploadImage->GetData());
|
2013-10-11 13:16:44 +00:00
|
|
|
}
|
|
|
|
|
2014-02-13 18:00:01 +00:00
|
|
|
mUpdateDrawTarget = nullptr;
|
2013-10-11 13:16:44 +00:00
|
|
|
mTextureState = Valid;
|
|
|
|
return; // mTexture is bound
|
|
|
|
}
|
|
|
|
|
2014-02-13 16:25:55 +00:00
|
|
|
bool
|
|
|
|
TextureImageEGL::DirectUpdate(gfx::DataSourceSurface* aSurf, const nsIntRegion& aRegion, const gfx::IntPoint& aFrom /* = gfx::IntPoint(0,0) */)
|
2013-10-11 13:16:44 +00:00
|
|
|
{
|
|
|
|
nsIntRect bounds = aRegion.GetBounds();
|
|
|
|
|
|
|
|
nsIntRegion region;
|
|
|
|
if (mTextureState != Valid) {
|
|
|
|
bounds = nsIntRect(0, 0, mSize.width, mSize.height);
|
|
|
|
region = nsIntRegion(bounds);
|
|
|
|
} else {
|
|
|
|
region = aRegion;
|
|
|
|
}
|
|
|
|
|
|
|
|
mTextureFormat =
|
2014-02-13 16:25:55 +00:00
|
|
|
UploadSurfaceToTexture(mGLContext,
|
2013-12-03 18:44:38 +00:00
|
|
|
aSurf,
|
|
|
|
region,
|
|
|
|
mTexture,
|
|
|
|
mTextureState == Created,
|
2014-02-13 16:25:55 +00:00
|
|
|
bounds.TopLeft() + nsIntPoint(aFrom.x, aFrom.y),
|
2013-12-03 18:44:38 +00:00
|
|
|
false);
|
2013-10-11 13:16:44 +00:00
|
|
|
|
|
|
|
mTextureState = Valid;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TextureImageEGL::BindTexture(GLenum aTextureUnit)
|
|
|
|
{
|
|
|
|
// Ensure the texture is allocated before it is used.
|
|
|
|
if (mTextureState == Created) {
|
|
|
|
Resize(mSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
mGLContext->fActiveTexture(aTextureUnit);
|
|
|
|
mGLContext->fBindTexture(LOCAL_GL_TEXTURE_2D, mTexture);
|
|
|
|
mGLContext->fActiveTexture(LOCAL_GL_TEXTURE0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-12-13 17:32:06 +00:00
|
|
|
TextureImageEGL::Resize(const gfx::IntSize& aSize)
|
2013-10-11 13:16:44 +00:00
|
|
|
{
|
2014-02-13 18:00:01 +00:00
|
|
|
NS_ASSERTION(!mUpdateDrawTarget, "Resize() while in update?");
|
2013-10-11 13:16:44 +00:00
|
|
|
|
|
|
|
if (mSize == aSize && mTextureState != Created)
|
|
|
|
return;
|
|
|
|
|
|
|
|
mGLContext->fBindTexture(LOCAL_GL_TEXTURE_2D, mTexture);
|
|
|
|
|
|
|
|
mGLContext->fTexImage2D(LOCAL_GL_TEXTURE_2D,
|
|
|
|
0,
|
|
|
|
GLFormatForImage(mUpdateFormat),
|
|
|
|
aSize.width,
|
|
|
|
aSize.height,
|
|
|
|
0,
|
|
|
|
GLFormatForImage(mUpdateFormat),
|
|
|
|
GLTypeForImage(mUpdateFormat),
|
|
|
|
nullptr);
|
|
|
|
|
|
|
|
mTextureState = Allocated;
|
|
|
|
mSize = aSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TextureImageEGL::BindTexImage()
|
|
|
|
{
|
|
|
|
if (mBound && !ReleaseTexImage())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
EGLBoolean success =
|
|
|
|
sEGLLibrary.fBindTexImage(EGL_DISPLAY(),
|
|
|
|
(EGLSurface)mSurface,
|
|
|
|
LOCAL_EGL_BACK_BUFFER);
|
|
|
|
|
|
|
|
if (success == LOCAL_EGL_FALSE)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
mBound = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TextureImageEGL::ReleaseTexImage()
|
|
|
|
{
|
|
|
|
if (!mBound)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
EGLBoolean success =
|
|
|
|
sEGLLibrary.fReleaseTexImage(EGL_DISPLAY(),
|
|
|
|
(EGLSurface)mSurface,
|
|
|
|
LOCAL_EGL_BACK_BUFFER);
|
|
|
|
|
|
|
|
if (success == LOCAL_EGL_FALSE)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
mBound = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TextureImageEGL::DestroyEGLSurface(void)
|
|
|
|
{
|
|
|
|
if (!mSurface)
|
|
|
|
return;
|
|
|
|
|
|
|
|
sEGLLibrary.fDestroySurface(EGL_DISPLAY(), mSurface);
|
|
|
|
mSurface = nullptr;
|
|
|
|
}
|
|
|
|
|
2013-12-03 18:44:38 +00:00
|
|
|
already_AddRefed<TextureImage>
|
|
|
|
CreateTextureImageEGL(GLContext *gl,
|
2013-12-13 17:32:06 +00:00
|
|
|
const gfx::IntSize& aSize,
|
2013-12-03 18:44:38 +00:00
|
|
|
TextureImage::ContentType aContentType,
|
|
|
|
GLenum aWrapMode,
|
|
|
|
TextureImage::Flags aFlags,
|
|
|
|
TextureImage::ImageFormat aImageFormat)
|
|
|
|
{
|
|
|
|
nsRefPtr<TextureImage> t = new gl::TiledTextureImage(gl, aSize, aContentType, aFlags, aImageFormat);
|
|
|
|
return t.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<TextureImage>
|
|
|
|
TileGenFuncEGL(GLContext *gl,
|
|
|
|
const nsIntSize& aSize,
|
|
|
|
TextureImage::ContentType aContentType,
|
|
|
|
TextureImage::Flags aFlags,
|
|
|
|
TextureImage::ImageFormat aImageFormat)
|
|
|
|
{
|
|
|
|
gl->MakeCurrent();
|
|
|
|
|
|
|
|
GLuint texture;
|
|
|
|
gl->fGenTextures(1, &texture);
|
|
|
|
|
|
|
|
nsRefPtr<TextureImageEGL> teximage =
|
|
|
|
new TextureImageEGL(texture, aSize, LOCAL_GL_CLAMP_TO_EDGE, aContentType,
|
|
|
|
gl, aFlags, TextureImage::Created, aImageFormat);
|
|
|
|
|
|
|
|
teximage->BindTexture(LOCAL_GL_TEXTURE0);
|
|
|
|
|
|
|
|
GLint texfilter = aFlags & TextureImage::UseNearestFilter ? LOCAL_GL_NEAREST : LOCAL_GL_LINEAR;
|
|
|
|
gl->fTexParameteri(LOCAL_GL_TEXTURE_2D, LOCAL_GL_TEXTURE_MIN_FILTER, texfilter);
|
|
|
|
gl->fTexParameteri(LOCAL_GL_TEXTURE_2D, LOCAL_GL_TEXTURE_MAG_FILTER, texfilter);
|
|
|
|
gl->fTexParameteri(LOCAL_GL_TEXTURE_2D, LOCAL_GL_TEXTURE_WRAP_S, LOCAL_GL_CLAMP_TO_EDGE);
|
|
|
|
gl->fTexParameteri(LOCAL_GL_TEXTURE_2D, LOCAL_GL_TEXTURE_WRAP_T, LOCAL_GL_CLAMP_TO_EDGE);
|
|
|
|
|
|
|
|
return teximage.forget();
|
|
|
|
}
|
|
|
|
|
2013-10-11 13:16:44 +00:00
|
|
|
}
|
2013-12-09 04:07:18 +00:00
|
|
|
}
|