summaryrefslogtreecommitdiff
path: root/core/java/android/view/SurfaceControl.java
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2013-03-05 14:14:55 -0800
committerMathias Agopian <mathias@google.com>2013-03-05 14:14:55 -0800
commit11e7d88d1441c20605d7f06ab31ef2c81590d5c4 (patch)
treee8020fad8e0ab2a482f1e093d1aac58e89538436 /core/java/android/view/SurfaceControl.java
parent188f8c5e4b266429b07b4381d58d33b1e771be48 (diff)
remove suppor for SurfaceControl.FX_SURFACE_SCREENSHOT
the window manager can now use the SurfaceControl.screenshot API with a "regular" surface. Change-Id: I76bed81d5e7b078ea1b3e8f96814aba32e9d5405
Diffstat (limited to 'core/java/android/view/SurfaceControl.java')
-rw-r--r--core/java/android/view/SurfaceControl.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/core/java/android/view/SurfaceControl.java b/core/java/android/view/SurfaceControl.java
index a213b2f84302..df07dcd1e016 100644
--- a/core/java/android/view/SurfaceControl.java
+++ b/core/java/android/view/SurfaceControl.java
@@ -159,17 +159,6 @@ public class SurfaceControl {
public static final int FX_SURFACE_NORMAL = 0x00000000;
/**
- * Surface creation flag: Creates a Blur surface.
- * Everything behind this surface is blurred by some amount.
- * The quality and refresh speed of the blur effect is not settable or guaranteed.
- * It is an error to lock a Blur surface, since it doesn't have a backing store.
- *
- * @deprecated
- */
- @Deprecated
- public static final int FX_SURFACE_BLUR = 0x00010000;
-
- /**
* Surface creation flag: Creates a Dim surface.
* Everything behind this surface is dimmed by the amount specified
* in {@link #setAlpha}. It is an error to lock a Dim surface, since it
@@ -179,11 +168,6 @@ public class SurfaceControl {
public static final int FX_SURFACE_DIM = 0x00020000;
/**
- *
- */
- public static final int FX_SURFACE_SCREENSHOT = 0x00030000;
-
- /**
* Mask used for FX values above.
*
*/