iOS: Use default createPlatformPixmap implementation
No need to implement this one, the standard implementation creates a raster pixmap. Change-Id: I9bb25188bd95159d76e760b2be6870e0bede7b56 Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@digia.com>bb10
parent
e936561a16
commit
8d7238f57e
|
|
@ -53,7 +53,6 @@ public:
|
|||
QIOSIntegration();
|
||||
~QIOSIntegration();
|
||||
|
||||
QPlatformPixmap *createPlatformPixmap(QPlatformPixmap::PixelType type) const;
|
||||
QPlatformWindow *createPlatformWindow(QWindow *window) const;
|
||||
QPlatformBackingStore *createPlatformBackingStore(QWindow *window) const;
|
||||
|
||||
|
|
|
|||
|
|
@ -63,14 +63,6 @@ QIOSIntegration::~QIOSIntegration()
|
|||
{
|
||||
}
|
||||
|
||||
QPlatformPixmap *QIOSIntegration::createPlatformPixmap(QPlatformPixmap::PixelType type) const
|
||||
{
|
||||
Q_UNUSED(type);
|
||||
|
||||
qDebug() << __FUNCTION__ << "not yet implemented";
|
||||
return 0;
|
||||
}
|
||||
|
||||
QPlatformWindow *QIOSIntegration::createPlatformWindow(QWindow *window) const
|
||||
{
|
||||
qDebug() << __FUNCTION__ << "Creating platform window";
|
||||
|
|
|
|||
Loading…
Reference in New Issue