Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0edb02f9 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 8323531 from 4fc77b01 to tm-d1-release

Change-Id: I4e26d45a40a4927b7d408819bf413a15c391b5ac
parents e3da439d 4fc77b01
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -35,5 +35,5 @@ package android.hardware.camera.common;
@Backing(type="long") @VintfStability
enum TagBoundaryId {
  AOSP = 0,
  VENDOR = -2147483648,
  VENDOR = 2147483648,
}
+1 −1
Original line number Diff line number Diff line
@@ -20,5 +20,5 @@ package android.hardware.camera.common;
@Backing(type="long")
enum TagBoundaryId {
    AOSP = 0x0,
    VENDOR = 0x80000000,
    VENDOR = 0x80000000L,
}
+1 −0
Original line number Diff line number Diff line
@@ -39,4 +39,5 @@ enum Capability {
  SKIP_CLIENT_COLOR_TRANSFORM = 2,
  PRESENT_FENCE_IS_NOT_RELIABLE = 3,
  SKIP_VALIDATE = 4,
  BOOT_DISPLAY_CONFIG = 5,
}
+9 −0
Original line number Diff line number Diff line
@@ -57,4 +57,13 @@ enum Capability {
     * validateDisplay step is needed.
     */
    SKIP_VALIDATE = 4,

    /**
     * Specifies that the device supports setting a display configuration that
     * the device should boot at.
     * @see IComposerClient.setBootDisplayConfig
     * @see IComposerClient.clearBootDisplayConfig
     * @see IComposerClient.getPreferredBootDisplayConfig
     */
    BOOT_DISPLAY_CONFIG = 5,
}
+3 −0
Original line number Diff line number Diff line
@@ -590,6 +590,7 @@ interface IComposerClient {
     *
     * @exception EX_BAD_DISPLAY when an invalid display handle was passed in.
     * @exception EX_BAD_CONFIG when an invalid config id was passed in.
     * @exception EX_UNSUPPORTED when not supported by the underlying HAL
     *
     * @see getDisplayConfigs
     * @see clearBootDisplayConfig
@@ -605,6 +606,7 @@ interface IComposerClient {
     * @param display is the display for which the cached boot config is cleared.
     *
     * @exception EX_BAD_DISPLAY when an invalid display handle was passed in.
     * @exception EX_UNSUPPORTED when not supported by the underlying HAL
     *
     * @see getDisplayConfigs
     * @see setBootDisplayConfig
@@ -622,6 +624,7 @@ interface IComposerClient {
     * @return the implementation's preferred display config.
     *
     * @exception EX_BAD_DISPLAY when an invalid display handle was passed in.
     * @exception EX_UNSUPPORTED when not supported by the underlying HAL
     *
     * @see getDisplayConfigs
     * @see setBootDisplayConfig
Loading