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
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 ) );
......
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