Wire up AIDL LiveDisplay HAL

Change-Id: Ibfd8bf0ebba4171fd6ed619894ca6c0b75a0e50f
This commit is contained in:
LuK1337
2025-08-14 23:44:11 +02:00
parent e3790a355b
commit ff4852071d
3 changed files with 314 additions and 60 deletions

View File

@@ -89,6 +89,7 @@ java_defaults {
static_libs: [
"vendor.lineage.health-V2-java",
"vendor.lineage.livedisplay-V1-java",
"vendor.lineage.livedisplay-V2.0-java",
"vendor.lineage.livedisplay-V2.1-java",
"vendor.lineage.touch-V1-java",

View File

@@ -5,9 +5,48 @@
package lineageos.hardware;
import android.util.Range;
import java.util.ArrayList;
class AIDLHelper {
static DisplayMode[] fromAIDLModes(vendor.lineage.livedisplay.DisplayMode[] modes) {
int size = modes.length;
DisplayMode[] r = new DisplayMode[size];
for (int i = 0; i < size; i++) {
vendor.lineage.livedisplay.DisplayMode m = modes[i];
r[i] = new DisplayMode(m.id, m.name);
}
return r;
}
static DisplayMode fromAIDLMode(vendor.lineage.livedisplay.DisplayMode mode) {
return new DisplayMode(mode.id, mode.name);
}
static HSIC fromAIDLHSIC(vendor.lineage.livedisplay.HSIC hsic) {
return new HSIC(hsic.hue, hsic.saturation, hsic.intensity,
hsic.contrast, hsic.saturationThreshold);
}
static vendor.lineage.livedisplay.HSIC toAIDLHSIC(HSIC hsic) {
vendor.lineage.livedisplay.HSIC h = new vendor.lineage.livedisplay.HSIC();
h.hue = hsic.getHue();
h.saturation = hsic.getSaturation();
h.intensity = hsic.getIntensity();
h.contrast = hsic.getContrast();
h.saturationThreshold = hsic.getSaturationThreshold();
return h;
}
static Range<Integer> fromAIDLRange(vendor.lineage.livedisplay.Range range) {
return new Range(range.min, range.max);
}
static Range<Float> fromAIDLRange(vendor.lineage.livedisplay.FloatRange range) {
return new Range(range.min, range.max);
}
static TouchscreenGesture[] fromAIDLGestures(
vendor.lineage.touch.Gesture[] gestures) {
int size = gestures.length;

View File

@@ -19,16 +19,6 @@ import com.android.internal.util.ArrayUtils;
import lineageos.app.LineageContextConstants;
import vendor.lineage.livedisplay.V2_0.IAdaptiveBacklight;
import vendor.lineage.livedisplay.V2_0.IAutoContrast;
import vendor.lineage.livedisplay.V2_0.IColorBalance;
import vendor.lineage.livedisplay.V2_0.IColorEnhancement;
import vendor.lineage.livedisplay.V2_0.IDisplayColorCalibration;
import vendor.lineage.livedisplay.V2_0.IDisplayModes;
import vendor.lineage.livedisplay.V2_0.IPictureAdjustment;
import vendor.lineage.livedisplay.V2_0.IReadingEnhancement;
import vendor.lineage.livedisplay.V2_0.ISunlightEnhancement;
import vendor.lineage.livedisplay.V2_1.IAntiFlicker;
import vendor.lineage.touch.IGloveMode;
import vendor.lineage.touch.IHighTouchPollingRate;
import vendor.lineage.touch.IKeyDisabler;
@@ -283,6 +273,27 @@ public final class LineageHardwareManager {
private IBinder getAIDLService(int feature) {
switch (feature) {
case FEATURE_ADAPTIVE_BACKLIGHT:
return ServiceManager.waitForDeclaredService(
vendor.lineage.livedisplay.IAdaptiveBacklight.DESCRIPTOR + "/default");
case FEATURE_ANTI_FLICKER:
return ServiceManager.waitForDeclaredService(
vendor.lineage.livedisplay.IAntiFlicker.DESCRIPTOR + "/default");
case FEATURE_AUTO_CONTRAST:
return ServiceManager.waitForDeclaredService(
vendor.lineage.livedisplay.IAutoContrast.DESCRIPTOR + "/default");
case FEATURE_COLOR_BALANCE:
return ServiceManager.waitForDeclaredService(
vendor.lineage.livedisplay.IColorBalance.DESCRIPTOR + "/default");
case FEATURE_COLOR_ENHANCEMENT:
return ServiceManager.waitForDeclaredService(
vendor.lineage.livedisplay.IColorEnhancement.DESCRIPTOR + "/default");
case FEATURE_DISPLAY_COLOR_CALIBRATION:
return ServiceManager.waitForDeclaredService(
vendor.lineage.livedisplay.IDisplayColorCalibration.DESCRIPTOR + "/default");
case FEATURE_DISPLAY_MODES:
return ServiceManager.waitForDeclaredService(
vendor.lineage.livedisplay.IDisplayModes.DESCRIPTOR + "/default");
case FEATURE_HIGH_TOUCH_POLLING_RATE:
return ServiceManager.waitForDeclaredService(
IHighTouchPollingRate.DESCRIPTOR + "/default");
@@ -295,6 +306,15 @@ public final class LineageHardwareManager {
case FEATURE_KEY_SWAP:
return ServiceManager.waitForDeclaredService(
IKeySwapper.DESCRIPTOR + "/default");
case FEATURE_PICTURE_ADJUSTMENT:
return ServiceManager.waitForDeclaredService(
vendor.lineage.livedisplay.IPictureAdjustment.DESCRIPTOR + "/default");
case FEATURE_READING_ENHANCEMENT:
return ServiceManager.waitForDeclaredService(
vendor.lineage.livedisplay.IReadingEnhancement.DESCRIPTOR + "/default");
case FEATURE_SUNLIGHT_ENHANCEMENT:
return ServiceManager.waitForDeclaredService(
vendor.lineage.livedisplay.ISunlightEnhancement.DESCRIPTOR + "/default");
case FEATURE_TOUCH_HOVERING:
return ServiceManager.waitForDeclaredService(
IStylusMode.DESCRIPTOR + "/default");
@@ -309,25 +329,25 @@ public final class LineageHardwareManager {
try {
switch (feature) {
case FEATURE_ADAPTIVE_BACKLIGHT:
return IAdaptiveBacklight.getService(true);
return vendor.lineage.livedisplay.V2_0.IAdaptiveBacklight.getService(true);
case FEATURE_ANTI_FLICKER:
return IAntiFlicker.getService(true);
return vendor.lineage.livedisplay.V2_1.IAntiFlicker.getService(true);
case FEATURE_AUTO_CONTRAST:
return IAutoContrast.getService(true);
return vendor.lineage.livedisplay.V2_0.IAutoContrast.getService(true);
case FEATURE_COLOR_BALANCE:
return IColorBalance.getService(true);
return vendor.lineage.livedisplay.V2_0.IColorBalance.getService(true);
case FEATURE_COLOR_ENHANCEMENT:
return IColorEnhancement.getService(true);
return vendor.lineage.livedisplay.V2_0.IColorEnhancement.getService(true);
case FEATURE_DISPLAY_COLOR_CALIBRATION:
return IDisplayColorCalibration.getService(true);
return vendor.lineage.livedisplay.V2_0.IDisplayColorCalibration.getService(true);
case FEATURE_DISPLAY_MODES:
return IDisplayModes.getService(true);
return vendor.lineage.livedisplay.V2_0.IDisplayModes.getService(true);
case FEATURE_PICTURE_ADJUSTMENT:
return IPictureAdjustment.getService(true);
return vendor.lineage.livedisplay.V2_0.IPictureAdjustment.getService(true);
case FEATURE_READING_ENHANCEMENT:
return IReadingEnhancement.getService(true);
return vendor.lineage.livedisplay.V2_0.IReadingEnhancement.getService(true);
case FEATURE_SUNLIGHT_ENHANCEMENT:
return ISunlightEnhancement.getService(true);
return vendor.lineage.livedisplay.V2_0.ISunlightEnhancement.getService(true);
}
} catch (NoSuchElementException | RemoteException e) {
}
@@ -372,6 +392,22 @@ public final class LineageHardwareManager {
if (isSupportedAIDL(feature)) {
IBinder b = mAIDLMap.get(feature);
switch (feature) {
case FEATURE_ADAPTIVE_BACKLIGHT:
vendor.lineage.livedisplay.IAdaptiveBacklight adaptiveBacklight =
vendor.lineage.livedisplay.IAdaptiveBacklight.Stub.asInterface(b);
return adaptiveBacklight.getEnabled();
case FEATURE_ANTI_FLICKER:
vendor.lineage.livedisplay.IAntiFlicker antiFlicker =
vendor.lineage.livedisplay.IAntiFlicker.Stub.asInterface(b);
return antiFlicker.getEnabled();
case FEATURE_AUTO_CONTRAST:
vendor.lineage.livedisplay.IAutoContrast autoContrast =
vendor.lineage.livedisplay.IAutoContrast.Stub.asInterface(b);
return autoContrast.getEnabled();
case FEATURE_COLOR_ENHANCEMENT:
vendor.lineage.livedisplay.IColorEnhancement colorEnhancement =
vendor.lineage.livedisplay.IColorEnhancement.Stub.asInterface(b);
return colorEnhancement.getEnabled();
case FEATURE_HIGH_TOUCH_POLLING_RATE:
return IHighTouchPollingRate.Stub.asInterface(b).getEnabled();
case FEATURE_HIGH_TOUCH_SENSITIVITY:
@@ -380,6 +416,14 @@ public final class LineageHardwareManager {
return IKeyDisabler.Stub.asInterface(b).getEnabled();
case FEATURE_KEY_SWAP:
return IKeySwapper.Stub.asInterface(b).getEnabled();
case FEATURE_READING_ENHANCEMENT:
vendor.lineage.livedisplay.IReadingEnhancement readingEnhancement =
vendor.lineage.livedisplay.IReadingEnhancement.Stub.asInterface(b);
return readingEnhancement.getEnabled();
case FEATURE_SUNLIGHT_ENHANCEMENT:
vendor.lineage.livedisplay.ISunlightEnhancement sunlightEnhancement =
vendor.lineage.livedisplay.ISunlightEnhancement.Stub.asInterface(b);
return sunlightEnhancement.getEnabled();
case FEATURE_TOUCH_HOVERING:
return IStylusMode.Stub.asInterface(b).getEnabled();
}
@@ -387,22 +431,28 @@ public final class LineageHardwareManager {
IBase obj = mHIDLMap.get(feature);
switch (feature) {
case FEATURE_ADAPTIVE_BACKLIGHT:
IAdaptiveBacklight adaptiveBacklight = (IAdaptiveBacklight) obj;
vendor.lineage.livedisplay.V2_0.IAdaptiveBacklight adaptiveBacklight =
(vendor.lineage.livedisplay.V2_0.IAdaptiveBacklight) obj;
return adaptiveBacklight.isEnabled();
case FEATURE_ANTI_FLICKER:
IAntiFlicker antiFlicker = (IAntiFlicker) obj;
vendor.lineage.livedisplay.V2_1.IAntiFlicker antiFlicker =
(vendor.lineage.livedisplay.V2_1.IAntiFlicker) obj;
return antiFlicker.isEnabled();
case FEATURE_AUTO_CONTRAST:
IAutoContrast autoContrast = (IAutoContrast) obj;
vendor.lineage.livedisplay.V2_0.IAutoContrast autoContrast =
(vendor.lineage.livedisplay.V2_0.IAutoContrast) obj;
return autoContrast.isEnabled();
case FEATURE_COLOR_ENHANCEMENT:
IColorEnhancement colorEnhancement = (IColorEnhancement) obj;
vendor.lineage.livedisplay.V2_0.IColorEnhancement colorEnhancement =
(vendor.lineage.livedisplay.V2_0.IColorEnhancement) obj;
return colorEnhancement.isEnabled();
case FEATURE_SUNLIGHT_ENHANCEMENT:
ISunlightEnhancement sunlightEnhancement = (ISunlightEnhancement) obj;
vendor.lineage.livedisplay.V2_0.ISunlightEnhancement sunlightEnhancement =
(vendor.lineage.livedisplay.V2_0.ISunlightEnhancement) obj;
return sunlightEnhancement.isEnabled();
case FEATURE_READING_ENHANCEMENT:
IReadingEnhancement readingEnhancement = (IReadingEnhancement) obj;
vendor.lineage.livedisplay.V2_0.IReadingEnhancement readingEnhancement =
(vendor.lineage.livedisplay.V2_0.IReadingEnhancement) obj;
return readingEnhancement.isEnabled();
}
} else if (checkService()) {
@@ -432,6 +482,26 @@ public final class LineageHardwareManager {
if (isSupportedAIDL(feature)) {
IBinder b = mAIDLMap.get(feature);
switch (feature) {
case FEATURE_ADAPTIVE_BACKLIGHT:
vendor.lineage.livedisplay.IAdaptiveBacklight adaptiveBacklight =
vendor.lineage.livedisplay.IAdaptiveBacklight.Stub.asInterface(b);
adaptiveBacklight.setEnabled(enable);
break;
case FEATURE_ANTI_FLICKER:
vendor.lineage.livedisplay.IAntiFlicker antiFlicker =
vendor.lineage.livedisplay.IAntiFlicker.Stub.asInterface(b);
antiFlicker.setEnabled(enable);
break;
case FEATURE_AUTO_CONTRAST:
vendor.lineage.livedisplay.IAutoContrast autoContrast =
vendor.lineage.livedisplay.IAutoContrast.Stub.asInterface(b);
autoContrast.setEnabled(enable);
break;
case FEATURE_COLOR_ENHANCEMENT:
vendor.lineage.livedisplay.IColorEnhancement colorEnhancement =
vendor.lineage.livedisplay.IColorEnhancement.Stub.asInterface(b);
colorEnhancement.setEnabled(enable);
break;
case FEATURE_HIGH_TOUCH_POLLING_RATE:
IHighTouchPollingRate.Stub.asInterface(b).setEnabled(enable);
break;
@@ -444,6 +514,16 @@ public final class LineageHardwareManager {
case FEATURE_KEY_SWAP:
IKeySwapper.Stub.asInterface(b).setEnabled(enable);
break;
case FEATURE_READING_ENHANCEMENT:
vendor.lineage.livedisplay.IReadingEnhancement readingEnhancement =
vendor.lineage.livedisplay.IReadingEnhancement.Stub.asInterface(b);
readingEnhancement.setEnabled(enable);
break;
case FEATURE_SUNLIGHT_ENHANCEMENT:
vendor.lineage.livedisplay.ISunlightEnhancement sunlightEnhancement =
vendor.lineage.livedisplay.ISunlightEnhancement.Stub.asInterface(b);
sunlightEnhancement.setEnabled(enable);
break;
case FEATURE_TOUCH_HOVERING:
IStylusMode.Stub.asInterface(b).setEnabled(enable);
break;
@@ -454,22 +534,28 @@ public final class LineageHardwareManager {
IBase obj = mHIDLMap.get(feature);
switch (feature) {
case FEATURE_ADAPTIVE_BACKLIGHT:
IAdaptiveBacklight adaptiveBacklight = (IAdaptiveBacklight) obj;
vendor.lineage.livedisplay.V2_0.IAdaptiveBacklight adaptiveBacklight =
(vendor.lineage.livedisplay.V2_0.IAdaptiveBacklight) obj;
return adaptiveBacklight.setEnabled(enable);
case FEATURE_ANTI_FLICKER:
IAntiFlicker antiFlicker = (IAntiFlicker) obj;
vendor.lineage.livedisplay.V2_1.IAntiFlicker antiFlicker =
(vendor.lineage.livedisplay.V2_1.IAntiFlicker) obj;
return antiFlicker.setEnabled(enable);
case FEATURE_AUTO_CONTRAST:
IAutoContrast autoContrast = (IAutoContrast) obj;
vendor.lineage.livedisplay.V2_0.IAutoContrast autoContrast =
(vendor.lineage.livedisplay.V2_0.IAutoContrast) obj;
return autoContrast.setEnabled(enable);
case FEATURE_COLOR_ENHANCEMENT:
IColorEnhancement colorEnhancement = (IColorEnhancement) obj;
vendor.lineage.livedisplay.V2_0.IColorEnhancement colorEnhancement =
(vendor.lineage.livedisplay.V2_0.IColorEnhancement) obj;
return colorEnhancement.setEnabled(enable);
case FEATURE_READING_ENHANCEMENT:
IReadingEnhancement readingEnhancement = (IReadingEnhancement) obj;
vendor.lineage.livedisplay.V2_0.IReadingEnhancement readingEnhancement =
(vendor.lineage.livedisplay.V2_0.IReadingEnhancement) obj;
return readingEnhancement.setEnabled(enable);
case FEATURE_SUNLIGHT_ENHANCEMENT:
ISunlightEnhancement sunlightEnhancement = (ISunlightEnhancement) obj;
vendor.lineage.livedisplay.V2_0.ISunlightEnhancement sunlightEnhancement =
(vendor.lineage.livedisplay.V2_0.ISunlightEnhancement) obj;
return sunlightEnhancement.setEnabled(enable);
}
} else if (checkService()) {
@@ -511,11 +597,19 @@ public final class LineageHardwareManager {
private int[] getDisplayColorCalibrationArray() {
try {
if (isSupportedAIDL(FEATURE_DISPLAY_COLOR_CALIBRATION)) {
vendor.lineage.livedisplay.IDisplayColorCalibration displayColorCalibration =
vendor.lineage.livedisplay.IDisplayColorCalibration.Stub.asInterface(
mAIDLMap.get(FEATURE_DISPLAY_COLOR_CALIBRATION));
return displayColorCalibration.getCalibration();
}
if (isSupportedHIDL(FEATURE_DISPLAY_COLOR_CALIBRATION)) {
IDisplayColorCalibration displayColorCalibration = (IDisplayColorCalibration)
mHIDLMap.get(FEATURE_DISPLAY_COLOR_CALIBRATION);
vendor.lineage.livedisplay.V2_0.IDisplayColorCalibration displayColorCalibration =
(vendor.lineage.livedisplay.V2_0.IDisplayColorCalibration)
mHIDLMap.get(FEATURE_DISPLAY_COLOR_CALIBRATION);
return ArrayUtils.convertToIntArray(displayColorCalibration.getCalibration());
} else if (checkService()) {
}
if (checkService()) {
return sService.getDisplayColorCalibration();
}
} catch (RemoteException e) {
@@ -538,9 +632,20 @@ public final class LineageHardwareManager {
* @return The minimum value for all colors
*/
public int getDisplayColorCalibrationMin() {
if (isSupportedAIDL(FEATURE_DISPLAY_COLOR_CALIBRATION)) {
vendor.lineage.livedisplay.IDisplayColorCalibration displayColorCalibration =
vendor.lineage.livedisplay.IDisplayColorCalibration.Stub.asInterface(
mAIDLMap.get(FEATURE_DISPLAY_COLOR_CALIBRATION));
try {
return displayColorCalibration.getMinValue();
} catch (RemoteException e) {
return 0;
}
}
if (isSupportedHIDL(FEATURE_DISPLAY_COLOR_CALIBRATION)) {
IDisplayColorCalibration displayColorCalibration = (IDisplayColorCalibration)
mHIDLMap.get(FEATURE_DISPLAY_COLOR_CALIBRATION);
vendor.lineage.livedisplay.V2_0.IDisplayColorCalibration displayColorCalibration =
(vendor.lineage.livedisplay.V2_0.IDisplayColorCalibration)
mHIDLMap.get(FEATURE_DISPLAY_COLOR_CALIBRATION);
try {
return displayColorCalibration.getMinValue();
} catch (RemoteException e) {
@@ -555,9 +660,20 @@ public final class LineageHardwareManager {
* @return The maximum value for all colors
*/
public int getDisplayColorCalibrationMax() {
if (isSupportedAIDL(FEATURE_DISPLAY_COLOR_CALIBRATION)) {
vendor.lineage.livedisplay.IDisplayColorCalibration displayColorCalibration =
vendor.lineage.livedisplay.IDisplayColorCalibration.Stub.asInterface(
mAIDLMap.get(FEATURE_DISPLAY_COLOR_CALIBRATION));
try {
return displayColorCalibration.getMaxValue();
} catch (RemoteException e) {
return 0;
}
}
if (isSupportedHIDL(FEATURE_DISPLAY_COLOR_CALIBRATION)) {
IDisplayColorCalibration displayColorCalibration = (IDisplayColorCalibration)
mHIDLMap.get(FEATURE_DISPLAY_COLOR_CALIBRATION);
vendor.lineage.livedisplay.V2_0.IDisplayColorCalibration displayColorCalibration =
(vendor.lineage.livedisplay.V2_0.IDisplayColorCalibration)
mHIDLMap.get(FEATURE_DISPLAY_COLOR_CALIBRATION);
try {
return displayColorCalibration.getMaxValue();
} catch (RemoteException e) {
@@ -579,12 +695,21 @@ public final class LineageHardwareManager {
*/
public boolean setDisplayColorCalibration(int[] rgb) {
try {
if (isSupportedAIDL(FEATURE_DISPLAY_COLOR_CALIBRATION)) {
vendor.lineage.livedisplay.IDisplayColorCalibration displayColorCalibration =
vendor.lineage.livedisplay.IDisplayColorCalibration.Stub.asInterface(
mAIDLMap.get(FEATURE_DISPLAY_COLOR_CALIBRATION));
displayColorCalibration.setCalibration(rgb);
return true;
}
if (isSupportedHIDL(FEATURE_DISPLAY_COLOR_CALIBRATION)) {
IDisplayColorCalibration displayColorCalibration = (IDisplayColorCalibration)
mHIDLMap.get(FEATURE_DISPLAY_COLOR_CALIBRATION);
vendor.lineage.livedisplay.V2_0.IDisplayColorCalibration displayColorCalibration =
(vendor.lineage.livedisplay.V2_0.IDisplayColorCalibration)
mHIDLMap.get(FEATURE_DISPLAY_COLOR_CALIBRATION);
return displayColorCalibration.setCalibration(
new ArrayList<Integer>(Arrays.asList(rgb[0], rgb[1], rgb[2])));
} else if (checkService()) {
}
if (checkService()) {
return sService.setDisplayColorCalibration(rgb);
}
} catch (RemoteException e) {
@@ -598,8 +723,15 @@ public final class LineageHardwareManager {
public DisplayMode[] getDisplayModes() {
DisplayMode[] modes = null;
try {
if (isSupportedHIDL(FEATURE_DISPLAY_MODES)) {
IDisplayModes displayModes = (IDisplayModes) mHIDLMap.get(FEATURE_DISPLAY_MODES);
if (isSupportedAIDL(FEATURE_DISPLAY_MODES)) {
vendor.lineage.livedisplay.IDisplayModes displayModes =
vendor.lineage.livedisplay.IDisplayModes.Stub.asInterface(
mAIDLMap.get(FEATURE_DISPLAY_MODES));
modes = AIDLHelper.fromAIDLModes(displayModes.getDisplayModes());
} else if (isSupportedHIDL(FEATURE_DISPLAY_MODES)) {
vendor.lineage.livedisplay.V2_0.IDisplayModes displayModes =
(vendor.lineage.livedisplay.V2_0.IDisplayModes)
mHIDLMap.get(FEATURE_DISPLAY_MODES);
modes = HIDLHelper.fromHIDLModes(displayModes.getDisplayModes());
}
} catch (RemoteException e) {
@@ -624,8 +756,15 @@ public final class LineageHardwareManager {
public DisplayMode getCurrentDisplayMode() {
DisplayMode mode = null;
try {
if (isSupportedHIDL(FEATURE_DISPLAY_MODES)) {
IDisplayModes displayModes = (IDisplayModes) mHIDLMap.get(FEATURE_DISPLAY_MODES);
if (isSupportedAIDL(FEATURE_DISPLAY_MODES)) {
vendor.lineage.livedisplay.IDisplayModes displayModes =
vendor.lineage.livedisplay.IDisplayModes.Stub.asInterface(
mAIDLMap.get(FEATURE_DISPLAY_MODES));
mode = AIDLHelper.fromAIDLMode(displayModes.getCurrentDisplayMode());
} else if (isSupportedHIDL(FEATURE_DISPLAY_MODES)) {
vendor.lineage.livedisplay.V2_0.IDisplayModes displayModes =
(vendor.lineage.livedisplay.V2_0.IDisplayModes)
mHIDLMap.get(FEATURE_DISPLAY_MODES);
mode = HIDLHelper.fromHIDLMode(displayModes.getCurrentDisplayMode());
}
} catch (RemoteException e) {
@@ -640,8 +779,15 @@ public final class LineageHardwareManager {
public DisplayMode getDefaultDisplayMode() {
DisplayMode mode = null;
try {
if (isSupportedHIDL(FEATURE_DISPLAY_MODES)) {
IDisplayModes displayModes = (IDisplayModes) mHIDLMap.get(FEATURE_DISPLAY_MODES);
if (isSupportedAIDL(FEATURE_DISPLAY_MODES)) {
vendor.lineage.livedisplay.IDisplayModes displayModes =
vendor.lineage.livedisplay.IDisplayModes.Stub.asInterface(
mAIDLMap.get(FEATURE_DISPLAY_MODES));
mode = AIDLHelper.fromAIDLMode(displayModes.getDefaultDisplayMode());
} else if (isSupportedHIDL(FEATURE_DISPLAY_MODES)) {
vendor.lineage.livedisplay.V2_0.IDisplayModes displayModes =
(vendor.lineage.livedisplay.V2_0.IDisplayModes)
mHIDLMap.get(FEATURE_DISPLAY_MODES);
mode = HIDLHelper.fromHIDLMode(displayModes.getDefaultDisplayMode());
}
} catch (RemoteException e) {
@@ -655,8 +801,17 @@ public final class LineageHardwareManager {
*/
public boolean setDisplayMode(DisplayMode mode, boolean makeDefault) {
try {
if (isSupportedAIDL(FEATURE_DISPLAY_MODES)) {
vendor.lineage.livedisplay.IDisplayModes displayModes =
vendor.lineage.livedisplay.IDisplayModes.Stub.asInterface(
mAIDLMap.get(FEATURE_DISPLAY_MODES));
displayModes.setDisplayMode(mode.id, makeDefault);
return true;
}
if (isSupportedHIDL(FEATURE_DISPLAY_MODES)) {
IDisplayModes displayModes = (IDisplayModes) mHIDLMap.get(FEATURE_DISPLAY_MODES);
vendor.lineage.livedisplay.V2_0.IDisplayModes displayModes =
(vendor.lineage.livedisplay.V2_0.IDisplayModes)
mHIDLMap.get(FEATURE_DISPLAY_MODES);
return displayModes.setDisplayMode(mode.id, makeDefault);
}
} catch (RemoteException e) {
@@ -682,8 +837,16 @@ public final class LineageHardwareManager {
*/
public Range<Integer> getColorBalanceRange() {
try {
if (isSupportedAIDL(FEATURE_COLOR_BALANCE)) {
vendor.lineage.livedisplay.IColorBalance colorBalance =
vendor.lineage.livedisplay.IColorBalance.Stub.asInterface(
mAIDLMap.get(FEATURE_COLOR_BALANCE));
return AIDLHelper.fromAIDLRange(colorBalance.getColorBalanceRange());
}
if (isSupportedHIDL(FEATURE_COLOR_BALANCE)) {
IColorBalance colorBalance = (IColorBalance) mHIDLMap.get(FEATURE_COLOR_BALANCE);
vendor.lineage.livedisplay.V2_0.IColorBalance colorBalance =
(vendor.lineage.livedisplay.V2_0.IColorBalance)
mHIDLMap.get(FEATURE_COLOR_BALANCE);
return HIDLHelper.fromHIDLRange(colorBalance.getColorBalanceRange());
}
} catch (RemoteException e) {
@@ -696,8 +859,16 @@ public final class LineageHardwareManager {
*/
public int getColorBalance() {
try {
if (isSupportedAIDL(FEATURE_COLOR_BALANCE)) {
vendor.lineage.livedisplay.IColorBalance colorBalance =
vendor.lineage.livedisplay.IColorBalance.Stub.asInterface(
mAIDLMap.get(FEATURE_COLOR_BALANCE));
return colorBalance.getColorBalance();
}
if (isSupportedHIDL(FEATURE_COLOR_BALANCE)) {
IColorBalance colorBalance = (IColorBalance) mHIDLMap.get(FEATURE_COLOR_BALANCE);
vendor.lineage.livedisplay.V2_0.IColorBalance colorBalance =
(vendor.lineage.livedisplay.V2_0.IColorBalance)
mHIDLMap.get(FEATURE_COLOR_BALANCE);
return colorBalance.getColorBalance();
}
} catch (RemoteException e) {
@@ -714,8 +885,17 @@ public final class LineageHardwareManager {
*/
public boolean setColorBalance(int value) {
try {
if (isSupportedAIDL(FEATURE_COLOR_BALANCE)) {
vendor.lineage.livedisplay.IColorBalance colorBalance =
vendor.lineage.livedisplay.IColorBalance.Stub.asInterface(
mAIDLMap.get(FEATURE_COLOR_BALANCE));
colorBalance.setColorBalance(value);
return true;
}
if (isSupportedHIDL(FEATURE_COLOR_BALANCE)) {
IColorBalance colorBalance = (IColorBalance) mHIDLMap.get(FEATURE_COLOR_BALANCE);
vendor.lineage.livedisplay.V2_0.IColorBalance colorBalance =
(vendor.lineage.livedisplay.V2_0.IColorBalance)
mHIDLMap.get(FEATURE_COLOR_BALANCE);
return colorBalance.setColorBalance(value);
}
} catch (RemoteException e) {
@@ -730,9 +910,16 @@ public final class LineageHardwareManager {
*/
public HSIC getPictureAdjustment() {
try {
if (isSupportedAIDL(FEATURE_PICTURE_ADJUSTMENT)) {
vendor.lineage.livedisplay.IPictureAdjustment pictureAdjustment =
vendor.lineage.livedisplay.IPictureAdjustment.Stub.asInterface(
mAIDLMap.get(FEATURE_PICTURE_ADJUSTMENT));
return AIDLHelper.fromAIDLHSIC(pictureAdjustment.getPictureAdjustment());
}
if (isSupportedHIDL(FEATURE_PICTURE_ADJUSTMENT)) {
IPictureAdjustment pictureAdjustment = (IPictureAdjustment)
mHIDLMap.get(FEATURE_PICTURE_ADJUSTMENT);
vendor.lineage.livedisplay.V2_0.IPictureAdjustment pictureAdjustment =
(vendor.lineage.livedisplay.V2_0.IPictureAdjustment)
mHIDLMap.get(FEATURE_PICTURE_ADJUSTMENT);
return HIDLHelper.fromHIDLHSIC(pictureAdjustment.getPictureAdjustment());
}
} catch (RemoteException e) {
@@ -747,9 +934,16 @@ public final class LineageHardwareManager {
*/
public HSIC getDefaultPictureAdjustment() {
try {
if (isSupportedAIDL(FEATURE_PICTURE_ADJUSTMENT)) {
vendor.lineage.livedisplay.IPictureAdjustment pictureAdjustment =
vendor.lineage.livedisplay.IPictureAdjustment.Stub.asInterface(
mAIDLMap.get(FEATURE_PICTURE_ADJUSTMENT));
return AIDLHelper.fromAIDLHSIC(pictureAdjustment.getDefaultPictureAdjustment());
}
if (isSupportedHIDL(FEATURE_PICTURE_ADJUSTMENT)) {
IPictureAdjustment pictureAdjustment = (IPictureAdjustment)
mHIDLMap.get(FEATURE_PICTURE_ADJUSTMENT);
vendor.lineage.livedisplay.V2_0.IPictureAdjustment pictureAdjustment =
(vendor.lineage.livedisplay.V2_0.IPictureAdjustment)
mHIDLMap.get(FEATURE_PICTURE_ADJUSTMENT);
return HIDLHelper.fromHIDLHSIC(pictureAdjustment.getDefaultPictureAdjustment());
}
} catch (RemoteException e) {
@@ -765,9 +959,17 @@ public final class LineageHardwareManager {
*/
public boolean setPictureAdjustment(final HSIC hsic) {
try {
if (isSupportedAIDL(FEATURE_PICTURE_ADJUSTMENT)) {
vendor.lineage.livedisplay.IPictureAdjustment pictureAdjustment =
vendor.lineage.livedisplay.IPictureAdjustment.Stub.asInterface(
mAIDLMap.get(FEATURE_PICTURE_ADJUSTMENT));
pictureAdjustment.setPictureAdjustment(AIDLHelper.toAIDLHSIC(hsic));
return true;
}
if (isSupportedHIDL(FEATURE_PICTURE_ADJUSTMENT)) {
IPictureAdjustment pictureAdjustment = (IPictureAdjustment)
mHIDLMap.get(FEATURE_PICTURE_ADJUSTMENT);
vendor.lineage.livedisplay.V2_0.IPictureAdjustment pictureAdjustment =
(vendor.lineage.livedisplay.V2_0.IPictureAdjustment)
mHIDLMap.get(FEATURE_PICTURE_ADJUSTMENT);
return pictureAdjustment.setPictureAdjustment(HIDLHelper.toHIDLHSIC(hsic));
}
} catch (RemoteException e) {
@@ -782,9 +984,21 @@ public final class LineageHardwareManager {
*/
public List<Range<Float>> getPictureAdjustmentRanges() {
try {
if (isSupportedAIDL(FEATURE_PICTURE_ADJUSTMENT)) {
vendor.lineage.livedisplay.IPictureAdjustment pictureAdjustment =
vendor.lineage.livedisplay.IPictureAdjustment.Stub.asInterface(
mAIDLMap.get(FEATURE_PICTURE_ADJUSTMENT));
return Arrays.asList(
AIDLHelper.fromAIDLRange(pictureAdjustment.getHueRange()),
AIDLHelper.fromAIDLRange(pictureAdjustment.getSaturationRange()),
AIDLHelper.fromAIDLRange(pictureAdjustment.getIntensityRange()),
AIDLHelper.fromAIDLRange(pictureAdjustment.getContrastRange()),
AIDLHelper.fromAIDLRange(pictureAdjustment.getSaturationThresholdRange()));
}
if (isSupportedHIDL(FEATURE_PICTURE_ADJUSTMENT)) {
IPictureAdjustment pictureAdjustment = (IPictureAdjustment)
mHIDLMap.get(FEATURE_PICTURE_ADJUSTMENT);
vendor.lineage.livedisplay.V2_0.IPictureAdjustment pictureAdjustment =
(vendor.lineage.livedisplay.V2_0.IPictureAdjustment)
mHIDLMap.get(FEATURE_PICTURE_ADJUSTMENT);
return Arrays.asList(
HIDLHelper.fromHIDLRange(pictureAdjustment.getHueRange()),
HIDLHelper.fromHIDLRange(pictureAdjustment.getSaturationRange()),