2010-06-09 15:27:29 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2010-06-09 15:27:29 -07:00
|
|
|
|
2011-10-10 22:50:08 -07:00
|
|
|
#include "mozilla/Util.h"
|
2012-03-12 08:43:14 -07:00
|
|
|
// please add new includes below Qt, otherwise it break Qt build due malloc wrapper conflicts
|
2012-03-08 16:01:12 -08:00
|
|
|
|
2011-08-24 09:15:58 -07:00
|
|
|
#if defined(XP_UNIX)
|
2010-06-09 15:27:29 -07:00
|
|
|
|
2012-06-13 08:07:22 -07:00
|
|
|
#ifdef MOZ_WIDGET_GTK2
|
2010-06-09 15:27:29 -07:00
|
|
|
#include <gdk/gdkx.h>
|
|
|
|
// we're using default display for now
|
|
|
|
#define GET_NATIVE_WINDOW(aWidget) (EGLNativeWindowType)GDK_WINDOW_XID((GdkWindow *) aWidget->GetNativeData(NS_NATIVE_WINDOW))
|
|
|
|
#elif defined(MOZ_WIDGET_QT)
|
2011-08-24 09:15:58 -07:00
|
|
|
#include <QtOpenGL/QGLContext>
|
2010-06-23 02:24:22 -07:00
|
|
|
#define GLdouble_defined 1
|
2010-06-09 15:27:29 -07:00
|
|
|
// we're using default display for now
|
2011-08-24 09:15:58 -07:00
|
|
|
#define GET_NATIVE_WINDOW(aWidget) (EGLNativeWindowType)static_cast<QWidget*>(aWidget->GetNativeData(NS_NATIVE_SHELLWIDGET))->winId()
|
2011-11-10 16:17:46 -08:00
|
|
|
#elif defined(MOZ_WIDGET_GONK)
|
|
|
|
#define GET_NATIVE_WINDOW(aWidget) ((EGLNativeWindowType)aWidget->GetNativeData(NS_NATIVE_WINDOW))
|
2010-06-09 15:27:29 -07:00
|
|
|
#endif
|
|
|
|
|
2011-08-24 09:15:58 -07:00
|
|
|
#if defined(MOZ_X11)
|
2010-06-09 15:27:29 -07:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
2010-07-18 22:01:14 -07:00
|
|
|
#include "mozilla/X11Util.h"
|
2010-06-23 02:24:31 -07:00
|
|
|
#include "gfxXlibSurface.h"
|
2011-08-24 09:15:58 -07:00
|
|
|
#endif
|
2010-06-09 15:27:29 -07:00
|
|
|
|
2011-08-24 09:15:58 -07:00
|
|
|
#if defined(ANDROID)
|
2010-06-25 17:52:37 -07:00
|
|
|
/* from widget */
|
2011-11-10 16:17:46 -08:00
|
|
|
#if defined(MOZ_WIDGET_ANDROID)
|
2010-06-25 17:52:37 -07:00
|
|
|
#include "AndroidBridge.h"
|
2011-11-10 16:17:46 -08:00
|
|
|
#endif
|
|
|
|
#include <android/log.h>
|
2012-06-12 21:20:27 -07:00
|
|
|
#define LOG(args...) __android_log_print(ANDROID_LOG_INFO, "Gonk" , ## args)
|
|
|
|
|
|
|
|
# if defined(MOZ_WIDGET_GONK)
|
|
|
|
# include "cutils/properties.h"
|
|
|
|
# include <ui/GraphicBuffer.h>
|
|
|
|
|
|
|
|
using namespace android;
|
|
|
|
|
|
|
|
# define EGL_NATIVE_BUFFER_ANDROID 0x3140
|
|
|
|
# define EGL_IMAGE_PRESERVED_KHR 0x30D2
|
|
|
|
|
|
|
|
# endif
|
|
|
|
|
2012-01-20 06:18:56 -08:00
|
|
|
#endif
|
|
|
|
|
2012-01-12 22:23:02 -08:00
|
|
|
#define GLES2_LIB "libGLESv2.so"
|
2012-01-20 06:18:56 -08:00
|
|
|
#define GLES2_LIB2 "libGLESv2.so.2"
|
2010-06-09 15:27:29 -07:00
|
|
|
|
2010-08-06 22:09:18 -07:00
|
|
|
#elif defined(XP_WIN)
|
|
|
|
|
2012-06-05 19:08:30 -07:00
|
|
|
#include "nsIFile.h"
|
2010-08-06 22:09:18 -07:00
|
|
|
|
2012-03-16 15:24:12 -07:00
|
|
|
#define GLES2_LIB "libGLESv2.dll"
|
|
|
|
|
2010-08-06 22:09:18 -07:00
|
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
|
|
|
#define WIN32_LEAN_AND_MEAN 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
// a little helper
|
|
|
|
class AutoDestroyHWND {
|
|
|
|
public:
|
|
|
|
AutoDestroyHWND(HWND aWnd = NULL)
|
|
|
|
: mWnd(aWnd)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
~AutoDestroyHWND() {
|
|
|
|
if (mWnd) {
|
|
|
|
::DestroyWindow(mWnd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
operator HWND() {
|
|
|
|
return mWnd;
|
|
|
|
}
|
|
|
|
|
|
|
|
HWND forget() {
|
|
|
|
HWND w = mWnd;
|
|
|
|
mWnd = NULL;
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
|
|
|
HWND operator=(HWND aWnd) {
|
|
|
|
if (mWnd && mWnd != aWnd) {
|
|
|
|
::DestroyWindow(mWnd);
|
|
|
|
}
|
|
|
|
mWnd = aWnd;
|
|
|
|
return mWnd;
|
|
|
|
}
|
|
|
|
|
|
|
|
HWND mWnd;
|
|
|
|
};
|
|
|
|
|
2010-06-09 15:27:29 -07:00
|
|
|
#else
|
|
|
|
|
|
|
|
#error "Platform not recognized"
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2012-03-12 08:43:14 -07:00
|
|
|
#include "mozilla/Preferences.h"
|
2011-01-13 05:20:50 -08:00
|
|
|
#include "gfxUtils.h"
|
2011-08-31 07:27:05 -07:00
|
|
|
#include "gfxFailure.h"
|
2010-06-23 08:50:51 -07:00
|
|
|
#include "gfxASurface.h"
|
2010-09-09 13:40:11 -07:00
|
|
|
#include "gfxImageSurface.h"
|
2010-07-01 09:30:38 -07:00
|
|
|
#include "gfxPlatform.h"
|
2010-06-09 15:27:29 -07:00
|
|
|
#include "GLContextProvider.h"
|
2012-03-16 15:24:12 -07:00
|
|
|
#include "GLLibraryEGL.h"
|
2010-06-09 15:27:29 -07:00
|
|
|
#include "nsDebug.h"
|
2010-11-26 13:41:53 -08:00
|
|
|
#include "nsThreadUtils.h"
|
2010-06-09 15:27:29 -07:00
|
|
|
|
|
|
|
#include "nsIWidget.h"
|
|
|
|
|
2011-03-02 12:50:36 -08:00
|
|
|
#include "gfxCrashReporterUtils.h"
|
|
|
|
|
2012-06-12 21:20:27 -07:00
|
|
|
#if defined(MOZ_PLATFORM_MAEMO) || defined(MOZ_WIDGET_GONK)
|
2011-01-13 05:20:50 -08:00
|
|
|
static bool gUseBackingSurface = true;
|
|
|
|
#else
|
2010-11-26 13:41:53 -08:00
|
|
|
static bool gUseBackingSurface = false;
|
2011-01-13 05:20:50 -08:00
|
|
|
#endif
|
2010-11-26 13:41:53 -08:00
|
|
|
|
2011-11-10 16:17:46 -08:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
|
|
|
extern nsIntRect gScreenBounds;
|
|
|
|
#endif
|
|
|
|
|
2010-06-09 15:27:29 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gl {
|
|
|
|
|
2012-03-16 15:24:12 -07:00
|
|
|
static GLLibraryEGL sEGLLibrary;
|
2010-07-18 22:01:14 -07:00
|
|
|
|
2011-01-06 14:07:12 -08:00
|
|
|
#define ADD_ATTR_2(_array, _k, _v) do { \
|
|
|
|
(_array).AppendElement(_k); \
|
|
|
|
(_array).AppendElement(_v); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define ADD_ATTR_1(_array, _k) do { \
|
|
|
|
(_array).AppendElement(_k); \
|
|
|
|
} while (0)
|
|
|
|
|
2012-06-19 21:12:30 -07:00
|
|
|
#ifndef MOZ_JAVA_COMPOSITOR
|
2011-09-22 22:58:15 -07:00
|
|
|
static EGLSurface
|
2010-12-13 14:36:35 -08:00
|
|
|
CreateSurfaceForWindow(nsIWidget *aWidget, EGLConfig config);
|
2012-06-19 21:12:30 -07:00
|
|
|
#endif
|
|
|
|
|
2011-09-22 22:58:15 -07:00
|
|
|
static bool
|
|
|
|
CreateConfig(EGLConfig* aConfig);
|
2011-01-13 05:20:50 -08:00
|
|
|
#ifdef MOZ_X11
|
2011-07-27 04:00:17 -07:00
|
|
|
|
|
|
|
#ifdef MOZ_EGL_XRENDER_COMPOSITE
|
|
|
|
static EGLSurface
|
|
|
|
CreateBasicEGLSurfaceForXSurface(gfxASurface* aSurface, EGLConfig* aConfig);
|
|
|
|
#endif
|
|
|
|
|
2011-01-13 05:20:50 -08:00
|
|
|
static EGLConfig
|
2012-04-30 17:03:08 -07:00
|
|
|
CreateEGLSurfaceForXSurface(gfxASurface* aSurface, EGLConfig* aConfig = nsnull);
|
2011-01-13 05:20:50 -08:00
|
|
|
#endif
|
2010-12-13 14:36:35 -08:00
|
|
|
|
2011-12-14 16:57:09 -08:00
|
|
|
static EGLint gContextAttribs[] = {
|
|
|
|
LOCAL_EGL_CONTEXT_CLIENT_VERSION, 2,
|
|
|
|
LOCAL_EGL_NONE
|
|
|
|
};
|
|
|
|
|
|
|
|
static EGLint gContextAttribsRobustness[] = {
|
|
|
|
LOCAL_EGL_CONTEXT_CLIENT_VERSION, 2,
|
|
|
|
//LOCAL_EGL_CONTEXT_ROBUST_ACCESS_EXT, LOCAL_EGL_TRUE,
|
|
|
|
LOCAL_EGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_EXT, LOCAL_EGL_LOSE_CONTEXT_ON_RESET_EXT,
|
|
|
|
LOCAL_EGL_NONE
|
|
|
|
};
|
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
static int
|
|
|
|
next_power_of_two(int v)
|
|
|
|
{
|
|
|
|
v--;
|
|
|
|
v |= v >> 1;
|
|
|
|
v |= v >> 2;
|
|
|
|
v |= v >> 4;
|
|
|
|
v |= v >> 8;
|
|
|
|
v |= v >> 16;
|
|
|
|
v++;
|
|
|
|
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
is_power_of_two(int v)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(v >= 0, "bad value");
|
|
|
|
|
|
|
|
if (v == 0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return (v & (v-1)) == 0;
|
|
|
|
}
|
|
|
|
|
2010-06-09 15:27:29 -07:00
|
|
|
class GLContextEGL : public GLContext
|
|
|
|
{
|
2010-07-01 09:30:38 -07:00
|
|
|
friend class TextureImageEGL;
|
|
|
|
|
2011-06-09 18:18:43 -07:00
|
|
|
static already_AddRefed<GLContextEGL>
|
|
|
|
CreateGLContext(const ContextFormat& format,
|
|
|
|
EGLSurface surface,
|
|
|
|
EGLConfig config,
|
|
|
|
GLContextEGL *shareContext,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aIsOffscreen = false)
|
2011-06-09 18:18:43 -07:00
|
|
|
{
|
|
|
|
EGLContext context;
|
|
|
|
|
|
|
|
context = sEGLLibrary.fCreateContext(EGL_DISPLAY(),
|
|
|
|
config,
|
|
|
|
shareContext ? shareContext->mContext : EGL_NO_CONTEXT,
|
2011-12-14 16:57:09 -08:00
|
|
|
sEGLLibrary.HasRobustness() ? gContextAttribsRobustness
|
|
|
|
: gContextAttribs);
|
2011-06-09 18:18:43 -07:00
|
|
|
if (!context) {
|
|
|
|
if (shareContext) {
|
|
|
|
shareContext = nsnull;
|
|
|
|
context = sEGLLibrary.fCreateContext(EGL_DISPLAY(),
|
|
|
|
config,
|
|
|
|
EGL_NO_CONTEXT,
|
2011-12-14 16:57:09 -08:00
|
|
|
sEGLLibrary.HasRobustness() ? gContextAttribsRobustness
|
|
|
|
: gContextAttribs);
|
2011-06-09 18:18:43 -07:00
|
|
|
if (!context) {
|
|
|
|
NS_WARNING("Failed to create EGLContext!");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<GLContextEGL> glContext =
|
|
|
|
new GLContextEGL(format, shareContext, config,
|
|
|
|
surface, context, aIsOffscreen);
|
|
|
|
|
|
|
|
if (!glContext->Init())
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
return glContext.forget();
|
|
|
|
}
|
|
|
|
|
2010-06-09 15:27:29 -07:00
|
|
|
public:
|
2010-07-18 22:01:14 -07:00
|
|
|
GLContextEGL(const ContextFormat& aFormat,
|
|
|
|
GLContext *aShareContext,
|
|
|
|
EGLConfig aConfig,
|
|
|
|
EGLSurface aSurface,
|
|
|
|
EGLContext aContext,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aIsOffscreen = false)
|
2010-07-18 22:01:14 -07:00
|
|
|
: GLContext(aFormat, aIsOffscreen, aShareContext)
|
|
|
|
, mConfig(aConfig)
|
2010-06-23 02:24:22 -07:00
|
|
|
, mSurface(aSurface), mContext(aContext)
|
2011-08-24 09:15:58 -07:00
|
|
|
, mPlatformContext(nsnull)
|
2010-07-18 22:01:14 -07:00
|
|
|
, mThebesSurface(nsnull)
|
2011-10-17 07:59:28 -07:00
|
|
|
, mBound(false)
|
|
|
|
, mIsPBuffer(false)
|
|
|
|
, mIsDoubleBuffered(false)
|
2012-03-21 17:16:31 -07:00
|
|
|
, mCanBindToTexture(false)
|
2010-08-06 22:09:18 -07:00
|
|
|
{
|
|
|
|
// any EGL contexts will always be GLESv2
|
2011-10-17 07:59:28 -07:00
|
|
|
SetIsGLES2(true);
|
2010-09-09 13:40:11 -07:00
|
|
|
|
2012-02-21 13:15:39 -08:00
|
|
|
#ifdef DEBUG
|
2010-09-09 13:40:11 -07:00
|
|
|
printf_stderr("Initializing context %p surface %p on display %p\n", mContext, mSurface, EGL_DISPLAY());
|
2010-09-13 08:53:52 -07:00
|
|
|
#endif
|
2010-08-06 22:09:18 -07:00
|
|
|
}
|
2010-06-09 15:27:29 -07:00
|
|
|
|
|
|
|
~GLContextEGL()
|
|
|
|
{
|
2010-09-21 12:41:24 -07:00
|
|
|
MarkDestroyed();
|
2010-08-06 22:09:18 -07:00
|
|
|
|
2010-06-23 02:24:22 -07:00
|
|
|
// If mGLWidget is non-null, then we've been given it by the GL context provider,
|
|
|
|
// and it's managed by the widget implementation. In this case, We can't destroy
|
|
|
|
// our contexts.
|
2011-08-24 09:15:58 -07:00
|
|
|
if (mPlatformContext)
|
2010-06-23 02:24:22 -07:00
|
|
|
return;
|
|
|
|
|
2012-02-21 13:15:39 -08:00
|
|
|
#ifdef DEBUG
|
2010-09-09 13:40:11 -07:00
|
|
|
printf_stderr("Destroying context %p surface %p on display %p\n", mContext, mSurface, EGL_DISPLAY());
|
2010-09-13 08:53:52 -07:00
|
|
|
#endif
|
2010-09-09 13:40:11 -07:00
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
sEGLLibrary.fDestroyContext(EGL_DISPLAY(), mContext);
|
2011-09-14 12:14:43 -07:00
|
|
|
if (mSurface && !mPlatformContext) {
|
2011-08-23 13:48:27 -07:00
|
|
|
sEGLLibrary.fDestroySurface(EGL_DISPLAY(), mSurface);
|
|
|
|
}
|
2010-07-18 22:01:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
GLContextType GetContextType() {
|
|
|
|
return ContextTypeEGL;
|
2010-06-09 15:27:29 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool Init()
|
2010-06-09 15:27:29 -07:00
|
|
|
{
|
2012-02-29 13:55:46 -08:00
|
|
|
#if defined(ANDROID)
|
|
|
|
// We can't use LoadApitraceLibrary here because the GLContext
|
|
|
|
// expects its own handle to the GL library
|
|
|
|
if (!OpenLibrary(APITRACE_LIB))
|
|
|
|
#endif
|
|
|
|
if (!OpenLibrary(GLES2_LIB)) {
|
2012-01-20 06:18:56 -08:00
|
|
|
#if defined(XP_UNIX)
|
2012-02-29 13:55:46 -08:00
|
|
|
if (!OpenLibrary(GLES2_LIB2)) {
|
|
|
|
NS_WARNING("Couldn't load GLES2 LIB.");
|
|
|
|
return false;
|
|
|
|
}
|
2012-01-20 06:18:56 -08:00
|
|
|
#endif
|
2012-02-29 13:55:46 -08:00
|
|
|
}
|
2010-06-09 15:27:29 -07:00
|
|
|
|
2012-06-12 21:20:27 -07:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
|
|
|
gUseBackingSurface = Preferences::GetBool("gfx.gralloc.enabled", false);
|
|
|
|
char propValue[PROPERTY_VALUE_MAX];
|
|
|
|
property_get("ro.build.version.sdk", propValue, "0");
|
|
|
|
if (atoi(propValue) < 15)
|
|
|
|
gUseBackingSurface = false;
|
|
|
|
#endif
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool current = MakeCurrent();
|
2011-08-31 07:27:05 -07:00
|
|
|
if (!current) {
|
|
|
|
gfx::LogFailure(NS_LITERAL_CSTRING(
|
|
|
|
"Couldn't get device attachments for device."));
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2011-08-31 07:27:05 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool ok = InitWithPrefix("gl", true);
|
2011-10-26 14:36:18 -07:00
|
|
|
|
|
|
|
PR_STATIC_ASSERT(sizeof(GLint) >= sizeof(int32_t));
|
|
|
|
mMaxTextureImageSize = PR_INT32_MAX;
|
2010-09-09 13:40:11 -07:00
|
|
|
#if 0
|
|
|
|
if (ok) {
|
|
|
|
EGLint v;
|
|
|
|
sEGLLibrary.fQueryContext(EGL_DISPLAY(), mContext, LOCAL_EGL_RENDER_BUFFER, &v);
|
|
|
|
if (v == LOCAL_EGL_BACK_BUFFER)
|
2011-10-17 07:59:28 -07:00
|
|
|
mIsDoubleBuffered = true;
|
2010-09-09 13:40:11 -07:00
|
|
|
}
|
|
|
|
#endif
|
2011-12-14 16:57:09 -08:00
|
|
|
|
2012-03-12 15:10:38 -07:00
|
|
|
if (ok)
|
|
|
|
InitFramebuffers();
|
|
|
|
|
2010-09-09 13:40:11 -07:00
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsDoubleBuffered() {
|
2010-09-09 13:40:11 -07:00
|
|
|
return mIsDoubleBuffered;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
void SetIsDoubleBuffered(bool aIsDB) {
|
2010-09-09 13:40:11 -07:00
|
|
|
mIsDoubleBuffered = aIsDB;
|
2010-06-09 15:27:29 -07:00
|
|
|
}
|
|
|
|
|
2011-11-18 19:57:29 -08:00
|
|
|
bool SupportsRobustness()
|
|
|
|
{
|
2011-12-14 16:57:09 -08:00
|
|
|
return sEGLLibrary.HasRobustness();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool IsANGLE()
|
|
|
|
{
|
|
|
|
return sEGLLibrary.IsANGLE();
|
2011-11-18 19:57:29 -08:00
|
|
|
}
|
|
|
|
|
2011-07-27 04:00:17 -07:00
|
|
|
#if defined(MOZ_X11) && defined(MOZ_EGL_XRENDER_COMPOSITE)
|
|
|
|
gfxASurface* GetOffscreenPixmapSurface()
|
|
|
|
{
|
|
|
|
return mThebesSurface;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool WaitNative() {
|
2011-07-27 04:00:17 -07:00
|
|
|
return sEGLLibrary.fWaitNative(LOCAL_EGL_CORE_NATIVE_ENGINE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool BindTexImage()
|
2010-06-23 02:24:31 -07:00
|
|
|
{
|
2010-06-24 03:04:28 -07:00
|
|
|
if (!mSurface)
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-06-23 02:24:31 -07:00
|
|
|
|
2010-06-24 03:04:28 -07:00
|
|
|
if (mBound && !ReleaseTexImage())
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-06-24 03:04:28 -07:00
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
EGLBoolean success = sEGLLibrary.fBindTexImage(EGL_DISPLAY(),
|
2010-06-24 03:04:28 -07:00
|
|
|
(EGLSurface)mSurface, LOCAL_EGL_BACK_BUFFER);
|
|
|
|
if (success == LOCAL_EGL_FALSE)
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-06-23 02:24:31 -07:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
mBound = true;
|
|
|
|
return true;
|
2010-06-23 02:24:31 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool ReleaseTexImage()
|
2010-06-23 02:24:31 -07:00
|
|
|
{
|
|
|
|
if (!mBound)
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-06-23 02:24:31 -07:00
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
if (!mSurface)
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-06-23 02:24:31 -07:00
|
|
|
|
2010-06-24 03:04:28 -07:00
|
|
|
EGLBoolean success;
|
2010-07-18 22:01:14 -07:00
|
|
|
success = sEGLLibrary.fReleaseTexImage(EGL_DISPLAY(),
|
|
|
|
(EGLSurface)mSurface,
|
|
|
|
LOCAL_EGL_BACK_BUFFER);
|
2010-06-24 03:04:28 -07:00
|
|
|
if (success == LOCAL_EGL_FALSE)
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-06-23 02:24:31 -07:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
mBound = false;
|
|
|
|
return true;
|
2010-06-23 02:24:31 -07:00
|
|
|
}
|
|
|
|
|
2012-05-12 16:23:56 -07:00
|
|
|
bool MakeCurrentImpl(bool aForce = false) {
|
2011-09-28 23:19:26 -07:00
|
|
|
bool succeeded = true;
|
2010-06-23 01:02:12 -07:00
|
|
|
|
|
|
|
// Assume that EGL has the same problem as WGL does,
|
|
|
|
// where MakeCurrent with an already-current context is
|
|
|
|
// still expensive.
|
2011-08-23 13:48:27 -07:00
|
|
|
#ifndef MOZ_WIDGET_QT
|
2011-08-26 16:23:02 -07:00
|
|
|
if (!mSurface) {
|
2012-02-15 13:02:39 -08:00
|
|
|
// We need to be able to bind NO_SURFACE when we don't
|
|
|
|
// have access to a surface. We won't be drawing to the screen
|
|
|
|
// but we will be able to do things like resource releases.
|
|
|
|
succeeded = sEGLLibrary.fMakeCurrent(EGL_DISPLAY(),
|
|
|
|
EGL_NO_SURFACE, EGL_NO_SURFACE,
|
2012-03-28 15:00:41 -07:00
|
|
|
EGL_NO_CONTEXT);
|
2012-02-15 13:02:39 -08:00
|
|
|
if (!succeeded && sEGLLibrary.fGetError() == LOCAL_EGL_CONTEXT_LOST) {
|
|
|
|
mContextLost = true;
|
|
|
|
NS_WARNING("EGL context has been lost.");
|
|
|
|
}
|
|
|
|
NS_ASSERTION(succeeded, "Failed to make GL context current!");
|
|
|
|
return succeeded;
|
2011-08-26 16:23:02 -07:00
|
|
|
}
|
2011-08-24 09:15:58 -07:00
|
|
|
#endif
|
2012-05-12 16:23:56 -07:00
|
|
|
if (aForce || sEGLLibrary.fGetCurrentContext() != mContext) {
|
2012-03-21 17:16:31 -07:00
|
|
|
#ifdef MOZ_WIDGET_QT
|
2012-05-12 16:23:56 -07:00
|
|
|
// Shared Qt GL context need to be informed about context switch
|
|
|
|
if (mSharedContext) {
|
|
|
|
QGLContext* qglCtx = static_cast<QGLContext*>(static_cast<GLContextEGL*>(mSharedContext.get())->mPlatformContext);
|
|
|
|
if (qglCtx) {
|
|
|
|
qglCtx->doneCurrent();
|
|
|
|
}
|
2012-03-21 17:16:31 -07:00
|
|
|
}
|
|
|
|
#endif
|
2012-05-12 16:23:56 -07:00
|
|
|
succeeded = sEGLLibrary.fMakeCurrent(EGL_DISPLAY(),
|
|
|
|
mSurface, mSurface,
|
|
|
|
mContext);
|
|
|
|
if (!succeeded && sEGLLibrary.fGetError() == LOCAL_EGL_CONTEXT_LOST) {
|
|
|
|
mContextLost = true;
|
|
|
|
NS_WARNING("EGL context has been lost.");
|
|
|
|
}
|
|
|
|
NS_ASSERTION(succeeded, "Failed to make GL context current!");
|
2010-06-23 01:02:12 -07:00
|
|
|
}
|
2010-06-09 15:27:29 -07:00
|
|
|
|
|
|
|
return succeeded;
|
|
|
|
}
|
|
|
|
|
2010-12-13 14:36:35 -08:00
|
|
|
#ifdef MOZ_WIDGET_QT
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool
|
2010-12-13 14:36:35 -08:00
|
|
|
RenewSurface() {
|
|
|
|
/* We don't support renewing on QT because we don't create the surface ourselves */
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-12-13 14:36:35 -08:00
|
|
|
}
|
|
|
|
#else
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool
|
2010-12-13 14:36:35 -08:00
|
|
|
RenewSurface() {
|
2012-06-12 07:24:31 -07:00
|
|
|
sEGLLibrary.fMakeCurrent(EGL_DISPLAY(), EGL_NO_SURFACE, EGL_NO_SURFACE,
|
|
|
|
EGL_NO_CONTEXT);
|
|
|
|
if (!mSurface) {
|
2012-05-29 10:46:37 -07:00
|
|
|
#ifdef MOZ_JAVA_COMPOSITOR
|
2012-06-12 07:24:31 -07:00
|
|
|
mSurface = mozilla::AndroidBridge::Bridge()->ProvideEGLSurface();
|
2012-05-29 10:46:37 -07:00
|
|
|
#else
|
2012-06-12 07:24:31 -07:00
|
|
|
EGLConfig config;
|
|
|
|
CreateConfig(&config);
|
|
|
|
mSurface = CreateSurfaceForWindow(NULL, config);
|
2012-05-29 10:46:37 -07:00
|
|
|
#endif
|
2012-06-12 07:24:31 -07:00
|
|
|
}
|
2010-12-13 14:36:35 -08:00
|
|
|
return sEGLLibrary.fMakeCurrent(EGL_DISPLAY(),
|
|
|
|
mSurface, mSurface,
|
|
|
|
mContext);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-08-23 13:48:27 -07:00
|
|
|
virtual void
|
|
|
|
ReleaseSurface() {
|
2011-09-14 12:14:43 -07:00
|
|
|
if (mSurface && !mPlatformContext) {
|
2011-08-23 13:48:27 -07:00
|
|
|
sEGLLibrary.fMakeCurrent(EGL_DISPLAY(), EGL_NO_SURFACE, EGL_NO_SURFACE,
|
|
|
|
EGL_NO_CONTEXT);
|
|
|
|
sEGLLibrary.fDestroySurface(EGL_DISPLAY(), mSurface);
|
|
|
|
mSurface = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool SetupLookupFunction()
|
2010-06-09 15:27:29 -07:00
|
|
|
{
|
2012-02-09 11:05:11 -08:00
|
|
|
mLookupFunc = (PlatformLookupFunction)sEGLLibrary.mSymbols.fGetProcAddress;
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-06-09 15:27:29 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void *GetNativeData(NativeDataType aType)
|
|
|
|
{
|
|
|
|
switch (aType) {
|
|
|
|
case NativeGLContext:
|
|
|
|
return mContext;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool SwapBuffers()
|
2010-06-25 17:52:37 -07:00
|
|
|
{
|
2011-09-14 12:14:43 -07:00
|
|
|
if (mSurface && !mPlatformContext) {
|
2011-08-23 13:48:27 -07:00
|
|
|
return sEGLLibrary.fSwapBuffers(EGL_DISPLAY(), mSurface);
|
|
|
|
} else {
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2011-08-23 13:48:27 -07:00
|
|
|
}
|
2010-06-25 17:52:37 -07:00
|
|
|
}
|
2011-07-06 11:00:47 -07:00
|
|
|
// GLContext interface - returns Tiled Texture Image in our case
|
2010-07-01 09:30:38 -07:00
|
|
|
virtual already_AddRefed<TextureImage>
|
|
|
|
CreateTextureImage(const nsIntSize& aSize,
|
|
|
|
TextureImage::ContentType aContentType,
|
2010-11-12 12:02:20 -08:00
|
|
|
GLenum aWrapMode,
|
2012-05-09 13:55:31 -07:00
|
|
|
TextureImage::Flags aFlags = TextureImage::NoFlags);
|
2010-07-01 09:30:38 -07:00
|
|
|
|
2011-07-06 11:00:47 -07:00
|
|
|
// a function to generate Tiles for Tiled Texture Image
|
|
|
|
virtual already_AddRefed<TextureImage>
|
|
|
|
TileGenFunc(const nsIntSize& aSize,
|
|
|
|
TextureImage::ContentType aContentType,
|
2012-05-09 13:55:31 -07:00
|
|
|
TextureImage::Flags aFlags = TextureImage::NoFlags);
|
2010-07-18 22:01:14 -07:00
|
|
|
// hold a reference to the given surface
|
|
|
|
// for the lifetime of this context.
|
|
|
|
void HoldSurface(gfxASurface *aSurf) {
|
|
|
|
mThebesSurface = aSurf;
|
|
|
|
}
|
|
|
|
|
2011-08-24 09:15:58 -07:00
|
|
|
void SetPlatformContext(void *context) {
|
|
|
|
mPlatformContext = context;
|
2010-07-18 22:01:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
EGLContext Context() {
|
|
|
|
return mContext;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool BindTex2DOffscreen(GLContext *aOffscreen);
|
2010-07-18 22:01:14 -07:00
|
|
|
void UnbindTex2DOffscreen(GLContext *aOffscreen);
|
2011-09-28 23:19:26 -07:00
|
|
|
bool ResizeOffscreen(const gfxIntSize& aNewSize);
|
2010-07-18 22:01:14 -07:00
|
|
|
void BindOffscreenFramebuffer();
|
|
|
|
|
|
|
|
static already_AddRefed<GLContextEGL>
|
|
|
|
CreateEGLPixmapOffscreenContext(const gfxIntSize& aSize,
|
2011-06-09 18:18:43 -07:00
|
|
|
const ContextFormat& aFormat,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aShare);
|
2010-07-18 22:01:14 -07:00
|
|
|
|
2011-07-27 04:00:17 -07:00
|
|
|
#if defined(MOZ_X11) && defined(MOZ_EGL_XRENDER_COMPOSITE)
|
|
|
|
static already_AddRefed<GLContextEGL>
|
|
|
|
CreateBasicEGLPixmapOffscreenContext(const gfxIntSize& aSize,
|
|
|
|
const ContextFormat& aFormat);
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool ResizeOffscreenPixmapSurface(const gfxIntSize& aNewSize);
|
2011-07-27 04:00:17 -07:00
|
|
|
#endif
|
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
static already_AddRefed<GLContextEGL>
|
|
|
|
CreateEGLPBufferOffscreenContext(const gfxIntSize& aSize,
|
2012-02-06 19:00:21 -08:00
|
|
|
const ContextFormat& aFormat,
|
|
|
|
bool bufferUnused = false);
|
2010-07-18 22:01:14 -07:00
|
|
|
|
|
|
|
void SetOffscreenSize(const gfxIntSize &aRequestedSize,
|
|
|
|
const gfxIntSize &aActualSize)
|
|
|
|
{
|
|
|
|
mOffscreenSize = aRequestedSize;
|
|
|
|
mOffscreenActualSize = aActualSize;
|
|
|
|
}
|
|
|
|
|
2011-01-06 14:07:12 -08:00
|
|
|
void *GetD3DShareHandle() {
|
2011-07-28 13:37:58 -07:00
|
|
|
if (!sEGLLibrary.HasANGLESurfaceD3DTexture2DShareHandle()) {
|
2011-01-06 14:07:12 -08:00
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *h = nsnull;
|
|
|
|
|
|
|
|
#ifndef EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE
|
|
|
|
#define EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE 0x3200
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!sEGLLibrary.fQuerySurfacePointerANGLE(EGL_DISPLAY(), mSurface,
|
|
|
|
EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE, (void**) &h))
|
|
|
|
{
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
2012-04-28 06:05:41 -07:00
|
|
|
virtual bool HasLockSurface() {
|
|
|
|
return sEGLLibrary.HasKHRLockSurface();
|
|
|
|
}
|
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
protected:
|
|
|
|
friend class GLContextProviderEGL;
|
|
|
|
|
2010-06-09 15:27:29 -07:00
|
|
|
EGLConfig mConfig;
|
|
|
|
EGLSurface mSurface;
|
|
|
|
EGLContext mContext;
|
2011-08-24 09:15:58 -07:00
|
|
|
void *mPlatformContext;
|
2010-07-18 22:01:14 -07:00
|
|
|
nsRefPtr<gfxASurface> mThebesSurface;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mBound;
|
2010-07-18 22:01:14 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mIsPBuffer;
|
|
|
|
bool mIsDoubleBuffered;
|
2012-03-21 17:16:31 -07:00
|
|
|
bool mCanBindToTexture;
|
2011-01-31 13:10:57 -08:00
|
|
|
|
|
|
|
static EGLSurface CreatePBufferSurfaceTryingPowerOfTwo(EGLConfig config,
|
|
|
|
EGLenum bindToTextureFormat,
|
|
|
|
gfxIntSize& pbsize)
|
|
|
|
{
|
|
|
|
nsTArray<EGLint> pbattrs(16);
|
|
|
|
EGLSurface surface = nsnull;
|
|
|
|
|
|
|
|
TRY_AGAIN_POWER_OF_TWO:
|
|
|
|
pbattrs.Clear();
|
|
|
|
pbattrs.AppendElement(LOCAL_EGL_WIDTH); pbattrs.AppendElement(pbsize.width);
|
|
|
|
pbattrs.AppendElement(LOCAL_EGL_HEIGHT); pbattrs.AppendElement(pbsize.height);
|
|
|
|
|
|
|
|
if (bindToTextureFormat != LOCAL_EGL_NONE) {
|
|
|
|
pbattrs.AppendElement(LOCAL_EGL_TEXTURE_TARGET);
|
|
|
|
pbattrs.AppendElement(LOCAL_EGL_TEXTURE_2D);
|
|
|
|
|
|
|
|
pbattrs.AppendElement(LOCAL_EGL_TEXTURE_FORMAT);
|
|
|
|
pbattrs.AppendElement(bindToTextureFormat);
|
|
|
|
}
|
|
|
|
|
|
|
|
pbattrs.AppendElement(LOCAL_EGL_NONE);
|
|
|
|
|
|
|
|
surface = sEGLLibrary.fCreatePbufferSurface(EGL_DISPLAY(), config, &pbattrs[0]);
|
|
|
|
if (!surface) {
|
|
|
|
if (!is_power_of_two(pbsize.width) ||
|
|
|
|
!is_power_of_two(pbsize.height))
|
|
|
|
{
|
|
|
|
if (!is_power_of_two(pbsize.width))
|
|
|
|
pbsize.width = next_power_of_two(pbsize.width);
|
|
|
|
if (!is_power_of_two(pbsize.height))
|
|
|
|
pbsize.height = next_power_of_two(pbsize.height);
|
|
|
|
|
|
|
|
NS_WARNING("Failed to create pbuffer, trying power of two dims");
|
|
|
|
goto TRY_AGAIN_POWER_OF_TWO;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_WARNING("Failed to create pbuffer surface");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
return surface;
|
|
|
|
}
|
2010-06-09 15:27:29 -07:00
|
|
|
};
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2010-07-18 22:01:14 -07:00
|
|
|
GLContextEGL::BindTex2DOffscreen(GLContext *aOffscreen)
|
|
|
|
{
|
|
|
|
if (aOffscreen->GetContextType() != ContextTypeEGL) {
|
|
|
|
NS_WARNING("non-EGL context");
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-07-18 22:01:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
GLContextEGL *offs = static_cast<GLContextEGL*>(aOffscreen);
|
|
|
|
|
2012-03-21 17:16:31 -07:00
|
|
|
if (offs->mCanBindToTexture) {
|
2011-09-28 23:19:26 -07:00
|
|
|
bool ok = sEGLLibrary.fBindTexImage(EGL_DISPLAY(),
|
2010-07-18 22:01:14 -07:00
|
|
|
offs->mSurface,
|
|
|
|
LOCAL_EGL_BACK_BUFFER);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (offs->mOffscreenTexture) {
|
|
|
|
if (offs->GetSharedContext() != GLContextProviderEGL::GetGlobalContext())
|
|
|
|
{
|
|
|
|
NS_WARNING("offscreen FBO context can only be bound with context sharing!");
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-07-18 22:01:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fBindTexture(LOCAL_GL_TEXTURE_2D, offs->mOffscreenTexture);
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-07-18 22:01:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_WARNING("don't know how to bind this!");
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-07-18 22:01:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GLContextEGL::UnbindTex2DOffscreen(GLContext *aOffscreen)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aOffscreen->GetContextType() == ContextTypeEGL, "wrong type");
|
|
|
|
|
|
|
|
GLContextEGL *offs = static_cast<GLContextEGL*>(aOffscreen);
|
|
|
|
|
2012-03-21 17:16:31 -07:00
|
|
|
if (offs->mCanBindToTexture) {
|
2010-07-18 22:01:14 -07:00
|
|
|
sEGLLibrary.fReleaseTexImage(EGL_DISPLAY(),
|
|
|
|
offs->mSurface,
|
|
|
|
LOCAL_EGL_BACK_BUFFER);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2010-07-18 22:01:14 -07:00
|
|
|
GLContextEGL::ResizeOffscreen(const gfxIntSize& aNewSize)
|
|
|
|
{
|
2011-10-19 12:09:57 -07:00
|
|
|
if (!IsOffscreenSizeAllowed(aNewSize))
|
|
|
|
return false;
|
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
if (mIsPBuffer) {
|
|
|
|
gfxIntSize pbsize(aNewSize);
|
|
|
|
|
2011-01-31 13:10:57 -08:00
|
|
|
EGLSurface surface =
|
|
|
|
CreatePBufferSurfaceTryingPowerOfTwo(mConfig,
|
2012-03-21 17:16:31 -07:00
|
|
|
mCanBindToTexture
|
2011-01-31 13:10:57 -08:00
|
|
|
? (mCreationFormat.minAlpha
|
|
|
|
? LOCAL_EGL_TEXTURE_RGBA
|
|
|
|
: LOCAL_EGL_TEXTURE_RGB)
|
|
|
|
: LOCAL_EGL_NONE,
|
|
|
|
pbsize);
|
2010-07-18 22:01:14 -07:00
|
|
|
if (!surface) {
|
|
|
|
NS_WARNING("Failed to resize pbuffer");
|
2011-10-19 12:09:57 -07:00
|
|
|
return false;
|
2010-07-18 22:01:14 -07:00
|
|
|
}
|
|
|
|
|
2012-04-25 07:10:43 -07:00
|
|
|
if (!ResizeOffscreenFBOs(pbsize, false))
|
2011-10-19 12:09:57 -07:00
|
|
|
return false;
|
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
SetOffscreenSize(aNewSize, pbsize);
|
|
|
|
|
2011-09-14 12:14:43 -07:00
|
|
|
if (mSurface && !mPlatformContext) {
|
2011-08-23 13:48:27 -07:00
|
|
|
sEGLLibrary.fDestroySurface(EGL_DISPLAY(), mSurface);
|
|
|
|
}
|
2010-07-18 22:01:14 -07:00
|
|
|
|
|
|
|
mSurface = surface;
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
MakeCurrent(true);
|
2010-07-18 22:01:14 -07:00
|
|
|
ClearSafely();
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-07-18 22:01:14 -07:00
|
|
|
}
|
|
|
|
|
2011-07-27 04:00:17 -07:00
|
|
|
#if defined(MOZ_X11) && defined(MOZ_EGL_XRENDER_COMPOSITE)
|
2011-10-19 12:09:57 -07:00
|
|
|
if (ResizeOffscreenPixmapSurface(aNewSize)) {
|
2012-04-25 07:10:43 -07:00
|
|
|
if (ResizeOffscreenFBOs(aNewSize, true))
|
2011-10-19 12:09:57 -07:00
|
|
|
return true;
|
|
|
|
}
|
2011-07-27 04:00:17 -07:00
|
|
|
#endif
|
|
|
|
|
2012-04-25 07:10:43 -07:00
|
|
|
return ResizeOffscreenFBOs(aNewSize, true);
|
2010-07-18 22:01:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static GLContextEGL *
|
|
|
|
GetGlobalContextEGL()
|
|
|
|
{
|
|
|
|
return static_cast<GLContextEGL*>(GLContextProviderEGL::GetGlobalContext());
|
|
|
|
}
|
|
|
|
|
2010-11-26 13:41:53 -08:00
|
|
|
static GLenum
|
|
|
|
GLFormatForImage(gfxASurface::gfxImageFormat aFormat)
|
|
|
|
{
|
|
|
|
switch (aFormat) {
|
|
|
|
case gfxASurface::ImageFormatARGB32:
|
|
|
|
case gfxASurface::ImageFormatRGB24:
|
2012-03-22 11:37:47 -07:00
|
|
|
// Thebes only supports RGBX, not packed RGB.
|
2010-11-26 13:41:53 -08:00
|
|
|
return LOCAL_GL_RGBA;
|
|
|
|
case gfxASurface::ImageFormatRGB16_565:
|
|
|
|
return LOCAL_GL_RGB;
|
2012-06-25 19:43:31 -07:00
|
|
|
case gfxASurface::ImageFormatA8:
|
|
|
|
return LOCAL_GL_LUMINANCE;
|
2010-11-26 13:41:53 -08:00
|
|
|
default:
|
|
|
|
NS_WARNING("Unknown GL format for Image format");
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-06-12 21:20:27 -07:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
|
|
|
static PixelFormat
|
|
|
|
PixelFormatForImage(gfxASurface::gfxImageFormat aFormat)
|
|
|
|
{
|
|
|
|
switch (aFormat) {
|
|
|
|
case gfxASurface::ImageFormatARGB32:
|
|
|
|
return PIXEL_FORMAT_RGBA_8888;
|
|
|
|
case gfxASurface::ImageFormatRGB24:
|
|
|
|
return PIXEL_FORMAT_RGBX_8888;
|
|
|
|
case gfxASurface::ImageFormatRGB16_565:
|
|
|
|
return PIXEL_FORMAT_RGB_565;
|
2012-06-25 19:43:31 -07:00
|
|
|
case gfxASurface::ImageFormatA8:
|
|
|
|
return PIXEL_FORMAT_L_8;
|
2012-06-12 21:20:27 -07:00
|
|
|
default:
|
|
|
|
MOZ_NOT_REACHED("Unknown gralloc pixel format for Image format");
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-11-26 13:41:53 -08:00
|
|
|
static GLenum
|
|
|
|
GLTypeForImage(gfxASurface::gfxImageFormat aFormat)
|
|
|
|
{
|
|
|
|
switch (aFormat) {
|
|
|
|
case gfxASurface::ImageFormatARGB32:
|
|
|
|
case gfxASurface::ImageFormatRGB24:
|
2012-06-25 19:43:31 -07:00
|
|
|
case gfxASurface::ImageFormatA8:
|
2010-11-26 13:41:53 -08:00
|
|
|
return LOCAL_GL_UNSIGNED_BYTE;
|
|
|
|
case gfxASurface::ImageFormatRGB16_565:
|
|
|
|
return LOCAL_GL_UNSIGNED_SHORT_5_6_5;
|
|
|
|
default:
|
|
|
|
NS_WARNING("Unknown GL format for Image format");
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
class TextureImageEGL
|
|
|
|
: public TextureImage
|
2010-07-01 09:30:38 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
TextureImageEGL(GLuint aTexture,
|
|
|
|
const nsIntSize& aSize,
|
2010-11-12 12:02:20 -08:00
|
|
|
GLenum aWrapMode,
|
2010-07-01 09:30:38 -07:00
|
|
|
ContentType aContentType,
|
2012-05-09 13:55:31 -07:00
|
|
|
GLContext* aContext,
|
|
|
|
TextureImage::Flags aFlags = TextureImage::NoFlags)
|
|
|
|
: TextureImage(aSize, aWrapMode, aContentType, aFlags)
|
2010-07-01 09:30:38 -07:00
|
|
|
, mGLContext(aContext)
|
2010-11-26 13:41:53 -08:00
|
|
|
, mUpdateFormat(gfxASurface::ImageFormatUnknown)
|
2012-06-19 21:12:30 -07:00
|
|
|
, mEGLImage(nsnull)
|
|
|
|
, mTexture(aTexture)
|
2010-11-26 13:41:53 -08:00
|
|
|
, mSurface(nsnull)
|
|
|
|
, mConfig(nsnull)
|
2011-07-26 13:52:03 -07:00
|
|
|
, mTextureState(Created)
|
2011-10-17 07:59:28 -07:00
|
|
|
, mBound(false)
|
|
|
|
, mIsLocked(false)
|
2010-11-26 13:41:53 -08:00
|
|
|
{
|
2012-05-25 21:38:17 -07:00
|
|
|
mUpdateFormat = gfxPlatform::GetPlatform()->OptimalFormatForContent(GetContentType());
|
2010-11-26 13:41:53 -08:00
|
|
|
|
|
|
|
if (gUseBackingSurface) {
|
2012-06-12 21:20:27 -07:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
|
|
|
switch (mUpdateFormat) {
|
|
|
|
case gfxASurface::ImageFormatARGB32:
|
|
|
|
mShaderType = BGRALayerProgramType;
|
|
|
|
break;
|
|
|
|
case gfxASurface::ImageFormatRGB24:
|
|
|
|
mUpdateFormat = gfxASurface::ImageFormatARGB32;
|
|
|
|
mShaderType = BGRXLayerProgramType;
|
|
|
|
break;
|
|
|
|
case gfxASurface::ImageFormatRGB16_565:
|
|
|
|
mShaderType = RGBXLayerProgramType;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
MOZ_NOT_REACHED("Unknown update format");
|
|
|
|
}
|
|
|
|
#else
|
2012-04-04 14:32:21 -07:00
|
|
|
if (mUpdateFormat != gfxASurface::ImageFormatARGB32) {
|
2011-01-13 05:20:50 -08:00
|
|
|
mShaderType = RGBXLayerProgramType;
|
|
|
|
} else {
|
|
|
|
mShaderType = RGBALayerProgramType;
|
|
|
|
}
|
2012-06-12 21:20:27 -07:00
|
|
|
#endif
|
2011-08-03 20:18:31 -07:00
|
|
|
Resize(aSize);
|
2011-01-13 05:20:50 -08:00
|
|
|
} else {
|
2012-04-04 14:32:21 -07:00
|
|
|
if (mUpdateFormat == gfxASurface::ImageFormatRGB16_565) {
|
|
|
|
mShaderType = RGBXLayerProgramType;
|
|
|
|
} else if (mUpdateFormat == gfxASurface::ImageFormatRGB24) {
|
2012-03-22 11:37:47 -07:00
|
|
|
// RGB24 means really RGBX for Thebes, which means we have to
|
|
|
|
// use the right shader and ignore the uninitialized alpha
|
|
|
|
// value.
|
|
|
|
mShaderType = BGRXLayerProgramType;
|
|
|
|
} else {
|
|
|
|
mShaderType = BGRALayerProgramType;
|
2011-01-13 05:20:50 -08:00
|
|
|
}
|
2010-11-26 13:41:53 -08:00
|
|
|
}
|
|
|
|
}
|
2010-07-01 09:30:38 -07:00
|
|
|
|
|
|
|
virtual ~TextureImageEGL()
|
|
|
|
{
|
2010-11-26 13:41:53 -08:00
|
|
|
GLContext *ctx = mGLContext;
|
2012-04-10 13:20:02 -07:00
|
|
|
if (ctx->IsDestroyed() || !ctx->IsOwningThreadCurrent()) {
|
2010-11-26 13:41:53 -08:00
|
|
|
ctx = ctx->GetSharedContext();
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
if (ctx && !ctx->IsDestroyed()) {
|
2011-01-05 05:48:17 -08:00
|
|
|
ctx->MakeCurrent();
|
|
|
|
ctx->fDeleteTextures(1, &mTexture);
|
2010-11-26 13:41:53 -08:00
|
|
|
ReleaseTexImage();
|
|
|
|
DestroyEGLSurface();
|
|
|
|
}
|
2010-07-01 09:30:38 -07:00
|
|
|
}
|
|
|
|
|
2012-06-12 21:20:27 -07:00
|
|
|
bool UsingDirectTexture()
|
|
|
|
{
|
|
|
|
#ifdef MOZ_WIDGET_GONK
|
|
|
|
if (mGraphicBuffer != nsnull)
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
return !!mBackingSurface;
|
|
|
|
}
|
|
|
|
|
2011-08-24 12:21:53 -07:00
|
|
|
virtual void GetUpdateRegion(nsIntRegion& aForRegion)
|
2011-08-19 01:36:04 -07:00
|
|
|
{
|
2011-08-23 14:12:15 -07:00
|
|
|
if (mTextureState != Valid) {
|
|
|
|
// if the texture hasn't been initialized yet, force the
|
|
|
|
// client to paint everything
|
2011-08-24 12:21:53 -07:00
|
|
|
aForRegion = nsIntRect(nsIntPoint(0, 0), mSize);
|
2011-08-23 14:12:15 -07:00
|
|
|
}
|
2012-06-12 21:20:27 -07:00
|
|
|
|
|
|
|
if (UsingDirectTexture()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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());
|
2011-08-24 12:21:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual gfxASurface* BeginUpdate(nsIntRegion& aRegion)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(!mUpdateSurface, "BeginUpdate() without EndUpdate()?");
|
|
|
|
|
|
|
|
// determine the region the client will need to repaint
|
|
|
|
GetUpdateRegion(aRegion);
|
|
|
|
mUpdateRect = aRegion.GetBounds();
|
2010-11-26 13:41:53 -08:00
|
|
|
|
|
|
|
//printf_stderr("BeginUpdate with updateRect [%d %d %d %d]\n", mUpdateRect.x, mUpdateRect.y, mUpdateRect.width, mUpdateRect.height);
|
|
|
|
if (!nsIntRect(nsIntPoint(0, 0), mSize).Contains(mUpdateRect)) {
|
|
|
|
NS_ERROR("update outside of image");
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-11-16 20:49:09 -08:00
|
|
|
|
2012-06-12 21:20:27 -07:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
|
|
|
if (mGraphicBuffer != nsnull) {
|
|
|
|
mUpdateSurface = GetLockSurface();
|
|
|
|
|
|
|
|
return mUpdateSurface;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-11-26 13:41:53 -08:00
|
|
|
if (mBackingSurface) {
|
|
|
|
if (sEGLLibrary.HasKHRLockSurface()) {
|
2011-01-17 23:21:12 -08:00
|
|
|
mUpdateSurface = GetLockSurface();
|
2010-09-09 13:40:11 -07:00
|
|
|
} else {
|
2011-01-17 23:21:12 -08:00
|
|
|
mUpdateSurface = mBackingSurface;
|
2010-09-09 13:40:11 -07:00
|
|
|
}
|
2011-01-13 05:20:50 -08:00
|
|
|
|
2011-01-17 23:21:12 -08:00
|
|
|
return mUpdateSurface;
|
2010-11-26 13:41:53 -08:00
|
|
|
}
|
2010-07-01 09:30:38 -07:00
|
|
|
|
2010-11-26 13:41:53 -08:00
|
|
|
//printf_stderr("creating image surface %dx%d format %d\n", mUpdateRect.width, mUpdateRect.height, mUpdateFormat);
|
|
|
|
|
2011-01-17 23:21:12 -08:00
|
|
|
mUpdateSurface =
|
2010-11-26 13:41:53 -08:00
|
|
|
new gfxImageSurface(gfxIntSize(mUpdateRect.width, mUpdateRect.height),
|
|
|
|
mUpdateFormat);
|
|
|
|
|
2011-01-17 23:21:12 -08:00
|
|
|
mUpdateSurface->SetDeviceOffset(gfxPoint(-mUpdateRect.x, -mUpdateRect.y));
|
2010-11-16 20:49:09 -08:00
|
|
|
|
2011-01-17 23:21:12 -08:00
|
|
|
return mUpdateSurface;
|
2010-07-01 09:30:38 -07:00
|
|
|
}
|
|
|
|
|
2011-01-17 23:22:25 -08:00
|
|
|
virtual void EndUpdate()
|
2010-07-01 09:30:38 -07:00
|
|
|
{
|
2011-01-17 23:21:12 -08:00
|
|
|
NS_ASSERTION(!!mUpdateSurface, "EndUpdate() without BeginUpdate()?");
|
2010-07-01 09:30:38 -07:00
|
|
|
|
2010-11-26 13:41:53 -08:00
|
|
|
if (mIsLocked) {
|
|
|
|
UnlockSurface();
|
2011-07-26 13:52:03 -07:00
|
|
|
mTextureState = Valid;
|
2011-01-17 23:21:12 -08:00
|
|
|
mUpdateSurface = nsnull;
|
2011-01-17 23:22:25 -08:00
|
|
|
return;
|
2010-11-26 13:41:53 -08:00
|
|
|
}
|
2010-09-09 13:40:11 -07:00
|
|
|
|
2011-01-17 23:21:12 -08:00
|
|
|
if (mBackingSurface && mUpdateSurface == mBackingSurface) {
|
2010-07-01 09:30:38 -07:00
|
|
|
#ifdef MOZ_X11
|
2010-11-26 13:41:53 -08:00
|
|
|
if (mBackingSurface->GetType() == gfxASurface::SurfaceTypeXlib) {
|
|
|
|
XSync(DefaultXDisplay(), False);
|
|
|
|
}
|
2010-09-09 13:40:11 -07:00
|
|
|
#endif
|
|
|
|
|
2010-11-26 13:41:53 -08:00
|
|
|
mBackingSurface->SetDeviceOffset(gfxPoint(0, 0));
|
2011-07-26 13:52:03 -07:00
|
|
|
mTextureState = Valid;
|
2011-01-17 23:21:12 -08:00
|
|
|
mUpdateSurface = nsnull;
|
2011-01-17 23:22:25 -08:00
|
|
|
return;
|
2010-11-26 13:41:53 -08: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.
|
|
|
|
|
|
|
|
// Undo the device offset that BeginUpdate set; doesn't much
|
|
|
|
// matter for us here, but important if we ever do anything
|
|
|
|
// directly with the surface.
|
2011-01-17 23:21:12 -08:00
|
|
|
mUpdateSurface->SetDeviceOffset(gfxPoint(0, 0));
|
2010-11-26 13:41:53 -08:00
|
|
|
|
|
|
|
nsRefPtr<gfxImageSurface> uploadImage = nsnull;
|
|
|
|
gfxIntSize updateSize(mUpdateRect.width, mUpdateRect.height);
|
|
|
|
|
2011-01-17 23:21:12 -08:00
|
|
|
NS_ASSERTION(mUpdateSurface->GetType() == gfxASurface::SurfaceTypeImage &&
|
|
|
|
mUpdateSurface->GetSize() == updateSize,
|
2010-11-26 13:41:53 -08:00
|
|
|
"Upload image isn't an image surface when one is expected, or is wrong size!");
|
|
|
|
|
2011-01-17 23:21:12 -08:00
|
|
|
uploadImage = static_cast<gfxImageSurface*>(mUpdateSurface.get());
|
2010-11-26 13:41:53 -08:00
|
|
|
|
|
|
|
if (!uploadImage) {
|
2011-01-17 23:22:25 -08:00
|
|
|
return;
|
2010-09-09 13:40:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
mGLContext->MakeCurrent();
|
|
|
|
mGLContext->fBindTexture(LOCAL_GL_TEXTURE_2D, mTexture);
|
2010-11-16 20:49:09 -08:00
|
|
|
|
2011-07-26 13:52:03 -07:00
|
|
|
if (mTextureState != Valid) {
|
2010-11-26 13:41:53 -08:00
|
|
|
NS_ASSERTION(mUpdateRect.x == 0 && mUpdateRect.y == 0 &&
|
|
|
|
mUpdateRect.Size() == mSize,
|
|
|
|
"Bad initial update on non-created texture!");
|
|
|
|
|
|
|
|
mGLContext->fTexImage2D(LOCAL_GL_TEXTURE_2D,
|
|
|
|
0,
|
|
|
|
GLFormatForImage(mUpdateFormat),
|
|
|
|
mUpdateRect.width,
|
|
|
|
mUpdateRect.height,
|
|
|
|
0,
|
|
|
|
GLFormatForImage(uploadImage->Format()),
|
|
|
|
GLTypeForImage(uploadImage->Format()),
|
|
|
|
uploadImage->Data());
|
|
|
|
} else {
|
2010-11-16 20:49:09 -08:00
|
|
|
mGLContext->fTexSubImage2D(LOCAL_GL_TEXTURE_2D,
|
|
|
|
0,
|
|
|
|
mUpdateRect.x,
|
|
|
|
mUpdateRect.y,
|
|
|
|
mUpdateRect.width,
|
|
|
|
mUpdateRect.height,
|
2010-11-26 13:41:53 -08:00
|
|
|
GLFormatForImage(uploadImage->Format()),
|
|
|
|
GLTypeForImage(uploadImage->Format()),
|
|
|
|
uploadImage->Data());
|
|
|
|
}
|
|
|
|
|
2011-01-17 23:21:12 -08:00
|
|
|
mUpdateSurface = nsnull;
|
2011-07-26 13:52:03 -07:00
|
|
|
mTextureState = Valid;
|
2011-01-17 23:22:25 -08:00
|
|
|
return; // mTexture is bound
|
2010-11-26 13:41:53 -08:00
|
|
|
}
|
|
|
|
|
2011-07-06 11:00:47 -07:00
|
|
|
virtual bool DirectUpdate(gfxASurface* aSurf, const nsIntRegion& aRegion, const nsIntPoint& aFrom /* = nsIntPoint(0, 0) */)
|
2010-12-16 23:50:26 -08:00
|
|
|
{
|
|
|
|
nsIntRect bounds = aRegion.GetBounds();
|
2011-07-06 11:00:47 -07:00
|
|
|
|
2011-01-17 17:32:40 -08:00
|
|
|
nsIntRegion region;
|
2011-07-26 13:52:03 -07:00
|
|
|
if (mTextureState != Valid) {
|
2010-12-16 23:50:26 -08:00
|
|
|
bounds = nsIntRect(0, 0, mSize.width, mSize.height);
|
2011-01-17 17:32:40 -08:00
|
|
|
region = nsIntRegion(bounds);
|
|
|
|
} else {
|
|
|
|
region = aRegion;
|
2010-12-16 23:50:26 -08:00
|
|
|
}
|
|
|
|
|
2012-06-12 21:20:27 -07:00
|
|
|
if ((mBackingSurface && sEGLLibrary.HasKHRLockSurface())
|
|
|
|
#ifdef MOZ_WIDGET_GONK
|
|
|
|
|| (mGraphicBuffer != nsnull)
|
|
|
|
#endif
|
|
|
|
) {
|
2011-01-17 23:21:12 -08:00
|
|
|
mUpdateSurface = GetLockSurface();
|
|
|
|
if (mUpdateSurface) {
|
|
|
|
nsRefPtr<gfxContext> ctx = new gfxContext(mUpdateSurface);
|
|
|
|
gfxUtils::ClipToRegion(ctx, aRegion);
|
2011-07-06 11:00:47 -07:00
|
|
|
ctx->SetSource(aSurf, gfxPoint(-aFrom.x, -aFrom.y));
|
2011-01-17 23:21:12 -08:00
|
|
|
ctx->SetOperator(gfxContext::OPERATOR_SOURCE);
|
|
|
|
ctx->Paint();
|
|
|
|
mUpdateSurface = nsnull;
|
2011-01-13 05:20:50 -08:00
|
|
|
UnlockSurface();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mShaderType =
|
|
|
|
mGLContext->UploadSurfaceToTexture(aSurf,
|
2011-01-17 17:32:40 -08:00
|
|
|
region,
|
2011-01-13 05:20:50 -08:00
|
|
|
mTexture,
|
2011-07-26 13:52:03 -07:00
|
|
|
mTextureState == Created,
|
2011-07-06 11:00:47 -07:00
|
|
|
bounds.TopLeft() + aFrom,
|
2011-10-17 07:59:28 -07:00
|
|
|
false);
|
2011-01-13 05:20:50 -08:00
|
|
|
}
|
|
|
|
|
2011-07-26 13:52:03 -07:00
|
|
|
mTextureState = Valid;
|
2010-12-16 23:50:26 -08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-04-07 16:58:08 -07:00
|
|
|
virtual void BindTexture(GLenum aTextureUnit)
|
|
|
|
{
|
2011-08-03 20:18:31 -07:00
|
|
|
// Ensure the texture is allocated before it is used.
|
|
|
|
if (mTextureState == Created) {
|
|
|
|
Resize(mSize);
|
|
|
|
}
|
|
|
|
|
2012-06-14 11:57:26 -07:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
|
|
|
if (UsingDirectTexture()) {
|
|
|
|
mGLContext->fActiveTexture(aTextureUnit);
|
|
|
|
mGLContext->fBindTexture(LOCAL_GL_TEXTURE_2D, mTexture);
|
|
|
|
sEGLLibrary.fImageTargetTexture2DOES(LOCAL_GL_TEXTURE_2D, mEGLImage);
|
|
|
|
if (sEGLLibrary.fGetError() != LOCAL_EGL_SUCCESS) {
|
|
|
|
LOG("Could not set image target texture. ERROR (0x%04x)", sEGLLibrary.fGetError());
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
mGLContext->fActiveTexture(aTextureUnit);
|
|
|
|
mGLContext->fBindTexture(LOCAL_GL_TEXTURE_2D, mTexture);
|
|
|
|
mGLContext->fActiveTexture(LOCAL_GL_TEXTURE0);
|
|
|
|
}
|
2011-04-07 16:58:08 -07:00
|
|
|
}
|
|
|
|
|
2011-08-03 20:18:31 -07:00
|
|
|
virtual GLuint GetTextureID()
|
|
|
|
{
|
|
|
|
// Ensure the texture is allocated before it is used.
|
|
|
|
if (mTextureState == Created) {
|
|
|
|
Resize(mSize);
|
|
|
|
}
|
2011-07-06 11:00:47 -07:00
|
|
|
return mTexture;
|
|
|
|
};
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool InUpdate() const { return !!mUpdateSurface; }
|
2010-11-26 13:41:53 -08:00
|
|
|
|
|
|
|
virtual void Resize(const nsIntSize& aSize)
|
|
|
|
{
|
2011-01-17 23:21:12 -08:00
|
|
|
NS_ASSERTION(!mUpdateSurface, "Resize() while in update?");
|
2010-11-26 13:41:53 -08:00
|
|
|
|
2011-07-26 13:52:03 -07:00
|
|
|
if (mSize == aSize && mTextureState != Created)
|
2010-11-26 13:41:53 -08:00
|
|
|
return;
|
|
|
|
|
2011-01-13 05:20:50 -08:00
|
|
|
mGLContext->fBindTexture(LOCAL_GL_TEXTURE_2D, mTexture);
|
2012-06-12 21:20:27 -07:00
|
|
|
|
2011-07-26 13:51:56 -07:00
|
|
|
// Try to generate a backin surface first if we have the ability
|
|
|
|
if (gUseBackingSurface) {
|
2010-11-26 13:41:53 -08:00
|
|
|
CreateBackingSurface(gfxIntSize(aSize.width, aSize.height));
|
2011-07-26 13:51:56 -07:00
|
|
|
}
|
|
|
|
|
2012-06-12 21:20:27 -07:00
|
|
|
if (!UsingDirectTexture()) {
|
2011-07-26 13:51:56 -07:00
|
|
|
// If we don't have a backing surface or failed to obtain one,
|
|
|
|
// use the GL Texture failsafe
|
2010-11-16 20:49:09 -08:00
|
|
|
mGLContext->fTexImage2D(LOCAL_GL_TEXTURE_2D,
|
|
|
|
0,
|
2010-11-26 13:41:53 -08:00
|
|
|
GLFormatForImage(mUpdateFormat),
|
|
|
|
aSize.width,
|
|
|
|
aSize.height,
|
2010-11-16 20:49:09 -08:00
|
|
|
0,
|
2010-11-26 13:41:53 -08:00
|
|
|
GLFormatForImage(mUpdateFormat),
|
|
|
|
GLTypeForImage(mUpdateFormat),
|
|
|
|
NULL);
|
2010-11-16 20:49:09 -08:00
|
|
|
}
|
2010-09-09 13:40:11 -07:00
|
|
|
|
2011-07-26 13:52:03 -07:00
|
|
|
mTextureState = Allocated;
|
2010-11-26 13:41:53 -08:00
|
|
|
mSize = aSize;
|
2010-07-01 09:30:38 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool BindTexImage()
|
2010-07-22 13:29:37 -07:00
|
|
|
{
|
2010-11-26 13:41:53 -08:00
|
|
|
if (mBound && !ReleaseTexImage())
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-11-26 13:41:53 -08:00
|
|
|
|
|
|
|
EGLBoolean success =
|
|
|
|
sEGLLibrary.fBindTexImage(EGL_DISPLAY(),
|
|
|
|
(EGLSurface)mSurface,
|
|
|
|
LOCAL_EGL_BACK_BUFFER);
|
|
|
|
|
|
|
|
if (success == LOCAL_EGL_FALSE)
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-11-26 13:41:53 -08:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
mBound = true;
|
|
|
|
return true;
|
2010-11-26 13:41:53 -08:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool ReleaseTexImage()
|
2010-11-26 13:41:53 -08:00
|
|
|
{
|
|
|
|
if (!mBound)
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-11-26 13:41:53 -08:00
|
|
|
|
|
|
|
EGLBoolean success =
|
|
|
|
sEGLLibrary.fReleaseTexImage(EGL_DISPLAY(),
|
|
|
|
(EGLSurface)mSurface,
|
|
|
|
LOCAL_EGL_BACK_BUFFER);
|
|
|
|
|
|
|
|
if (success == LOCAL_EGL_FALSE)
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-11-26 13:41:53 -08:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
mBound = false;
|
|
|
|
return true;
|
2010-11-26 13:41:53 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual already_AddRefed<gfxImageSurface> GetLockSurface()
|
|
|
|
{
|
|
|
|
if (mIsLocked) {
|
|
|
|
NS_WARNING("Can't lock surface twice");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2012-06-12 21:20:27 -07:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
|
|
|
if (mGraphicBuffer != nsnull) {
|
2012-06-14 11:57:26 -07:00
|
|
|
// Unset the EGLImage target so that we don't get clashing locks
|
2012-06-12 21:20:27 -07:00
|
|
|
mGLContext->MakeCurrent(true);
|
|
|
|
mGLContext->fActiveTexture(LOCAL_GL_TEXTURE0);
|
|
|
|
mGLContext->fBindTexture(LOCAL_GL_TEXTURE_2D, mTexture);
|
2012-06-14 11:57:26 -07:00
|
|
|
sEGLLibrary.fImageTargetTexture2DOES(LOCAL_GL_TEXTURE_2D, 0);
|
2012-06-12 21:20:27 -07:00
|
|
|
if (sEGLLibrary.fGetError() != LOCAL_EGL_SUCCESS) {
|
|
|
|
LOG("Could not set image target texture. ERROR (0x%04x)", sEGLLibrary.fGetError());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *vaddr;
|
|
|
|
if (mGraphicBuffer->lock(GraphicBuffer::USAGE_SW_READ_OFTEN |
|
|
|
|
GraphicBuffer::USAGE_SW_WRITE_OFTEN,
|
|
|
|
&vaddr) != OK) {
|
|
|
|
LOG("Could not lock GraphicBuffer");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<gfxImageSurface> surface =
|
|
|
|
new gfxImageSurface(reinterpret_cast<unsigned char *>(vaddr),
|
|
|
|
gfxIntSize(mSize.width, mSize.height),
|
|
|
|
mGraphicBuffer->getStride() * gfxUtils::ImageFormatToDepth(mUpdateFormat) / 8,
|
|
|
|
mUpdateFormat);
|
|
|
|
|
|
|
|
mIsLocked = true;
|
|
|
|
|
|
|
|
return surface.forget();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-11-26 13:41:53 -08:00
|
|
|
if (!sEGLLibrary.HasKHRLockSurface()) {
|
|
|
|
NS_WARNING("GetLockSurface called, but no EGL_KHR_lock_surface extension!");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!CreateEGLSurface(mBackingSurface)) {
|
|
|
|
NS_WARNING("Failed to create EGL surface");
|
|
|
|
return nsnull;
|
2010-09-09 13:40:11 -07:00
|
|
|
}
|
|
|
|
|
2010-11-26 13:41:53 -08:00
|
|
|
static EGLint lock_attribs[] = {
|
|
|
|
LOCAL_EGL_MAP_PRESERVE_PIXELS_KHR, LOCAL_EGL_TRUE,
|
|
|
|
LOCAL_EGL_LOCK_USAGE_HINT_KHR, LOCAL_EGL_READ_SURFACE_BIT_KHR | LOCAL_EGL_WRITE_SURFACE_BIT_KHR,
|
|
|
|
LOCAL_EGL_NONE
|
|
|
|
};
|
|
|
|
|
2012-06-12 14:36:10 -07:00
|
|
|
sEGLLibrary.fLockSurface(EGL_DISPLAY(), mSurface, lock_attribs);
|
2010-11-26 13:41:53 -08:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
mIsLocked = true;
|
2010-11-26 13:41:53 -08:00
|
|
|
|
|
|
|
unsigned char *data = nsnull;
|
|
|
|
int pitch = 0;
|
|
|
|
int pixsize = 0;
|
|
|
|
|
|
|
|
sEGLLibrary.fQuerySurface(EGL_DISPLAY(), mSurface, LOCAL_EGL_BITMAP_POINTER_KHR, (EGLint*)&data);
|
|
|
|
sEGLLibrary.fQuerySurface(EGL_DISPLAY(), mSurface, LOCAL_EGL_BITMAP_PITCH_KHR, &pitch);
|
|
|
|
sEGLLibrary.fQuerySurface(EGL_DISPLAY(), mSurface, LOCAL_EGL_BITMAP_PIXEL_SIZE_KHR, &pixsize);
|
|
|
|
|
|
|
|
nsRefPtr<gfxImageSurface> sharedImage =
|
|
|
|
new gfxImageSurface(data,
|
|
|
|
mBackingSurface->GetSize(),
|
|
|
|
pitch,
|
|
|
|
mUpdateFormat);
|
|
|
|
|
|
|
|
return sharedImage.forget();
|
2010-07-22 13:29:37 -07:00
|
|
|
}
|
|
|
|
|
2010-11-26 13:41:53 -08:00
|
|
|
virtual void UnlockSurface()
|
|
|
|
{
|
|
|
|
if (!mIsLocked) {
|
|
|
|
NS_WARNING("UnlockSurface called, surface not locked!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-06-12 21:40:40 -07:00
|
|
|
mIsLocked = false;
|
2012-06-12 21:20:27 -07:00
|
|
|
|
|
|
|
#ifdef MOZ_WIDGET_GONK
|
|
|
|
if (mGraphicBuffer != nsnull) {
|
|
|
|
mGraphicBuffer->unlock();
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
sEGLLibrary.fUnlockSurface(EGL_DISPLAY(), mSurface);
|
2010-11-26 13:41:53 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual already_AddRefed<gfxASurface> GetBackingSurface()
|
|
|
|
{
|
2011-09-16 13:22:44 -07:00
|
|
|
nsRefPtr<gfxASurface> copy = mBackingSurface;
|
|
|
|
return copy.forget();
|
2010-11-26 13:41:53 -08:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool CreateEGLSurface(gfxASurface* aSurface)
|
2010-11-26 13:41:53 -08:00
|
|
|
{
|
2011-01-13 05:20:50 -08:00
|
|
|
#ifdef MOZ_X11
|
2010-11-26 13:41:53 -08:00
|
|
|
if (!aSurface) {
|
|
|
|
NS_WARNING("no surface");
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-11-26 13:41:53 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (aSurface->GetType() != gfxASurface::SurfaceTypeXlib) {
|
|
|
|
NS_WARNING("wrong surface type, must be xlib");
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-11-26 13:41:53 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (mSurface) {
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-11-26 13:41:53 -08:00
|
|
|
}
|
|
|
|
|
2011-01-13 05:20:50 -08:00
|
|
|
EGLSurface surface = CreateEGLSurfaceForXSurface(aSurface, &mConfig);
|
2010-11-26 13:41:53 -08:00
|
|
|
|
|
|
|
if (!surface) {
|
|
|
|
NS_WARNING("couldn't find X config for surface");
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-11-26 13:41:53 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
mSurface = surface;
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-11-26 13:41:53 -08:00
|
|
|
#else
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-11-26 13:41:53 -08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void DestroyEGLSurface(void)
|
|
|
|
{
|
2012-06-12 21:20:27 -07:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
|
|
|
mGraphicBuffer.clear();
|
|
|
|
|
|
|
|
if (mEGLImage) {
|
|
|
|
sEGLLibrary.fDestroyImage(EGL_DISPLAY(), mEGLImage);
|
2012-06-14 11:57:26 -07:00
|
|
|
mEGLImage = nsnull;
|
2012-06-12 21:20:27 -07:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-11-26 13:41:53 -08:00
|
|
|
if (!mSurface)
|
|
|
|
return;
|
|
|
|
|
|
|
|
sEGLLibrary.fDestroySurface(EGL_DISPLAY(), mSurface);
|
|
|
|
mSurface = nsnull;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool CreateBackingSurface(const gfxIntSize& aSize)
|
2010-11-26 13:41:53 -08:00
|
|
|
{
|
|
|
|
ReleaseTexImage();
|
|
|
|
DestroyEGLSurface();
|
|
|
|
mBackingSurface = nsnull;
|
|
|
|
|
2012-02-18 11:21:48 -08:00
|
|
|
#ifdef MOZ_X11
|
2010-11-26 13:41:53 -08:00
|
|
|
Display* dpy = DefaultXDisplay();
|
|
|
|
XRenderPictFormat* renderFMT =
|
|
|
|
gfxXlibSurface::FindRenderFormat(dpy, mUpdateFormat);
|
|
|
|
|
|
|
|
nsRefPtr<gfxXlibSurface> xsurface =
|
|
|
|
gfxXlibSurface::Create(DefaultScreenOfDisplay(dpy),
|
|
|
|
renderFMT,
|
|
|
|
gfxIntSize(aSize.width, aSize.height));
|
|
|
|
|
|
|
|
XSync(dpy, False);
|
|
|
|
mConfig = nsnull;
|
|
|
|
|
|
|
|
if (sEGLLibrary.HasKHRImagePixmap() && sEGLLibrary.HasKHRImageTexture2D()) {
|
2012-06-12 14:36:10 -07:00
|
|
|
mEGLImage =
|
|
|
|
sEGLLibrary.fCreateImage(EGL_DISPLAY(),
|
|
|
|
EGL_NO_CONTEXT,
|
|
|
|
LOCAL_EGL_NATIVE_PIXMAP_KHR,
|
|
|
|
(EGLClientBuffer)xsurface->XDrawable(),
|
|
|
|
nsnull);
|
|
|
|
|
|
|
|
if (!mEGLImage) {
|
2010-11-26 13:41:53 -08:00
|
|
|
printf_stderr("couldn't create EGL image: ERROR (0x%04x)\n", sEGLLibrary.fGetError());
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-11-26 13:41:53 -08:00
|
|
|
}
|
|
|
|
mGLContext->fBindTexture(LOCAL_GL_TEXTURE_2D, mTexture);
|
2012-06-12 14:36:10 -07:00
|
|
|
mGLContext->fImageTargetTexture2D(LOCAL_GL_TEXTURE_2D, mEGLImage);
|
|
|
|
sEGLLibrary.fDestroyImage(EGL_DISPLAY(), mEGLImage);
|
|
|
|
mEGLImage = nsnull;
|
2010-11-26 13:41:53 -08:00
|
|
|
} else {
|
|
|
|
if (!CreateEGLSurface(xsurface)) {
|
|
|
|
printf_stderr("ProviderEGL Failed create EGL surface: ERROR (0x%04x)\n", sEGLLibrary.fGetError());
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-11-26 13:41:53 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!BindTexImage()) {
|
|
|
|
printf_stderr("ProviderEGL Failed to bind teximage: ERROR (0x%04x)\n", sEGLLibrary.fGetError());
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-11-26 13:41:53 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mBackingSurface = xsurface;
|
2012-06-12 21:20:27 -07:00
|
|
|
|
|
|
|
return mBackingSurface != nsnull;
|
2010-11-26 13:41:53 -08:00
|
|
|
#endif
|
|
|
|
|
2012-06-12 21:20:27 -07:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
|
|
|
if (gUseBackingSurface) {
|
|
|
|
mGLContext->MakeCurrent(true);
|
|
|
|
PixelFormat format = PixelFormatForImage(mUpdateFormat);
|
|
|
|
uint32_t usage = GraphicBuffer::USAGE_HW_TEXTURE |
|
|
|
|
GraphicBuffer::USAGE_SW_READ_OFTEN |
|
|
|
|
GraphicBuffer::USAGE_SW_WRITE_OFTEN;
|
|
|
|
mGraphicBuffer = new GraphicBuffer(aSize.width, aSize.height, format, usage);
|
2012-06-14 11:57:26 -07:00
|
|
|
if (mGraphicBuffer->initCheck() == OK) {
|
2012-06-12 21:20:27 -07:00
|
|
|
const int eglImageAttributes[] = { EGL_IMAGE_PRESERVED_KHR, LOCAL_EGL_TRUE,
|
|
|
|
LOCAL_EGL_NONE, LOCAL_EGL_NONE };
|
|
|
|
mEGLImage = sEGLLibrary.fCreateImage(EGL_DISPLAY(),
|
|
|
|
EGL_NO_CONTEXT,
|
|
|
|
EGL_NATIVE_BUFFER_ANDROID,
|
|
|
|
(EGLClientBuffer) mGraphicBuffer->getNativeBuffer(),
|
|
|
|
eglImageAttributes);
|
2012-06-14 11:57:26 -07:00
|
|
|
if (!mEGLImage) {
|
2012-06-12 21:20:27 -07:00
|
|
|
LOG("Could not create EGL images: ERROR (0x%04x)", sEGLLibrary.fGetError());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG("GraphicBufferAllocator::alloc failed");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
2010-11-26 13:41:53 -08:00
|
|
|
return mBackingSurface != nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
typedef gfxASurface::gfxImageFormat ImageFormat;
|
2010-07-22 13:29:37 -07:00
|
|
|
|
2010-07-01 09:30:38 -07:00
|
|
|
GLContext* mGLContext;
|
2010-09-09 13:40:11 -07:00
|
|
|
|
|
|
|
nsIntRect mUpdateRect;
|
2010-11-26 13:41:53 -08:00
|
|
|
ImageFormat mUpdateFormat;
|
2012-06-12 21:20:27 -07:00
|
|
|
bool mUsingDirectTexture;
|
2010-11-26 13:41:53 -08:00
|
|
|
nsRefPtr<gfxASurface> mBackingSurface;
|
2011-01-17 23:21:12 -08:00
|
|
|
nsRefPtr<gfxASurface> mUpdateSurface;
|
2012-06-12 21:20:27 -07:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
2012-06-14 11:57:26 -07:00
|
|
|
sp<GraphicBuffer> mGraphicBuffer;
|
|
|
|
#endif
|
2012-06-12 21:20:27 -07:00
|
|
|
EGLImage mEGLImage;
|
|
|
|
GLuint mTexture;
|
2010-11-26 13:41:53 -08:00
|
|
|
EGLSurface mSurface;
|
|
|
|
EGLConfig mConfig;
|
2011-07-26 13:52:03 -07:00
|
|
|
TextureState mTextureState;
|
2010-11-26 13:41:53 -08:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mBound;
|
|
|
|
bool mIsLocked;
|
2011-10-05 11:20:33 -07:00
|
|
|
|
|
|
|
virtual void ApplyFilter()
|
|
|
|
{
|
|
|
|
mGLContext->ApplyFilterToBoundTexture(mFilter);
|
|
|
|
}
|
2010-07-01 09:30:38 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
already_AddRefed<TextureImage>
|
|
|
|
GLContextEGL::CreateTextureImage(const nsIntSize& aSize,
|
|
|
|
TextureImage::ContentType aContentType,
|
2010-11-12 12:02:20 -08:00
|
|
|
GLenum aWrapMode,
|
2012-05-09 13:55:31 -07:00
|
|
|
TextureImage::Flags aFlags)
|
2011-07-06 11:00:47 -07:00
|
|
|
{
|
2012-05-09 13:55:31 -07:00
|
|
|
nsRefPtr<TextureImage> t = new gl::TiledTextureImage(this, aSize, aContentType, aFlags);
|
2011-07-06 11:00:47 -07:00
|
|
|
return t.forget();
|
2012-03-11 14:41:03 -07:00
|
|
|
}
|
2011-07-06 11:00:47 -07:00
|
|
|
|
|
|
|
already_AddRefed<TextureImage>
|
|
|
|
GLContextEGL::TileGenFunc(const nsIntSize& aSize,
|
|
|
|
TextureImage::ContentType aContentType,
|
2012-05-09 13:55:31 -07:00
|
|
|
TextureImage::Flags aFlags)
|
2010-07-01 09:30:38 -07:00
|
|
|
{
|
|
|
|
MakeCurrent();
|
|
|
|
|
|
|
|
GLuint texture;
|
|
|
|
fGenTextures(1, &texture);
|
|
|
|
|
2010-11-26 13:41:53 -08:00
|
|
|
nsRefPtr<TextureImageEGL> teximage =
|
2012-05-09 13:55:31 -07:00
|
|
|
new TextureImageEGL(texture, aSize, LOCAL_GL_CLAMP_TO_EDGE, aContentType, this, aFlags);
|
2012-06-14 11:57:26 -07:00
|
|
|
|
|
|
|
teximage->BindTexture(LOCAL_GL_TEXTURE0);
|
2010-11-26 13:41:53 -08:00
|
|
|
|
2012-05-09 13:55:31 -07:00
|
|
|
GLint texfilter = aFlags & TextureImage::UseNearestFilter ? LOCAL_GL_NEAREST : LOCAL_GL_LINEAR;
|
2010-07-01 09:30:38 -07:00
|
|
|
fTexParameteri(LOCAL_GL_TEXTURE_2D, LOCAL_GL_TEXTURE_MIN_FILTER, texfilter);
|
|
|
|
fTexParameteri(LOCAL_GL_TEXTURE_2D, LOCAL_GL_TEXTURE_MAG_FILTER, texfilter);
|
2011-07-06 11:00:47 -07:00
|
|
|
fTexParameteri(LOCAL_GL_TEXTURE_2D, LOCAL_GL_TEXTURE_WRAP_S, LOCAL_GL_CLAMP_TO_EDGE);
|
|
|
|
fTexParameteri(LOCAL_GL_TEXTURE_2D, LOCAL_GL_TEXTURE_WRAP_T, LOCAL_GL_CLAMP_TO_EDGE);
|
2010-07-01 09:30:38 -07:00
|
|
|
|
|
|
|
return teximage.forget();
|
|
|
|
}
|
|
|
|
|
2011-09-22 22:58:15 -07:00
|
|
|
inline static ContextFormat
|
2010-10-04 04:21:32 -07:00
|
|
|
DepthToGLFormat(int aDepth)
|
|
|
|
{
|
|
|
|
switch (aDepth) {
|
|
|
|
case 32:
|
|
|
|
return ContextFormat::BasicRGBA32;
|
|
|
|
case 24:
|
|
|
|
return ContextFormat::BasicRGB24;
|
|
|
|
case 16:
|
|
|
|
return ContextFormat::BasicRGB16_565;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return ContextFormat::BasicRGBA32;
|
|
|
|
}
|
|
|
|
|
2012-03-21 17:16:31 -07:00
|
|
|
static nsRefPtr<GLContext> gGlobalContext;
|
2010-10-04 04:21:32 -07:00
|
|
|
|
2011-09-22 22:58:15 -07:00
|
|
|
static const EGLint kEGLConfigAttribsRGB16[] = {
|
|
|
|
LOCAL_EGL_SURFACE_TYPE, LOCAL_EGL_WINDOW_BIT,
|
|
|
|
LOCAL_EGL_RENDERABLE_TYPE, LOCAL_EGL_OPENGL_ES2_BIT,
|
|
|
|
LOCAL_EGL_RED_SIZE, 5,
|
|
|
|
LOCAL_EGL_GREEN_SIZE, 6,
|
|
|
|
LOCAL_EGL_BLUE_SIZE, 5,
|
|
|
|
LOCAL_EGL_ALPHA_SIZE, 0,
|
|
|
|
LOCAL_EGL_NONE
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static const EGLint kEGLConfigAttribsRGBA32[] = {
|
|
|
|
LOCAL_EGL_SURFACE_TYPE, LOCAL_EGL_WINDOW_BIT,
|
|
|
|
LOCAL_EGL_RENDERABLE_TYPE, LOCAL_EGL_OPENGL_ES2_BIT,
|
|
|
|
LOCAL_EGL_RED_SIZE, 8,
|
|
|
|
LOCAL_EGL_GREEN_SIZE, 8,
|
|
|
|
LOCAL_EGL_BLUE_SIZE, 8,
|
|
|
|
LOCAL_EGL_ALPHA_SIZE, 8,
|
|
|
|
LOCAL_EGL_NONE
|
|
|
|
};
|
2010-06-25 17:52:37 -07:00
|
|
|
|
2011-09-22 22:58:15 -07:00
|
|
|
static bool
|
2012-03-29 19:47:22 -07:00
|
|
|
CreateConfig(EGLConfig* aConfig, PRInt32 depth)
|
2011-09-22 22:58:15 -07:00
|
|
|
{
|
2010-07-18 22:01:14 -07:00
|
|
|
EGLConfig configs[64];
|
2012-03-08 16:01:12 -08:00
|
|
|
const EGLint* attribs = depth == 16 ? kEGLConfigAttribsRGB16 :
|
|
|
|
kEGLConfigAttribsRGBA32;
|
|
|
|
EGLint ncfg = ArrayLength(configs);
|
|
|
|
|
|
|
|
if (!sEGLLibrary.fChooseConfig(EGL_DISPLAY(), attribs,
|
|
|
|
configs, ncfg, &ncfg) ||
|
|
|
|
ncfg < 1) {
|
|
|
|
return false;
|
|
|
|
}
|
2010-06-09 15:27:29 -07:00
|
|
|
|
2012-03-08 16:01:12 -08:00
|
|
|
for (int j = 0; j < ncfg; ++j) {
|
|
|
|
EGLConfig config = configs[j];
|
|
|
|
EGLint r, g, b, a;
|
|
|
|
|
|
|
|
if (sEGLLibrary.fGetConfigAttrib(EGL_DISPLAY(), config,
|
|
|
|
LOCAL_EGL_RED_SIZE, &r) &&
|
|
|
|
sEGLLibrary.fGetConfigAttrib(EGL_DISPLAY(), config,
|
|
|
|
LOCAL_EGL_GREEN_SIZE, &g) &&
|
|
|
|
sEGLLibrary.fGetConfigAttrib(EGL_DISPLAY(), config,
|
|
|
|
LOCAL_EGL_BLUE_SIZE, &b) &&
|
|
|
|
sEGLLibrary.fGetConfigAttrib(EGL_DISPLAY(), config,
|
|
|
|
LOCAL_EGL_ALPHA_SIZE, &a) &&
|
|
|
|
((depth == 16 && r == 5 && g == 6 && b == 5) ||
|
|
|
|
(depth == 24 && r == 8 && g == 8 && b == 8 && a == 8)))
|
2011-09-22 22:58:15 -07:00
|
|
|
{
|
2012-03-08 16:01:12 -08:00
|
|
|
*aConfig = config;
|
|
|
|
return true;
|
2010-09-09 13:40:11 -07:00
|
|
|
}
|
2010-07-18 22:01:14 -07:00
|
|
|
}
|
2011-09-22 22:58:15 -07:00
|
|
|
return false;
|
2010-12-13 14:36:35 -08:00
|
|
|
}
|
|
|
|
|
2012-03-29 19:47:22 -07:00
|
|
|
// Return true if a suitable EGLConfig was found and pass it out
|
|
|
|
// through aConfig. Return false otherwise.
|
|
|
|
//
|
|
|
|
// NB: It's entirely legal for the returned EGLConfig to be valid yet
|
|
|
|
// have the value null.
|
|
|
|
static bool
|
|
|
|
CreateConfig(EGLConfig* aConfig)
|
|
|
|
{
|
2012-05-15 12:41:20 -07:00
|
|
|
PRInt32 depth = gfxPlatform::GetPlatform()->GetScreenDepth();
|
2012-03-29 19:47:22 -07:00
|
|
|
if (!CreateConfig(aConfig, depth)) {
|
|
|
|
#ifdef MOZ_WIDGET_ANDROID
|
|
|
|
// Bug 736005
|
|
|
|
// Android doesn't always support 16 bit so also try 24 bit
|
|
|
|
if (depth == 16) {
|
|
|
|
return CreateConfig(aConfig, 24);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-19 21:12:30 -07:00
|
|
|
// When MOZ_JAVA_COMPOSITOR is defined,
|
|
|
|
// use mozilla::AndroidBridge::Bridge()->ProvideEGLSurface() instead.
|
|
|
|
#ifndef MOZ_JAVA_COMPOSITOR
|
2011-09-22 22:58:15 -07:00
|
|
|
static EGLSurface
|
2010-12-13 14:36:35 -08:00
|
|
|
CreateSurfaceForWindow(nsIWidget *aWidget, EGLConfig config)
|
|
|
|
{
|
|
|
|
EGLSurface surface;
|
|
|
|
|
2012-02-21 13:15:39 -08:00
|
|
|
#ifdef DEBUG
|
2010-09-09 13:40:11 -07:00
|
|
|
sEGLLibrary.DumpEGLConfig(config);
|
|
|
|
#endif
|
|
|
|
|
2012-05-29 10:46:37 -07:00
|
|
|
#if defined(MOZ_WIDGET_ANDROID)
|
2012-01-26 11:23:13 -08:00
|
|
|
|
2010-06-25 17:52:37 -07:00
|
|
|
// On Android, we have to ask Java to make the eglCreateWindowSurface
|
|
|
|
// call for us. See GLHelpers.java for a description of why.
|
|
|
|
//
|
|
|
|
// We also only have one true "window", so we just use it directly and ignore
|
|
|
|
// what was passed in.
|
2012-01-26 11:23:13 -08:00
|
|
|
AndroidGeckoSurfaceView& sview = mozilla::AndroidBridge::Bridge()->SurfaceView();
|
|
|
|
if (sview.isNull()) {
|
|
|
|
printf_stderr("got null surface\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-06-25 17:52:37 -07:00
|
|
|
surface = mozilla::AndroidBridge::Bridge()->
|
2012-01-26 11:23:13 -08:00
|
|
|
CallEglCreateWindowSurface(EGL_DISPLAY(), config, sview);
|
2010-06-25 17:52:37 -07:00
|
|
|
#else
|
2010-09-08 15:19:11 -07:00
|
|
|
surface = sEGLLibrary.fCreateWindowSurface(EGL_DISPLAY(), config, GET_NATIVE_WINDOW(aWidget), 0);
|
2010-06-25 17:52:37 -07:00
|
|
|
#endif
|
|
|
|
|
2011-11-10 16:17:46 -08:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
|
|
|
gScreenBounds.x = 0;
|
|
|
|
gScreenBounds.y = 0;
|
|
|
|
sEGLLibrary.fQuerySurface(EGL_DISPLAY(), surface, LOCAL_EGL_WIDTH, &gScreenBounds.width);
|
|
|
|
sEGLLibrary.fQuerySurface(EGL_DISPLAY(), surface, LOCAL_EGL_HEIGHT, &gScreenBounds.height);
|
|
|
|
#endif
|
|
|
|
|
2010-12-13 14:36:35 -08:00
|
|
|
return surface;
|
|
|
|
}
|
2012-06-19 21:12:30 -07:00
|
|
|
#endif
|
2010-12-13 14:36:35 -08:00
|
|
|
|
|
|
|
already_AddRefed<GLContext>
|
|
|
|
GLContextProviderEGL::CreateForWindow(nsIWidget *aWidget)
|
|
|
|
{
|
|
|
|
EGLConfig config;
|
|
|
|
|
|
|
|
if (!sEGLLibrary.EnsureInitialized()) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2012-04-11 21:18:35 -07:00
|
|
|
#if defined(XP_WIN) || defined(ANDROID) || defined(MOZ_PLATFORM_MAEMO)
|
|
|
|
bool doubleBuffered = true;
|
|
|
|
#else
|
|
|
|
bool doubleBuffered = false;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void* currentContext = sEGLLibrary.fGetCurrentContext();
|
|
|
|
if (aWidget->HasGLContext() && currentContext) {
|
2012-05-15 12:41:20 -07:00
|
|
|
PRInt32 depth = gfxPlatform::GetPlatform()->GetScreenDepth();
|
2012-04-11 21:18:35 -07:00
|
|
|
void* platformContext = currentContext;
|
|
|
|
#ifdef MOZ_WIDGET_QT
|
|
|
|
QGLContext* context = const_cast<QGLContext*>(QGLContext::currentContext());
|
|
|
|
if (context && context->device()) {
|
|
|
|
depth = context->device()->depth();
|
|
|
|
}
|
|
|
|
doubleBuffered = context->format().doubleBuffer();
|
|
|
|
platformContext = context;
|
|
|
|
#endif
|
|
|
|
nsRefPtr<GLContextEGL> glContext =
|
|
|
|
new GLContextEGL(ContextFormat(DepthToGLFormat(depth)),
|
|
|
|
gGlobalContext,
|
|
|
|
NULL,
|
|
|
|
sEGLLibrary.fGetCurrentSurface(LOCAL_EGL_DRAW), // just use same surface for read and draw
|
|
|
|
currentContext,
|
|
|
|
false);
|
|
|
|
|
|
|
|
if (!glContext->Init())
|
|
|
|
return nsnull;
|
|
|
|
|
2012-06-12 21:20:27 -07:00
|
|
|
glContext->MakeCurrent();
|
|
|
|
sEGLLibrary.LoadConfigSensitiveSymbols();
|
|
|
|
|
2012-04-11 21:18:35 -07:00
|
|
|
glContext->SetIsDoubleBuffered(doubleBuffered);
|
|
|
|
|
|
|
|
glContext->SetPlatformContext(platformContext);
|
|
|
|
if (!gGlobalContext) {
|
|
|
|
gGlobalContext = glContext;
|
|
|
|
}
|
|
|
|
|
|
|
|
return glContext.forget();
|
|
|
|
}
|
|
|
|
|
2011-09-22 22:58:15 -07:00
|
|
|
if (!CreateConfig(&config)) {
|
2010-12-13 14:36:35 -08:00
|
|
|
printf_stderr("Failed to create EGL config!\n");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2012-02-09 14:39:04 -08:00
|
|
|
#ifdef MOZ_JAVA_COMPOSITOR
|
2012-02-06 13:53:09 -08:00
|
|
|
mozilla::AndroidBridge::Bridge()->RegisterCompositor();
|
2012-05-29 10:46:37 -07:00
|
|
|
EGLSurface surface = mozilla::AndroidBridge::Bridge()->ProvideEGLSurface();
|
|
|
|
#else
|
|
|
|
EGLSurface surface = CreateSurfaceForWindow(aWidget, config);
|
2012-02-06 13:53:09 -08:00
|
|
|
#endif
|
|
|
|
|
2010-06-09 15:27:29 -07:00
|
|
|
if (!surface) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2010-06-25 17:52:37 -07:00
|
|
|
if (!sEGLLibrary.fBindAPI(LOCAL_EGL_OPENGL_ES_API)) {
|
2010-09-08 15:19:11 -07:00
|
|
|
sEGLLibrary.fDestroySurface(EGL_DISPLAY(), surface);
|
2010-06-25 17:52:37 -07:00
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
GLContextEGL *shareContext = GetGlobalContextEGL();
|
|
|
|
|
2011-06-09 18:18:43 -07:00
|
|
|
nsRefPtr<GLContextEGL> glContext =
|
|
|
|
GLContextEGL::CreateGLContext(ContextFormat(ContextFormat::BasicRGB24),
|
|
|
|
surface,
|
|
|
|
config,
|
|
|
|
shareContext,
|
2011-10-17 07:59:28 -07:00
|
|
|
false);
|
2010-07-18 22:01:14 -07:00
|
|
|
|
2011-06-09 18:18:43 -07:00
|
|
|
if (!glContext) {
|
2010-06-09 15:27:29 -07:00
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2012-06-12 21:20:27 -07:00
|
|
|
glContext->MakeCurrent();
|
|
|
|
sEGLLibrary.LoadConfigSensitiveSymbols();
|
2012-04-11 21:18:35 -07:00
|
|
|
glContext->SetIsDoubleBuffered(doubleBuffered);
|
2010-09-09 13:40:11 -07:00
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
return glContext.forget();
|
2010-06-09 15:27:29 -07:00
|
|
|
}
|
|
|
|
|
2012-04-24 16:49:59 -07:00
|
|
|
static void
|
|
|
|
FillPBufferAttribs_Minimal(nsTArray<EGLint>& aAttrs)
|
|
|
|
{
|
|
|
|
aAttrs.Clear();
|
|
|
|
|
|
|
|
#define A1(_x) do { aAttrs.AppendElement(_x); } while (0)
|
|
|
|
#define A2(_x,_y) do { A1(_x); A1(_y); } while (0)
|
|
|
|
|
|
|
|
A2(LOCAL_EGL_RENDERABLE_TYPE, LOCAL_EGL_OPENGL_ES2_BIT);
|
|
|
|
|
|
|
|
A2(LOCAL_EGL_SURFACE_TYPE, LOCAL_EGL_PBUFFER_BIT);
|
|
|
|
|
|
|
|
A1(LOCAL_EGL_NONE);
|
|
|
|
#undef A1
|
|
|
|
#undef A2
|
|
|
|
}
|
|
|
|
|
2011-01-31 13:10:57 -08:00
|
|
|
static void
|
|
|
|
FillPBufferAttribs(nsTArray<EGLint>& aAttrs,
|
|
|
|
const ContextFormat& aFormat,
|
|
|
|
bool aCanBindToTexture,
|
|
|
|
int aColorBitsOverride,
|
|
|
|
int aDepthBitsOverride)
|
|
|
|
{
|
|
|
|
aAttrs.Clear();
|
|
|
|
|
|
|
|
#define A1(_x) do { aAttrs.AppendElement(_x); } while (0)
|
|
|
|
#define A2(_x,_y) do { A1(_x); A1(_y); } while (0)
|
|
|
|
|
|
|
|
A2(LOCAL_EGL_RENDERABLE_TYPE, LOCAL_EGL_OPENGL_ES2_BIT);
|
|
|
|
|
2012-04-24 16:49:59 -07:00
|
|
|
A2(LOCAL_EGL_SURFACE_TYPE, LOCAL_EGL_PBUFFER_BIT);
|
|
|
|
|
2011-01-31 13:10:57 -08:00
|
|
|
if (aColorBitsOverride == -1) {
|
|
|
|
A2(LOCAL_EGL_RED_SIZE, aFormat.red);
|
|
|
|
A2(LOCAL_EGL_GREEN_SIZE, aFormat.green);
|
|
|
|
A2(LOCAL_EGL_BLUE_SIZE, aFormat.blue);
|
|
|
|
} else {
|
|
|
|
A2(LOCAL_EGL_RED_SIZE, aColorBitsOverride);
|
|
|
|
A2(LOCAL_EGL_GREEN_SIZE, aColorBitsOverride);
|
|
|
|
A2(LOCAL_EGL_BLUE_SIZE, aColorBitsOverride);
|
|
|
|
}
|
|
|
|
|
|
|
|
A2(LOCAL_EGL_ALPHA_SIZE, aFormat.alpha);
|
|
|
|
|
|
|
|
if (aDepthBitsOverride == -1) {
|
|
|
|
A2(LOCAL_EGL_DEPTH_SIZE, aFormat.minDepth);
|
|
|
|
} else {
|
|
|
|
A2(LOCAL_EGL_DEPTH_SIZE, aDepthBitsOverride);
|
|
|
|
}
|
|
|
|
|
|
|
|
A2(LOCAL_EGL_STENCIL_SIZE, aFormat.minStencil);
|
|
|
|
|
|
|
|
if (aCanBindToTexture) {
|
|
|
|
A2(aFormat.minAlpha ? LOCAL_EGL_BIND_TO_TEXTURE_RGBA : LOCAL_EGL_BIND_TO_TEXTURE_RGB,
|
|
|
|
LOCAL_EGL_TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
A1(LOCAL_EGL_NONE);
|
|
|
|
#undef A1
|
|
|
|
#undef A2
|
|
|
|
}
|
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
already_AddRefed<GLContextEGL>
|
|
|
|
GLContextEGL::CreateEGLPBufferOffscreenContext(const gfxIntSize& aSize,
|
2012-02-06 19:00:21 -08:00
|
|
|
const ContextFormat& aFormat,
|
|
|
|
bool bufferUnused)
|
2010-06-09 15:27:29 -07:00
|
|
|
{
|
|
|
|
EGLConfig config;
|
|
|
|
EGLSurface surface;
|
|
|
|
EGLContext context;
|
|
|
|
|
2011-01-31 13:10:54 -08:00
|
|
|
bool configCanBindToTexture = true;
|
|
|
|
|
|
|
|
EGLConfig configs[64];
|
|
|
|
int numConfigs = sizeof(configs)/sizeof(EGLConfig);
|
|
|
|
int foundConfigs = 0;
|
|
|
|
|
|
|
|
// if we're running under ANGLE, we can't set BIND_TO_TEXTURE --
|
|
|
|
// it's not supported, and we have dx interop pbuffers anyway
|
2012-03-12 15:10:38 -07:00
|
|
|
if (sEGLLibrary.IsANGLE() || bufferUnused)
|
2011-01-31 13:10:54 -08:00
|
|
|
configCanBindToTexture = false;
|
|
|
|
|
2011-01-31 13:10:57 -08:00
|
|
|
nsTArray<EGLint> attribs(32);
|
|
|
|
int attribAttempt = 0;
|
2011-01-06 14:07:12 -08:00
|
|
|
|
2011-10-19 12:09:57 -07:00
|
|
|
int tryDepthSize = (aFormat.depth > 0) ? 24 : 0;
|
|
|
|
|
2011-01-31 13:10:57 -08:00
|
|
|
TRY_ATTRIBS_AGAIN:
|
2012-04-24 16:49:59 -07:00
|
|
|
if (bufferUnused) {
|
|
|
|
FillPBufferAttribs_Minimal(attribs);
|
|
|
|
} else {
|
|
|
|
switch (attribAttempt) {
|
|
|
|
case 0:
|
|
|
|
FillPBufferAttribs(attribs, aFormat, configCanBindToTexture, 8, tryDepthSize);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
FillPBufferAttribs(attribs, aFormat, configCanBindToTexture, -1, tryDepthSize);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
FillPBufferAttribs(attribs, aFormat, configCanBindToTexture, -1, -1);
|
|
|
|
break;
|
|
|
|
}
|
2011-01-31 13:10:54 -08:00
|
|
|
}
|
2010-07-18 22:01:14 -07:00
|
|
|
|
|
|
|
if (!sEGLLibrary.fChooseConfig(EGL_DISPLAY(),
|
2011-01-31 13:10:57 -08:00
|
|
|
&attribs[0],
|
2010-07-18 22:01:14 -07:00
|
|
|
configs, numConfigs,
|
2011-01-31 13:10:54 -08:00
|
|
|
&foundConfigs)
|
|
|
|
|| foundConfigs == 0)
|
2010-07-18 22:01:14 -07:00
|
|
|
{
|
2012-04-24 16:49:59 -07:00
|
|
|
if (bufferUnused) {
|
|
|
|
NS_WARNING("No EGL Config for minimal PBuffer!");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2011-01-31 13:10:57 -08:00
|
|
|
if (attribAttempt < 3) {
|
|
|
|
attribAttempt++;
|
|
|
|
goto TRY_ATTRIBS_AGAIN;
|
|
|
|
}
|
|
|
|
|
2011-01-31 13:10:54 -08:00
|
|
|
if (configCanBindToTexture) {
|
|
|
|
NS_WARNING("No pbuffer EGL configs that can bind to texture, trying without");
|
|
|
|
configCanBindToTexture = false;
|
2011-01-31 13:10:57 -08:00
|
|
|
attribAttempt = 0;
|
|
|
|
goto TRY_ATTRIBS_AGAIN;
|
2011-01-31 13:10:54 -08:00
|
|
|
}
|
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
// no configs? no pbuffers!
|
2012-03-12 15:10:38 -07:00
|
|
|
NS_WARNING("Failed to select acceptable config for PBuffer creation!");
|
2010-06-23 01:02:12 -07:00
|
|
|
return nsnull;
|
2010-07-18 22:01:14 -07:00
|
|
|
}
|
2010-06-09 15:27:29 -07:00
|
|
|
|
2011-01-31 13:10:57 -08:00
|
|
|
// XXX do some smarter matching here, perhaps instead of the more complex
|
|
|
|
// minimum overrides above
|
2010-06-09 15:27:29 -07:00
|
|
|
config = configs[0];
|
2012-02-21 13:15:39 -08:00
|
|
|
#ifdef DEBUG
|
2010-07-18 22:01:14 -07:00
|
|
|
sEGLLibrary.DumpEGLConfig(config);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
gfxIntSize pbsize(aSize);
|
2011-01-31 13:10:57 -08:00
|
|
|
surface = GLContextEGL::CreatePBufferSurfaceTryingPowerOfTwo(config,
|
|
|
|
configCanBindToTexture
|
|
|
|
? (aFormat.minAlpha
|
|
|
|
? LOCAL_EGL_TEXTURE_RGBA
|
|
|
|
: LOCAL_EGL_TEXTURE_RGB)
|
|
|
|
: LOCAL_EGL_NONE,
|
|
|
|
pbsize);
|
2012-03-12 15:10:38 -07:00
|
|
|
if (!surface) {
|
|
|
|
NS_WARNING("Failed to create PBuffer for context!");
|
2010-06-23 01:02:12 -07:00
|
|
|
return nsnull;
|
2012-03-12 15:10:38 -07:00
|
|
|
}
|
2010-06-09 15:27:29 -07:00
|
|
|
|
|
|
|
sEGLLibrary.fBindAPI(LOCAL_EGL_OPENGL_ES_API);
|
|
|
|
|
2012-02-06 19:00:21 -08:00
|
|
|
GLContextEGL* shareContext = GetGlobalContextEGL();
|
2010-07-18 22:01:14 -07:00
|
|
|
context = sEGLLibrary.fCreateContext(EGL_DISPLAY(),
|
|
|
|
config,
|
2012-02-06 19:00:21 -08:00
|
|
|
shareContext ? shareContext->mContext
|
|
|
|
: EGL_NO_CONTEXT,
|
2011-12-14 16:57:09 -08:00
|
|
|
sEGLLibrary.HasRobustness() ? gContextAttribsRobustness
|
|
|
|
: gContextAttribs);
|
|
|
|
if (!context) {
|
2012-03-12 15:10:38 -07:00
|
|
|
NS_WARNING("Failed to create GLContext from PBuffer");
|
2010-07-18 22:01:14 -07:00
|
|
|
sEGLLibrary.fDestroySurface(EGL_DISPLAY(), surface);
|
2010-06-23 01:02:12 -07:00
|
|
|
return nsnull;
|
2010-06-09 15:27:29 -07:00
|
|
|
}
|
|
|
|
|
2012-02-06 19:00:21 -08:00
|
|
|
nsRefPtr<GLContextEGL> glContext = new GLContextEGL(aFormat, shareContext,
|
2010-07-18 22:01:14 -07:00
|
|
|
config, surface, context,
|
2011-10-17 07:59:28 -07:00
|
|
|
true);
|
2010-06-09 15:27:29 -07:00
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
if (!glContext->Init()) {
|
2012-03-12 15:10:38 -07:00
|
|
|
NS_WARNING("Failed to initialize GLContext!");
|
2010-06-23 01:02:12 -07:00
|
|
|
return nsnull;
|
2010-07-18 22:01:14 -07:00
|
|
|
}
|
2010-06-09 15:27:29 -07:00
|
|
|
|
2012-03-21 17:16:31 -07:00
|
|
|
glContext->mCanBindToTexture = configCanBindToTexture;
|
2012-03-12 15:10:38 -07:00
|
|
|
|
|
|
|
if (!bufferUnused) { // We *are* using the buffer
|
2012-02-06 19:00:21 -08:00
|
|
|
glContext->SetOffscreenSize(aSize, pbsize);
|
|
|
|
glContext->mIsPBuffer = true;
|
|
|
|
}
|
2010-07-18 22:01:14 -07:00
|
|
|
|
|
|
|
return glContext.forget();
|
|
|
|
}
|
|
|
|
|
2010-10-04 04:21:32 -07:00
|
|
|
#ifdef MOZ_X11
|
2011-01-13 05:20:50 -08:00
|
|
|
EGLSurface
|
2012-04-30 17:03:08 -07:00
|
|
|
CreateEGLSurfaceForXSurface(gfxASurface* aSurface, EGLConfig* aConfig)
|
2010-10-04 04:21:32 -07:00
|
|
|
{
|
2011-01-13 05:20:50 -08:00
|
|
|
gfxXlibSurface* xsurface = static_cast<gfxXlibSurface*>(aSurface);
|
2011-09-28 23:19:26 -07:00
|
|
|
bool opaque =
|
2011-01-13 05:20:50 -08:00
|
|
|
aSurface->GetContentType() == gfxASurface::CONTENT_COLOR;
|
|
|
|
|
|
|
|
static EGLint pixmap_config_rgb[] = {
|
|
|
|
LOCAL_EGL_TEXTURE_TARGET, LOCAL_EGL_TEXTURE_2D,
|
|
|
|
LOCAL_EGL_TEXTURE_FORMAT, LOCAL_EGL_TEXTURE_RGB,
|
|
|
|
LOCAL_EGL_NONE
|
|
|
|
};
|
|
|
|
|
|
|
|
static EGLint pixmap_config_rgba[] = {
|
|
|
|
LOCAL_EGL_TEXTURE_TARGET, LOCAL_EGL_TEXTURE_2D,
|
|
|
|
LOCAL_EGL_TEXTURE_FORMAT, LOCAL_EGL_TEXTURE_RGBA,
|
|
|
|
LOCAL_EGL_NONE
|
|
|
|
};
|
|
|
|
|
|
|
|
EGLSurface surface = nsnull;
|
|
|
|
if (aConfig && *aConfig) {
|
|
|
|
if (opaque)
|
|
|
|
surface = sEGLLibrary.fCreatePixmapSurface(EGL_DISPLAY(), *aConfig,
|
2011-08-24 09:15:58 -07:00
|
|
|
(EGLNativePixmapType)xsurface->XDrawable(),
|
2011-01-13 05:20:50 -08:00
|
|
|
pixmap_config_rgb);
|
|
|
|
else
|
|
|
|
surface = sEGLLibrary.fCreatePixmapSurface(EGL_DISPLAY(), *aConfig,
|
2011-08-24 09:15:58 -07:00
|
|
|
(EGLNativePixmapType)xsurface->XDrawable(),
|
2011-01-13 05:20:50 -08:00
|
|
|
pixmap_config_rgba);
|
|
|
|
|
|
|
|
if (surface != EGL_NO_SURFACE)
|
|
|
|
return surface;
|
|
|
|
}
|
2010-10-04 04:21:32 -07:00
|
|
|
|
|
|
|
EGLConfig configs[32];
|
|
|
|
int numConfigs = 32;
|
|
|
|
|
2011-01-13 05:20:50 -08:00
|
|
|
static EGLint pixmap_config[] = {
|
2010-10-04 04:21:32 -07:00
|
|
|
LOCAL_EGL_SURFACE_TYPE, LOCAL_EGL_PIXMAP_BIT,
|
|
|
|
LOCAL_EGL_RENDERABLE_TYPE, LOCAL_EGL_OPENGL_ES2_BIT,
|
2012-04-30 17:03:08 -07:00
|
|
|
LOCAL_EGL_DEPTH_SIZE, 0,
|
2010-10-04 04:21:32 -07:00
|
|
|
LOCAL_EGL_BIND_TO_TEXTURE_RGB, LOCAL_EGL_TRUE,
|
|
|
|
LOCAL_EGL_NONE
|
|
|
|
};
|
|
|
|
|
2011-01-13 05:20:50 -08:00
|
|
|
static EGLint pixmap_lock_config[] = {
|
|
|
|
LOCAL_EGL_SURFACE_TYPE, LOCAL_EGL_PIXMAP_BIT | LOCAL_EGL_LOCK_SURFACE_BIT_KHR,
|
|
|
|
LOCAL_EGL_RENDERABLE_TYPE, LOCAL_EGL_OPENGL_ES2_BIT,
|
2012-04-30 17:03:08 -07:00
|
|
|
LOCAL_EGL_DEPTH_SIZE, 0,
|
2011-01-13 05:20:50 -08:00
|
|
|
LOCAL_EGL_BIND_TO_TEXTURE_RGB, LOCAL_EGL_TRUE,
|
2010-10-04 04:21:32 -07:00
|
|
|
LOCAL_EGL_NONE
|
|
|
|
};
|
|
|
|
|
2011-01-13 05:20:50 -08:00
|
|
|
if (!sEGLLibrary.fChooseConfig(EGL_DISPLAY(),
|
|
|
|
sEGLLibrary.HasKHRLockSurface() ?
|
|
|
|
pixmap_lock_config : pixmap_config,
|
2010-10-04 04:21:32 -07:00
|
|
|
configs, numConfigs, &numConfigs))
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
if (numConfigs == 0)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
for (i = 0; i < numConfigs; ++i) {
|
|
|
|
if (opaque)
|
|
|
|
surface = sEGLLibrary.fCreatePixmapSurface(EGL_DISPLAY(), configs[i],
|
2011-08-24 09:15:58 -07:00
|
|
|
(EGLNativePixmapType)xsurface->XDrawable(),
|
2010-10-04 04:21:32 -07:00
|
|
|
pixmap_config_rgb);
|
|
|
|
else
|
|
|
|
surface = sEGLLibrary.fCreatePixmapSurface(EGL_DISPLAY(), configs[i],
|
2011-08-24 09:15:58 -07:00
|
|
|
(EGLNativePixmapType)xsurface->XDrawable(),
|
2010-10-04 04:21:32 -07:00
|
|
|
pixmap_config_rgba);
|
|
|
|
|
|
|
|
if (surface != EGL_NO_SURFACE)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!surface) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2011-01-13 05:20:50 -08:00
|
|
|
if (aConfig)
|
|
|
|
*aConfig = configs[i];
|
2010-10-04 04:21:32 -07:00
|
|
|
|
2011-01-13 05:20:50 -08:00
|
|
|
return surface;
|
2010-10-04 04:21:32 -07:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
already_AddRefed<GLContextEGL>
|
|
|
|
GLContextEGL::CreateEGLPixmapOffscreenContext(const gfxIntSize& aSize,
|
2011-06-09 18:18:43 -07:00
|
|
|
const ContextFormat& aFormat,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aShare)
|
2010-07-18 22:01:14 -07:00
|
|
|
{
|
|
|
|
gfxASurface *thebesSurface = nsnull;
|
|
|
|
EGLNativePixmapType pixmap = 0;
|
|
|
|
|
|
|
|
#ifdef MOZ_X11
|
|
|
|
nsRefPtr<gfxXlibSurface> xsurface =
|
|
|
|
gfxXlibSurface::Create(DefaultScreenOfDisplay(DefaultXDisplay()),
|
|
|
|
gfxXlibSurface::FindRenderFormat(DefaultXDisplay(),
|
|
|
|
gfxASurface::ImageFormatRGB24),
|
2012-04-30 17:03:08 -07:00
|
|
|
aSize);
|
2011-01-13 05:20:50 -08:00
|
|
|
|
|
|
|
// XSync required after gfxXlibSurface::Create, otherwise EGL will fail with BadDrawable error
|
|
|
|
XSync(DefaultXDisplay(), False);
|
2010-07-18 22:01:14 -07:00
|
|
|
if (xsurface->CairoStatus() != 0)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
thebesSurface = xsurface;
|
2011-08-24 09:15:58 -07:00
|
|
|
pixmap = (EGLNativePixmapType)xsurface->XDrawable();
|
2010-07-18 22:01:14 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!pixmap) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2011-01-06 14:07:12 -08:00
|
|
|
EGLSurface surface = 0;
|
2010-07-18 22:01:14 -07:00
|
|
|
EGLConfig config = 0;
|
|
|
|
|
2010-10-04 04:21:32 -07:00
|
|
|
#ifdef MOZ_X11
|
2012-04-30 17:03:08 -07:00
|
|
|
surface = CreateEGLSurfaceForXSurface(thebesSurface, &config);
|
2010-10-04 04:21:32 -07:00
|
|
|
#endif
|
|
|
|
if (!config) {
|
2010-07-18 22:01:14 -07:00
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2011-06-09 18:18:43 -07:00
|
|
|
GLContextEGL *shareContext = aShare ? GetGlobalContextEGL() : nsnull;
|
2010-07-18 22:01:14 -07:00
|
|
|
|
2011-06-09 18:18:43 -07:00
|
|
|
nsRefPtr<GLContextEGL> glContext =
|
|
|
|
GLContextEGL::CreateGLContext(aFormat,
|
|
|
|
surface,
|
|
|
|
config,
|
|
|
|
shareContext,
|
2011-10-17 07:59:28 -07:00
|
|
|
true);
|
2010-07-18 22:01:14 -07:00
|
|
|
|
|
|
|
glContext->HoldSurface(thebesSurface);
|
|
|
|
|
|
|
|
return glContext.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Under EGL, if we're under X11, then we have to create a Pixmap
|
|
|
|
// because Maemo's EGL implementation doesn't support pbuffers at all
|
|
|
|
// for some reason. On Android, pbuffers are supported fine, though
|
|
|
|
// often without the ability to texture from them directly.
|
|
|
|
already_AddRefed<GLContext>
|
|
|
|
GLContextProviderEGL::CreateOffscreen(const gfxIntSize& aSize,
|
2012-03-21 16:13:59 -07:00
|
|
|
const ContextFormat& aFormat,
|
|
|
|
const ContextFlags aFlags)
|
2010-07-18 22:01:14 -07:00
|
|
|
{
|
|
|
|
if (!sEGLLibrary.EnsureInitialized()) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2012-03-22 13:25:03 -07:00
|
|
|
#if !defined(MOZ_X11)
|
2012-03-12 15:10:38 -07:00
|
|
|
bool usePBuffers = false; // Generally, prefer FBOs to PBuffers
|
|
|
|
|
|
|
|
if (sEGLLibrary.IsANGLE())
|
|
|
|
usePBuffers = true; // For d3d share handle, we need an EGL surface
|
|
|
|
|
|
|
|
gfxIntSize pbufferSize = usePBuffers ? aSize : gfxIntSize(16, 16);
|
2011-10-19 12:09:57 -07:00
|
|
|
nsRefPtr<GLContextEGL> glContext =
|
2012-03-12 15:10:38 -07:00
|
|
|
GLContextEGL::CreateEGLPBufferOffscreenContext(pbufferSize, aFormat, !usePBuffers);
|
2011-10-19 12:09:57 -07:00
|
|
|
|
|
|
|
if (!glContext)
|
|
|
|
return nsnull;
|
|
|
|
|
2012-03-12 15:10:38 -07:00
|
|
|
gfxIntSize fboSize = usePBuffers ? glContext->OffscreenActualSize() : aSize;
|
2012-04-25 07:10:43 -07:00
|
|
|
if (!(aFlags & GLContext::ContextFlagsGlobal) && !glContext->ResizeOffscreenFBOs(fboSize, !usePBuffers))
|
2011-10-19 12:09:57 -07:00
|
|
|
return nsnull;
|
|
|
|
|
2011-10-26 13:00:44 -07:00
|
|
|
return glContext.forget();
|
2011-07-27 04:00:17 -07:00
|
|
|
#elif defined(MOZ_X11) && defined(MOZ_EGL_XRENDER_COMPOSITE)
|
2011-10-19 12:09:57 -07:00
|
|
|
nsRefPtr<GLContextEGL> glContext =
|
2011-10-26 13:00:44 -07:00
|
|
|
GLContextEGL::CreateBasicEGLPixmapOffscreenContext(aSize, aFormat);
|
2011-10-19 12:09:57 -07:00
|
|
|
|
|
|
|
if (!glContext)
|
|
|
|
return nsnull;
|
|
|
|
|
2012-04-25 07:10:43 -07:00
|
|
|
if (!(aFlags & GLContext::ContextFlagsGlobal) && !glContext->ResizeOffscreenFBOs(glContext->OffscreenActualSize(), true))
|
2011-10-19 12:09:57 -07:00
|
|
|
return nsnull;
|
2011-10-26 13:00:44 -07:00
|
|
|
|
2011-10-19 12:09:57 -07:00
|
|
|
return glContext.forget();
|
2010-07-18 22:01:14 -07:00
|
|
|
#elif defined(MOZ_X11)
|
2011-06-09 18:18:43 -07:00
|
|
|
nsRefPtr<GLContextEGL> glContext =
|
2012-04-30 17:03:08 -07:00
|
|
|
GLContextEGL::CreateEGLPixmapOffscreenContext(gfxIntSize(16, 16), aFormat, true);
|
2011-06-09 18:18:43 -07:00
|
|
|
|
|
|
|
if (!glContext) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
2012-03-02 09:28:06 -08:00
|
|
|
|
2012-05-03 15:33:51 -07:00
|
|
|
if (!(aFlags & GLContext::ContextFlagsGlobal) && !glContext->ResizeOffscreenFBOs(aSize, true)) {
|
2011-06-09 18:18:43 -07:00
|
|
|
// we weren't able to create the initial
|
|
|
|
// offscreen FBO, so this is dead
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
return glContext.forget();
|
2010-07-18 22:01:14 -07:00
|
|
|
#else
|
|
|
|
return nsnull;
|
|
|
|
#endif
|
2010-06-09 15:27:29 -07:00
|
|
|
}
|
|
|
|
|
2010-06-23 02:24:31 -07:00
|
|
|
already_AddRefed<GLContext>
|
2010-10-04 04:21:32 -07:00
|
|
|
GLContextProviderEGL::CreateForNativePixmapSurface(gfxASurface* aSurface)
|
2010-06-23 02:24:31 -07:00
|
|
|
{
|
|
|
|
if (!sEGLLibrary.EnsureInitialized())
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
#ifdef MOZ_X11
|
2011-06-23 19:01:17 -07:00
|
|
|
EGLSurface surface = nsnull;
|
|
|
|
EGLConfig config = nsnull;
|
|
|
|
|
2010-06-23 02:24:31 -07:00
|
|
|
if (aSurface->GetType() != gfxASurface::SurfaceTypeXlib) {
|
|
|
|
// Not implemented
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2011-01-13 05:20:50 -08:00
|
|
|
surface = CreateEGLSurfaceForXSurface(aSurface, &config);
|
2010-10-04 04:21:32 -07:00
|
|
|
if (!config) {
|
2010-06-23 02:24:31 -07:00
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2011-06-09 18:18:43 -07:00
|
|
|
GLContextEGL *shareContext = GetGlobalContextEGL();
|
|
|
|
gfxXlibSurface* xsurface = static_cast<gfxXlibSurface*>(aSurface);
|
2010-06-23 02:24:31 -07:00
|
|
|
|
|
|
|
nsRefPtr<GLContextEGL> glContext =
|
2011-06-09 18:18:43 -07:00
|
|
|
GLContextEGL::CreateGLContext(DepthToGLFormat(xsurface->XRenderFormat()->depth),
|
2011-10-17 07:59:28 -07:00
|
|
|
surface, config, shareContext, false);
|
2011-06-09 18:18:43 -07:00
|
|
|
|
2010-10-04 04:21:32 -07:00
|
|
|
glContext->HoldSurface(aSurface);
|
2010-06-23 02:24:31 -07:00
|
|
|
|
|
|
|
return glContext.forget().get();
|
|
|
|
#else
|
|
|
|
// Not implemented
|
|
|
|
return nsnull;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
GLContext *
|
2012-06-02 09:05:45 -07:00
|
|
|
GLContextProviderEGL::GetGlobalContext(const ContextFlags)
|
2010-07-18 22:01:14 -07:00
|
|
|
{
|
2012-06-14 08:59:40 -07:00
|
|
|
// Don't want a global context on Android as 1) share groups across 2 threads fail on many Tegra drivers (bug 759225)
|
|
|
|
// and 2) some mobile devices have a very strict limit on global number of GL contexts (bug 754257)
|
2012-06-05 20:33:59 -07:00
|
|
|
#ifdef MOZ_JAVA_COMPOSITOR
|
2012-06-02 13:28:16 -07:00
|
|
|
return nsnull;
|
|
|
|
#endif
|
|
|
|
|
2012-06-14 08:59:40 -07:00
|
|
|
// Don't want a global context on Windows as we don't use it for WebGL surface sharing and it makes
|
|
|
|
// context creation fail after a context loss (bug 764578)
|
|
|
|
#ifdef XP_WIN
|
|
|
|
return nsnull;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
static bool triedToCreateContext = false;
|
|
|
|
if (!triedToCreateContext && !gGlobalContext) {
|
|
|
|
triedToCreateContext = true;
|
2012-02-06 19:00:21 -08:00
|
|
|
// Don't assign directly to gGlobalContext here, because
|
|
|
|
// CreateOffscreen can call us re-entrantly.
|
|
|
|
nsRefPtr<GLContext> ctx =
|
|
|
|
GLContextProviderEGL::CreateOffscreen(gfxIntSize(16, 16),
|
2012-03-21 16:13:59 -07:00
|
|
|
ContextFormat(ContextFormat::BasicRGB24),
|
|
|
|
GLContext::ContextFlagsGlobal);
|
2012-02-06 19:00:21 -08:00
|
|
|
gGlobalContext = ctx;
|
2010-08-06 22:09:18 -07:00
|
|
|
if (gGlobalContext)
|
2011-10-17 07:59:28 -07:00
|
|
|
gGlobalContext->SetIsGlobalSharedContext(true);
|
2010-07-18 22:01:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return gGlobalContext;
|
|
|
|
}
|
|
|
|
|
2010-07-19 21:05:42 -07:00
|
|
|
void
|
|
|
|
GLContextProviderEGL::Shutdown()
|
|
|
|
{
|
2010-09-27 13:20:11 -07:00
|
|
|
gGlobalContext = nsnull;
|
2010-07-19 21:05:42 -07:00
|
|
|
}
|
|
|
|
|
2011-07-27 04:00:17 -07:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// The following methods exist to support an accelerated WebGL XRender composite
|
|
|
|
// path for BasicLayers. This is a potentially temporary change that can be
|
|
|
|
// removed when performance of GL layers is superior on mobile linux platforms.
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
#if defined(MOZ_X11) && defined(MOZ_EGL_XRENDER_COMPOSITE)
|
|
|
|
|
|
|
|
EGLSurface
|
|
|
|
CreateBasicEGLSurfaceForXSurface(gfxASurface* aSurface, EGLConfig* aConfig)
|
|
|
|
{
|
|
|
|
gfxXlibSurface* xsurface = static_cast<gfxXlibSurface*>(aSurface);
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool opaque =
|
2011-07-27 04:00:17 -07:00
|
|
|
aSurface->GetContentType() == gfxASurface::CONTENT_COLOR;
|
|
|
|
|
|
|
|
EGLSurface surface = nsnull;
|
|
|
|
if (aConfig && *aConfig) {
|
|
|
|
surface = sEGLLibrary.fCreatePixmapSurface(EGL_DISPLAY(), *aConfig,
|
|
|
|
xsurface->XDrawable(),
|
|
|
|
0);
|
|
|
|
|
|
|
|
if (surface != EGL_NO_SURFACE)
|
|
|
|
return surface;
|
|
|
|
}
|
|
|
|
|
|
|
|
EGLConfig configs[32];
|
|
|
|
int numConfigs = 32;
|
|
|
|
|
|
|
|
static EGLint pixmap_config[] = {
|
|
|
|
LOCAL_EGL_SURFACE_TYPE, LOCAL_EGL_PIXMAP_BIT,
|
|
|
|
LOCAL_EGL_RENDERABLE_TYPE, LOCAL_EGL_OPENGL_ES2_BIT,
|
|
|
|
0x30E2, 0x30E3,
|
|
|
|
LOCAL_EGL_DEPTH_SIZE, 16,
|
|
|
|
LOCAL_EGL_NONE
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!sEGLLibrary.fChooseConfig(EGL_DISPLAY(),
|
|
|
|
pixmap_config,
|
|
|
|
configs, numConfigs, &numConfigs))
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
if (numConfigs == 0)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
for (i = 0; i < numConfigs; ++i) {
|
|
|
|
surface = sEGLLibrary.fCreatePixmapSurface(EGL_DISPLAY(), configs[i],
|
|
|
|
xsurface->XDrawable(),
|
|
|
|
0);
|
|
|
|
|
|
|
|
if (surface != EGL_NO_SURFACE)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!surface) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aConfig)
|
|
|
|
{
|
|
|
|
*aConfig = configs[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
return surface;
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<GLContextEGL>
|
|
|
|
GLContextEGL::CreateBasicEGLPixmapOffscreenContext(const gfxIntSize& aSize,
|
|
|
|
const ContextFormat& aFormat)
|
|
|
|
{
|
|
|
|
gfxASurface *thebesSurface = nsnull;
|
|
|
|
EGLNativePixmapType pixmap = 0;
|
|
|
|
|
|
|
|
XRenderPictFormat* format = gfxXlibSurface::FindRenderFormat(DefaultXDisplay(), gfxASurface::ImageFormatARGB32);
|
|
|
|
|
|
|
|
nsRefPtr<gfxXlibSurface> xsurface =
|
|
|
|
gfxXlibSurface::Create(DefaultScreenOfDisplay(DefaultXDisplay()), format, aSize);
|
|
|
|
|
|
|
|
// XSync required after gfxXlibSurface::Create, otherwise EGL will fail with BadDrawable error
|
|
|
|
XSync(DefaultXDisplay(), False);
|
|
|
|
if (xsurface->CairoStatus() != 0)
|
|
|
|
{
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
thebesSurface = xsurface;
|
|
|
|
|
|
|
|
pixmap = xsurface->XDrawable();
|
|
|
|
|
|
|
|
if (!pixmap) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
EGLSurface surface = 0;
|
|
|
|
EGLConfig config = 0;
|
|
|
|
|
|
|
|
surface = CreateBasicEGLSurfaceForXSurface(xsurface, &config);
|
|
|
|
|
|
|
|
if (!config) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
EGLContext context = sEGLLibrary.fCreateContext(EGL_DISPLAY(),
|
|
|
|
config,
|
|
|
|
EGL_NO_CONTEXT,
|
2011-12-14 16:57:09 -08:00
|
|
|
sEGLLibrary.HasRobustness() ? gContextAttribsRobustness
|
|
|
|
: gContextAttribs);
|
2011-07-27 04:00:17 -07:00
|
|
|
if (!context) {
|
|
|
|
sEGLLibrary.fDestroySurface(EGL_DISPLAY(), surface);
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<GLContextEGL> glContext = new GLContextEGL(aFormat, nsnull,
|
|
|
|
config, surface, context,
|
2011-10-17 07:59:28 -07:00
|
|
|
true);
|
2011-07-27 04:00:17 -07:00
|
|
|
|
|
|
|
if (!glContext->Init())
|
|
|
|
{
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
glContext->HoldSurface(thebesSurface);
|
|
|
|
|
|
|
|
return glContext.forget();
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool GLContextEGL::ResizeOffscreenPixmapSurface(const gfxIntSize& aNewSize)
|
2011-07-27 04:00:17 -07:00
|
|
|
{
|
|
|
|
gfxASurface *thebesSurface = nsnull;
|
|
|
|
EGLNativePixmapType pixmap = 0;
|
|
|
|
|
|
|
|
XRenderPictFormat* format = gfxXlibSurface::FindRenderFormat(DefaultXDisplay(), gfxASurface::ImageFormatARGB32);
|
|
|
|
|
|
|
|
nsRefPtr<gfxXlibSurface> xsurface =
|
|
|
|
gfxXlibSurface::Create(DefaultScreenOfDisplay(DefaultXDisplay()),
|
|
|
|
format,
|
|
|
|
aNewSize);
|
|
|
|
|
|
|
|
// XSync required after gfxXlibSurface::Create, otherwise EGL will fail with BadDrawable error
|
|
|
|
XSync(DefaultXDisplay(), False);
|
|
|
|
if (xsurface->CairoStatus() != 0)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
thebesSurface = xsurface;
|
|
|
|
|
|
|
|
pixmap = xsurface->XDrawable();
|
|
|
|
|
|
|
|
if (!pixmap) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
EGLSurface surface = 0;
|
|
|
|
EGLConfig config = 0;
|
|
|
|
surface = CreateBasicEGLSurfaceForXSurface(xsurface, &config);
|
|
|
|
if (!surface) {
|
|
|
|
NS_WARNING("Failed to resize pbuffer");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
sEGLLibrary.fDestroySurface(EGL_DISPLAY(), mSurface);
|
|
|
|
|
|
|
|
mSurface = surface;
|
|
|
|
HoldSurface(thebesSurface);
|
|
|
|
SetOffscreenSize(aNewSize, aNewSize);
|
2011-10-17 07:59:28 -07:00
|
|
|
MakeCurrent(true);
|
2011-07-27 04:00:17 -07:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2011-07-27 04:00:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-06-09 15:27:29 -07:00
|
|
|
} /* namespace gl */
|
|
|
|
} /* namespace mozilla */
|
|
|
|
|