aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmlprofiler/qmlprofiler.pro
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@theqtcompany.com>2014-11-18 18:32:43 +0100
committerUlf Hermann <ulf.hermann@theqtcompany.com>2014-12-12 11:01:51 +0100
commitef064154a4c29cd95af9007b9ab22493a7da1b37 (patch)
tree42d8fa71c40b85eba5bd211003abdc02261c1de6 /src/plugins/qmlprofiler/qmlprofiler.pro
parent62d21d123c9b0ed700bf252020554741df33eee5 (diff)
QMLProfiler: Use scene graph for painting events in timeline
By using the scene graph we can retain the geometry for events in the timeline on the GPU and potentially speed up the rendering for large amounts of items. Change-Id: I2cfbb8ef4ebc7b56f1977ec1facb4f2e7f2002ee Reviewed-by: Kai Koehne <kai.koehne@theqtcompany.com>
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofiler.pro')
-rw-r--r--src/plugins/qmlprofiler/qmlprofiler.pro24
1 files changed, 21 insertions, 3 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofiler.pro b/src/plugins/qmlprofiler/qmlprofiler.pro
index 5aaa5ddbdd9..c96ce91d51c 100644
--- a/src/plugins/qmlprofiler/qmlprofiler.pro
+++ b/src/plugins/qmlprofiler/qmlprofiler.pro
@@ -34,7 +34,13 @@ SOURCES += \
timelinemodel.cpp \
timelinemodelaggregator.cpp \
timelinerenderer.cpp \
- timelinezoomcontrol.cpp
+ timelinezoomcontrol.cpp \
+ timelineitemsrenderpass.cpp \
+ qmlprofilerbindingloopsrenderpass.cpp \
+ timelineselectionrenderpass.cpp \
+ timelinenotesrenderpass.cpp \
+ timelinerenderpass.cpp \
+ timelinerenderstate.cpp
HEADERS += \
abstractqmlprofilerrunner.h \
@@ -71,7 +77,13 @@ HEADERS += \
timelinemodel_p.h \
timelinemodelaggregator.h \
timelinerenderer.h \
- timelinezoomcontrol.h
+ timelinezoomcontrol.h \
+ timelineitemsrenderpass.h \
+ qmlprofilerbindingloopsrenderpass.h \
+ timelineselectionrenderpass.h \
+ timelinenotesrenderpass.h \
+ timelinerenderpass.h \
+ timelinerenderstate.h
RESOURCES += \
qml/qmlprofiler.qrc
@@ -87,4 +99,10 @@ DISTFILES += \
qml/TimeMarks.qml \
qml/SelectionRange.qml \
qml/SelectionRangeDetails.qml \
- qml/Overview.qml
+ qml/Overview.qml \
+ qml/timelineitems.frag \
+ qml/timelineitems.vert \
+ qml/bindingloops.frag \
+ qml/bindingloops.vert \
+ qml/notes.frag \
+ qml/notes.vert