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

/frameworks/base/services/core/java/com/android/server/display/
H A DDisplayDeviceInfo.java159 public int colorTransformId; field in class:DisplayDeviceInfo
288 || colorTransformId != other.colorTransformId
321 colorTransformId = other.colorTransformId;
349 sb.append(", colorTransformId ").append(colorTransformId);
H A DLocalDisplayAdapter.java365 mInfo.colorTransformId = mActiveColorTransformId;
517 int colorTransformId, int modeId) {
526 if (colorTransformId == 0) {
527 colorTransformId = mDefaultColorTransformId;
528 } else if (mSupportedColorTransforms.indexOfKey(colorTransformId) < 0) {
529 Slog.w(TAG, "Requested color transform " + colorTransformId + " is not supported"
531 colorTransformId = mDefaultColorTransformId;
533 int physIndex = findDisplayInfoIndexLocked(colorTransformId, modeId);
535 Slog.w(TAG, "Requested color transform, mode ID pair (" + colorTransformId + ", "
538 physIndex = findDisplayInfoIndexLocked(colorTransformId, modeI
516 requestColorTransformAndModeInTransactionLocked( int colorTransformId, int modeId) argument
587 findDisplayInfoIndexLocked(int colorTransformId, int modeId) argument
[all...]
H A DLogicalDisplay.java239 mBaseDisplayInfo.colorTransformId = deviceInfo.colorTransformId;
395 public void setRequestedColorTransformIdLocked(int colorTransformId) { argument
396 mRequestedColorTransformId = colorTransformId;
H A DDisplayDevice.java138 public void requestColorTransformAndModeInTransactionLocked(int colorTransformId, int modeId) { argument
H A DDisplayManagerService.java543 private void requestColorTransformInternal(int displayId, int colorTransformId) { argument
547 display.getRequestedColorTransformIdLocked() != colorTransformId) {
548 display.setRequestedColorTransformIdLocked(colorTransformId);
1354 public void requestColorTransform(int displayId, int colorTransformId) { argument
1360 requestColorTransformInternal(displayId, colorTransformId);
/frameworks/base/core/java/android/view/
H A DDisplayInfo.java173 public int colorTransformId; field in class:DisplayInfo
291 && colorTransformId == other.colorTransformId
331 colorTransformId = other.colorTransformId;
371 colorTransformId = source.readInt();
415 dest.writeInt(colorTransformId);
493 return findColorTransform(colorTransformId);
500 private Display.ColorTransform findColorTransform(int colorTransformId) { argument
503 if (colorTransform.getId() == colorTransformId) {
[all...]
/frameworks/base/core/java/android/hardware/display/
H A DIDisplayManager.aidl63 void requestColorTransform(int displayId, int colorTransformId);
H A DDisplayManagerGlobal.java362 public void requestColorTransform(int displayId, int colorTransformId) { argument
364 mDm.requestColorTransform(displayId, colorTransformId);

Completed in 701 milliseconds