| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Also misc minor improvements all around
|
| |
|
|\
| |
| |
| | |
into lancelot
|
| | |
|
|/ |
|
|
|
|
|
|
| |
.. otherwise, the comparison will always yield true...
Also a simplification: QList provides default datastreaming ops
|
|
|
|
|
|
| |
This of course differs, depending on the different backends used, but
so far it seems most of the Mesa implementations have Mesa mentioned
in the version string.
|
|
|
|
|
| |
Also changed the meta file from being a text file to a binary file.
Nothing uses the extra checksums yet, but that should be added soon.
|
| |
|
| |
|
|
|
|
|
| |
- support different pixel formats for same engine
- separate baselines per hostname
|
| |
|
|\
| |
| |
| | |
into lancelot
|
| | |
|
|/ |
|
|\
| |
| |
| | |
into lancelot
|
| | |
|
| | |
|
|/ |
|
| |
|
| |
|
|
|
|
|
|
| |
Client no longer fetches baseline images, not even on mismatch.
Bitwise comparison, mismatch score etc. will be done on server, if
wanted.
|
|
|
|
| |
Not finished, but core functionality is in working state.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
2D rendering system, based on the lance test tool.
Hence dubbed lancelot.
|
|
|
|
|
|
|
|
|
|
|
| |
QFontMetrics::boundingRect() and size() accept a tabArray as argument
to measure the size of string, but tabArray argument has no effect
because qt_format_text() just ignore that. This patch make it handle
tabArray so that measurement for tab aligned text can be handled
correctly.
Task-number: QTBUG-4904
Reviewed-by: Eskil
|
|
|
|
|
|
|
| |
is correct.
Merge-request: 720
Reviewed-by: Gabriel de Dietrich <gabriel.dietrich-de@nokia.com>
|
|
|
|
| |
Task-number: QTBUG-12991
|
|
|
|
| |
Task-number: QTBUG-12994
|
|\
| |
| |
| |
| |
| |
| | |
master-integration
* 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-2:
QGroupBox: Fix the focus rect of the title when using stylesheet
|
| |
| |
| |
| |
| | |
Task-number: QTBUG-13015
Reviewed-by: Olivier Goffart
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
master-integration
* 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-1:
qUncompress: don't exit on allocation failure with -no-exceptions
Prefer Q_CHECK_PTR to q_check_ptr
Prefer Q_CHECK_PTR to q_check_ptr
Ensure Q_CHECK_PTR always requires terminating ;
Q_CHECK_PTR should issue qFatal with QT_NO_EXCEPTIONS
Workaround what seems to be a compiler parser bug
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
If we're not allowed to fail here with -no-exceptions, we shouldn't
throw either so just check the return value from qRealloc and be done
with it.
Also changed the test case so it doesn't expect bad_alloc being thrown;
the test data now gets properly initialized...
Reviewed-by: Olivier Goffart
Reviewed-by: Harald Fernengel
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
With the macro version we get proper debug output (with __FILE__,
__LINE__ annotations) when compiling with -no-exceptions and
!QT_NO_DEBUG.
All changes in this patch affect assignment to local variables, where
the order of assignment versus actual pointer check is not important.
Reviewed-by: Olivier Goffart
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
With the macro version we get proper debug output (with __FILE__,
__LINE__ annotations) when compiling with -no-exceptions and
!QT_NO_DEBUG.
Reviewed-by: Olivier Goffart
|
| | |
| | |
| | |
| | |
| | |
| | | |
... even with -no-exceptions and QT_NO_DEBUG.
Reviewed-by: Olivier Goffart
|
| |\ \
|/ / /
| | |
| | |
| | |
| | |
| | |
| | | |
master-integration
* 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-1:
Q_CHECK_PTR should issue qFatal with QT_NO_EXCEPTIONS
Workaround what seems to be a compiler parser bug
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Allowing the null pointer to propagate seems to be a bigger evil and
could potentially become a security risk.
Task-number: QT-3785
Reviewed-by: Peter Hartmann
Reviewed-by: Olivier Goffart
Reviewed-by: Thiago Macieira
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The workaround seems harmless, otherwise. Maybe even standard-compliant
(14.2.4 [temp.names])
$ gcc --version
sbox-arm-none-linux-gnueabi-gcc (cs2009q1-eglibc2.8-armv7) 4.3.3
Copyright (C) 2008 Free Software Foundation, Inc.
Reviewed-by: Olivier Goffart
|
|\ \ \
| | |/
| |/|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
master-integration
* 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-2:
Disable translatedRotatedAndScaledPainter testcase as it is broken.
Fixed partial update on QLineEdit
disable the outlinefillconsistency test until the line algorithm has been updated.
Fix nasty copy-paste bug in fetchTransformedBilinear()
fix breakages in qpainter autotests.
QMetaType: add "signed char" as builtin.
Fix how subpixel positions are intepreted in an aliased grid.
|
| |\ \ |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
QLineControl passes a QRect to tell when a partial update is needed.
We used to connect this slot to update. This made the whole lineedit
update when the cursor blinked.
Task-number: QTBUG-12709
Reviewed-by: gabi
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The problem is that the order of rounding to fixedpoint is different
in the static and normal text case and this leads to some glyphs
occationally being 1 pixel off.
In the normal case, the glyphs are laid out and positioned in fixed
point, then transformed using the full current matrix including the
position which is then snapped to integer device space when drawn.
In the static text case, the glyphs are laid out and positioned in
fixed point related to 0,0. The actual device position is then
added to the glyph positions.
|
| |\ \ |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Introduced in commit 0d7e68391
Reviewed-by: Samuel
|
| | |\ \
| |/ / /
|/| | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
master-integration
* 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-2:
fix breakages in qpainter autotests.
QMetaType: add "signed char" as builtin.
Fix how subpixel positions are intepreted in an aliased grid.
|