summaryrefslogtreecommitdiff
path: root/slideshow
diff options
context:
space:
mode:
authorAndre Fischer <af@apache.org>2012-08-30 11:32:06 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-05-16 16:17:54 +0100
commit60169637833bf39f646162ef156347eec4b5da39 (patch)
treeeab193787a5caff8c557ca1ebab5b9bfb33412a2 /slideshow
parentaa741ec6fa269cd64e7a40aa1e323d39db8183cc (diff)
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
Diffstat (limited to 'slideshow')
-rw-r--r--slideshow/source/engine/transitions/parametricpolypolygonfactory.cxx8
1 files changed, 4 insertions, 4 deletions
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 ) );