summaryrefslogtreecommitdiffstats
path: root/tests/manual/skybox
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/skybox')
-rw-r--r--tests/manual/skybox/Skybox.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/manual/skybox/Skybox.qml b/tests/manual/skybox/Skybox.qml
index 84d999771..f8a77bd65 100644
--- a/tests/manual/skybox/Skybox.qml
+++ b/tests/manual/skybox/Skybox.qml
@@ -66,12 +66,12 @@ Entity {
x: WrapMode.ClampToEdge
y: WrapMode.ClampToEdge
}
- 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 }
+ TextureImage { face: Texture.CubeMapPositiveX; mirrored: false; source: sourceDirectory + "_posx" + extension }
+ TextureImage { face: Texture.CubeMapPositiveY; mirrored: false; source: sourceDirectory + "_posy" + extension }
+ TextureImage { face: Texture.CubeMapPositiveZ; mirrored: false; source: sourceDirectory + "_posz" + extension }
+ TextureImage { face: Texture.CubeMapNegativeX; mirrored: false; source: sourceDirectory + "_negx" + extension }
+ TextureImage { face: Texture.CubeMapNegativeY; mirrored: false; source: sourceDirectory + "_negy" + extension }
+ TextureImage { face: Texture.CubeMapNegativeZ; mirrored: false; source: sourceDirectory + "_negz" + extension }
}
ShaderProgram {