summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/compute-particles
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2016-02-25 15:54:36 +0100
committerPaul Lemire <paul.lemire@kdab.com>2016-02-29 14:51:33 +0000
commitc3f21b4e2834fd257157728e306aef11f06e01d8 (patch)
tree77eb89e5906a8a076345a7b4825cd1ee0c8c852a /examples/qt3d/compute-particles
parent7994e86c0e6fd14954cc4a6092509132251cb006 (diff)
QAttribute API changes
- rename dataType to vertexBaseType - rename dataSize to vertexSize Change-Id: I0eca7054dd69e8aac69bc1d7d5023a7ca6ca9da2 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'examples/qt3d/compute-particles')
-rw-r--r--examples/qt3d/compute-particles/ParticlesScene.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/qt3d/compute-particles/ParticlesScene.qml b/examples/qt3d/compute-particles/ParticlesScene.qml
index aaaa25114..4ba9896f0 100644
--- a/examples/qt3d/compute-particles/ParticlesScene.qml
+++ b/examples/qt3d/compute-particles/ParticlesScene.qml
@@ -129,8 +129,8 @@ Entity {
id: particlePositionDataAttribute
name: "particlePosition"
attributeType: Attribute.VertexAttribute
- dataType: Attribute.Float
- dataSize: 3
+ vertexBaseType: Attribute.Float
+ vertexSize: 3
divisor: 1
byteStride: 12 * floatSize
buffer: particleBuffer
@@ -140,8 +140,8 @@ Entity {
id: particleColorDataAttribute
name: "particleColor"
attributeType: Attribute.VertexAttribute
- dataType: Attribute.Float
- dataSize: 3
+ vertexBaseType: Attribute.Float
+ vertexSize: 3
divisor: 1
byteOffset: 8 * floatSize
byteStride: 12 * floatSize