summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/shadow-map-qml/AdsMaterial.qml
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2016-05-31 15:11:31 +0100
committerJani Heikkinen <jani.heikkinen@qt.io>2016-06-02 09:52:01 +0000
commita398469e66e3a953097857c60655c41bf291a06b (patch)
tree325d44f4dc27d792d64ddbe19644a64691f40c23 /examples/qt3d/shadow-map-qml/AdsMaterial.qml
parentc406cdb2b9bdb05e642a35d55825fd24ef545efc (diff)
Fix shadow-map-qml example
In the absence of the ParameterMapper type (removed) we need to directly specify the correct uniform names. Task-number: QTBUG-53737 Change-Id: I678ac6f5fab968ee2105f45c8e2d9db66da78293 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'examples/qt3d/shadow-map-qml/AdsMaterial.qml')
-rw-r--r--examples/qt3d/shadow-map-qml/AdsMaterial.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/qt3d/shadow-map-qml/AdsMaterial.qml b/examples/qt3d/shadow-map-qml/AdsMaterial.qml
index 7948b7733..698dae1aa 100644
--- a/examples/qt3d/shadow-map-qml/AdsMaterial.qml
+++ b/examples/qt3d/shadow-map-qml/AdsMaterial.qml
@@ -60,9 +60,9 @@ Material {
property real shininess: 150.0
parameters: [
- Parameter { name: "ambient"; value: Qt.vector3d(root.ambientColor.r, root.ambientColor.g, root.ambientColor.b) },
- Parameter { name: "diffuse"; value: Qt.vector3d(root.diffuseColor.r, root.diffuseColor.g, root.diffuseColor.b) },
- Parameter { name: "specular"; value: Qt.vector3d(root.specularColor.r, root.specularColor.g, root.specularColor.b) },
+ Parameter { name: "ka"; value: Qt.vector3d(root.ambientColor.r, root.ambientColor.g, root.ambientColor.b) },
+ Parameter { name: "kd"; value: Qt.vector3d(root.diffuseColor.r, root.diffuseColor.g, root.diffuseColor.b) },
+ Parameter { name: "ks"; value: Qt.vector3d(root.specularColor.r, root.specularColor.g, root.specularColor.b) },
Parameter { name: "shininess"; value: root.shininess }
]
}