am db0f3e82: Merge "Allow "opaque" flag to be updated. DO NOT MERGE" into klp-modular-dev

* commit 'db0f3e825fb4da01f887c41a877708734b0899e3':
  Allow "opaque" flag to be updated. DO NOT MERGE
This commit is contained in:
Craig Mautner
2014-02-18 23:59:42 +00:00
committed by Android Git Automerger

View File

@@ -103,18 +103,18 @@ public class SurfaceControl {
* surfaces are pre-multiplied, which means that each color component is * surfaces are pre-multiplied, which means that each color component is
* already multiplied by its alpha value. In this case the blending * already multiplied by its alpha value. In this case the blending
* equation used is: * equation used is:
* * <p>
* DEST = SRC + DEST * (1-SRC_ALPHA) * <code>DEST = SRC + DEST * (1-SRC_ALPHA)</code>
* * <p>
* By contrast, non pre-multiplied surfaces use the following equation: * By contrast, non pre-multiplied surfaces use the following equation:
* * <p>
* DEST = SRC * SRC_ALPHA * DEST * (1-SRC_ALPHA) * <code>DEST = SRC * SRC_ALPHA * DEST * (1-SRC_ALPHA)</code>
* * <p>
* pre-multiplied surfaces must always be used if transparent pixels are * pre-multiplied surfaces must always be used if transparent pixels are
* composited on top of each-other into the surface. A pre-multiplied * composited on top of each-other into the surface. A pre-multiplied
* surface can never lower the value of the alpha component of a given * surface can never lower the value of the alpha component of a given
* pixel. * pixel.
* * <p>
* In some rare situations, a non pre-multiplied surface is preferable. * In some rare situations, a non pre-multiplied surface is preferable.
* *
*/ */
@@ -125,7 +125,17 @@ public class SurfaceControl {
* even if its pixel format is set to translucent. This can be useful if an * even if its pixel format is set to translucent. This can be useful if an
* application needs full RGBA 8888 support for instance but will * application needs full RGBA 8888 support for instance but will
* still draw every pixel opaque. * still draw every pixel opaque.
* * <p>
* This flag is ignored if setAlpha() is used to make the surface non-opaque.
* Combined effects are (assuming a buffer format with an alpha channel):
* <ul>
* <li>OPAQUE + alpha(1.0) == opaque composition
* <li>OPAQUE + alpha(0.x) == blended composition
* <li>!OPAQUE + alpha(1.0) == blended composition
* <li>!OPAQUE + alpha(0.x) == blended composition
* </ul>
* If the underlying buffer lacks an alpha channel, the OPAQUE flag is effectively
* set automatically.
*/ */
public static final int OPAQUE = 0x00000400; public static final int OPAQUE = 0x00000400;
@@ -166,9 +176,16 @@ public class SurfaceControl {
/** /**
* Surface flag: Hide the surface. * Surface flag: Hide the surface.
* Equivalent to calling hide(). * Equivalent to calling hide().
* Updates the value set during Surface creation (see {@link #HIDDEN}).
*/ */
public static final int SURFACE_HIDDEN = 0x01; public static final int SURFACE_HIDDEN = 0x01;
/**
* Surface flag: composite without blending when possible.
* Updates the value set during Surface creation (see {@link #OPAQUE}).
*/
public static final int SURFACE_OPAQUE = 0x02;
/* built-in physical display ids (keep in sync with ISurfaceComposer.h) /* built-in physical display ids (keep in sync with ISurfaceComposer.h)
* these are different from the logical display ids used elsewhere in the framework */ * these are different from the logical display ids used elsewhere in the framework */
@@ -189,14 +206,14 @@ public class SurfaceControl {
/** /**
* Create a surface with a name. * Create a surface with a name.
* * <p>
* The surface creation flags specify what kind of surface to create and * The surface creation flags specify what kind of surface to create and
* certain options such as whether the surface can be assumed to be opaque * certain options such as whether the surface can be assumed to be opaque
* and whether it should be initially hidden. Surfaces should always be * and whether it should be initially hidden. Surfaces should always be
* created with the {@link #HIDDEN} flag set to ensure that they are not * created with the {@link #HIDDEN} flag set to ensure that they are not
* made visible prematurely before all of the surface's properties have been * made visible prematurely before all of the surface's properties have been
* configured. * configured.
* * <p>
* Good practice is to first create the surface with the {@link #HIDDEN} flag * Good practice is to first create the surface with the {@link #HIDDEN} flag
* specified, open a transaction, set the surface layer, layer stack, alpha, * specified, open a transaction, set the surface layer, layer stack, alpha,
* and position, call {@link #show} if appropriate, and close the transaction. * and position, call {@link #show} if appropriate, and close the transaction.
@@ -339,6 +356,10 @@ public class SurfaceControl {
nativeSetTransparentRegionHint(mNativeObject, region); nativeSetTransparentRegionHint(mNativeObject, region);
} }
/**
* Sets an alpha value for the entire Surface. This value is combined with the
* per-pixel alpha. It may be used with opaque Surfaces.
*/
public void setAlpha(float alpha) { public void setAlpha(float alpha) {
checkNotReleased(); checkNotReleased();
nativeSetAlpha(mNativeObject, alpha); nativeSetAlpha(mNativeObject, alpha);
@@ -349,6 +370,13 @@ public class SurfaceControl {
nativeSetMatrix(mNativeObject, dsdx, dtdx, dsdy, dtdy); nativeSetMatrix(mNativeObject, dsdx, dtdx, dsdy, dtdy);
} }
/**
* Sets and clears flags, such as {@link #SURFACE_HIDDEN}. The new value will be:
* <p>
* <code>newFlags = (oldFlags & ~mask) | (flags & mask)</code>
* <p>
* Note this does not take the same set of flags as the constructor.
*/
public void setFlags(int flags, int mask) { public void setFlags(int flags, int mask) {
checkNotReleased(); checkNotReleased();
nativeSetFlags(mNativeObject, flags, mask); nativeSetFlags(mNativeObject, flags, mask);
@@ -369,6 +397,19 @@ public class SurfaceControl {
nativeSetLayerStack(mNativeObject, layerStack); nativeSetLayerStack(mNativeObject, layerStack);
} }
/**
* Sets the opacity of the surface. Setting the flag is equivalent to creating the
* Surface with the {@link #OPAQUE} flag.
*/
public void setOpaque(boolean isOpaque) {
checkNotReleased();
if (isOpaque) {
nativeSetFlags(mNativeObject, SURFACE_OPAQUE, SURFACE_OPAQUE);
} else {
nativeSetFlags(mNativeObject, 0, SURFACE_OPAQUE);
}
}
/* /*
* set display parameters. * set display parameters.
* needs to be inside open/closeTransaction block * needs to be inside open/closeTransaction block