summaryrefslogtreecommitdiff
path: root/src/plugins/platforms/openkode
diff options
context:
space:
mode:
authorJørgen Lind <jorgen.lind@nokia.com>2010-07-08 11:08:49 +0200
committerJørgen Lind <jorgen.lind@nokia.com>2010-07-08 11:08:49 +0200
commitc7590d9f255e1efd3dc528e1052f997f4f477009 (patch)
treedc1e191f4c3fc750774ce10017dee30194daae36 /src/plugins/platforms/openkode
parent13e75dd03d2fb8a1f01406c30520cef80cb2800a (diff)
downloadqt4-tools-c7590d9f255e1efd3dc528e1052f997f4f477009.tar.gz
cleaning up QOpenKODEWindow
Diffstat (limited to 'src/plugins/platforms/openkode')
-rw-r--r--src/plugins/platforms/openkode/qopenkodewindow.cpp35
-rw-r--r--src/plugins/platforms/openkode/qopenkodewindow.h2
2 files changed, 13 insertions, 24 deletions
diff --git a/src/plugins/platforms/openkode/qopenkodewindow.cpp b/src/plugins/platforms/openkode/qopenkodewindow.cpp
index e40783f47f..52117ad555 100644
--- a/src/plugins/platforms/openkode/qopenkodewindow.cpp
+++ b/src/plugins/platforms/openkode/qopenkodewindow.cpp
@@ -77,17 +77,17 @@ QOpenKODEWindow::QOpenKODEWindow(QWidget *tlw)
EGL_TRANSPARENT_TYPE, EGL_NONE,
EGL_NONE
};
- EGLint contextAttrs[] = {
- EGL_CONTEXT_CLIENT_VERSION, 2, // NOTE: not needed for VG
- EGL_NONE
- };
+
+ m_eglContextAttrs.append(EGL_CONTEXT_CLIENT_VERSION);
+ m_eglContextAttrs.append(2);
+ m_eglContextAttrs.append(EGL_NONE);
// m_eglWindowAttrs.append(EGL_RENDER_BUFFER);
// m_eglWindowAttrs.append(EGL_BACK_BUFFER);
m_eglWindowAttrs.append(EGL_NONE);
- EGLenum eglApi = EGL_OPENGL_ES_API;
- eglBindAPI(eglApi);
+ m_eglApi = EGL_OPENGL_ES_API;
+ eglBindAPI(m_eglApi);
QList<QPlatformScreen *> screens = QApplicationPrivate::platformIntegration()->screens();
//XXXX: jl figure out how to pick the correct screen.
@@ -162,7 +162,8 @@ QOpenKODEWindow::QOpenKODEWindow(QWidget *tlw)
EGLSurface surface = eglCreateWindowSurface(screen->eglDisplay(),m_eglConfig,m_eglWindow,m_eglWindowAttrs.constData());
- m_platformGlContext = new QEGLPlatformContext(screen->eglDisplay(),m_eglConfig,contextAttrs,surface,eglApi);
+ m_platformGlContext = new QEGLPlatformContext(screen->eglDisplay(), m_eglConfig,
+ m_eglContextAttrs.data(), surface, m_eglApi);
}
QOpenKODEWindow::~QOpenKODEWindow()
@@ -191,28 +192,14 @@ void QOpenKODEWindow::setGeometry(const QRect &rect)
}
}
+ //need to recreate context
delete m_platformGlContext;
- /********####neeeds cleaning up **********/
QList<QPlatformScreen *> screens = QApplicationPrivate::platformIntegration()->screens();
- //XXXX: jl figure out how to pick the correct screen.
-// Q_ASSERT(screens.size() > tlw->d_func()->screenNumber);
-// QOpenKODEScreen *screen = qobject_cast<QOpenKODEScreen *>(screens.at(tlw->d_func()->screenNumber));
QOpenKODEScreen *screen = qobject_cast<QOpenKODEScreen *>(screens.at(0));
-
- EGLint contextAttrs[] = {
- EGL_CONTEXT_CLIENT_VERSION, 2, // NOTE: not needed for VG
- EGL_NONE
- };
-
- EGLenum eglApi = EGL_OPENGL_ES_API;
-
EGLSurface surface = eglCreateWindowSurface(screen->eglDisplay(),m_eglConfig,m_eglWindow,m_eglWindowAttrs.constData());
-
- qDebug() << "surface id " << surface;
-
- m_platformGlContext = new QEGLPlatformContext(screen->eglDisplay(),m_eglConfig,contextAttrs,surface,eglApi);
- /*******************************************/
+ m_platformGlContext = new QEGLPlatformContext(screen->eglDisplay(),m_eglConfig,
+ m_eglContextAttrs.data(),surface,m_eglApi);
}
void QOpenKODEWindow::setVisible(bool visible)
diff --git a/src/plugins/platforms/openkode/qopenkodewindow.h b/src/plugins/platforms/openkode/qopenkodewindow.h
index 04fa70aefe..51252a909a 100644
--- a/src/plugins/platforms/openkode/qopenkodewindow.h
+++ b/src/plugins/platforms/openkode/qopenkodewindow.h
@@ -66,6 +66,8 @@ private:
EGLNativeWindowType m_eglWindow;
EGLConfig m_eglConfig;
QVector<EGLint> m_eglWindowAttrs;
+ QVector<EGLint> m_eglContextAttrs;
+ EGLenum m_eglApi;
QEGLPlatformContext *m_platformGlContext;
};