aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@qt.io>2024-03-04 15:32:34 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2024-03-05 13:06:40 +0000
commitfc729207b29d0a4d4b8789d5a641a481fcb9fa1a (patch)
tree5f9d58502de881499e562a94ea8c24d6f90319b8
parent58991fa2a3bde4eef8a448619da174fc3ff7ce60 (diff)
Follow QQuickRhiItem property rename in example
The example was not updated. Change-Id: Ib9afde58b3f48639cf77848e36ee503df78bdd53 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> (cherry picked from commit c00e6b1c40f5cfa4c0183429e7972153e96da919) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--examples/quick/scenegraph/rhitextureitem/main.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/quick/scenegraph/rhitextureitem/main.qml b/examples/quick/scenegraph/rhitextureitem/main.qml
index 3eec8bcdab..dc386d2cf2 100644
--- a/examples/quick/scenegraph/rhitextureitem/main.qml
+++ b/examples/quick/scenegraph/rhitextureitem/main.qml
@@ -177,7 +177,7 @@ Item {
}
Label {
- text: qsTr("Backing texture size: %1x%2 pixels").arg(renderer.effectiveTextureSize.width).arg(renderer.effectiveTextureSize.height)
+ text: qsTr("Backing texture size: %1x%2 pixels").arg(renderer.effectiveColorBufferSize.width).arg(renderer.effectiveColorBufferSize.height)
}
Label {