Disable transitions for the Android SampleApp.
authordjsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Wed, 10 Oct 2012 18:29:31 +0000 (18:29 +0000)
committerdjsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Wed, 10 Oct 2012 18:29:31 +0000 (18:29 +0000)
Review URL: https://codereview.appspot.com/6642063

git-svn-id: http://skia.googlecode.com/svn/trunk@5887 2bbb7eff-a529-9590-31e7-b0007b416f81

samplecode/TransitionView.cpp

index e755288..4f15bd3 100644 (file)
@@ -189,5 +189,10 @@ private:
 };
 
 SkView* create_transition(SkView* prev, SkView* next, int direction) {
+#ifdef SK_BUILD_FOR_ANDROID
+       // Disable transitions for Android
+       return next;
+#else
     return SkNEW_ARGS(TransitionView, (prev, next, direction));
+#endif
 }