eglfs refactor: Move egl initialization to the integration
Change-Id: If2c870538c742fd034fb9e5c115e4ac0bd8e2e03 Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
This commit is contained in:
parent
e1774d2029
commit
f35470a442
@ -66,7 +66,7 @@
|
|||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
|
|
||||||
QEglFSIntegration::QEglFSIntegration()
|
QEglFSIntegration::QEglFSIntegration()
|
||||||
: mEventDispatcher(createUnixEventDispatcher()), mFontDb(new QGenericUnixFontDatabase()), mScreen(new QEglFSScreen)
|
: mEventDispatcher(createUnixEventDispatcher()), mFontDb(new QGenericUnixFontDatabase())
|
||||||
{
|
{
|
||||||
QGuiApplicationPrivate::instance()->setEventDispatcher(mEventDispatcher);
|
QGuiApplicationPrivate::instance()->setEventDispatcher(mEventDispatcher);
|
||||||
|
|
||||||
@ -74,6 +74,40 @@ QEglFSIntegration::QEglFSIntegration()
|
|||||||
new QEvdevMouseManager(QLatin1String("EvdevMouse"), QString() /* spec */, this);
|
new QEvdevMouseManager(QLatin1String("EvdevMouse"), QString() /* spec */, this);
|
||||||
new QEvdevTouchScreenHandlerThread(QString() /* spec */, this);
|
new QEvdevTouchScreenHandlerThread(QString() /* spec */, this);
|
||||||
|
|
||||||
|
hooks->platformInit();
|
||||||
|
|
||||||
|
EGLint major, minor;
|
||||||
|
|
||||||
|
if (!eglBindAPI(EGL_OPENGL_ES_API)) {
|
||||||
|
qWarning("Could not bind GL_ES API\n");
|
||||||
|
qFatal("EGL error");
|
||||||
|
}
|
||||||
|
|
||||||
|
mDisplay = eglGetDisplay(hooks ? hooks->platformDisplay() : EGL_DEFAULT_DISPLAY);
|
||||||
|
if (mDisplay == EGL_NO_DISPLAY) {
|
||||||
|
qWarning("Could not open egl display\n");
|
||||||
|
qFatal("EGL error");
|
||||||
|
}
|
||||||
|
qWarning("Opened display %p\n", mDisplay);
|
||||||
|
|
||||||
|
if (!eglInitialize(mDisplay, &major, &minor)) {
|
||||||
|
qWarning("Could not initialize egl display\n");
|
||||||
|
qFatal("EGL error");
|
||||||
|
}
|
||||||
|
|
||||||
|
qWarning("Initialized display %d %d\n", major, minor);
|
||||||
|
|
||||||
|
int swapInterval = 1;
|
||||||
|
QByteArray swapIntervalString = qgetenv("QT_QPA_EGLFS_SWAPINTERVAL");
|
||||||
|
if (!swapIntervalString.isEmpty()) {
|
||||||
|
bool ok;
|
||||||
|
swapInterval = swapIntervalString.toInt(&ok);
|
||||||
|
if (!ok)
|
||||||
|
swapInterval = 1;
|
||||||
|
}
|
||||||
|
eglSwapInterval(mDisplay, swapInterval);
|
||||||
|
|
||||||
|
mScreen = new QEglFSScreen(mDisplay);
|
||||||
screenAdded(mScreen);
|
screenAdded(mScreen);
|
||||||
|
|
||||||
#ifdef QEGL_EXTRA_DEBUG
|
#ifdef QEGL_EXTRA_DEBUG
|
||||||
@ -84,6 +118,9 @@ QEglFSIntegration::QEglFSIntegration()
|
|||||||
QEglFSIntegration::~QEglFSIntegration()
|
QEglFSIntegration::~QEglFSIntegration()
|
||||||
{
|
{
|
||||||
delete mScreen;
|
delete mScreen;
|
||||||
|
|
||||||
|
eglTerminate(mDisplay);
|
||||||
|
hooks->platformDestroy();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool QEglFSIntegration::hasCapability(QPlatformIntegration::Capability cap) const
|
bool QEglFSIntegration::hasCapability(QPlatformIntegration::Capability cap) const
|
||||||
|
@ -76,6 +76,7 @@ public:
|
|||||||
void *nativeResourceForContext(const QByteArray &resource, QOpenGLContext *context);
|
void *nativeResourceForContext(const QByteArray &resource, QOpenGLContext *context);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
EGLDisplay mDisplay;
|
||||||
QAbstractEventDispatcher *mEventDispatcher;
|
QAbstractEventDispatcher *mEventDispatcher;
|
||||||
QPlatformFontDatabase *mFontDb;
|
QPlatformFontDatabase *mFontDb;
|
||||||
QPlatformScreen *mScreen;
|
QPlatformScreen *mScreen;
|
||||||
|
@ -78,8 +78,9 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
QEglFSScreen::QEglFSScreen()
|
QEglFSScreen::QEglFSScreen(EGLDisplay dpy)
|
||||||
: m_depth(32)
|
: m_dpy(dpy)
|
||||||
|
, m_depth(32)
|
||||||
, m_format(QImage::Format_Invalid)
|
, m_format(QImage::Format_Invalid)
|
||||||
, m_platformContext(0)
|
, m_platformContext(0)
|
||||||
, m_surface(0)
|
, m_surface(0)
|
||||||
@ -90,39 +91,6 @@ QEglFSScreen::QEglFSScreen()
|
|||||||
qWarning("QEglScreen %p\n", this);
|
qWarning("QEglScreen %p\n", this);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
hooks->platformInit();
|
|
||||||
|
|
||||||
EGLint major, minor;
|
|
||||||
|
|
||||||
if (!eglBindAPI(EGL_OPENGL_ES_API)) {
|
|
||||||
qWarning("Could not bind GL_ES API\n");
|
|
||||||
qFatal("EGL error");
|
|
||||||
}
|
|
||||||
|
|
||||||
m_dpy = eglGetDisplay(hooks ? hooks->platformDisplay() : EGL_DEFAULT_DISPLAY);
|
|
||||||
if (m_dpy == EGL_NO_DISPLAY) {
|
|
||||||
qWarning("Could not open egl display\n");
|
|
||||||
qFatal("EGL error");
|
|
||||||
}
|
|
||||||
qWarning("Opened display %p\n", m_dpy);
|
|
||||||
|
|
||||||
if (!eglInitialize(m_dpy, &major, &minor)) {
|
|
||||||
qWarning("Could not initialize egl display\n");
|
|
||||||
qFatal("EGL error");
|
|
||||||
}
|
|
||||||
|
|
||||||
qWarning("Initialized display %d %d\n", major, minor);
|
|
||||||
|
|
||||||
int swapInterval = 1;
|
|
||||||
QByteArray swapIntervalString = qgetenv("QT_QPA_EGLFS_SWAPINTERVAL");
|
|
||||||
if (!swapIntervalString.isEmpty()) {
|
|
||||||
bool ok;
|
|
||||||
swapInterval = swapIntervalString.toInt(&ok);
|
|
||||||
if (!ok)
|
|
||||||
swapInterval = 1;
|
|
||||||
}
|
|
||||||
eglSwapInterval(m_dpy, swapInterval);
|
|
||||||
|
|
||||||
static int hideCursor = qgetenv("QT_QPA_EGLFS_HIDECURSOR").toInt();
|
static int hideCursor = qgetenv("QT_QPA_EGLFS_HIDECURSOR").toInt();
|
||||||
if (!hideCursor) {
|
if (!hideCursor) {
|
||||||
if (QEglFSCursor *customCursor = hooks->createCursor(this))
|
if (QEglFSCursor *customCursor = hooks->createCursor(this))
|
||||||
@ -140,10 +108,6 @@ QEglFSScreen::~QEglFSScreen()
|
|||||||
eglDestroySurface(m_dpy, m_surface);
|
eglDestroySurface(m_dpy, m_surface);
|
||||||
|
|
||||||
hooks->destroyNativeWindow(m_window);
|
hooks->destroyNativeWindow(m_window);
|
||||||
|
|
||||||
eglTerminate(m_dpy);
|
|
||||||
|
|
||||||
hooks->platformDestroy();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void QEglFSScreen::createAndSetPlatformContext() const {
|
void QEglFSScreen::createAndSetPlatformContext() const {
|
||||||
|
@ -56,7 +56,7 @@ class QEglFSCursor;
|
|||||||
class QEglFSScreen : public QPlatformScreen //huh: FullScreenScreen ;) just to follow namespace
|
class QEglFSScreen : public QPlatformScreen //huh: FullScreenScreen ;) just to follow namespace
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
QEglFSScreen();
|
QEglFSScreen(EGLDisplay display);
|
||||||
~QEglFSScreen();
|
~QEglFSScreen();
|
||||||
|
|
||||||
QRect geometry() const;
|
QRect geometry() const;
|
||||||
@ -74,11 +74,11 @@ private:
|
|||||||
void createAndSetPlatformContext() const;
|
void createAndSetPlatformContext() const;
|
||||||
void createAndSetPlatformContext();
|
void createAndSetPlatformContext();
|
||||||
|
|
||||||
|
EGLDisplay m_dpy;
|
||||||
QRect m_geometry;
|
QRect m_geometry;
|
||||||
int m_depth;
|
int m_depth;
|
||||||
QImage::Format m_format;
|
QImage::Format m_format;
|
||||||
QPlatformOpenGLContext *m_platformContext;
|
QPlatformOpenGLContext *m_platformContext;
|
||||||
EGLDisplay m_dpy;
|
|
||||||
EGLSurface m_surface;
|
EGLSurface m_surface;
|
||||||
EGLNativeWindowType m_window;
|
EGLNativeWindowType m_window;
|
||||||
QEglFSCursor *m_cursor;
|
QEglFSCursor *m_cursor;
|
||||||
|
Loading…
Reference in New Issue
Block a user