commit | db4cedf1feb3899840963b2648dc3e2b4d0a1d6f | [log] [tgz] |
---|---|---|
author | nicolasroard <nicolasroard@google.com> | Tue Feb 26 08:53:29 2013 -0800 |
committer | nicolasroard <nicolasroard@google.com> | Tue Feb 26 08:53:29 2013 -0800 |
tree | 177aabcc5d805aee3d829b36bfd352d68bea6c0e | |
parent | a3a4c954c6917375a852d3f3c64d0c76693b5677 [diff] |
Disable full res when dealing with jpeg orientation Change-Id: Ie29f25addcb66a6c8a2effa2bfbf89155ce6465a
diff --git a/src/com/android/gallery3d/filtershow/presets/ImagePreset.java b/src/com/android/gallery3d/filtershow/presets/ImagePreset.java index 15fa8ca..1400fd4 100644 --- a/src/com/android/gallery3d/filtershow/presets/ImagePreset.java +++ b/src/com/android/gallery3d/filtershow/presets/ImagePreset.java
@@ -430,6 +430,9 @@ if (mBorder != null && !mBorder.supportsPartialRendering()) { return false; } + if (ImageLoader.getZoomOrientation() != 0) { + return false; + } for (int i = 0; i < mFilters.size(); i++) { FilterRepresentation representation = null; synchronized (mFilters) {