Home
last modified time | relevance | path

Searched refs:colorTransformId (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/services/core/java/com/android/server/display/
DLocalDisplayAdapter.java366 mInfo.colorTransformId = mActiveColorTransformId; in getDisplayDeviceInfoLocked()
524 int colorTransformId, int modeId) { in requestColorTransformAndModeInTransactionLocked() argument
533 if (colorTransformId == 0) { in requestColorTransformAndModeInTransactionLocked()
534 colorTransformId = mDefaultColorTransformId; in requestColorTransformAndModeInTransactionLocked()
535 } else if (mSupportedColorTransforms.indexOfKey(colorTransformId) < 0) { in requestColorTransformAndModeInTransactionLocked()
536 Slog.w(TAG, "Requested color transform " + colorTransformId + " is not supported" in requestColorTransformAndModeInTransactionLocked()
538 colorTransformId = mDefaultColorTransformId; in requestColorTransformAndModeInTransactionLocked()
540 int physIndex = findDisplayInfoIndexLocked(colorTransformId, modeId); in requestColorTransformAndModeInTransactionLocked()
542 Slog.w(TAG, "Requested color transform, mode ID pair (" + colorTransformId + ", " in requestColorTransformAndModeInTransactionLocked()
545 physIndex = findDisplayInfoIndexLocked(colorTransformId, modeId); in requestColorTransformAndModeInTransactionLocked()
[all …]
DDisplayDeviceInfo.java159 public int colorTransformId; field in DisplayDeviceInfo
293 || colorTransformId != other.colorTransformId in diff()
327 colorTransformId = other.colorTransformId; in copyFrom()
356 sb.append(", colorTransformId ").append(colorTransformId); in toString()
DLogicalDisplay.java239 mBaseDisplayInfo.colorTransformId = deviceInfo.colorTransformId; in updateLocked()
396 public void setRequestedColorTransformIdLocked(int colorTransformId) { in setRequestedColorTransformIdLocked() argument
397 mRequestedColorTransformId = colorTransformId; in setRequestedColorTransformIdLocked()
DDisplayDevice.java138 public void requestColorTransformAndModeInTransactionLocked(int colorTransformId, int modeId) { in requestColorTransformAndModeInTransactionLocked() argument
DDisplayManagerService.java543 private void requestColorTransformInternal(int displayId, int colorTransformId) { in requestColorTransformInternal() argument
547 display.getRequestedColorTransformIdLocked() != colorTransformId) { in requestColorTransformInternal()
548 display.setRequestedColorTransformIdLocked(colorTransformId); in requestColorTransformInternal()
1354 public void requestColorTransform(int displayId, int colorTransformId) { in requestColorTransform() argument
1360 requestColorTransformInternal(displayId, colorTransformId); in requestColorTransform()
/frameworks/base/core/java/android/view/
DDisplayInfo.java173 public int colorTransformId; field in DisplayInfo
294 && colorTransformId == other.colorTransformId in equals()
335 colorTransformId = other.colorTransformId; in copyFrom()
376 colorTransformId = source.readInt(); in readFromParcel()
421 dest.writeInt(colorTransformId); in writeToParcel()
500 return findColorTransform(colorTransformId); in getColorTransform()
507 private Display.ColorTransform findColorTransform(int colorTransformId) { in findColorTransform() argument
510 if (colorTransform.getId() == colorTransformId) { in findColorTransform()
514 throw new IllegalStateException("Unable to locate color transform: " + colorTransformId); in findColorTransform()
619 sb.append(colorTransformId); in toString()
/frameworks/base/core/java/android/hardware/display/
DIDisplayManager.aidl63 void requestColorTransform(int displayId, int colorTransformId); in requestColorTransform() argument
DDisplayManagerGlobal.java357 public void requestColorTransform(int displayId, int colorTransformId) { in requestColorTransform() argument
359 mDm.requestColorTransform(displayId, colorTransformId); in requestColorTransform()