Kaydet (Commit) 60169637 authored tarafından Andre Fischer's avatar Andre Fischer Kaydeden (comit) Caolán McNamara

Resolves: #i120764# Reduce grid size for snake wipe transition to 8*8.

Patch by: Wang Zhe
Review by: Andre Fischer
(cherry picked from commit 2de9df3b)

Change-Id: I33b5d9975d52492d296e77b191ae1a394c8443a0
üst aa741ec6
...@@ -143,7 +143,7 @@ namespace slideshow ...@@ -143,7 +143,7 @@ namespace slideshow
return ParametricPolyPolygonSharedPtr( return ParametricPolyPolygonSharedPtr(
new SnakeWipe( new SnakeWipe(
// elements: // elements:
64 * 64, 8 * 8,
// diagonal: // diagonal:
nSubType == TOPLEFTDIAGONAL || nSubType == TOPLEFTDIAGONAL ||
nSubType == TOPRIGHTDIAGONAL || nSubType == TOPRIGHTDIAGONAL ||
...@@ -158,7 +158,7 @@ namespace slideshow ...@@ -158,7 +158,7 @@ namespace slideshow
return ParametricPolyPolygonSharedPtr( return ParametricPolyPolygonSharedPtr(
new ParallelSnakesWipe( new ParallelSnakesWipe(
// elements: // elements:
64 * 64, 8 * 8,
// diagonal: // diagonal:
nSubType == DIAGONALBOTTOMLEFTOPPOSITE || nSubType == DIAGONALBOTTOMLEFTOPPOSITE ||
nSubType == DIAGONALTOPLEFTOPPOSITE, nSubType == DIAGONALTOPLEFTOPPOSITE,
...@@ -178,7 +178,7 @@ namespace slideshow ...@@ -178,7 +178,7 @@ namespace slideshow
return ParametricPolyPolygonSharedPtr( return ParametricPolyPolygonSharedPtr(
new SpiralWipe( new SpiralWipe(
// elements: // elements:
64 * 64, 8 * 8,
// flipOnYAxis: // flipOnYAxis:
nSubType == TOPLEFTCOUNTERCLOCKWISE || nSubType == TOPLEFTCOUNTERCLOCKWISE ||
nSubType == TOPRIGHTCOUNTERCLOCKWISE || nSubType == TOPRIGHTCOUNTERCLOCKWISE ||
...@@ -188,7 +188,7 @@ namespace slideshow ...@@ -188,7 +188,7 @@ namespace slideshow
return ParametricPolyPolygonSharedPtr( return ParametricPolyPolygonSharedPtr(
new BoxSnakesWipe( new BoxSnakesWipe(
// elements: // elements:
64 * 64, 8 * 8,
// fourBox: // fourBox:
nSubType == FOURBOXVERTICAL || nSubType == FOURBOXVERTICAL ||
nSubType == FOURBOXHORIZONTAL ) ); nSubType == FOURBOXHORIZONTAL ) );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment