| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Reviewed-by: tom
|
|
|
|
| |
Reviewed-by: tom
|
|
|
|
| |
Reviewed-by: Trust Me
|
|
|
|
| |
Reviewed-by: tom
|
|
|
|
| |
Reviewed-by: tom
|
|
|
|
|
|
| |
Reviewed-by: tom
Squash me with Fix THREAD and TOOLBAR a6e785b4ff9ec9cd48
|
|
|
|
| |
Reviewed-by: tom
|
|
|
|
| |
Reviewed-by: Trust Me
|
|
|
|
| |
Reviewed-by: Jens Bache-Wiig
|
|
|
|
|
|
| |
However, compiling with QT_NO_ICON will still not work :(
Reviewed-by: tom
|
|
|
|
| |
Reviewed-by: Trust Me
|
|
|
|
|
|
| |
Reviewed-by: Jens Bache-Wiig
Squash me with Fix LIBRARY and SETTINGS in phonon 7d2282
|
|
|
|
| |
Reviewed-by: tom
|
|
|
|
| |
Reviewed-by: tom
|
|
|
|
| |
Reviewed-by: tom
|
|
|
|
| |
Reviewed-by: tom
|
|
|
|
|
|
|
| |
However, there are some stuff added to qscript that I'm really not sure
about.
Reviewed-by: tom
|
|
|
|
| |
Reviewed-by: tom
|
|
|
|
| |
Reviewed-by: tom
|
|
|
|
| |
Reviewed-by: Jens Bache-Wiig
|
|
|
|
| |
Reviewed-by: Trust Me
|
|
|
|
|
|
| |
Seemed to be missing from gstreamer backend
Reviewed-by: Jens Bache-Wiig
|
|
|
|
| |
Reviewed-by: Trust Me
|
|
|
|
| |
Reviewed-by: Trust Me
|
|
|
|
| |
Reviewed-by: tom
|
|
|
|
| |
Reviewed-by: Jens Bache-Wiig
|
|
|
|
| |
Reviewed-by:tom
|
| |
|
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| | |
Calling QWidget::setCursor() outside of the event loop causes a memory
leak in Cocoa. Adding an autorelease pool plugs it.
Merge-request: 1791
Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@nokia.com>
|
| |
| |
| |
| |
| |
| | |
Cherry-picked from d8a2e52e
Merge-request: 419
Reviewed-by: Olivier
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
No need to publicise real sites and email addresses.
Also, don't use 8-bit data. C escape sequences are ok.
|
| |
| |
| |
| |
| |
| | |
Imported from http://github.com/icefox/guessurlfromstring
Licensed under the 3-clause BSD license by the copyright holder.
|
| |
| |
| |
| | |
Reviewed-by: Trust Me
|
| |
| |
| |
| |
| |
| | |
are generated
Reviewed-By: Daniel Molkentin
|
| |
| |
| |
| | |
Reviewed-By: Trust Me
|
| |
| |
| |
| | |
Reviewed-by: Daniel Molkentin
|
| |
| |
| |
| |
| |
| | |
This is the QtCore part of the timebomb.
Reviewed-by: Daniel Molkentin
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
QAbstractState::parentState() is called heavily by the state machine
algorithm. The parent state is obtained by qobject_cast'ing
QObject::parent(). qobject_cast() is expensive. This commit introduces
caching of the result in order to improve performance.
We expect that the cache won't be invalidated much since the parent-child
relationship of states usually doesn't change after the state machine is
started.
Reviewed-by: Eskil Abrahamsen Blomfeldt
|
| |
| |
| |
| |
| |
| |
| |
| | |
This function is useful for debugging, if nothing else, and has been
requested by users. We also refer to it in one of our blog posts, so
there's little point in trying to hide it any longer.
Reviewed-by: Eskil Abrahamsen Blomfeldt
|
| |
| |
| |
| |
| |
| |
| |
| | |
By popular demand on the Qt Labs blog.
This makes it possible to readily use QStateMachine with e.g. worker
threads that post events to the machine.
Reviewed-by: Eskil Abrahamsen Blomfeldt
|
| |
| |
| |
| |
| | |
The internal slot _q_process() should never be called if the machine is
not in the Running state.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This is the same type of optimization as that done for transitions in
commit 5d8dcd57cd13fdd9c8643fa3bdda9f197a4351ff. The idea is to avoid
calling qobject_cast() because it's very expensive.
Obtaining child states needs to be as fast as possible because it's in
the critical path of the state machine algorithm; it's called by a ton
of internal functions, like isCompound(), isAtomic(), isInFinalState().
It's also called heavily for parallel state groups.
Reviewed-by: Eskil Abrahamsen Blomfeldt
|
| |
| |
| |
| |
| |
| | |
Since QStateMachine inherits QState now.
Reviewed-by: Eskil Abrahamsen Blomfeldt
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
After API review discussions, it was decided to remove shader
binary support until we have a better handle on what we need.
Applications can directly load shader binaries on the shaderId()
using glShaderBinary() directly so they aren't prevented from
using the feature.
Reviewed-by: trustme
|
| |
| |
| |
| |
| |
| |
| |
| | |
Rendering into a QImage as a window backing store isn't very efficient
and isn't needed by any of our current platforms. If a specific
graphics system needs it in the future, it can implement it directly.
Reviewed-by: trustme
|