diff options
author | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-09-25 01:50:14 (GMT) |
---|---|---|
committer | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-09-25 01:50:14 (GMT) |
commit | fafec8f2363fd7ab3ce5b81a66cc82001a58c8ed (patch) | |
tree | 4dd0d27f1974eb2bcdd6ae4b11baa80dd9c90dd3 /src/opengl/qgl_wince.cpp | |
parent | 9f814e1efe11ced6d7b64d1fcc52382631f9cb52 (diff) | |
download | Qt-fafec8f2363fd7ab3ce5b81a66cc82001a58c8ed.zip Qt-fafec8f2363fd7ab3ce5b81a66cc82001a58c8ed.tar.gz Qt-fafec8f2363fd7ab3ce5b81a66cc82001a58c8ed.tar.bz2 |
Move common EGL functions to qgl_egl.cpp
There were several copies of the same stubbed functions in
qgl_wince.cpp, qgl_qws.cpp, and qgl_x11egl.cpp. Move them
all to a common location for easier maintainence.
Reviewed-by: Sarah Smith
Diffstat (limited to 'src/opengl/qgl_wince.cpp')
-rw-r--r-- | src/opengl/qgl_wince.cpp | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/opengl/qgl_wince.cpp b/src/opengl/qgl_wince.cpp index dbb5c98..53b9e27 100644 --- a/src/opengl/qgl_wince.cpp +++ b/src/opengl/qgl_wince.cpp @@ -112,11 +112,6 @@ void qt_egl_add_platform_config(QEglProperties& props, QPaintDevice *device) } -bool QGLFormat::hasOpenGL() -{ - return true; -} - static bool opengl32dll = false; bool QGLFormat::hasOpenGLOverlays() @@ -416,23 +411,6 @@ const QRgb* QGLCmap::colors() const } -QColor QGLContext::overlayTransparentColor() const -{ - return d_func()->transpColor; -} - - -void QGLContext::generateFontDisplayLists(const QFont & fnt, int listBase) -{ - Q_UNUSED(fnt); - Q_UNUSED(listBase); -} - -void *QGLContext::getProcAddress(const QString &proc) const -{ - return (void*)eglGetProcAddress(reinterpret_cast<const char *>(proc.toLatin1().data())); -} - /***************************************************************************** QGLWidget Win32/WGL-specific code *****************************************************************************/ @@ -511,12 +489,6 @@ bool QGLWidget::event(QEvent *e) } -void QGLWidget::setMouseTracking(bool enable) -{ - QWidget::setMouseTracking(enable); -} - - void QGLWidget::resizeEvent(QResizeEvent *) { Q_D(QGLWidget); @@ -616,11 +588,6 @@ void QGLWidget::setContext(QGLContext *context, } -bool QGLWidgetPrivate::renderCxPm(QPixmap*) -{ - return false; -} - void QGLWidgetPrivate::cleanupColormaps() { Q_Q(QGLWidget); |