summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/compute-particles
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2016-08-22 08:13:37 +0200
committerPaul Lemire <paul.lemire@kdab.com>2016-08-26 06:00:31 +0000
commiteb910d6822416926c43430f4321793ab8c232c0c (patch)
treeeadd252ebd21060b20aa6ee4ad23e555a41396fa /examples/qt3d/compute-particles
parent1bc63ffce04bb07a490a2eb09272b1866e1a9585 (diff)
Compute Particles example: was using wrong work group size
Change-Id: Idf3c40274ff60ff3c856c2e61a0d782a916e0e19 Reviewed-by: Kevin Ottens <kevin.ottens@kdab.com>
Diffstat (limited to 'examples/qt3d/compute-particles')
-rw-r--r--examples/qt3d/compute-particles/ComputeFrameGraph.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/qt3d/compute-particles/ComputeFrameGraph.qml b/examples/qt3d/compute-particles/ComputeFrameGraph.qml
index 9a84f246f..ffdeb7567 100644
--- a/examples/qt3d/compute-particles/ComputeFrameGraph.qml
+++ b/examples/qt3d/compute-particles/ComputeFrameGraph.qml
@@ -65,7 +65,7 @@ Viewport {
// Compute Pass
DispatchCompute {
- workGroupX: 1024; workGroupY: 1; workGroupZ: 1
+ workGroupX: 50; workGroupY: 1; workGroupZ: 1
TechniqueFilter {
matchAll: [
FilterKey { name: "type"; value: "compute"}