summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/cocoa/qcocoabackingstore.mm
diff options
context:
space:
mode:
authorRichard Moe Gustavsen <richard.gustavsen@digia.com>2012-11-21 13:57:00 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-23 17:04:00 +0100
commit4bddcf9c41f6954a66f07af12a824a2b8fb0d196 (patch)
tree0cb6e2021dfcd45df9899fc5e7eb67231e44d89e /src/plugins/platforms/cocoa/qcocoabackingstore.mm
parent1b8dcec81a0879843f5c3781c3b067ddb6542cbf (diff)
Cocoa: QGLWidget draws wrong within QMainWindow on Mac OS
The resons for this bug is that Qt can share the same backingstore between several windows (if they exist in the same hierarchy), but this was just not supported by the Cocoa plugin. This patch will make sure that we pay attention to which window the QCocoaBackingStore is told to flush, and forward this information to the QNSView that backs it up. Inside the views drawRect function we then take some extra steps to get the correct sub-part of the possibly shared backingstore image. This patch also does some effort to ensure that we recreate the backingstore image as little as possible, as we can often get several resizes to the backingstore before we actually draw anything. Moreover, by being a bit careful on how we tell UiKit to update the view upon a flush, we can minimize the number of drawRect calls (and then CGImageRef creations) we need to do. This patch actually ends up improving resize/repaint performance a lot as well. QT-BUG: 27390 Change-Id: I2c2a26b149fa855411b6bff8b9cc9a61694ae72f Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@digia.com>
Diffstat (limited to 'src/plugins/platforms/cocoa/qcocoabackingstore.mm')
-rw-r--r--src/plugins/platforms/cocoa/qcocoabackingstore.mm62
1 files changed, 35 insertions, 27 deletions
diff --git a/src/plugins/platforms/cocoa/qcocoabackingstore.mm b/src/plugins/platforms/cocoa/qcocoabackingstore.mm
index 8a20ed83f7..7bd7e4ce38 100644
--- a/src/plugins/platforms/cocoa/qcocoabackingstore.mm
+++ b/src/plugins/platforms/cocoa/qcocoabackingstore.mm
@@ -40,54 +40,51 @@
****************************************************************************/
#include "qcocoabackingstore.h"
-#include "qcocoaautoreleasepool.h"
-
-#include <QtCore/qdebug.h>
#include <QtGui/QPainter>
+#include "qcocoahelpers.h"
QT_BEGIN_NAMESPACE
QCocoaBackingStore::QCocoaBackingStore(QWindow *window)
: QPlatformBackingStore(window)
+ , m_cgImage(0)
{
- m_image = new QImage(window->geometry().size(),QImage::Format_ARGB32_Premultiplied);
}
QCocoaBackingStore::~QCocoaBackingStore()
{
- delete m_image;
+ CGImageRelease(m_cgImage);
+ m_cgImage = 0;
}
QPaintDevice *QCocoaBackingStore::paintDevice()
{
- return m_image;
+ if (m_qImage.size() != m_requestedSize) {
+ CGImageRelease(m_cgImage);
+ m_cgImage = 0;
+ m_qImage = QImage(m_requestedSize, QImage::Format_ARGB32_Premultiplied);
+ }
+ return &m_qImage;
}
-void QCocoaBackingStore::flush(QWindow *widget, const QRegion &region, const QPoint &offset)
+void QCocoaBackingStore::flush(QWindow *win, const QRegion &region, const QPoint &offset)
{
- Q_UNUSED(widget);
- Q_UNUSED(offset);
- QCocoaAutoReleasePool pool;
-
- QRect geo = region.boundingRect();
- NSRect rect = NSMakeRect(geo.x(), geo.y(), geo.width(), geo.height());
- QCocoaWindow *cocoaWindow = static_cast<QCocoaWindow *>(window()->handle());
- if (cocoaWindow) {
- // setImage call is needed here to make the displayRect call
- // have effect - even if the image has not changed.
- [cocoaWindow->m_contentView setImage:m_image];
- [cocoaWindow->m_contentView displayRect:rect];
- }
+ // A flush means that qImage has changed. Since CGImages are seen as
+ // immutable, CoreImage fails to pick up this change for m_cgImage
+ // (since it usually cached), so we must recreate it. We await doing this
+ // until one of the views needs it, since, together with calling
+ // "setNeedsDisplayInRect" instead of "displayRect" we will, in most
+ // cases, get away with doing this once for every repaint. Also note that
+ // m_cgImage is only a reference to the data inside m_qImage, it is not a copy.
+ CGImageRelease(m_cgImage);
+ m_cgImage = 0;
+ if (QCocoaWindow *cocoaWindow = static_cast<QCocoaWindow *>(win->handle()))
+ [cocoaWindow->m_contentView flushBackingStore:this region:region offset:offset];
}
void QCocoaBackingStore::resize(const QSize &size, const QRegion &)
{
- delete m_image;
- m_image = new QImage(size, QImage::Format_ARGB32_Premultiplied);
-
- QCocoaWindow *cocoaWindow = static_cast<QCocoaWindow *>(window()->handle());
- if (cocoaWindow)
- [static_cast<QNSView *>(cocoaWindow->m_contentView) setImage:m_image];
+ m_requestedSize = size;
}
bool QCocoaBackingStore::scroll(const QRegion &area, int dx, int dy)
@@ -97,9 +94,20 @@ bool QCocoaBackingStore::scroll(const QRegion &area, int dx, int dy)
const QVector<QRect> qrects = area.rects();
for (int i = 0; i < qrects.count(); ++i) {
const QRect &qrect = qrects.at(i);
- qt_scrollRectInImage(*m_image, qrect, qpoint);
+ qt_scrollRectInImage(m_qImage, qrect, qpoint);
}
return true;
}
+CGImageRef QCocoaBackingStore::getBackingStoreCGImage()
+{
+ if (!m_cgImage)
+ m_cgImage = qt_mac_toCGImage(m_qImage, false, 0);
+
+ // Warning: do not retain/release/cache the returned image from
+ // outside the backingstore since it shares data with a QImage and
+ // needs special memory considerations.
+ return m_cgImage;
+}
+
QT_END_NAMESPACE