diff options
Diffstat (limited to 'core/java/android/view/Surface.java')
-rw-r--r-- | core/java/android/view/Surface.java | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/core/java/android/view/Surface.java b/core/java/android/view/Surface.java index c4bf642..9ec1013 100644 --- a/core/java/android/view/Surface.java +++ b/core/java/android/view/Surface.java @@ -34,12 +34,18 @@ public class Surface implements Parcelable { /** Surface is created hidden */ public static final int HIDDEN = 0x00000004; - /** The surface is to be used by hardware accelerators or DMA engines */ + /** The surface is to be used by hardware accelerators or DMA engines + * @deprecated this is ignored, this value is set automatically when needed. + */ + @Deprecated public static final int HARDWARE = 0x00000010; /** Implies "HARDWARE", the surface is to be used by the GPU * additionally the backbuffer is never preserved for these - * surfaces. */ + * surfaces. + * @deprecated this is ignored, this value is set automatically when needed. + */ + @Deprecated public static final int GPU = 0x00000028; /** The surface contains secure content, special measures will |