summaryrefslogtreecommitdiffstats
path: root/core/java/android/view/Surface.java
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2011-09-21 21:09:10 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-09-21 21:09:10 -0700
commita829e16681903e6a41901145195f88bf9d952f88 (patch)
tree90f699d2b69269fa00fff654f92ddb3f0a7d64f7 /core/java/android/view/Surface.java
parentdf8e00ff335be747ec3b99038734d2c6bec6499f (diff)
parent01a98ddbdfbaf1f0d2bc602537e6e314364902a3 (diff)
downloadframeworks_base-a829e16681903e6a41901145195f88bf9d952f88.zip
frameworks_base-a829e16681903e6a41901145195f88bf9d952f88.tar.gz
frameworks_base-a829e16681903e6a41901145195f88bf9d952f88.tar.bz2
Merge "Handle orientation changes more systematically. Bug: 4981385"
Diffstat (limited to 'core/java/android/view/Surface.java')
-rw-r--r--core/java/android/view/Surface.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/core/java/android/view/Surface.java b/core/java/android/view/Surface.java
index 3880bc4..64d3d31 100644
--- a/core/java/android/view/Surface.java
+++ b/core/java/android/view/Surface.java
@@ -207,9 +207,6 @@ public class Surface implements Parcelable {
/** Enable dithering when compositing this surface @hide */
public static final int SURFACE_DITHER = 0x04;
-
- /** Disable the orientation animation @hide */
- public static final int FLAGS_ORIENTATION_ANIMATION_DISABLE = 0x000000001;
// The mSurfaceControl will only be present for Surfaces used by the window
// server or system processes. When this class is parceled we defer to the
@@ -393,7 +390,7 @@ public class Surface implements Parcelable {
* set the orientation of the given display.
* @param display
* @param orientation
- * @param flags
+ * @param flags Currently unused, set to 0.
* @hide
*/
public static native void setOrientation(int display, int orientation, int flags);