summaryrefslogtreecommitdiffstats
path: root/mkspecs/aix-xlc
Commit message (Expand)AuthorAgeFilesLines
* Merge remote branch 'origin/4.6' into qt-4.7-from-4.6Thiago Macieira2010-04-131-1/+1
|\
| * Implement some changes to the AIX xlC mkspec suggested by IBM.Thiago Macieira2010-04-131-1/+1
* | add TARGET_PLATFORM to qmakespecs with MAKEFILE_GENERATOR = UNIXOswald Buddenhagen2010-02-261-0/+1
* | Merged qplatformdefs.h for AIXJoão Abecasis2010-01-221-58/+1
* | Refactor common POSIX support out of individual qplatformdefs.hJoão Abecasis2010-01-221-30/+7
* | Refactor common X/Open LFS support out of individual qplatformdefs.hJoão Abecasis2010-01-221-42/+1
|/
* Update copyright year to 2010Jason McDonald2010-01-061-1/+1
* Introducing QT_MMAPJoão Abecasis2009-10-211-0/+2
* Update license headers again.Jason McDonald2009-09-091-4/+4
* Update tech preview license header.Jason McDonald2009-08-311-13/+13
* Update license headers.Jason McDonald2009-08-111-1/+1
* Update license headers as requested by the marketing department.Jason McDonald2009-06-161-2/+2
* Long live Qt 4.5!Lars Knoll2009-03-232-0/+252
when called from inside a template function. Task-number: QTBUG-3368 Reviewed-by: Gunnar Sletta * Optimized raster drop shadow filter to only blur alpha channel.Samuel Rødal2009-10-151-24/+27 | | | | Reviewed-by: Gunnar * Fixed buggy bitmap drawing in GL 2 engine on X11.Samuel Rødal2009-10-151-1/+1 | | | | | | Don't use texture_from_pixmap extension for QBitmaps. Reviewed-by: Tom * Fixed bitmap brushes and tiled bitmaps in the OpenGL1 paint engine.Kim Motoyoshi Kalland2009-10-153-92/+132 | | | | | | | Fixed drawing of bitmap brushes and tiled bitmaps so that they are painted with the brush colour or pen colour instead of black. Reviewed-by: Trond * CompileEskil Abrahamsen Blomfeldt2009-10-151-1/+1 | | | | | | There's no implicit conversion from QPixmap to QImage Reviewed-by: Gunnar * Fixed the GLSL-to-assembly code generator to output enums correctly.Kim Motoyoshi Kalland2009-10-141-21/+32 | | | | | | | | Fixed the output of enums such that the last item in the enum is not followed by comma. Changed the output of the license to say that the file is part of the QtOpenGL module, not the test suite. Reviewed-by: Trond * Cleaned up OpenGL1 paint engine GLSL code.Kim Motoyoshi Kalland2009-10-1420-1063/+1009 | | | | | | | Fixed warnings about int->float and float->vecN conversions. Removed unused shader files. Reviewed-by: Trond * Optimized bloom graphics effect implementation.Samuel Rødal2009-10-141-9/+13 | | | | | | | Avoid doing so many conversions by operating on raster pixmaps, and by using INV_PREMUL/PREMUL instead of converting to ARGB32. Reviewed-by: Gunnar Sletta * Added qt_toRasterPixmap functions.Samuel Rødal2009-10-141-0/+23 | | | | | | | Similar to the existing qt_toX11Pixmap, this lets us explicitly create pixmaps with the raster pixmap backend. Reviewed-by: Gunnar Sletta * Added QPixmapData::createCompatiblePixmapData() used by QPixmap::copy().Samuel Rødal2009-10-1413-8/+52 | | | | | | QPixmap::copy() now returns a pixmap with the same pixmap backend. Reviewed-by: Gunnar Sletta * Fixed wrong use of graphics effects for pixmap graphics items.Samuel Rødal2009-10-141-27/+7 | | | | | | | | | | | The blur, drop shadow, and bloom graphics effects are scale dependent, since they have radius and offset (in the case of drop shadow) parameters that are specified in device coordinates. Thus, we can't apply the effect in logical coordinates and scale up, and need to always use the device coordinate path for these effects. The opacity and grayscale effects still use the logical coordinate optimization. Reviewed-by: Gunnar Sletta * Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt-graphics-team into 4.6Gunnar Sletta2009-10-146-17/+16 |\ | * Fixed upside down brush patterns in the OpenGL paint engines.Kim Motoyoshi Kalland2009-10-142-3/+0 | | | | | | | | | | Task-number: QTBUG-2222 Reviewed-by: Gunnar | * Fixed handling of brush origin in the OpenGL paint engines.Kim Motoyoshi Kalland2009-10-133-14/+14 | | | | | | | | | | | | | | | | Fixed the OpenGL paint engines so that the brush origin is applied correctly and for all brushes just like in the raster paint engine. Task-number: QTBUG-2676 Reviewed-by: Trond | * Fixed bug where bitmaps were painted black instead of in pen colour.Kim Motoyoshi Kalland2009-10-131-0/+2 | | | | | | | | | | | | | | | | penData and the pen painter state were not in sync when drawing bitmaps in the raster paint engine. Adding calls to ensurePen() fixed the bug. Task-number: QTBUG-4210 Reviewed-by: Trond * | updated fragment programs after changes to .glsl filesGunnar Sletta2009-10-141-141/+105 | | * | Make QStrokerOps, QStroker and QDashStroker properly modulargunnar2009-10-131-4/+4 | | * | Make QStrokerOps, QStroker and QDashStroker properly modulargunnar2009-10-132-8/+38 |/ * Work around broken ATI X1600 drivers on Mac OS XGunnar Sletta2009-10-131-1/+19 | | | | | | | | | The GLSL implementation messes up return values from functions so that all our srcPixel()'s become black and several matrices are off. We don't want to rewrite the shader code to fit an "ancient" graphics card, so we simply fall back to the GL 1 engine. Reviewed-by: Trond * Fixed bug when using QGLWidgets in -graphicssystem openglSamuel Rødal2009-10-122-1/+18 | | | | | | We need to make sure that the FBO is bound in a valid context. Reviewed-by: Tom * Fixed documentation of QPixmap::x11Info() to not talk about widgets.Samuel Rødal2009-10-121-5/+5 | | | | Reviewed-by: Trond * Fixed bug on X11 with WA_TranslucentBackground and native child widgets.Samuel Rødal2009-10-121-25/+46 | | | | | | | The native child widgets need to inherit the parent's visual in order to have a translucent background as well. Reviewed-by: Trond * Fixed bug where calling fill on pixmap with active painter would crash.Kim Motoyoshi Kalland2009-10-091-0/+10 | | | | | | | | | | | Calling QPixmap::fill() on a pixmap may in some cases cause the painter's paint engine pointer to become stale. A subsequent call to the painter would therefore crash. Now, QPixmap::fill() will print a warning and return in those cases. I also added a warning in the documentation of QPixmap::fill(). Task-number: QTBUG-2832 Reviewed-by: Trond * Fix for tst_qfile::map auto test in Symbian OS 3.1.Janne Anttila2009-10-091-2/+13 | | | | | | | | | | The map test case panic with E32User-Cbase 66 in N95 without this fix. This happens sisnce Open C bug where mmap may leave and trap handler is not inside OpenC. The workaround is to install the necessary TRAP handler in Qt, before calling mmap. AutoTests: tst_qfile::map passes Reviewed-by: Janne Koskinen * Made QPen::setDashOffset() work with non-custom dashed lines.Kim Motoyoshi Kalland2009-10-091-3/+11 | | | | | Task-number: QTBUG-2738 Reviewed-by: Trond * Add a way to allow tracking the originating object with QNetworkRequest.Simon Hausmann2009-10-094-0/+51 | | | | | | | | Added setOriginatingObject() and originatingObject() to QNetworkRequest that internally tracks the QObject using a QWeakPointer. Reviewed-by: Lars Knoll Rubberstamped-by: Thiago * Autotest: fix false positives with MSVC.NET 2003Thiago Macieira2009-10-091-1/+19 | | | | | | | | This is definitely a compiler bug. The compiler forgets to adjust the value of the pointers inside the template operator== function. If you make the call outside the template function, it works as expected. Reviewed-by: Trust Me * Autotest: fix forward-declaration test.Thiago Macieira2009-10-091-1/+5 | | | | | | | The problem was that we forward-declared as struct, but the function was implemented as class. It's different on MSVC. Reviewed-by: Trust Me * Fixed doc for softkeys in the qwidget doc.Denis Dzyubenko2009-10-091-2/+1 | | | | Reviewed-by: David Boddie * Doc: update the compiler notes about Sun CC's STL not being supportedThiago Macieira2009-10-091-1/+13 | | | | | | | | | The default STL (Rogue Wave STL) is far too old for Qt. It doesn't meet the ISO C++ 98 specification. Using a more recent (and standards-compliant) STL like stlport4 enables Qt to build even QtWebKit on Solaris. Also change the note indicating we're using Sun Studio 12, not 8. * Fix QHostInfo IP resolution when there's no reverse for the IP.Thiago Macieira2009-10-092-50/+30 | | | | | | | | | | | | | | | If you try to resolve 10.3.4.6, you're probably going to get that it doesn't exist. On some systems, getnameinfo will return the IP address in string form (Linux, without NI_NAMEREQD). On some others, it will fail (Mac, Windows). So harmonise by gracefully handling the case in which getnameinfo fails. Possible behaviour change: we don't try the forward resolution any more, after completing the reverse one. Reviewed-by: Peter Hartmann <peter.hartmann@nokia.com> * Help Nokia X86 compiler to compiler qbuttongroup autotest.Janne Anttila2009-10-091-1/+1 | | | | Reviewed-by: TrustMe * Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt into 4.6Jan-Arve Sæther2009-10-09