summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorVolker Krause <volker.krause@kdab.com>2016-03-02 10:27:14 +0100
committerSean Harmer <sean.harmer@kdab.com>2016-03-02 12:43:19 +0000
commit1be7f6169eccb570a33fe6e2c4e890955c9953a3 (patch)
tree0e28832f531ff28684e01f6dc1721295e9a9f5c4 /examples
parent241ed3dcdbf1635183499df73692ed0bb3d3cd1d (diff)
Follow API changes in TextureImage.
Change-Id: I0d8ca510a28a5e499befb533d93ab6d1d2b0dc4b Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/qt3d/skybox/Skybox.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/qt3d/skybox/Skybox.qml b/examples/qt3d/skybox/Skybox.qml
index 05725c49f..84994e396 100644
--- a/examples/qt3d/skybox/Skybox.qml
+++ b/examples/qt3d/skybox/Skybox.qml
@@ -65,12 +65,12 @@ Entity {
x: WrapMode.ClampToEdge
y: WrapMode.ClampToEdge
}
- TextureImage { cubeMapFace: Texture.CubeMapPositiveX; source: sourceDirectory + "_posx" + extension }
- TextureImage { cubeMapFace: Texture.CubeMapPositiveY; source: sourceDirectory + "_posy" + extension }
- TextureImage { cubeMapFace: Texture.CubeMapPositiveZ; source: sourceDirectory + "_posz" + extension }
- TextureImage { cubeMapFace: Texture.CubeMapNegativeX; source: sourceDirectory + "_negx" + extension }
- TextureImage { cubeMapFace: Texture.CubeMapNegativeY; source: sourceDirectory + "_negy" + extension }
- TextureImage { cubeMapFace: Texture.CubeMapNegativeZ; source: sourceDirectory + "_negz" + extension }
+ TextureImage { face: Texture.CubeMapPositiveX; source: sourceDirectory + "_posx" + extension }
+ TextureImage { face: Texture.CubeMapPositiveY; source: sourceDirectory + "_posy" + extension }
+ TextureImage { face: Texture.CubeMapPositiveZ; source: sourceDirectory + "_posz" + extension }
+ TextureImage { face: Texture.CubeMapNegativeX; source: sourceDirectory + "_negx" + extension }
+ TextureImage { face: Texture.CubeMapNegativeY; source: sourceDirectory + "_negy" + extension }
+ TextureImage { face: Texture.CubeMapNegativeZ; source: sourceDirectory + "_negz" + extension }
}
ShaderProgram {