aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGunnar Sletta <gunnar.sletta@nokia.com>2011-09-01 12:29:00 +0200
committerKim M. Kalland <kim.kalland@nokia.com>2011-09-01 15:20:34 +0200
commit1fc32268c840ca9fa3f6882af0c3e27c611c1232 (patch)
tree6548f2cdd4ab6e6f8c54698cd0b282472c6fae4d /src
parent1259c5768e410361bcd8b5cf0c2057a2ebabda83 (diff)
add flags to node debug output
Change-Id: Idc5f542a40d98b8163fb894e26e53127d1b6369c Reviewed-on: http://codereview.qt.nokia.com/4065 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Kim M. Kalland <kim.kalland@nokia.com>
Diffstat (limited to 'src')
-rw-r--r--src/declarative/scenegraph/coreapi/qsgnode.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/declarative/scenegraph/coreapi/qsgnode.cpp b/src/declarative/scenegraph/coreapi/qsgnode.cpp
index 95afbb51ab..65b4bf926b 100644
--- a/src/declarative/scenegraph/coreapi/qsgnode.cpp
+++ b/src/declarative/scenegraph/coreapi/qsgnode.cpp
@@ -1235,7 +1235,8 @@ QDebug operator<<(QDebug d, const QSGNode *n)
break;
default:
d << "QSGNode(" << hex << (void *) n << dec
- << "dirty=" << hex << (int) n->dirtyFlags() << dec
+ << "dirty=" << hex << (int) n->dirtyFlags()
+ << "flags=" << (int) n->flags() << dec
<< (n->isSubtreeBlocked() ? "*BLOCKED*" : "");
#ifdef QML_RUNTIME_TESTING
d << n->description;