HomeSort by relevance Sort by last modified time
    Searched refs:colorTransformId (Results 1 - 8 of 8) sorted by null

  /frameworks/base/services/core/java/com/android/server/display/
DisplayDeviceInfo.java 159 public int colorTransformId;
293 || colorTransformId != other.colorTransformId
327 colorTransformId = other.colorTransformId;
356 sb.append(", colorTransformId ").append(colorTransformId);
LocalDisplayAdapter.java 366 mInfo.colorTransformId = mActiveColorTransformId;
524 int colorTransformId, int modeId) {
533 if (colorTransformId == 0) {
534 colorTransformId = mDefaultColorTransformId;
535 } else if (mSupportedColorTransforms.indexOfKey(colorTransformId) < 0) {
536 Slog.w(TAG, "Requested color transform " + colorTransformId + " is not supported"
538 colorTransformId = mDefaultColorTransformId;
540 int physIndex = findDisplayInfoIndexLocked(colorTransformId, modeId);
542 Slog.w(TAG, "Requested color transform, mode ID pair (" + colorTransformId + ", "
545 physIndex = findDisplayInfoIndexLocked(colorTransformId, modeId)
    [all...]
LogicalDisplay.java 239 mBaseDisplayInfo.colorTransformId = deviceInfo.colorTransformId;
396 public void setRequestedColorTransformIdLocked(int colorTransformId) {
397 mRequestedColorTransformId = colorTransformId;
DisplayDevice.java 138 public void requestColorTransformAndModeInTransactionLocked(int colorTransformId, int modeId) {
DisplayManagerService.java 543 private void requestColorTransformInternal(int displayId, int colorTransformId) {
547 display.getRequestedColorTransformIdLocked() != colorTransformId) {
548 display.setRequestedColorTransformIdLocked(colorTransformId);
    [all...]
  /frameworks/base/core/java/android/view/
DisplayInfo.java 173 public int colorTransformId;
294 && colorTransformId == other.colorTransformId
335 colorTransformId = other.colorTransformId;
376 colorTransformId = source.readInt();
421 dest.writeInt(colorTransformId);
500 return findColorTransform(colorTransformId);
507 private Display.ColorTransform findColorTransform(int colorTransformId) {
510 if (colorTransform.getId() == colorTransformId) {
    [all...]
  /frameworks/base/core/java/android/hardware/display/
IDisplayManager.aidl 63 void requestColorTransform(int displayId, int colorTransformId);
DisplayManagerGlobal.java 357 public void requestColorTransform(int displayId, int colorTransformId) {
359 mDm.requestColorTransform(displayId, colorTransformId);

Completed in 180 milliseconds