summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/ui/GLCanvas.java
diff options
context:
space:
mode:
authorBart Sears <bsears@google.com>2012-10-06 11:19:14 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-10-06 11:49:39 -0700
commit82da69ff867e4e19f0adb970933a42eb65d973ed (patch)
tree071d6e8448077adabd413c29091f67caefb66474 /src/com/android/gallery3d/ui/GLCanvas.java
parent3da91380c6c8f701a9632a8da53ee551fa62063a (diff)
downloadandroid_packages_apps_Snap-82da69ff867e4e19f0adb970933a42eb65d973ed.tar.gz
android_packages_apps_Snap-82da69ff867e4e19f0adb970933a42eb65d973ed.tar.bz2
android_packages_apps_Snap-82da69ff867e4e19f0adb970933a42eb65d973ed.zip
Revert "Upload screennails in tiles to prevent jank"
This CL is reported to cause images to not be displayed correctly when opened via the view intent. Bug: 7299123 This reverts commit e29fc4a51b99f12f7fae13fae272858df2e1af36 Change-Id: I5052548a826c275cb4559eeb4721c19f06861b3d
Diffstat (limited to 'src/com/android/gallery3d/ui/GLCanvas.java')
-rw-r--r--src/com/android/gallery3d/ui/GLCanvas.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/com/android/gallery3d/ui/GLCanvas.java b/src/com/android/gallery3d/ui/GLCanvas.java
index 6f8baef7e..e3a32ef08 100644
--- a/src/com/android/gallery3d/ui/GLCanvas.java
+++ b/src/com/android/gallery3d/ui/GLCanvas.java
@@ -99,13 +99,6 @@ public interface GLCanvas {
public void drawMixed(BasicTexture from, int toColor,
float ratio, int x, int y, int w, int h);
- // Draw a region of a texture and a specified color to the specified
- // rectangle. The actual color used is from * (1 - ratio) + to * ratio.
- // The region of the texture is defined by parameter "src". The target
- // rectangle is specified by parameter "target".
- public void drawMixed(BasicTexture from, int toColor,
- float ratio, RectF src, RectF target);
-
// Gets the underlying GL instance. This is used only when direct access to
// GL is needed.
public GL11 getGLInstance();