Home_greyMeeGo Community Open Build Service > Projects > Project:KDE:Mer_Extras > qt > Sources
Register | Login

Files could not be expanded: conflict in file qt.spec

Source Files (show merged sources derived from linked package)

Filename Size Changed Actions
Makefile 154 Bytes 10 months ago Download
_link 139 Bytes 6 months ago Download
assistant.desktop 3.3 KB 19 months ago Download
assistant.png 2 KB 19 months ago Download
designer.desktop 3.6 KB 19 months ago Download
designer.png 1.4 KB 19 months ago Download
linguist.desktop 3.2 KB 19 months ago Download
linguist.png 1.3 KB 19 months ago Download
macros.qmake 891 Bytes 19 months ago Download
qt-4.8.0-Adapted-XInput2.0-code-to-support-multiple-connected.patch 43.4 KB 6 months ago Download
qt-4.8.0-Avoid-symbol-stripping-by-default.patch 859 Bytes 6 months ago Download
qt-4.8.0-BMC-15323-add-support-for-QT_USE_DRAG_DISTANCE-envir.patch 1007 Bytes 6 months ago Download
qt-4.8.0-Description-Avoid-.pc-directories-created-by-quilt.-.patch 879 Bytes 6 months ago Download
qt-4.8.0-Description-Fix-sqlite-config.test.patch 674 Bytes 6 months ago Download
qt-4.8.0-Description-MISSING-BMC-3183-QTBUG-11158-QTBUG-11462.patch 897 Bytes 6 months ago Download
qt-4.8.0-Description-Make-it-so-that-the-QIcon-loader-honors-.patch 1.9 KB 6 months ago Download
qt-4.8.0-Description-rewrite-INV_PREMUL-to-fix-a-glass-jaw-on.patch 1.6 KB 6 months ago Download
qt-4.8.0-Description-send-Q_ASSERT-qDebug-qWarning-and-qFatal.patch 2.6 KB 6 months ago Download
qt-4.8.0-Description-translations-fails-to-build-under-autobu.patch 12.4 KB 6 months ago Download
qt-4.8.0-Hardcode-TMPDIR-to-var-tmp-BMC-13603.patch 1.2 KB 6 months ago Download
qt-4.8.0-add-bounds-checking-in-soft-scale.patch 985 Bytes 6 months ago Download
qt-4.8.0-add-scaling-based-on-screen-size.patch 2.1 KB 6 months ago Download
qt-4.8.0-disable-subpixel-support-to-force-alpha-only-texture.patch 1.8 KB 6 months ago Download
qt-4.8.0-modify-alpha-checking-for-GlSurfaceCreateWithAlpha.patch 2.4 KB 6 months ago Download
qt-4.8.0-set-alpha-flags-after-converto32-in-eglcreatesurface.patch 1.8 KB 6 months ago Download
qt-4.8.0-xinput2-support.patch 103.4 KB 6 months ago Download
qt-everywhere-opensource-src-4.8.0.tar.gz 227.5 MB 6 months ago
qt-rpmlintrc 197 Bytes 10 months ago Download
qt.changes 17 KB 6 months ago Download
qt.spec 62.3 KB 6 months ago Download
qt.yaml 66.6 KB 6 months ago Download
qtdemo.desktop 162 Bytes 19 months ago Download
qtdemo.png 1.4 KB 19 months ago Download

Latest Revision

Mdfe?size=20 mdfe (mdfe) committed 6 months ago (revision 11)
osc copypac from project:home:w00t:branches:Mer:fake:Core:i586 package:qt revision:11
Brick Show diff

From e0893c1eb7b1081f4a83fa097ca53dd3aebee502 Mon Sep 17 00:00:00 2001 From: Robin Burchell Date: Sun, 13 Nov 2011 12:50:43 +0100 Subject: [PATCH] set alpha flags after converto32 in eglcreatesurface TODO: this patch is probably wrong --- src/gui/egl/qegl_x11.cpp | 1 + src/gui/image/qpixmap_x11.cpp | 4 ++++ src/gui/image/qpixmap_x11_p.h | 2 ++ 3 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/gui/egl/qegl_x11.cpp b/src/gui/egl/qegl_x11.cpp index c0f8a24..0b601d1 100644 --- a/src/gui/egl/qegl_x11.cpp +++ b/src/gui/egl/qegl_x11.cpp @@ -440,6 +440,7 @@ EGLSurface QEgl::createSurface(QPaintDevice *device, EGLConfig config, const QEg qWarning("Warning: EGLConfig's depth (32) != pixmap's depth (%d), converting to ARGB32", x11PixmapData->depth()); x11PixmapData->convertToARGB32(true); + x11PixmapData->setFlagsWithAlpha(); } else #endif { diff --git a/src/gui/image/qpixmap_x11.cpp b/src/gui/image/qpixmap_x11.cpp index 0e1401c..4b6afeb 100644 --- a/src/gui/image/qpixmap_x11.cpp +++ b/src/gui/image/qpixmap_x11.cpp @@ -2423,5 +2423,9 @@ QPixmap QPixmap::fromX11Pixmap(Qt::HANDLE pixmap, QPixmap::ShareMode mode) return QPixmap(data); } +void QX11PixmapData::setFlagsWithAlpha(){ + flags |= QX11PixmapData::GlSurfaceCreatedWithAlpha; +} + QT_END_NAMESPACE diff --git a/src/gui/image/qpixmap_x11_p.h b/src/gui/image/qpixmap_x11_p.h index 7cd80e6..2665932 100644 --- a/src/gui/image/qpixmap_x11_p.h +++ b/src/gui/image/qpixmap_x11_p.h @@ -101,6 +101,8 @@ public: #ifndef QT_NO_XRENDER void convertToARGB32(bool preserveContents = true); #endif + void setFlagsWithAlpha(); + protected: int metric(QPaintDevice::PaintDeviceMetric metric) const; -- 1.7.7.4