Kaydet (Commit) 2de9df3b authored tarafından Andre Fischer's avatar Andre Fischer

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

Patch by: Wang Zhe
Review by: Andre Fischer
üst 031a806b
...@@ -149,7 +149,7 @@ namespace slideshow ...@@ -149,7 +149,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 ||
...@@ -164,7 +164,7 @@ namespace slideshow ...@@ -164,7 +164,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,
...@@ -184,7 +184,7 @@ namespace slideshow ...@@ -184,7 +184,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 ||
...@@ -194,7 +194,7 @@ namespace slideshow ...@@ -194,7 +194,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