diff options
Diffstat (limited to 'graphics/java/android/graphics/drawable/Drawable.java')
-rw-r--r-- | graphics/java/android/graphics/drawable/Drawable.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/graphics/java/android/graphics/drawable/Drawable.java b/graphics/java/android/graphics/drawable/Drawable.java index e1f726320839..caf610b8c236 100644 --- a/graphics/java/android/graphics/drawable/Drawable.java +++ b/graphics/java/android/graphics/drawable/Drawable.java @@ -934,11 +934,13 @@ public abstract class Drawable { * do account for the value of {@link #setAlpha}, but the general behavior is dependent * upon the implementation of the subclass. * + * @deprecated This method is no longer used in graphics optimizations + * * @return int The opacity class of the Drawable. * * @see android.graphics.PixelFormat */ - public abstract @PixelFormat.Opacity int getOpacity(); + @Deprecated public abstract @PixelFormat.Opacity int getOpacity(); /** * Return the appropriate opacity value for two source opacities. If |