summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/anim
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2012-12-11 14:42:27 -0800
committerJohn Reck <jreck@google.com>2012-12-11 14:58:14 -0800
commita4eae1abb4f2547dfbda84301ee764ce35464881 (patch)
tree4039caad8f851842bde06562912bf041617c854d /src/com/android/gallery3d/anim
parente27ae6ec69bfbdb78caf8c29a40140eae4f20e29 (diff)
downloadandroid_packages_apps_Gallery2-a4eae1abb4f2547dfbda84301ee764ce35464881.tar.gz
android_packages_apps_Gallery2-a4eae1abb4f2547dfbda84301ee764ce35464881.tar.bz2
android_packages_apps_Gallery2-a4eae1abb4f2547dfbda84301ee764ce35464881.zip
GL packaging refactor
Change-Id: I1d7a95c4f0b91a5ba59030d57cf6865c11b497aa
Diffstat (limited to 'src/com/android/gallery3d/anim')
-rw-r--r--src/com/android/gallery3d/anim/AlphaAnimation.java2
-rw-r--r--src/com/android/gallery3d/anim/CanvasAnimation.java2
-rw-r--r--src/com/android/gallery3d/anim/StateTransitionAnimation.java4
3 files changed, 4 insertions, 4 deletions
diff --git a/src/com/android/gallery3d/anim/AlphaAnimation.java b/src/com/android/gallery3d/anim/AlphaAnimation.java
index cb17527b8..f9f4cbd2c 100644
--- a/src/com/android/gallery3d/anim/AlphaAnimation.java
+++ b/src/com/android/gallery3d/anim/AlphaAnimation.java
@@ -17,7 +17,7 @@
package com.android.gallery3d.anim;
import com.android.gallery3d.common.Utils;
-import com.android.gallery3d.ui.GLCanvas;
+import com.android.gallery3d.glrenderer.GLCanvas;
public class AlphaAnimation extends CanvasAnimation {
private final float mStartAlpha;
diff --git a/src/com/android/gallery3d/anim/CanvasAnimation.java b/src/com/android/gallery3d/anim/CanvasAnimation.java
index 4c8bcc825..cdc66c6ba 100644
--- a/src/com/android/gallery3d/anim/CanvasAnimation.java
+++ b/src/com/android/gallery3d/anim/CanvasAnimation.java
@@ -16,7 +16,7 @@
package com.android.gallery3d.anim;
-import com.android.gallery3d.ui.GLCanvas;
+import com.android.gallery3d.glrenderer.GLCanvas;
public abstract class CanvasAnimation extends Animation {
diff --git a/src/com/android/gallery3d/anim/StateTransitionAnimation.java b/src/com/android/gallery3d/anim/StateTransitionAnimation.java
index cf04d2cc8..bf8a54405 100644
--- a/src/com/android/gallery3d/anim/StateTransitionAnimation.java
+++ b/src/com/android/gallery3d/anim/StateTransitionAnimation.java
@@ -20,9 +20,9 @@ import android.view.animation.AccelerateInterpolator;
import android.view.animation.DecelerateInterpolator;
import android.view.animation.Interpolator;
-import com.android.gallery3d.ui.GLCanvas;
+import com.android.gallery3d.glrenderer.GLCanvas;
+import com.android.gallery3d.glrenderer.RawTexture;
import com.android.gallery3d.ui.GLView;
-import com.android.gallery3d.ui.RawTexture;
import com.android.gallery3d.ui.TiledScreenNail;
public class StateTransitionAnimation extends Animation {