diff options
author | Jason Barron <jbarron@trolltech.com> | 2009-09-23 06:31:23 (GMT) |
---|---|---|
committer | Jason Barron <jbarron@trolltech.com> | 2009-09-23 13:10:41 (GMT) |
commit | 7dcf984f85a3a75ce4c078cc931bd9d2304bc235 (patch) | |
tree | d18699427b8ffe5843e82c3057c70b9db53d136d /src/openvg/qpixmapdata_vg_p.h | |
parent | 48d0f84958fdc2dcffab75f33842a9dbc3d4d7b1 (diff) | |
download | Qt-7dcf984f85a3a75ce4c078cc931bd9d2304bc235.zip Qt-7dcf984f85a3a75ce4c078cc931bd9d2304bc235.tar.gz Qt-7dcf984f85a3a75ce4c078cc931bd9d2304bc235.tar.bz2 |
Modify functions for native pixmap data conversion on Symbian.
We need a way to support converion to and from multiple native pixmap
types from multiple pixmap backends. Instead of adding more virtual
functions to QPixmapData, make the existing one more generic but pass
an opaque pointer and a type and do some internal casting.
Currently this function is Symbian only, but could easily be extended
to work on other platforms.
Reviewed-by: Aleksandar Babic
Reviewed-by: Jani Hautakangas
Diffstat (limited to 'src/openvg/qpixmapdata_vg_p.h')
-rw-r--r-- | src/openvg/qpixmapdata_vg_p.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/openvg/qpixmapdata_vg_p.h b/src/openvg/qpixmapdata_vg_p.h index 122f596..99115df 100644 --- a/src/openvg/qpixmapdata_vg_p.h +++ b/src/openvg/qpixmapdata_vg_p.h @@ -95,8 +95,8 @@ public: QSize size() const { return QSize(w, h); } #if defined(Q_OS_SYMBIAN) - RSgImage* toRSgImage(); - void fromRSgImage(RSgImage* sgImage); + void* toNativeType(NativeType type); + void fromNativeType(void* pixmap, NativeType type); #endif protected: |