diff options
author | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-10-15 00:50:57 (GMT) |
---|---|---|
committer | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-10-15 00:50:57 (GMT) |
commit | 4f2fecbdb852028bd191fa63aa66527107672dc7 (patch) | |
tree | f708eff7418f8781fcc27a2fed3d827c207537b6 /src/plugins/gfxdrivers/powervr/pvreglscreen/pvreglwindowsurface.h | |
parent | 93eb7c1378d97978fbe415f532e341de0138f4fe (diff) | |
download | Qt-4f2fecbdb852028bd191fa63aa66527107672dc7.zip Qt-4f2fecbdb852028bd191fa63aa66527107672dc7.tar.gz Qt-4f2fecbdb852028bd191fa63aa66527107672dc7.tar.bz2 |
Remove the surface holder from the PowerVR screen driver
The PvrEglSurfaceHolder is a hold-over from Qtopia that isn't
needed any more and was never very stable anyway.
Reviewed-by: trustme
Back port of f613b0170d0fe806378779472315d0bbdc1aada9
Diffstat (limited to 'src/plugins/gfxdrivers/powervr/pvreglscreen/pvreglwindowsurface.h')
-rw-r--r-- | src/plugins/gfxdrivers/powervr/pvreglscreen/pvreglwindowsurface.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/plugins/gfxdrivers/powervr/pvreglscreen/pvreglwindowsurface.h b/src/plugins/gfxdrivers/powervr/pvreglscreen/pvreglwindowsurface.h index 0da3653..58a5fb2 100644 --- a/src/plugins/gfxdrivers/powervr/pvreglscreen/pvreglwindowsurface.h +++ b/src/plugins/gfxdrivers/powervr/pvreglscreen/pvreglwindowsurface.h @@ -46,13 +46,12 @@ #include "pvrqwsdrawable.h" class QScreen; -class PvrEglSurfaceHolder; class PvrEglWindowSurface : public QWSGLWindowSurface { public: PvrEglWindowSurface(QWidget *widget, QScreen *screen, int screenNum); - PvrEglWindowSurface(PvrEglSurfaceHolder *holder); + PvrEglWindowSurface(); ~PvrEglWindowSurface(); QString key() const { return QLatin1String("PvrEgl"); } @@ -78,7 +77,6 @@ private: QWidget *widget; PvrQwsDrawable *drawable; QScreen *screen; - PvrEglSurfaceHolder *holder; QPaintDevice *pdevice; }; |