summaryrefslogtreecommitdiffstats
path: root/tradeshow/iot-sensortag/resources/base
diff options
context:
space:
mode:
authorTitta Heikkala <titta.heikkala@qt.io>2017-02-14 10:44:51 +0200
committerTitta Heikkala <titta.heikkala@qt.io>2017-02-14 09:35:13 +0000
commit9ba4447a1cb2cf4b5d16a604012ddbb0a04e0328 (patch)
treee457c4df0fed680c926a252a257d2af972bc8909 /tradeshow/iot-sensortag/resources/base
parentadac5cfd26e86b792574eb7751e19f072de3e400 (diff)
iot-sensortag: Use OpenGL with all charts
Gyro and MAgnetometer charts are updated to use OpenGL for series. Change-Id: Ib4f7e3c7e4bdf5015484f3849cc99ad9c1490f5f Reviewed-by: Otto Ryynänen <otto.ryynanen@qt.io>
Diffstat (limited to 'tradeshow/iot-sensortag/resources/base')
-rw-r--r--tradeshow/iot-sensortag/resources/base/GyroChart.qml3
-rw-r--r--tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml3
2 files changed, 6 insertions, 0 deletions
diff --git a/tradeshow/iot-sensortag/resources/base/GyroChart.qml b/tradeshow/iot-sensortag/resources/base/GyroChart.qml
index 3faf879..30aba64 100644
--- a/tradeshow/iot-sensortag/resources/base/GyroChart.qml
+++ b/tradeshow/iot-sensortag/resources/base/GyroChart.qml
@@ -140,6 +140,7 @@ BaseChart {
axisY: valueAxisY
color: xColor
name: "Gyro X"
+ useOpenGL: true
}
SplineSeries {
id: gyroSeriesY
@@ -147,6 +148,7 @@ BaseChart {
axisY: valueAxisY
color: yColor
name: "Gyro Y"
+ useOpenGL: true
}
SplineSeries {
id: gyroSeriesZ
@@ -154,6 +156,7 @@ BaseChart {
axisY: valueAxisY
color: zColor
name: "Gyro Z"
+ useOpenGL: true
}
}
diff --git a/tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml b/tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml
index 05919b9..6c4ba79 100644
--- a/tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml
+++ b/tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml
@@ -141,6 +141,7 @@ BaseChart {
axisY: valueAxisY
color: xColor
name: "Magnet X"
+ useOpenGL: true
}
SplineSeries {
id: magnSeriesY
@@ -148,6 +149,7 @@ BaseChart {
axisY: valueAxisY
color: yColor
name: "Magnet Y"
+ useOpenGL: true
}
SplineSeries {
id: magnSeriesZ
@@ -155,6 +157,7 @@ BaseChart {
axisY: valueAxisY
color: zColor
name: "Magnet Z"
+ useOpenGL: true
}
}