From 60169637833bf39f646162ef156347eec4b5da39 Mon Sep 17 00:00:00 2001 From: Andre Fischer Date: Thu, 30 Aug 2012 11:32:06 +0000 Subject: Resolves: #i120764# Reduce grid size for snake wipe transition to 8*8. Patch by: Wang Zhe Review by: Andre Fischer (cherry picked from commit 2de9df3bc309f480c68a970b3353b718ca4e9c68) Change-Id: I33b5d9975d52492d296e77b191ae1a394c8443a0 --- .../source/engine/transitions/parametricpolypolygonfactory.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'slideshow/source') diff --git a/slideshow/source/engine/transitions/parametricpolypolygonfactory.cxx b/slideshow/source/engine/transitions/parametricpolypolygonfactory.cxx index 64c2a0fef6a7..ca1d198dec3c 100644 --- a/slideshow/source/engine/transitions/parametricpolypolygonfactory.cxx +++ b/slideshow/source/engine/transitions/parametricpolypolygonfactory.cxx @@ -143,7 +143,7 @@ namespace slideshow return ParametricPolyPolygonSharedPtr( new SnakeWipe( // elements: - 64 * 64, + 8 * 8, // diagonal: nSubType == TOPLEFTDIAGONAL || nSubType == TOPRIGHTDIAGONAL || @@ -158,7 +158,7 @@ namespace slideshow return ParametricPolyPolygonSharedPtr( new ParallelSnakesWipe( // elements: - 64 * 64, + 8 * 8, // diagonal: nSubType == DIAGONALBOTTOMLEFTOPPOSITE || nSubType == DIAGONALTOPLEFTOPPOSITE, @@ -178,7 +178,7 @@ namespace slideshow return ParametricPolyPolygonSharedPtr( new SpiralWipe( // elements: - 64 * 64, + 8 * 8, // flipOnYAxis: nSubType == TOPLEFTCOUNTERCLOCKWISE || nSubType == TOPRIGHTCOUNTERCLOCKWISE || @@ -188,7 +188,7 @@ namespace slideshow return ParametricPolyPolygonSharedPtr( new BoxSnakesWipe( // elements: - 64 * 64, + 8 * 8, // fourBox: nSubType == FOURBOXVERTICAL || nSubType == FOURBOXHORIZONTAL ) ); -- cgit