summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorOwen Lin <owenlin@google.com>2012-04-24 14:08:44 +0800
committerOwen Lin <owenlin@google.com>2012-05-02 16:28:37 +0800
commit023eb0887e122a41315066dbebb8c89360b98810 (patch)
tree56a70a56bafb60c4d50943a392ce8849f189cdb7 /tests
parentad08811a71e246d45ecdf97402f08cf7bd68e83b (diff)
downloadandroid_packages_apps_Snap-023eb0887e122a41315066dbebb8c89360b98810.tar.gz
android_packages_apps_Snap-023eb0887e122a41315066dbebb8c89360b98810.tar.bz2
android_packages_apps_Snap-023eb0887e122a41315066dbebb8c89360b98810.zip
Add support to draw on texture.
Change-Id: I95dd5d29352692b702503969e1ebe07bc91a8a73
Diffstat (limited to 'tests')
-rw-r--r--tests/src/com/android/gallery3d/ui/GLCanvasStub.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/src/com/android/gallery3d/ui/GLCanvasStub.java b/tests/src/com/android/gallery3d/ui/GLCanvasStub.java
index ee43cb943..5f749d8fc 100644
--- a/tests/src/com/android/gallery3d/ui/GLCanvasStub.java
+++ b/tests/src/com/android/gallery3d/ui/GLCanvasStub.java
@@ -80,4 +80,6 @@ public class GLCanvasStub implements GLCanvas {
public void deleteRecycledResources() {}
public void multiplyMatrix(float[] mMatrix, int offset) {}
public void dumpStatisticsAndClear() {}
+ public void beginRenderTarget(RawTexture texture) {}
+ public void endRenderTarget() {}
}