summaryrefslogtreecommitdiffstats
path: root/src/network/access/qnetworkreplyimpl_p.h
diff options
context:
space:
mode:
authorTom Cooksey <thomas.cooksey@nokia.com>2009-07-21 14:15:57 (GMT)
committerTom Cooksey <thomas.cooksey@nokia.com>2009-07-22 14:49:24 (GMT)
commit3597a5b82610752cf95372a5a5f7b33afc8d30b9 (patch)
tree4746be0f1b90894e72ab1e630268c5a048d0410c /src/network/access/qnetworkreplyimpl_p.h
parente2aa651aba89bcc409dd090466b04036277a9a7c (diff)
downloadQt-3597a5b82610752cf95372a5a5f7b33afc8d30b9.zip
Qt-3597a5b82610752cf95372a5a5f7b33afc8d30b9.tar.gz
Qt-3597a5b82610752cf95372a5a5f7b33afc8d30b9.tar.bz2
Use texture_from_pixmap on X11 & avoid copies
The patch tries to use texture_from_pixmap extentions on glX to properly bind an X Pixmap to a texture in QGLContextPrivate::bindTexture(QPixmap,). Because GL & X have different coordinate systems, the pixmap will be inverted about the y-axis. The extension does however allow a GLX_Y_INVERTED_EXT attribute to be set which will bind the pixmap the correct way up. If the underlying driver doesn't support this, texture_from_pixmap can't be used for QGLContext::bindTexture, because that function expects the resulting texture to be the right way up. However, it can still be used internally by the paint engine for drawPixmap operations. For these cases, if the pixmap is inverted, the paint engine can simply invert the texture coords to compensate. This is why this patch also moves QGLTexture into qgl_p.h. QGLContextPrivate::bindTexture(QPixmap,) now returns a QGLTexture which the paint engine can inspect to see if it needs to invert the texture coords. Finally, it seems on some (probably all) drivers, deleting an X pixmap which has been bound to a texture before calling glFinish/swapBuffers renders garbage. Presumably this is because X deletes the pixmap behind the driver's back before it's had a chance to use it. To fix this, we reference all QPixmaps which have been bound to stop them being deleted and only deref them after we swap the buffer, when they can be safely deleted. Reviewed-By: Kim
Diffstat (limited to 'src/network/access/qnetworkreplyimpl_p.h')
0 files changed, 0 insertions, 0 deletions