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
return ParametricPolyPolygonSharedPtr(
new SnakeWipe(
// elements:
64 * 64,
8 * 8,
// diagonal:
nSubType == TOPLEFTDIAGONAL ||
nSubType == TOPRIGHTDIAGONAL ||
......@@ -164,7 +164,7 @@ namespace slideshow
return ParametricPolyPolygonSharedPtr(
new ParallelSnakesWipe(
// elements:
64 * 64,
8 * 8,
// diagonal:
nSubType == DIAGONALBOTTOMLEFTOPPOSITE ||
nSubType == DIAGONALTOPLEFTOPPOSITE,
......@@ -184,7 +184,7 @@ namespace slideshow
return ParametricPolyPolygonSharedPtr(
new SpiralWipe(
// elements:
64 * 64,
8 * 8,
// flipOnYAxis:
nSubType == TOPLEFTCOUNTERCLOCKWISE ||
nSubType == TOPRIGHTCOUNTERCLOCKWISE ||
......@@ -194,7 +194,7 @@ namespace slideshow
return ParametricPolyPolygonSharedPtr(
new BoxSnakesWipe(
// elements:
64 * 64,
8 * 8,
// fourBox:
nSubType == FOURBOXVERTICAL ||
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