summaryrefslogtreecommitdiffstats
path: root/tests/manual/texture_property_updates/main.qml
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2018-08-20 10:40:03 +0200
committerPaul Lemire <paul.lemire@kdab.com>2018-10-11 11:35:37 +0000
commite2e8ecab8c71f3ef6932cd361da99127c2a79f57 (patch)
tree649c48cf9cd7ea3d4f8d756339c8d55af8a4bf6c /tests/manual/texture_property_updates/main.qml
parentb4e52d6a8deef3d268ea97cb5e4ea14948117aad (diff)
Texture: update renderer to send handle and handle type on frontend textures
Change-Id: I78047f354a9f7cdbb56bd2b5dee79cb77e6cb749 Task-number: QTBUG-70055 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'tests/manual/texture_property_updates/main.qml')
-rw-r--r--tests/manual/texture_property_updates/main.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/manual/texture_property_updates/main.qml b/tests/manual/texture_property_updates/main.qml
index ebefdc725..fb68862a6 100644
--- a/tests/manual/texture_property_updates/main.qml
+++ b/tests/manual/texture_property_updates/main.qml
@@ -51,7 +51,7 @@
import QtQuick 2.2 as QQ2
import QtQuick.Scene3D 2.0
import Qt3D.Core 2.0
-import Qt3D.Render 2.0
+import Qt3D.Render 2.12
import Qt3D.Input 2.0
import Qt3D.Extras 2.0
@@ -182,6 +182,8 @@ QQ2.Item {
QQ2.Text { text: "Depth: " + model.modelData.depth}
QQ2.Text { text: "Layers: " + model.modelData.layers}
QQ2.Text { text: "Status: " + nameMapper.statusName(model.modelData.status.toString()) }
+ QQ2.Text { text: "HandleType: " + nameMapper.handleTypeName(model.modelData.handleType) }
+ QQ2.Text { text: "Handle: " + model.modelData.handle }
}
}
}