summaryrefslogtreecommitdiffstats
path: root/src_pd
diff options
context:
space:
mode:
authorRuben Brunk <rubenbrunk@google.com>2013-07-18 16:37:30 -0700
committerRuben Brunk <rubenbrunk@google.com>2013-08-01 09:46:44 -0700
commitb0f7a8f7f7d95ae12e92f529fd9a8a37f75b105c (patch)
tree1033ee02b2d8f873f3ae1b00eddcc0f1c7219921 /src_pd
parent8f442fae60e0154867d2a6927eb9a35bcb7014e6 (diff)
downloadandroid_packages_apps_Gallery2-b0f7a8f7f7d95ae12e92f529fd9a8a37f75b105c.tar.gz
android_packages_apps_Gallery2-b0f7a8f7f7d95ae12e92f529fd9a8a37f75b105c.tar.bz2
android_packages_apps_Gallery2-b0f7a8f7f7d95ae12e92f529fd9a8a37f75b105c.zip
Refactoring Geometry handling.
Bug: 9170644 Bug: 9366654 Bug: 9366263 - Consolidates all the geometry transforms in GeometryMathUtils and significantly reduces complexity. - Removes GeometryMetadata object and dependent code. - Removes ImageGeometry and geometry update callbacks. Change-Id: I59add51907459593244c9ebaadef585efc7486d5
Diffstat (limited to 'src_pd')
-rw-r--r--src_pd/com/android/gallery3d/filtershow/editors/EditorManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src_pd/com/android/gallery3d/filtershow/editors/EditorManager.java b/src_pd/com/android/gallery3d/filtershow/editors/EditorManager.java
index ab85110fe..8ea21ad26 100644
--- a/src_pd/com/android/gallery3d/filtershow/editors/EditorManager.java
+++ b/src_pd/com/android/gallery3d/filtershow/editors/EditorManager.java
@@ -30,7 +30,7 @@ public class EditorManager {
editorPlaceHolder.addEditor(new EditorTinyPlanet());
editorPlaceHolder.addEditor(new EditorDraw());
editorPlaceHolder.addEditor(new EditorVignette());
- editorPlaceHolder.addEditor(new EditorFlip());
+ editorPlaceHolder.addEditor(new EditorMirror());
editorPlaceHolder.addEditor(new EditorRotate());
editorPlaceHolder.addEditor(new EditorStraighten());
editorPlaceHolder.addEditor(new EditorCrop());