Merge change 8883 into donut
* changes: fix [1973755] Surface.SURACE_FROZEN spelled SURACE_FROZEN
This commit is contained in:
@@ -141796,7 +141796,7 @@
|
||||
value="2"
|
||||
static="true"
|
||||
final="true"
|
||||
deprecated="not deprecated"
|
||||
deprecated="deprecated"
|
||||
visibility="public"
|
||||
>
|
||||
</field>
|
||||
@@ -141822,6 +141822,17 @@
|
||||
visibility="public"
|
||||
>
|
||||
</field>
|
||||
<field name="SURFACE_FROZEN"
|
||||
type="int"
|
||||
transient="false"
|
||||
volatile="false"
|
||||
value="2"
|
||||
static="true"
|
||||
final="true"
|
||||
deprecated="not deprecated"
|
||||
visibility="public"
|
||||
>
|
||||
</field>
|
||||
<field name="SURFACE_HIDDEN"
|
||||
type="int"
|
||||
transient="false"
|
||||
|
||||
@@ -107,8 +107,14 @@ public class Surface implements Parcelable {
|
||||
public static final int SURFACE_HIDDEN = 0x01;
|
||||
|
||||
/** Freeze the surface. Equivalent to calling freeze() */
|
||||
public static final int SURFACE_FROZEN = 0x02;
|
||||
|
||||
/**
|
||||
* @deprecated use {@link #SURFACE_FROZEN} instead.
|
||||
*/
|
||||
@Deprecated
|
||||
public static final int SURACE_FROZEN = 0x02;
|
||||
|
||||
|
||||
/** Enable dithering when compositing this surface */
|
||||
public static final int SURFACE_DITHER = 0x04;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user