summaryrefslogtreecommitdiffstats
path: root/tests/manual/buffercapture-qml
Commit message (Collapse)AuthorAgeFilesLines
* RHI: restore QBufferCapture featurePaul Lemire2020-12-016-10/+104
| | | | | | | | | Also fix manual test to import Qt3D.Core 2.9 since QBuffer was moved to core in Qt 6 and accessType property was introduce with revision 9. Pick-to: 6.0 Change-Id: I449f413fd161fe4660cef61708cd641e429c1c81 Reviewed-by: Mike Krus <mike.krus@kdab.com>
* Use internal CMake APIMike Krus2020-10-071-2/+2
| | | | | | Task-number: QTBUG-86815 Change-Id: I7a8755571c8977be1f16b2287e5a8055e9016ee5 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
* Add support for building with CMakeMike Krus2020-05-221-0/+45
| | | | | Change-Id: If6c887c6356a160a5f3fb906d38a341fff0c7b29 Reviewed-by: Mike Krus <mike.krus@kdab.com>
* Geometry refactoringMike Krus2020-02-271-2/+2
| | | | | | | Move QBuffer, QAttribute, QGeometry to Qt3DCore. Change-Id: I59dfd091eefadcada93350b3aba955f40b304385 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
* Remove misplaced execute permissionsEdward Welbourne2017-08-161-0/+0
| | | | | Change-Id: Ie7a467738007a4ddd503f435abca9ceadf0c0979 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
* Rename QBuffer::access property to accessTypeSean Harmer2017-03-291-1/+1
| | | | | Change-Id: Ie56a792272d2bf748a0d64096d46852ab718c37a Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
* Start using REVISION on our propertiesKevin Ottens2017-02-232-2/+2
| | | | | | | | | Adding REVISION 9 on all the new properties from this release. Also registering the extra revisions on the QML side. Change-Id: Ic7eda36bee8ca19508cd73b61cea534f956c6997 Task-Id: QTBUG-58895 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
* Improve buffercapture-qml manual testPaul Lemire2017-02-164-7/+8
| | | | | | Task-number: QTBUG-58875 Change-Id: Ic030e6b9ab5e40d1131b80aa0d0a5d30d74d72b6 Reviewed-by: Kevin Ottens <kevin.ottens@kdab.com>
* Transfers gpu buffer data to cpuJuan José Casafranca2017-01-318-0/+519
Added some code to retrieve the data in the gpu back to a cpu pointer in the opengl helpers. Added a framegraph node which specifies if any data must be downloaded from the gpu Added a flag in the buffer object to specify if the data from that buffer must be downloaded. Added a job to send the data back to the frontend. Added a path in the renderer to download the gpu data. Task number: QTBUG-57727 Change-Id: I315a9221e5116c7d07f818e00c654fe1901144f4 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>