diff options
| author | Dan Stoza <stoza@google.com> | 2015-08-31 12:01:48 -0700 |
|---|---|---|
| committer | Dan Stoza <stoza@google.com> | 2015-09-03 13:38:39 -0700 |
| commit | 904f485bc6013060e81b627be61314b3d7fe5ef8 (patch) | |
| tree | a469a439a3331de118e56bafcc26899820755f35 /core/jni | |
| parent | bd5b61c489fb0543c8db29030e57189c273010eb (diff) | |
| download | frameworks_base-904f485bc6013060e81b627be61314b3d7fe5ef8.zip frameworks_base-904f485bc6013060e81b627be61314b3d7fe5ef8.tar.gz frameworks_base-904f485bc6013060e81b627be61314b3d7fe5ef8.tar.bz2 | |
SurfaceControl: Add colorTransform to DisplayInfo
Adds the colorTransform field, which defines a vendor-specific color
transform (e.g., wide gamut, sRGB, etc.) to the PhysicalDisplayInfo
class, and populates it from the corresponding field from
ISurfaceComposer.
Bug: 20853317
Change-Id: Ic59ca5142bdaa73c42d9c044d7aae345255f1dad
Diffstat (limited to 'core/jni')
| -rw-r--r-- | core/jni/android_view_SurfaceControl.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/jni/android_view_SurfaceControl.cpp b/core/jni/android_view_SurfaceControl.cpp index 77af341..20352eb 100644 --- a/core/jni/android_view_SurfaceControl.cpp +++ b/core/jni/android_view_SurfaceControl.cpp @@ -64,6 +64,7 @@ static struct { jfieldID secure; jfieldID appVsyncOffsetNanos; jfieldID presentationDeadlineNanos; + jfieldID colorTransform; } gPhysicalDisplayInfoClassInfo; static struct { @@ -401,6 +402,8 @@ static jobjectArray nativeGetDisplayConfigs(JNIEnv* env, jclass clazz, info.appVsyncOffset); env->SetLongField(infoObj, gPhysicalDisplayInfoClassInfo.presentationDeadlineNanos, info.presentationDeadline); + env->SetIntField(infoObj, gPhysicalDisplayInfoClassInfo.colorTransform, + info.colorTransform); env->SetObjectArrayElement(configArray, static_cast<jsize>(c), infoObj); env->DeleteLocalRef(infoObj); } @@ -663,6 +666,8 @@ int register_android_view_SurfaceControl(JNIEnv* env) clazz, "appVsyncOffsetNanos", "J"); gPhysicalDisplayInfoClassInfo.presentationDeadlineNanos = GetFieldIDOrDie(env, clazz, "presentationDeadlineNanos", "J"); + gPhysicalDisplayInfoClassInfo.colorTransform = GetFieldIDOrDie(env, clazz, + "colorTransform", "I"); jclass rectClazz = FindClassOrDie(env, "android/graphics/Rect"); gRectClassInfo.bottom = GetFieldIDOrDie(env, rectClazz, "bottom", "I"); |
