blob: 3f50f39fb78558276851ca0a2015ff129902e361 [file] [log] [blame]
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "SurfaceControl"
Robert Carr6486d312017-01-09 19:48:29 -080018#define LOG_NDEBUG 0
Mathias Agopian3866f0d2013-02-11 22:08:48 -080019
Mathias Agopian3866f0d2013-02-11 22:08:48 -080020#include "android_os_Parcel.h"
21#include "android_util_Binder.h"
Robert Carr788f5742018-07-30 17:46:45 -070022#include "android_hardware_input_InputWindowHandle.h"
John Reckf29ed282015-04-07 07:32:03 -070023#include "android/graphics/Bitmap.h"
Mathias Agopian3866f0d2013-02-11 22:08:48 -080024#include "android/graphics/GraphicsJNI.h"
25#include "android/graphics/Region.h"
Andreas Gampeed6b9df2014-11-20 22:02:20 -080026#include "core_jni_helpers.h"
Ben Wagner60126ef2015-08-07 12:13:48 -040027
Tom Cherry8ed74bb2017-07-10 14:31:18 -070028#include <android-base/chrono_utils.h>
Steven Moreland2279b252017-07-19 09:50:45 -070029#include <nativehelper/JNIHelp.h>
30#include <nativehelper/ScopedUtfChars.h>
Mathias Agopian0449a402013-03-01 23:01:51 -080031#include <android_runtime/android_view_Surface.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080032#include <android_runtime/android_view_SurfaceSession.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080033#include <gui/Surface.h>
34#include <gui/SurfaceComposerClient.h>
Ben Wagner60126ef2015-08-07 12:13:48 -040035#include <jni.h>
36#include <memory>
37#include <stdio.h>
Michael Wright1c9977b2016-07-12 13:30:10 -070038#include <system/graphics.h>
Daniel Solomon10e3b332019-01-20 21:09:11 -080039#include <ui/ConfigStoreTypes.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080040#include <ui/DisplayInfo.h>
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -070041#include <ui/DisplayedFrameStats.h>
Svetoslav1376d602014-03-13 11:17:26 -070042#include <ui/FrameStats.h>
Peiyong Linb88549e2018-03-28 12:03:45 -070043#include <ui/GraphicTypes.h>
Peiyong Lin371b98f2018-03-14 17:29:10 -070044#include <ui/HdrCapabilities.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080045#include <ui/Rect.h>
46#include <ui/Region.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080047#include <utils/Log.h>
48
Mathias Agopian3866f0d2013-02-11 22:08:48 -080049// ----------------------------------------------------------------------------
50
51namespace android {
52
53static const char* const OutOfResourcesException =
54 "android/view/Surface$OutOfResourcesException";
55
56static struct {
Dan Stoza00101052014-05-02 15:23:40 -070057 jclass clazz;
58 jmethodID ctor;
Mathias Agopian3866f0d2013-02-11 22:08:48 -080059 jfieldID width;
60 jfieldID height;
61 jfieldID refreshRate;
62 jfieldID density;
63 jfieldID xDpi;
64 jfieldID yDpi;
65 jfieldID secure;
Andy McFaddene8b1aeb2014-06-13 14:05:40 -070066 jfieldID appVsyncOffsetNanos;
67 jfieldID presentationDeadlineNanos;
Mathias Agopian3866f0d2013-02-11 22:08:48 -080068} gPhysicalDisplayInfoClassInfo;
69
Dan Stoza9890e3412014-05-22 16:12:54 -070070static struct {
71 jfieldID bottom;
72 jfieldID left;
73 jfieldID right;
74 jfieldID top;
75} gRectClassInfo;
76
Leon Scroggins46cb9bd2014-03-06 15:36:39 -050077// Implements SkMallocPixelRef::ReleaseProc, to delete the screenshot on unref.
78void DeleteScreenshot(void* addr, void* context) {
Leon Scroggins46cb9bd2014-03-06 15:36:39 -050079 delete ((ScreenshotClient*) context);
80}
Mathias Agopian3866f0d2013-02-11 22:08:48 -080081
Svetoslav1376d602014-03-13 11:17:26 -070082static struct {
83 nsecs_t UNDEFINED_TIME_NANO;
84 jmethodID init;
85} gWindowContentFrameStatsClassInfo;
86
87static struct {
88 nsecs_t UNDEFINED_TIME_NANO;
89 jmethodID init;
90} gWindowAnimationFrameStatsClassInfo;
91
Hangyu Kuang54ac2192016-04-25 13:22:02 -070092static struct {
93 jclass clazz;
94 jmethodID ctor;
95} gHdrCapabilitiesClassInfo;
96
Robert Carr6486d312017-01-09 19:48:29 -080097static struct {
98 jclass clazz;
99 jmethodID builder;
100} gGraphicBufferClassInfo;
101
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -0700102static struct {
103 jclass clazz;
104 jmethodID ctor;
105} gDisplayedContentSampleClassInfo;
106
107static struct {
108 jclass clazz;
109 jmethodID ctor;
110} gDisplayedContentSamplingAttributesClassInfo;
111
Daniel Solomon10e3b332019-01-20 21:09:11 -0800112static struct {
113 jclass clazz;
114 jmethodID ctor;
115 jfieldID X;
116 jfieldID Y;
117 jfieldID Z;
118} gCieXyzClassInfo;
119
120static struct {
121 jclass clazz;
122 jmethodID ctor;
123 jfieldID red;
124 jfieldID green;
125 jfieldID blue;
126 jfieldID white;
127} gDisplayPrimariesClassInfo;
128
Peiyong Line3e5efd2019-03-21 20:59:47 +0000129static struct {
130 jclass clazz;
131 jmethodID builder;
132} gScreenshotGraphicBufferClassInfo;
133
134class JNamedColorSpace {
135public:
136 // ColorSpace.Named.SRGB.ordinal() = 0;
137 static constexpr jint SRGB = 0;
138
139 // ColorSpace.Named.DISPLAY_P3.ordinal() = 6;
140 static constexpr jint DISPLAY_P3 = 6;
141};
142
143constexpr jint fromDataspaceToNamedColorSpaceValue(const ui::Dataspace dataspace) {
144 switch (dataspace) {
145 case ui::Dataspace::DISPLAY_P3:
146 return JNamedColorSpace::DISPLAY_P3;
147 default:
148 return JNamedColorSpace::SRGB;
149 }
150}
151
152constexpr ui::Dataspace pickDataspaceFromColorMode(const ui::ColorMode colorMode) {
153 switch (colorMode) {
154 case ui::ColorMode::DISPLAY_P3:
155 case ui::ColorMode::BT2100_PQ:
156 case ui::ColorMode::BT2100_HLG:
157 case ui::ColorMode::DISPLAY_BT2020:
158 return ui::Dataspace::DISPLAY_P3;
159 default:
160 return ui::Dataspace::V0_SRGB;
161 }
162}
163
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800164// ----------------------------------------------------------------------------
165
Robert Carre13b58e2017-08-31 14:50:44 -0700166static jlong nativeCreateTransaction(JNIEnv* env, jclass clazz) {
167 return reinterpret_cast<jlong>(new SurfaceComposerClient::Transaction);
168}
169
170static void releaseTransaction(SurfaceComposerClient::Transaction* t) {
171 delete t;
172}
173
174static jlong nativeGetNativeTransactionFinalizer(JNIEnv* env, jclass clazz) {
175 return static_cast<jlong>(reinterpret_cast<uintptr_t>(&releaseTransaction));
176}
177
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000178static jlong nativeCreate(JNIEnv* env, jclass clazz, jobject sessionObj,
Albert Chaulk3bf2e572016-11-22 13:59:19 -0500179 jstring nameStr, jint w, jint h, jint format, jint flags, jlong parentObject,
Evan Rosky485df202018-12-06 14:11:12 -0800180 jobject metadataParcel) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800181 ScopedUtfChars name(env, nameStr);
Robert Carr76907ee2019-01-11 13:38:19 -0800182 sp<SurfaceComposerClient> client;
183 if (sessionObj != NULL) {
184 client = android_view_SurfaceSession_getClient(env, sessionObj);
185 } else {
186 client = SurfaceComposerClient::getDefault();
187 }
Robert Carr838120c2016-11-01 18:31:12 -0700188 SurfaceControl *parent = reinterpret_cast<SurfaceControl*>(parentObject);
Robert Carrb0f39362018-03-14 13:52:25 -0700189 sp<SurfaceControl> surface;
Evan Rosky485df202018-12-06 14:11:12 -0800190 LayerMetadata metadata;
191 Parcel* parcel = parcelForJavaObject(env, metadataParcel);
192 if (parcel && !parcel->objectsCount()) {
193 status_t err = metadata.readFromParcel(parcel);
194 if (err != NO_ERROR) {
195 jniThrowException(env, "java/lang/IllegalArgumentException",
196 "Metadata parcel has wrong format");
197 }
198 }
199
Robert Carrb0f39362018-03-14 13:52:25 -0700200 status_t err = client->createSurfaceChecked(
Evan Rosky485df202018-12-06 14:11:12 -0800201 String8(name.c_str()), w, h, format, &surface, flags, parent, std::move(metadata));
Robert Carrb0f39362018-03-14 13:52:25 -0700202 if (err == NAME_NOT_FOUND) {
203 jniThrowException(env, "java/lang/IllegalArgumentException", NULL);
204 return 0;
205 } else if (err != NO_ERROR) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800206 jniThrowException(env, OutOfResourcesException, NULL);
207 return 0;
208 }
Albert Chaulk3bf2e572016-11-22 13:59:19 -0500209
Mathias Agopianb1d90c82013-03-06 17:45:42 -0800210 surface->incStrong((void *)nativeCreate);
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000211 return reinterpret_cast<jlong>(surface.get());
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800212}
213
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000214static void nativeRelease(JNIEnv* env, jclass clazz, jlong nativeObject) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800215 sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(nativeObject));
Robert Carrcc6d4832019-02-04 15:41:12 -0800216 ctrl->release();
Mathias Agopianb1d90c82013-03-06 17:45:42 -0800217 ctrl->decStrong((void *)nativeCreate);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800218}
219
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000220static void nativeDestroy(JNIEnv* env, jclass clazz, jlong nativeObject) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800221 sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(nativeObject));
Robert Carrcc6d4832019-02-04 15:41:12 -0800222 ctrl->destroy();
Mathias Agopianb1d90c82013-03-06 17:45:42 -0800223 ctrl->decStrong((void *)nativeCreate);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800224}
225
Chong Zhang47e36a32016-02-29 16:44:33 -0800226static void nativeDisconnect(JNIEnv* env, jclass clazz, jlong nativeObject) {
227 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
228 if (ctrl != NULL) {
229 ctrl->disconnect();
230 }
231}
232
Robert Carr6486d312017-01-09 19:48:29 -0800233static Rect rectFromObj(JNIEnv* env, jobject rectObj) {
234 int left = env->GetIntField(rectObj, gRectClassInfo.left);
235 int top = env->GetIntField(rectObj, gRectClassInfo.top);
236 int right = env->GetIntField(rectObj, gRectClassInfo.right);
237 int bottom = env->GetIntField(rectObj, gRectClassInfo.bottom);
238 return Rect(left, top, right, bottom);
239}
240
chaviw08520a02018-09-10 16:44:56 -0700241static jobject nativeScreenshot(JNIEnv* env, jclass clazz,
Robert Carr6486d312017-01-09 19:48:29 -0800242 jobject displayTokenObj, jobject sourceCropObj, jint width, jint height,
Robert Carr5c52b132019-02-15 15:48:11 -0800243 bool useIdentityTransform, int rotation, bool captureSecureLayers) {
Robert Carr6486d312017-01-09 19:48:29 -0800244 sp<IBinder> displayToken = ibinderForJavaObject(env, displayTokenObj);
245 if (displayToken == NULL) {
246 return NULL;
247 }
Peiyong Line3e5efd2019-03-21 20:59:47 +0000248 const ui::ColorMode colorMode = SurfaceComposerClient::getActiveColorMode(displayToken);
249 const ui::Dataspace dataspace = pickDataspaceFromColorMode(colorMode);
250
Robert Carr6486d312017-01-09 19:48:29 -0800251 Rect sourceCrop = rectFromObj(env, sourceCropObj);
Robert Carr6486d312017-01-09 19:48:29 -0800252 sp<GraphicBuffer> buffer;
Peiyong Line3e5efd2019-03-21 20:59:47 +0000253 status_t res = ScreenshotClient::capture(displayToken, dataspace,
Robert Carr5c52b132019-02-15 15:48:11 -0800254 ui::PixelFormat::RGBA_8888,
255 sourceCrop, width, height,
256 useIdentityTransform, rotation, captureSecureLayers, &buffer);
Robert Carr6486d312017-01-09 19:48:29 -0800257 if (res != NO_ERROR) {
258 return NULL;
259 }
260
Peiyong Line3e5efd2019-03-21 20:59:47 +0000261 const jint namedColorSpace = fromDataspaceToNamedColorSpaceValue(dataspace);
262 return env->CallStaticObjectMethod(gScreenshotGraphicBufferClassInfo.clazz,
263 gScreenshotGraphicBufferClassInfo.builder,
Robert Carr6486d312017-01-09 19:48:29 -0800264 buffer->getWidth(),
265 buffer->getHeight(),
266 buffer->getPixelFormat(),
Mathias Agopian113fd302017-05-25 18:31:04 -0700267 (jint)buffer->getUsage(),
Peiyong Line3e5efd2019-03-21 20:59:47 +0000268 (jlong)buffer.get(),
269 namedColorSpace);
Robert Carr6486d312017-01-09 19:48:29 -0800270}
271
Chavi Weingartend7ec64c2017-11-30 01:52:01 +0000272static jobject nativeCaptureLayers(JNIEnv* env, jclass clazz, jobject layerHandleToken,
Robert Carrffcdc512019-04-02 11:51:11 -0700273 jobject sourceCropObj, jfloat frameScale, jobjectArray excludeArray) {
chaviwfbe47df2017-11-10 16:14:49 -0800274
275 sp<IBinder> layerHandle = ibinderForJavaObject(env, layerHandleToken);
276 if (layerHandle == NULL) {
277 return NULL;
278 }
279
280 Rect sourceCrop;
281 if (sourceCropObj != NULL) {
282 sourceCrop = rectFromObj(env, sourceCropObj);
283 }
284
Robert Carrffcdc512019-04-02 11:51:11 -0700285 std::unordered_set<sp<IBinder>,ISurfaceComposer::SpHash<IBinder>> excludeHandles;
286 if (excludeArray != NULL) {
287 const jsize len = env->GetArrayLength(excludeArray);
288 excludeHandles.reserve(len);
289
290 for (jsize i = 0; i < len; i++) {
291 jobject obj = env->GetObjectArrayElement(excludeArray, i);
292 if (obj == nullptr) {
293 jniThrowNullPointerException(env, "Exclude layer is null");
294 return NULL;
295 }
296 sp<IBinder> excludeHandle = ibinderForJavaObject(env, obj);
297 excludeHandles.emplace(excludeHandle);
298 }
299 }
300
chaviwfbe47df2017-11-10 16:14:49 -0800301 sp<GraphicBuffer> buffer;
Peiyong Line3e5efd2019-03-21 20:59:47 +0000302 const ui::Dataspace dataspace = ui::Dataspace::V0_SRGB;
303 status_t res = ScreenshotClient::captureChildLayers(layerHandle, dataspace,
Peiyong Lin10a34d12018-09-19 13:56:12 -0700304 ui::PixelFormat::RGBA_8888, sourceCrop,
Robert Carrffcdc512019-04-02 11:51:11 -0700305 excludeHandles, frameScale, &buffer);
chaviwfbe47df2017-11-10 16:14:49 -0800306 if (res != NO_ERROR) {
307 return NULL;
308 }
309
Peiyong Line3e5efd2019-03-21 20:59:47 +0000310 const jint namedColorSpace = fromDataspaceToNamedColorSpaceValue(dataspace);
311 return env->CallStaticObjectMethod(gScreenshotGraphicBufferClassInfo.clazz,
312 gScreenshotGraphicBufferClassInfo.builder,
chaviwfbe47df2017-11-10 16:14:49 -0800313 buffer->getWidth(),
314 buffer->getHeight(),
315 buffer->getPixelFormat(),
316 (jint)buffer->getUsage(),
Peiyong Line3e5efd2019-03-21 20:59:47 +0000317 (jlong)buffer.get(),
318 namedColorSpace);
chaviw1cda84c2017-10-23 16:47:10 -0700319}
320
Robert Carre13b58e2017-08-31 14:50:44 -0700321static void nativeApplyTransaction(JNIEnv* env, jclass clazz, jlong transactionObj, jboolean sync) {
322 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
323 transaction->apply(sync);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800324}
325
Robert Carrb1579c82017-09-05 14:54:47 -0700326static void nativeMergeTransaction(JNIEnv* env, jclass clazz,
327 jlong transactionObj, jlong otherTransactionObj) {
328 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
329 auto otherTransaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(
330 otherTransactionObj);
331 transaction->merge(std::move(*otherTransaction));
332}
333
Robert Carre13b58e2017-08-31 14:50:44 -0700334static void nativeSetAnimationTransaction(JNIEnv* env, jclass clazz, jlong transactionObj) {
335 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
336 transaction->setAnimationTransaction();
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800337}
338
Jorim Jaggiaa763cd2018-03-22 23:20:36 +0100339static void nativeSetEarlyWakeup(JNIEnv* env, jclass clazz, jlong transactionObj) {
340 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
341 transaction->setEarlyWakeup();
342}
343
Robert Carre13b58e2017-08-31 14:50:44 -0700344static void nativeSetLayer(JNIEnv* env, jclass clazz, jlong transactionObj,
345 jlong nativeObject, jint zorder) {
346 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800347
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800348 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700349 transaction->setLayer(ctrl, zorder);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800350}
351
Robert Carre13b58e2017-08-31 14:50:44 -0700352static void nativeSetRelativeLayer(JNIEnv* env, jclass clazz, jlong transactionObj,
353 jlong nativeObject,
Robert Carraf422a82017-04-10 18:34:33 -0700354 jobject relativeTo, jint zorder) {
Robert Carre13b58e2017-08-31 14:50:44 -0700355
Robert Carraf422a82017-04-10 18:34:33 -0700356 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
357 sp<IBinder> handle = ibinderForJavaObject(env, relativeTo);
358
Robert Carre13b58e2017-08-31 14:50:44 -0700359 {
360 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
361 transaction->setRelativeLayer(ctrl, handle, zorder);
362 }
Robert Carraf422a82017-04-10 18:34:33 -0700363}
364
Robert Carre13b58e2017-08-31 14:50:44 -0700365static void nativeSetPosition(JNIEnv* env, jclass clazz, jlong transactionObj,
366 jlong nativeObject, jfloat x, jfloat y) {
367 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
368
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800369 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700370 transaction->setPosition(ctrl, x, y);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800371}
372
Robert Carr76907ee2019-01-11 13:38:19 -0800373static void nativeSetGeometry(JNIEnv* env, jclass clazz, jlong transactionObj, jlong nativeObject,
374 jobject sourceObj, jobject dstObj, jlong orientation) {
375 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
376 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
377
378 Rect source, dst;
379 if (sourceObj != NULL) {
380 source = rectFromObj(env, sourceObj);
381 }
382 if (dstObj != NULL) {
383 dst = rectFromObj(env, dstObj);
384 }
385 transaction->setGeometry(ctrl, source, dst, orientation);
386}
387
Robert Carr6da3cc02016-06-16 15:17:07 -0700388static void nativeSetGeometryAppliesWithResize(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700389jlong transactionObj,
Robert Carra9408d42016-06-03 13:28:48 -0700390 jlong nativeObject) {
Robert Carre13b58e2017-08-31 14:50:44 -0700391 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
392
Robert Carra9408d42016-06-03 13:28:48 -0700393 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700394 transaction->setGeometryAppliesWithResize(ctrl);
Robert Carra9408d42016-06-03 13:28:48 -0700395}
396
Robert Carre13b58e2017-08-31 14:50:44 -0700397static void nativeSetSize(JNIEnv* env, jclass clazz, jlong transactionObj,
398 jlong nativeObject, jint w, jint h) {
399 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
400
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800401 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700402 transaction->setSize(ctrl, w, h);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800403}
404
Robert Carre13b58e2017-08-31 14:50:44 -0700405static void nativeSetFlags(JNIEnv* env, jclass clazz, jlong transactionObj,
406 jlong nativeObject, jint flags, jint mask) {
407 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
408
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800409 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700410 transaction->setFlags(ctrl, flags, mask);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800411}
412
Robert Carre13b58e2017-08-31 14:50:44 -0700413static void nativeSetTransparentRegionHint(JNIEnv* env, jclass clazz, jlong transactionObj,
414 jlong nativeObject, jobject regionObj) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800415 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
416 SkRegion* region = android_graphics_Region_getSkRegion(env, regionObj);
417 if (!region) {
418 doThrowIAE(env);
419 return;
420 }
421
422 const SkIRect& b(region->getBounds());
423 Region reg(Rect(b.fLeft, b.fTop, b.fRight, b.fBottom));
424 if (region->isComplex()) {
425 SkRegion::Iterator it(*region);
426 while (!it.done()) {
427 const SkIRect& r(it.rect());
428 reg.addRectUnchecked(r.fLeft, r.fTop, r.fRight, r.fBottom);
429 it.next();
430 }
431 }
432
Robert Carre13b58e2017-08-31 14:50:44 -0700433 {
434 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
435 transaction->setTransparentRegionHint(ctrl, reg);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800436 }
437}
438
Robert Carre13b58e2017-08-31 14:50:44 -0700439static void nativeSetAlpha(JNIEnv* env, jclass clazz, jlong transactionObj,
440 jlong nativeObject, jfloat alpha) {
441 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
442
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800443 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700444 transaction->setAlpha(ctrl, alpha);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800445}
446
Robert Carr788f5742018-07-30 17:46:45 -0700447static void nativeSetInputWindowInfo(JNIEnv* env, jclass clazz, jlong transactionObj,
448 jlong nativeObject, jobject inputWindow) {
449 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
450
Riddle Hsucd958bc2019-01-23 15:40:26 +0800451 sp<NativeInputWindowHandle> handle = android_view_InputWindowHandle_getHandle(
Robert Carr788f5742018-07-30 17:46:45 -0700452 env, inputWindow);
453 handle->updateInfo();
454
455 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
456 transaction->setInputWindowInfo(ctrl, *handle->getInfo());
457}
458
chaviw59f532e2018-12-26 15:34:59 -0800459static void nativeTransferTouchFocus(JNIEnv* env, jclass clazz, jlong transactionObj,
460 jobject fromTokenObj, jobject toTokenObj) {
461 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
462
463 sp<IBinder> fromToken(ibinderForJavaObject(env, fromTokenObj));
464 sp<IBinder> toToken(ibinderForJavaObject(env, toTokenObj));
465 transaction->transferTouchFocus(fromToken, toToken);
466}
467
chaviw319cd0782019-02-14 11:00:23 -0800468static void nativeSyncInputWindows(JNIEnv* env, jclass clazz, jlong transactionObj) {
469 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
470 transaction->syncInputWindows();
471}
472
Evan Rosky485df202018-12-06 14:11:12 -0800473static void nativeSetMetadata(JNIEnv* env, jclass clazz, jlong transactionObj,
474 jlong nativeObject, jint id, jobject parcelObj) {
475 Parcel* parcel = parcelForJavaObject(env, parcelObj);
476 if (!parcel) {
477 jniThrowNullPointerException(env, "attribute data");
478 return;
479 }
480 if (parcel->objectsCount()) {
481 jniThrowException(env, "java/lang/RuntimeException",
482 "Tried to marshall a Parcel that contained Binder objects.");
483 return;
484 }
485
486 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
487
488 std::vector<uint8_t> byteData(parcel->dataSize());
489 memcpy(byteData.data(), parcel->data(), parcel->dataSize());
490
491 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl*>(nativeObject);
492 transaction->setMetadata(ctrl, id, std::move(byteData));
493}
494
Robert Carre13b58e2017-08-31 14:50:44 -0700495static void nativeSetColor(JNIEnv* env, jclass clazz, jlong transactionObj,
496 jlong nativeObject, jfloatArray fColor) {
497 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
chaviw0dd03f52017-08-25 12:15:26 -0700498 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700499
chaviw0dd03f52017-08-25 12:15:26 -0700500 float* floatColors = env->GetFloatArrayElements(fColor, 0);
501 half3 color(floatColors[0], floatColors[1], floatColors[2]);
Robert Carre13b58e2017-08-31 14:50:44 -0700502 transaction->setColor(ctrl, color);
chaviw0dd03f52017-08-25 12:15:26 -0700503}
504
Robert Carre13b58e2017-08-31 14:50:44 -0700505static void nativeSetMatrix(JNIEnv* env, jclass clazz, jlong transactionObj,
506 jlong nativeObject,
Robert Carr0edf18f2017-02-21 20:01:47 -0800507 jfloat dsdx, jfloat dtdx, jfloat dtdy, jfloat dsdy) {
Robert Carre13b58e2017-08-31 14:50:44 -0700508 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
509
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800510 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700511 transaction->setMatrix(ctrl, dsdx, dtdx, dtdy, dsdy);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800512}
513
Peiyong Lin52bb6b42018-10-01 11:40:50 -0700514static void nativeSetColorTransform(JNIEnv* env, jclass clazz, jlong transactionObj,
515 jlong nativeObject, jfloatArray fMatrix, jfloatArray fTranslation) {
516 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
517 SurfaceControl* const surfaceControl = reinterpret_cast<SurfaceControl*>(nativeObject);
518 float* floatMatrix = env->GetFloatArrayElements(fMatrix, 0);
519 mat3 matrix(static_cast<float const*>(floatMatrix));
520 float* floatTranslation = env->GetFloatArrayElements(fTranslation, 0);
521 vec3 translation(floatTranslation[0], floatTranslation[1], floatTranslation[2]);
522 transaction->setColorTransform(surfaceControl, matrix, translation);
523}
524
Peiyong Linf4f0f642019-03-01 14:36:05 -0800525static void nativeSetColorSpaceAgnostic(JNIEnv* env, jclass clazz, jlong transactionObj,
526 jlong nativeObject, jboolean agnostic) {
527 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
528 SurfaceControl* const surfaceControl = reinterpret_cast<SurfaceControl*>(nativeObject);
529 transaction->setColorSpaceAgnostic(surfaceControl, agnostic);
530}
531
Robert Carre13b58e2017-08-31 14:50:44 -0700532static void nativeSetWindowCrop(JNIEnv* env, jclass clazz, jlong transactionObj,
533 jlong nativeObject,
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800534 jint l, jint t, jint r, jint b) {
Robert Carre13b58e2017-08-31 14:50:44 -0700535 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
536
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800537 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
538 Rect crop(l, t, r, b);
Marissa Wallcb32fdd2018-07-24 09:53:30 -0700539 transaction->setCrop_legacy(ctrl, crop);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800540}
541
Lucas Dupinff9d6ab2018-10-16 18:05:50 -0700542static void nativeSetCornerRadius(JNIEnv* env, jclass clazz, jlong transactionObj,
543 jlong nativeObject, jfloat cornerRadius) {
544 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
545
546 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
547 transaction->setCornerRadius(ctrl, cornerRadius);
548}
549
Robert Carre13b58e2017-08-31 14:50:44 -0700550static void nativeSetLayerStack(JNIEnv* env, jclass clazz, jlong transactionObj,
551 jlong nativeObject, jint layerStack) {
552 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
553
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800554 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700555 transaction->setLayerStack(ctrl, layerStack);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800556}
557
Dominik Laskowski3316a0a2019-01-25 02:56:41 -0800558static jlongArray nativeGetPhysicalDisplayIds(JNIEnv* env, jclass clazz) {
559 const auto displayIds = SurfaceComposerClient::getPhysicalDisplayIds();
560 jlongArray array = env->NewLongArray(displayIds.size());
561 if (array == nullptr) {
562 jniThrowException(env, "java/lang/OutOfMemoryError", nullptr);
563 return nullptr;
564 }
565
566 if (displayIds.empty()) {
567 return array;
568 }
569
570 jlong* values = env->GetLongArrayElements(array, 0);
571 for (size_t i = 0; i < displayIds.size(); ++i) {
572 values[i] = static_cast<jlong>(displayIds[i]);
573 }
574
575 env->ReleaseLongArrayElements(array, values, 0);
576 return array;
577}
578
579static jobject nativeGetPhysicalDisplayToken(JNIEnv* env, jclass clazz, jlong physicalDisplayId) {
580 sp<IBinder> token = SurfaceComposerClient::getPhysicalDisplayToken(physicalDisplayId);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800581 return javaObjectForIBinder(env, token);
582}
583
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -0700584static jobject nativeGetDisplayedContentSamplingAttributes(JNIEnv* env, jclass clazz,
585 jobject tokenObj) {
586 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
587
588 ui::PixelFormat format;
589 ui::Dataspace dataspace;
590 uint8_t componentMask;
591 status_t err = SurfaceComposerClient::getDisplayedContentSamplingAttributes(
592 token, &format, &dataspace, &componentMask);
593 if (err != OK) {
594 return nullptr;
595 }
596 return env->NewObject(gDisplayedContentSamplingAttributesClassInfo.clazz,
597 gDisplayedContentSamplingAttributesClassInfo.ctor,
598 format, dataspace, componentMask);
599}
600
601static jboolean nativeSetDisplayedContentSamplingEnabled(JNIEnv* env, jclass clazz,
602 jobject tokenObj, jboolean enable, jint componentMask, jint maxFrames) {
603 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
Kevin DuBois205a6802019-01-07 17:04:46 -0800604 status_t rc = SurfaceComposerClient::setDisplayContentSamplingEnabled(
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -0700605 token, enable, componentMask, maxFrames);
Kevin DuBois205a6802019-01-07 17:04:46 -0800606 return rc == OK;
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -0700607}
608
609static jobject nativeGetDisplayedContentSample(JNIEnv* env, jclass clazz, jobject tokenObj,
610 jlong maxFrames, jlong timestamp) {
611 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
612
613 DisplayedFrameStats stats;
614 status_t err = SurfaceComposerClient::getDisplayedContentSample(
615 token, maxFrames, timestamp, &stats);
616 if (err != OK) {
617 return nullptr;
618 }
619
620 jlongArray histogramComponent0 = env->NewLongArray(stats.component_0_sample.size());
621 jlongArray histogramComponent1 = env->NewLongArray(stats.component_1_sample.size());
622 jlongArray histogramComponent2 = env->NewLongArray(stats.component_2_sample.size());
623 jlongArray histogramComponent3 = env->NewLongArray(stats.component_3_sample.size());
624 if ((histogramComponent0 == nullptr) ||
625 (histogramComponent1 == nullptr) ||
626 (histogramComponent2 == nullptr) ||
627 (histogramComponent3 == nullptr)) {
628 return JNI_FALSE;
629 }
630
631 env->SetLongArrayRegion(histogramComponent0, 0,
632 stats.component_0_sample.size(),
633 reinterpret_cast<jlong*>(stats.component_0_sample.data()));
634 env->SetLongArrayRegion(histogramComponent1, 0,
635 stats.component_1_sample.size(),
636 reinterpret_cast<jlong*>(stats.component_1_sample.data()));
637 env->SetLongArrayRegion(histogramComponent2, 0,
638 stats.component_2_sample.size(),
639 reinterpret_cast<jlong*>(stats.component_2_sample.data()));
640 env->SetLongArrayRegion(histogramComponent3, 0,
641 stats.component_3_sample.size(),
642 reinterpret_cast<jlong*>(stats.component_3_sample.data()));
643 return env->NewObject(gDisplayedContentSampleClassInfo.clazz,
644 gDisplayedContentSampleClassInfo.ctor,
645 stats.numFrames,
646 histogramComponent0,
647 histogramComponent1,
648 histogramComponent2,
649 histogramComponent3);
650}
651
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800652static jobject nativeCreateDisplay(JNIEnv* env, jclass clazz, jstring nameObj,
653 jboolean secure) {
654 ScopedUtfChars name(env, nameObj);
655 sp<IBinder> token(SurfaceComposerClient::createDisplay(
656 String8(name.c_str()), bool(secure)));
657 return javaObjectForIBinder(env, token);
658}
659
Jesse Hall6a6bc212013-08-08 12:15:03 -0700660static void nativeDestroyDisplay(JNIEnv* env, jclass clazz, jobject tokenObj) {
661 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
662 if (token == NULL) return;
663 SurfaceComposerClient::destroyDisplay(token);
664}
665
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800666static void nativeSetDisplaySurface(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700667 jlong transactionObj,
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000668 jobject tokenObj, jlong nativeSurfaceObject) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800669 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
670 if (token == NULL) return;
Mathias Agopianffddc9b2013-02-25 15:56:31 -0800671 sp<IGraphicBufferProducer> bufferProducer;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800672 sp<Surface> sur(reinterpret_cast<Surface *>(nativeSurfaceObject));
Mathias Agopianffddc9b2013-02-25 15:56:31 -0800673 if (sur != NULL) {
674 bufferProducer = sur->getIGraphicBufferProducer();
675 }
Robert Carre13b58e2017-08-31 14:50:44 -0700676
677
678 status_t err = NO_ERROR;
679 {
680 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
681 err = transaction->setDisplaySurface(token,
682 bufferProducer);
683 }
Pablo Ceballosaff2f942016-07-29 14:49:55 -0700684 if (err != NO_ERROR) {
685 doThrowIAE(env, "Illegal Surface, could not enable async mode. Was this"
686 " Surface created with singleBufferMode?");
687 }
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800688}
689
690static void nativeSetDisplayLayerStack(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700691 jlong transactionObj,
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800692 jobject tokenObj, jint layerStack) {
Robert Carre13b58e2017-08-31 14:50:44 -0700693
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800694 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
695 if (token == NULL) return;
696
Robert Carre13b58e2017-08-31 14:50:44 -0700697 {
698 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
699 transaction->setDisplayLayerStack(token, layerStack);
700 }
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800701}
702
703static void nativeSetDisplayProjection(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700704 jlong transactionObj,
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800705 jobject tokenObj, jint orientation,
706 jint layerStackRect_left, jint layerStackRect_top, jint layerStackRect_right, jint layerStackRect_bottom,
707 jint displayRect_left, jint displayRect_top, jint displayRect_right, jint displayRect_bottom) {
708 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
709 if (token == NULL) return;
710 Rect layerStackRect(layerStackRect_left, layerStackRect_top, layerStackRect_right, layerStackRect_bottom);
711 Rect displayRect(displayRect_left, displayRect_top, displayRect_right, displayRect_bottom);
Robert Carre13b58e2017-08-31 14:50:44 -0700712
713 {
714 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
715 transaction->setDisplayProjection(token, orientation, layerStackRect, displayRect);
716 }
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800717}
718
Michael Wright01e840f2014-06-26 16:03:25 -0700719static void nativeSetDisplaySize(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700720 jlong transactionObj,
Michael Wright01e840f2014-06-26 16:03:25 -0700721 jobject tokenObj, jint width, jint height) {
722 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
723 if (token == NULL) return;
Robert Carre13b58e2017-08-31 14:50:44 -0700724
725 {
726 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
727 transaction->setDisplaySize(token, width, height);
728 }
Michael Wright01e840f2014-06-26 16:03:25 -0700729}
730
Dan Stoza00101052014-05-02 15:23:40 -0700731static jobjectArray nativeGetDisplayConfigs(JNIEnv* env, jclass clazz,
732 jobject tokenObj) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800733 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
Dan Stoza00101052014-05-02 15:23:40 -0700734 if (token == NULL) return NULL;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800735
Dan Stoza00101052014-05-02 15:23:40 -0700736 Vector<DisplayInfo> configs;
737 if (SurfaceComposerClient::getDisplayConfigs(token, &configs) != NO_ERROR ||
738 configs.size() == 0) {
739 return NULL;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800740 }
741
Dan Stoza00101052014-05-02 15:23:40 -0700742 jobjectArray configArray = env->NewObjectArray(configs.size(),
743 gPhysicalDisplayInfoClassInfo.clazz, NULL);
744
745 for (size_t c = 0; c < configs.size(); ++c) {
746 const DisplayInfo& info = configs[c];
747 jobject infoObj = env->NewObject(gPhysicalDisplayInfoClassInfo.clazz,
748 gPhysicalDisplayInfoClassInfo.ctor);
749 env->SetIntField(infoObj, gPhysicalDisplayInfoClassInfo.width, info.w);
750 env->SetIntField(infoObj, gPhysicalDisplayInfoClassInfo.height, info.h);
751 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.refreshRate, info.fps);
752 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.density, info.density);
753 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.xDpi, info.xdpi);
754 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.yDpi, info.ydpi);
755 env->SetBooleanField(infoObj, gPhysicalDisplayInfoClassInfo.secure, info.secure);
Andy McFaddene8b1aeb2014-06-13 14:05:40 -0700756 env->SetLongField(infoObj, gPhysicalDisplayInfoClassInfo.appVsyncOffsetNanos,
757 info.appVsyncOffset);
758 env->SetLongField(infoObj, gPhysicalDisplayInfoClassInfo.presentationDeadlineNanos,
759 info.presentationDeadline);
Dan Stoza00101052014-05-02 15:23:40 -0700760 env->SetObjectArrayElement(configArray, static_cast<jsize>(c), infoObj);
761 env->DeleteLocalRef(infoObj);
762 }
763
764 return configArray;
765}
766
Ady Abraham6070ce12019-01-24 18:48:58 -0800767static jboolean nativeSetAllowedDisplayConfigs(JNIEnv* env, jclass clazz,
768 jobject tokenObj, jintArray configArray) {
769 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
770 if (token == nullptr) return JNI_FALSE;
771
772 std::vector<int32_t> allowedConfigs;
773 jsize configArraySize = env->GetArrayLength(configArray);
774 allowedConfigs.reserve(configArraySize);
775
776 jint* configArrayElements = env->GetIntArrayElements(configArray, 0);
777 for (int i = 0; i < configArraySize; i++) {
778 allowedConfigs.push_back(configArrayElements[i]);
779 }
780 env->ReleaseIntArrayElements(configArray, configArrayElements, 0);
781
782 size_t result = SurfaceComposerClient::setAllowedDisplayConfigs(token, allowedConfigs);
783 return result == NO_ERROR ? JNI_TRUE : JNI_FALSE;
784}
785
Ady Abraham42f9a2fb2019-02-26 14:13:39 -0800786static jintArray nativeGetAllowedDisplayConfigs(JNIEnv* env, jclass clazz, jobject tokenObj) {
787 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
788 if (token == nullptr) return JNI_FALSE;
789
790 std::vector<int32_t> allowedConfigs;
791 size_t result = SurfaceComposerClient::getAllowedDisplayConfigs(token, &allowedConfigs);
792 if (result != NO_ERROR) {
793 return nullptr;
794 }
795
796 jintArray allowedConfigsArray = env->NewIntArray(allowedConfigs.size());
797 if (allowedConfigsArray == nullptr) {
798 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
799 return nullptr;
800 }
801 jint* allowedConfigsArrayValues = env->GetIntArrayElements(allowedConfigsArray, 0);
802 for (size_t i = 0; i < allowedConfigs.size(); i++) {
803 allowedConfigsArrayValues[i] = static_cast<jint>(allowedConfigs[i]);
804 }
805 env->ReleaseIntArrayElements(allowedConfigsArray, allowedConfigsArrayValues, 0);
806 return allowedConfigsArray;
807}
808
Dan Stoza00101052014-05-02 15:23:40 -0700809static jint nativeGetActiveConfig(JNIEnv* env, jclass clazz, jobject tokenObj) {
810 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
811 if (token == NULL) return -1;
812 return static_cast<jint>(SurfaceComposerClient::getActiveConfig(token));
813}
814
815static jboolean nativeSetActiveConfig(JNIEnv* env, jclass clazz, jobject tokenObj, jint id) {
816 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
817 if (token == NULL) return JNI_FALSE;
818 status_t err = SurfaceComposerClient::setActiveConfig(token, static_cast<int>(id));
819 return err == NO_ERROR ? JNI_TRUE : JNI_FALSE;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800820}
821
Michael Wright1c9977b2016-07-12 13:30:10 -0700822static jintArray nativeGetDisplayColorModes(JNIEnv* env, jclass, jobject tokenObj) {
823 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
824 if (token == NULL) return NULL;
Peiyong Linb88549e2018-03-28 12:03:45 -0700825 Vector<ui::ColorMode> colorModes;
Michael Wright1c9977b2016-07-12 13:30:10 -0700826 if (SurfaceComposerClient::getDisplayColorModes(token, &colorModes) != NO_ERROR ||
827 colorModes.isEmpty()) {
828 return NULL;
829 }
830
831 jintArray colorModesArray = env->NewIntArray(colorModes.size());
832 if (colorModesArray == NULL) {
833 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
834 return NULL;
835 }
836 jint* colorModesArrayValues = env->GetIntArrayElements(colorModesArray, 0);
837 for (size_t i = 0; i < colorModes.size(); i++) {
838 colorModesArrayValues[i] = static_cast<jint>(colorModes[i]);
839 }
840 env->ReleaseIntArrayElements(colorModesArray, colorModesArrayValues, 0);
841 return colorModesArray;
842}
843
Daniel Solomon10e3b332019-01-20 21:09:11 -0800844static jobject nativeGetDisplayNativePrimaries(JNIEnv* env, jclass, jobject tokenObj) {
845 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
846 if (token == NULL) return NULL;
847
848 ui::DisplayPrimaries primaries;
849 if (SurfaceComposerClient::getDisplayNativePrimaries(token, primaries) != NO_ERROR) {
850 return NULL;
851 }
852
853 jobject jred = env->NewObject(gCieXyzClassInfo.clazz, gCieXyzClassInfo.ctor);
854 if (jred == NULL) {
855 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
856 return NULL;
857 }
858
859 jobject jgreen = env->NewObject(gCieXyzClassInfo.clazz, gCieXyzClassInfo.ctor);
860 if (jgreen == NULL) {
861 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
862 return NULL;
863 }
864
865 jobject jblue = env->NewObject(gCieXyzClassInfo.clazz, gCieXyzClassInfo.ctor);
866 if (jblue == NULL) {
867 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
868 return NULL;
869 }
870
871 jobject jwhite = env->NewObject(gCieXyzClassInfo.clazz, gCieXyzClassInfo.ctor);
872 if (jwhite == NULL) {
873 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
874 return NULL;
875 }
876
877 jobject jprimaries = env->NewObject(gDisplayPrimariesClassInfo.clazz,
878 gDisplayPrimariesClassInfo.ctor);
879 if (jprimaries == NULL) {
880 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
881 return NULL;
882 }
883
884 env->SetFloatField(jred, gCieXyzClassInfo.X, primaries.red.X);
885 env->SetFloatField(jred, gCieXyzClassInfo.Y, primaries.red.Y);
886 env->SetFloatField(jred, gCieXyzClassInfo.Z, primaries.red.Z);
887 env->SetFloatField(jgreen, gCieXyzClassInfo.X, primaries.green.X);
888 env->SetFloatField(jgreen, gCieXyzClassInfo.Y, primaries.green.Y);
889 env->SetFloatField(jgreen, gCieXyzClassInfo.Z, primaries.green.Z);
890 env->SetFloatField(jblue, gCieXyzClassInfo.X, primaries.blue.X);
891 env->SetFloatField(jblue, gCieXyzClassInfo.Y, primaries.blue.Y);
892 env->SetFloatField(jblue, gCieXyzClassInfo.Z, primaries.blue.Z);
893 env->SetFloatField(jwhite, gCieXyzClassInfo.X, primaries.white.X);
894 env->SetFloatField(jwhite, gCieXyzClassInfo.Y, primaries.white.Y);
895 env->SetFloatField(jwhite, gCieXyzClassInfo.Z, primaries.white.Z);
896 env->SetObjectField(jprimaries, gDisplayPrimariesClassInfo.red, jred);
897 env->SetObjectField(jprimaries, gDisplayPrimariesClassInfo.green, jgreen);
898 env->SetObjectField(jprimaries, gDisplayPrimariesClassInfo.blue, jblue);
899 env->SetObjectField(jprimaries, gDisplayPrimariesClassInfo.white, jwhite);
900
901 return jprimaries;
902}
903
Michael Wright1c9977b2016-07-12 13:30:10 -0700904static jint nativeGetActiveColorMode(JNIEnv* env, jclass, jobject tokenObj) {
905 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
906 if (token == NULL) return -1;
907 return static_cast<jint>(SurfaceComposerClient::getActiveColorMode(token));
908}
909
Peiyong Lin5f4a5682019-01-17 11:37:07 -0800910static jintArray nativeGetCompositionDataspaces(JNIEnv* env, jclass) {
911 ui::Dataspace defaultDataspace, wcgDataspace;
912 ui::PixelFormat defaultPixelFormat, wcgPixelFormat;
913 if (SurfaceComposerClient::getCompositionPreference(&defaultDataspace,
914 &defaultPixelFormat,
915 &wcgDataspace,
916 &wcgPixelFormat) != NO_ERROR) {
917 return nullptr;
918 }
919 jintArray array = env->NewIntArray(2);
920 if (array == nullptr) {
921 jniThrowException(env, "java/lang/OutOfMemoryError", nullptr);
922 return nullptr;
923 }
924 jint* arrayValues = env->GetIntArrayElements(array, 0);
925 arrayValues[0] = static_cast<jint>(defaultDataspace);
926 arrayValues[1] = static_cast<jint>(wcgDataspace);
927 env->ReleaseIntArrayElements(array, arrayValues, 0);
928 return array;
929}
930
Michael Wright1c9977b2016-07-12 13:30:10 -0700931static jboolean nativeSetActiveColorMode(JNIEnv* env, jclass,
932 jobject tokenObj, jint colorMode) {
933 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
934 if (token == NULL) return JNI_FALSE;
935 status_t err = SurfaceComposerClient::setActiveColorMode(token,
Peiyong Linb88549e2018-03-28 12:03:45 -0700936 static_cast<ui::ColorMode>(colorMode));
Michael Wright1c9977b2016-07-12 13:30:10 -0700937 return err == NO_ERROR ? JNI_TRUE : JNI_FALSE;
938}
939
Prashant Malanic55929a2014-05-25 01:59:21 -0700940static void nativeSetDisplayPowerMode(JNIEnv* env, jclass clazz, jobject tokenObj, jint mode) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800941 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
942 if (token == NULL) return;
943
Tom Cherry8ed74bb2017-07-10 14:31:18 -0700944 android::base::Timer t;
Prashant Malanic55929a2014-05-25 01:59:21 -0700945 SurfaceComposerClient::setDisplayPowerMode(token, mode);
Tom Cherry8ed74bb2017-07-10 14:31:18 -0700946 if (t.duration() > 100ms) ALOGD("Excessive delay in setPowerMode()");
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800947}
948
Peiyong Lin0ddb7d42019-01-16 13:25:09 -0800949static jboolean nativeGetProtectedContentSupport(JNIEnv* env, jclass) {
950 return static_cast<jboolean>(SurfaceComposerClient::getProtectedContentSupport());
951}
952
Svetoslav1376d602014-03-13 11:17:26 -0700953static jboolean nativeClearContentFrameStats(JNIEnv* env, jclass clazz, jlong nativeObject) {
954 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
955 status_t err = ctrl->clearLayerFrameStats();
956
957 if (err < 0 && err != NO_INIT) {
958 doThrowIAE(env);
959 }
960
961 // The other end is not ready, just report we failed.
962 if (err == NO_INIT) {
963 return JNI_FALSE;
964 }
965
966 return JNI_TRUE;
967}
968
969static jboolean nativeGetContentFrameStats(JNIEnv* env, jclass clazz, jlong nativeObject,
970 jobject outStats) {
971 FrameStats stats;
972
973 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
974 status_t err = ctrl->getLayerFrameStats(&stats);
975 if (err < 0 && err != NO_INIT) {
976 doThrowIAE(env);
977 }
978
979 // The other end is not ready, fine just return empty stats.
980 if (err == NO_INIT) {
981 return JNI_FALSE;
982 }
983
984 jlong refreshPeriodNano = static_cast<jlong>(stats.refreshPeriodNano);
985 size_t frameCount = stats.desiredPresentTimesNano.size();
986
987 jlongArray postedTimesNanoDst = env->NewLongArray(frameCount);
988 if (postedTimesNanoDst == NULL) {
989 return JNI_FALSE;
990 }
991
992 jlongArray presentedTimesNanoDst = env->NewLongArray(frameCount);
993 if (presentedTimesNanoDst == NULL) {
994 return JNI_FALSE;
995 }
996
997 jlongArray readyTimesNanoDst = env->NewLongArray(frameCount);
998 if (readyTimesNanoDst == NULL) {
999 return JNI_FALSE;
1000 }
1001
1002 nsecs_t postedTimesNanoSrc[frameCount];
1003 nsecs_t presentedTimesNanoSrc[frameCount];
1004 nsecs_t readyTimesNanoSrc[frameCount];
1005
1006 for (size_t i = 0; i < frameCount; i++) {
1007 nsecs_t postedTimeNano = stats.desiredPresentTimesNano[i];
1008 if (postedTimeNano == INT64_MAX) {
1009 postedTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
1010 }
1011 postedTimesNanoSrc[i] = postedTimeNano;
1012
1013 nsecs_t presentedTimeNano = stats.actualPresentTimesNano[i];
1014 if (presentedTimeNano == INT64_MAX) {
1015 presentedTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
1016 }
1017 presentedTimesNanoSrc[i] = presentedTimeNano;
1018
1019 nsecs_t readyTimeNano = stats.frameReadyTimesNano[i];
1020 if (readyTimeNano == INT64_MAX) {
1021 readyTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
1022 }
1023 readyTimesNanoSrc[i] = readyTimeNano;
1024 }
1025
1026 env->SetLongArrayRegion(postedTimesNanoDst, 0, frameCount, postedTimesNanoSrc);
1027 env->SetLongArrayRegion(presentedTimesNanoDst, 0, frameCount, presentedTimesNanoSrc);
1028 env->SetLongArrayRegion(readyTimesNanoDst, 0, frameCount, readyTimesNanoSrc);
1029
1030 env->CallVoidMethod(outStats, gWindowContentFrameStatsClassInfo.init, refreshPeriodNano,
1031 postedTimesNanoDst, presentedTimesNanoDst, readyTimesNanoDst);
1032
1033 if (env->ExceptionCheck()) {
1034 return JNI_FALSE;
1035 }
1036
1037 return JNI_TRUE;
1038}
1039
1040static jboolean nativeClearAnimationFrameStats(JNIEnv* env, jclass clazz) {
1041 status_t err = SurfaceComposerClient::clearAnimationFrameStats();
1042
1043 if (err < 0 && err != NO_INIT) {
1044 doThrowIAE(env);
1045 }
1046
1047 // The other end is not ready, just report we failed.
1048 if (err == NO_INIT) {
1049 return JNI_FALSE;
1050 }
1051
1052 return JNI_TRUE;
1053}
1054
1055static jboolean nativeGetAnimationFrameStats(JNIEnv* env, jclass clazz, jobject outStats) {
1056 FrameStats stats;
1057
1058 status_t err = SurfaceComposerClient::getAnimationFrameStats(&stats);
1059 if (err < 0 && err != NO_INIT) {
1060 doThrowIAE(env);
1061 }
1062
1063 // The other end is not ready, fine just return empty stats.
1064 if (err == NO_INIT) {
1065 return JNI_FALSE;
1066 }
1067
1068 jlong refreshPeriodNano = static_cast<jlong>(stats.refreshPeriodNano);
1069 size_t frameCount = stats.desiredPresentTimesNano.size();
1070
1071 jlongArray presentedTimesNanoDst = env->NewLongArray(frameCount);
1072 if (presentedTimesNanoDst == NULL) {
1073 return JNI_FALSE;
1074 }
1075
1076 nsecs_t presentedTimesNanoSrc[frameCount];
1077
1078 for (size_t i = 0; i < frameCount; i++) {
Allen Hairac5eda32014-04-24 11:50:37 -07001079 nsecs_t presentedTimeNano = stats.actualPresentTimesNano[i];
Svetoslav1376d602014-03-13 11:17:26 -07001080 if (presentedTimeNano == INT64_MAX) {
1081 presentedTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
1082 }
1083 presentedTimesNanoSrc[i] = presentedTimeNano;
1084 }
1085
1086 env->SetLongArrayRegion(presentedTimesNanoDst, 0, frameCount, presentedTimesNanoSrc);
1087
1088 env->CallVoidMethod(outStats, gWindowAnimationFrameStatsClassInfo.init, refreshPeriodNano,
1089 presentedTimesNanoDst);
1090
1091 if (env->ExceptionCheck()) {
1092 return JNI_FALSE;
1093 }
1094
1095 return JNI_TRUE;
1096}
1097
Robert Carre13b58e2017-08-31 14:50:44 -07001098static void nativeDeferTransactionUntil(JNIEnv* env, jclass clazz, jlong transactionObj,
1099 jlong nativeObject,
Rob Carr64e516f2015-10-29 00:20:45 +00001100 jobject handleObject, jlong frameNumber) {
1101 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
1102 sp<IBinder> handle = ibinderForJavaObject(env, handleObject);
1103
Robert Carre13b58e2017-08-31 14:50:44 -07001104 {
1105 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
Marissa Wallcb32fdd2018-07-24 09:53:30 -07001106 transaction->deferTransactionUntil_legacy(ctrl, handle, frameNumber);
Robert Carre13b58e2017-08-31 14:50:44 -07001107 }
Rob Carr64e516f2015-10-29 00:20:45 +00001108}
1109
Robert Carre13b58e2017-08-31 14:50:44 -07001110static void nativeDeferTransactionUntilSurface(JNIEnv* env, jclass clazz, jlong transactionObj,
1111 jlong nativeObject,
Robert Carrd5c7dd62017-03-08 10:39:30 -08001112 jlong surfaceObject, jlong frameNumber) {
Robert Carre13b58e2017-08-31 14:50:44 -07001113 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
1114
Robert Carrd5c7dd62017-03-08 10:39:30 -08001115 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
1116 sp<Surface> barrier = reinterpret_cast<Surface *>(surfaceObject);
1117
Marissa Wallcb32fdd2018-07-24 09:53:30 -07001118 transaction->deferTransactionUntil_legacy(ctrl, barrier, frameNumber);
Robert Carrd5c7dd62017-03-08 10:39:30 -08001119}
1120
Robert Carre13b58e2017-08-31 14:50:44 -07001121static void nativeReparentChildren(JNIEnv* env, jclass clazz, jlong transactionObj,
1122 jlong nativeObject,
Robert Carrd5c7dd62017-03-08 10:39:30 -08001123 jobject newParentObject) {
Robert Carre13b58e2017-08-31 14:50:44 -07001124
Robert Carrd5c7dd62017-03-08 10:39:30 -08001125 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
1126 sp<IBinder> handle = ibinderForJavaObject(env, newParentObject);
1127
Robert Carre13b58e2017-08-31 14:50:44 -07001128 {
1129 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
1130 transaction->reparentChildren(ctrl, handle);
1131 }
Robert Carrd5c7dd62017-03-08 10:39:30 -08001132}
1133
Robert Carre13b58e2017-08-31 14:50:44 -07001134static void nativeReparent(JNIEnv* env, jclass clazz, jlong transactionObj,
1135 jlong nativeObject,
Robert Carr10584fa2019-01-14 15:55:19 -08001136 jlong newParentObject) {
chaviw63542382017-08-17 17:39:29 -07001137 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carr10584fa2019-01-14 15:55:19 -08001138 auto newParent = reinterpret_cast<SurfaceControl *>(newParentObject);
Robert Carre13b58e2017-08-31 14:50:44 -07001139
1140 {
1141 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
Robert Carr10584fa2019-01-14 15:55:19 -08001142 transaction->reparent(ctrl, newParent != NULL ? newParent->getHandle() : NULL);
Robert Carre13b58e2017-08-31 14:50:44 -07001143 }
chaviw63542382017-08-17 17:39:29 -07001144}
1145
Robert Carre13b58e2017-08-31 14:50:44 -07001146static void nativeSeverChildren(JNIEnv* env, jclass clazz, jlong transactionObj,
1147 jlong nativeObject) {
1148 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
1149
Robert Carrd5c7dd62017-03-08 10:39:30 -08001150 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -07001151 transaction->detachChildren(ctrl);
Robert Carrd5c7dd62017-03-08 10:39:30 -08001152}
1153
Robert Carre13b58e2017-08-31 14:50:44 -07001154static void nativeSetOverrideScalingMode(JNIEnv* env, jclass clazz, jlong transactionObj,
1155 jlong nativeObject,
Robert Carr1ca6a332016-04-11 18:00:43 -07001156 jint scalingMode) {
Robert Carre13b58e2017-08-31 14:50:44 -07001157 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
Robert Carr1ca6a332016-04-11 18:00:43 -07001158
Robert Carre13b58e2017-08-31 14:50:44 -07001159 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
1160 transaction->setOverrideScalingMode(ctrl, scalingMode);
Robert Carr1ca6a332016-04-11 18:00:43 -07001161}
1162
Rob Carr64e516f2015-10-29 00:20:45 +00001163static jobject nativeGetHandle(JNIEnv* env, jclass clazz, jlong nativeObject) {
1164 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Rob Carr64e516f2015-10-29 00:20:45 +00001165 return javaObjectForIBinder(env, ctrl->getHandle());
1166}
1167
Hangyu Kuang54ac2192016-04-25 13:22:02 -07001168static jobject nativeGetHdrCapabilities(JNIEnv* env, jclass clazz, jobject tokenObject) {
1169 sp<IBinder> token(ibinderForJavaObject(env, tokenObject));
1170 if (token == NULL) return NULL;
1171
1172 HdrCapabilities capabilities;
1173 SurfaceComposerClient::getHdrCapabilities(token, &capabilities);
1174
1175 const auto& types = capabilities.getSupportedHdrTypes();
Peiyong Lin3a0c6e12018-04-16 11:05:29 -07001176 std::vector<int32_t> intTypes;
1177 for (auto type : types) {
1178 intTypes.push_back(static_cast<int32_t>(type));
1179 }
Hangyu Kuang54ac2192016-04-25 13:22:02 -07001180 auto typesArray = env->NewIntArray(types.size());
Peiyong Lin3a0c6e12018-04-16 11:05:29 -07001181 env->SetIntArrayRegion(typesArray, 0, intTypes.size(), intTypes.data());
Hangyu Kuang54ac2192016-04-25 13:22:02 -07001182
Michael Wright9ff94c02016-03-30 18:05:40 -07001183 return env->NewObject(gHdrCapabilitiesClassInfo.clazz, gHdrCapabilitiesClassInfo.ctor,
Hangyu Kuang54ac2192016-04-25 13:22:02 -07001184 typesArray, capabilities.getDesiredMaxLuminance(),
1185 capabilities.getDesiredMaxAverageLuminance(), capabilities.getDesiredMinLuminance());
1186}
1187
Jorim Jaggi06975df2017-12-01 14:52:13 +01001188static jlong nativeReadFromParcel(JNIEnv* env, jclass clazz, jobject parcelObj) {
1189 Parcel* parcel = parcelForJavaObject(env, parcelObj);
1190 if (parcel == NULL) {
1191 doThrowNPE(env);
1192 return 0;
1193 }
1194 sp<SurfaceControl> surface = SurfaceControl::readFromParcel(parcel);
1195 if (surface == nullptr) {
1196 return 0;
1197 }
1198 surface->incStrong((void *)nativeCreate);
1199 return reinterpret_cast<jlong>(surface.get());
1200}
1201
chaviwbeb7a0c2018-12-05 13:49:54 -08001202static jlong nativeCopyFromSurfaceControl(JNIEnv* env, jclass clazz, jlong surfaceControlNativeObj) {
1203 sp<SurfaceControl> surface(reinterpret_cast<SurfaceControl *>(surfaceControlNativeObj));
1204 if (surface == nullptr) {
1205 return 0;
1206 }
Robert Carr5fea55b2018-12-10 13:05:52 -08001207
1208 sp<SurfaceControl> newSurface = new SurfaceControl(surface);
1209 newSurface->incStrong((void *)nativeCreate);
1210 return reinterpret_cast<jlong>(newSurface.get());
chaviwbeb7a0c2018-12-05 13:49:54 -08001211}
1212
Jorim Jaggi06975df2017-12-01 14:52:13 +01001213static void nativeWriteToParcel(JNIEnv* env, jclass clazz,
1214 jlong nativeObject, jobject parcelObj) {
1215 Parcel* parcel = parcelForJavaObject(env, parcelObj);
1216 if (parcel == NULL) {
1217 doThrowNPE(env);
1218 return;
1219 }
1220 SurfaceControl* const self = reinterpret_cast<SurfaceControl *>(nativeObject);
chaviwbeb7a0c2018-12-05 13:49:54 -08001221 if (self != nullptr) {
1222 self->writeToParcel(parcel);
1223 }
Jorim Jaggi06975df2017-12-01 14:52:13 +01001224}
1225
Dan Gittik832b4972019-02-13 18:17:47 +00001226static jboolean nativeGetDisplayBrightnessSupport(JNIEnv* env, jclass clazz,
1227 jobject displayTokenObject) {
1228 sp<IBinder> displayToken(ibinderForJavaObject(env, displayTokenObject));
1229 if (displayToken == nullptr) {
1230 return JNI_FALSE;
1231 }
1232 return static_cast<jboolean>(SurfaceComposerClient::getDisplayBrightnessSupport(displayToken));
1233}
1234
1235static jboolean nativeSetDisplayBrightness(JNIEnv* env, jclass clazz, jobject displayTokenObject,
1236 jfloat brightness) {
1237 sp<IBinder> displayToken(ibinderForJavaObject(env, displayTokenObject));
1238 if (displayToken == nullptr) {
1239 return JNI_FALSE;
1240 }
1241 status_t error = SurfaceComposerClient::setDisplayBrightness(displayToken, brightness);
1242 return error == OK ? JNI_TRUE : JNI_FALSE;
1243}
1244
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001245// ----------------------------------------------------------------------------
1246
Daniel Micay76f6a862015-09-19 17:31:01 -04001247static const JNINativeMethod sSurfaceControlMethods[] = {
Evan Rosky485df202018-12-06 14:11:12 -08001248 {"nativeCreate", "(Landroid/view/SurfaceSession;Ljava/lang/String;IIIIJLandroid/os/Parcel;)J",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001249 (void*)nativeCreate },
Jorim Jaggi06975df2017-12-01 14:52:13 +01001250 {"nativeReadFromParcel", "(Landroid/os/Parcel;)J",
1251 (void*)nativeReadFromParcel },
chaviwbeb7a0c2018-12-05 13:49:54 -08001252 {"nativeCopyFromSurfaceControl", "(J)J" ,
1253 (void*)nativeCopyFromSurfaceControl },
Jorim Jaggi06975df2017-12-01 14:52:13 +01001254 {"nativeWriteToParcel", "(JLandroid/os/Parcel;)V",
1255 (void*)nativeWriteToParcel },
Ashok Bhat36bef0b2014-01-20 20:08:01 +00001256 {"nativeRelease", "(J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001257 (void*)nativeRelease },
Ashok Bhat36bef0b2014-01-20 20:08:01 +00001258 {"nativeDestroy", "(J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001259 (void*)nativeDestroy },
Chong Zhang47e36a32016-02-29 16:44:33 -08001260 {"nativeDisconnect", "(J)V",
1261 (void*)nativeDisconnect },
Robert Carre13b58e2017-08-31 14:50:44 -07001262 {"nativeCreateTransaction", "()J",
1263 (void*)nativeCreateTransaction },
1264 {"nativeApplyTransaction", "(JZ)V",
1265 (void*)nativeApplyTransaction },
1266 {"nativeGetNativeTransactionFinalizer", "()J",
1267 (void*)nativeGetNativeTransactionFinalizer },
Robert Carrb1579c82017-09-05 14:54:47 -07001268 {"nativeMergeTransaction", "(JJ)V",
1269 (void*)nativeMergeTransaction },
Robert Carre13b58e2017-08-31 14:50:44 -07001270 {"nativeSetAnimationTransaction", "(J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001271 (void*)nativeSetAnimationTransaction },
Jorim Jaggiaa763cd2018-03-22 23:20:36 +01001272 {"nativeSetEarlyWakeup", "(J)V",
1273 (void*)nativeSetEarlyWakeup },
Robert Carre13b58e2017-08-31 14:50:44 -07001274 {"nativeSetLayer", "(JJI)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001275 (void*)nativeSetLayer },
Robert Carre13b58e2017-08-31 14:50:44 -07001276 {"nativeSetRelativeLayer", "(JJLandroid/os/IBinder;I)V",
Robert Carraf422a82017-04-10 18:34:33 -07001277 (void*)nativeSetRelativeLayer },
Robert Carre13b58e2017-08-31 14:50:44 -07001278 {"nativeSetPosition", "(JJFF)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001279 (void*)nativeSetPosition },
Robert Carre13b58e2017-08-31 14:50:44 -07001280 {"nativeSetGeometryAppliesWithResize", "(JJ)V",
Robert Carr6da3cc02016-06-16 15:17:07 -07001281 (void*)nativeSetGeometryAppliesWithResize },
Robert Carre13b58e2017-08-31 14:50:44 -07001282 {"nativeSetSize", "(JJII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001283 (void*)nativeSetSize },
Robert Carre13b58e2017-08-31 14:50:44 -07001284 {"nativeSetTransparentRegionHint", "(JJLandroid/graphics/Region;)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001285 (void*)nativeSetTransparentRegionHint },
Robert Carre13b58e2017-08-31 14:50:44 -07001286 {"nativeSetAlpha", "(JJF)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001287 (void*)nativeSetAlpha },
Robert Carre13b58e2017-08-31 14:50:44 -07001288 {"nativeSetColor", "(JJ[F)V",
chaviw0dd03f52017-08-25 12:15:26 -07001289 (void*)nativeSetColor },
Robert Carre13b58e2017-08-31 14:50:44 -07001290 {"nativeSetMatrix", "(JJFFFF)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001291 (void*)nativeSetMatrix },
Peiyong Lin52bb6b42018-10-01 11:40:50 -07001292 {"nativeSetColorTransform", "(JJ[F[F)V",
1293 (void*)nativeSetColorTransform },
Peiyong Linf4f0f642019-03-01 14:36:05 -08001294 {"nativeSetColorSpaceAgnostic", "(JJZ)V",
1295 (void*)nativeSetColorSpaceAgnostic },
Robert Carre13b58e2017-08-31 14:50:44 -07001296 {"nativeSetFlags", "(JJII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001297 (void*)nativeSetFlags },
Robert Carre13b58e2017-08-31 14:50:44 -07001298 {"nativeSetWindowCrop", "(JJIIII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001299 (void*)nativeSetWindowCrop },
Lucas Dupinff9d6ab2018-10-16 18:05:50 -07001300 {"nativeSetCornerRadius", "(JJF)V",
1301 (void*)nativeSetCornerRadius },
Robert Carre13b58e2017-08-31 14:50:44 -07001302 {"nativeSetLayerStack", "(JJI)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001303 (void*)nativeSetLayerStack },
Dominik Laskowski3316a0a2019-01-25 02:56:41 -08001304 {"nativeGetPhysicalDisplayIds", "()[J",
1305 (void*)nativeGetPhysicalDisplayIds },
1306 {"nativeGetPhysicalDisplayToken", "(J)Landroid/os/IBinder;",
1307 (void*)nativeGetPhysicalDisplayToken },
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001308 {"nativeCreateDisplay", "(Ljava/lang/String;Z)Landroid/os/IBinder;",
1309 (void*)nativeCreateDisplay },
Jesse Hall6a6bc212013-08-08 12:15:03 -07001310 {"nativeDestroyDisplay", "(Landroid/os/IBinder;)V",
1311 (void*)nativeDestroyDisplay },
Robert Carre13b58e2017-08-31 14:50:44 -07001312 {"nativeSetDisplaySurface", "(JLandroid/os/IBinder;J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001313 (void*)nativeSetDisplaySurface },
Robert Carre13b58e2017-08-31 14:50:44 -07001314 {"nativeSetDisplayLayerStack", "(JLandroid/os/IBinder;I)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001315 (void*)nativeSetDisplayLayerStack },
Robert Carre13b58e2017-08-31 14:50:44 -07001316 {"nativeSetDisplayProjection", "(JLandroid/os/IBinder;IIIIIIIII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001317 (void*)nativeSetDisplayProjection },
Robert Carre13b58e2017-08-31 14:50:44 -07001318 {"nativeSetDisplaySize", "(JLandroid/os/IBinder;II)V",
Michael Wright01e840f2014-06-26 16:03:25 -07001319 (void*)nativeSetDisplaySize },
Dan Stoza00101052014-05-02 15:23:40 -07001320 {"nativeGetDisplayConfigs", "(Landroid/os/IBinder;)[Landroid/view/SurfaceControl$PhysicalDisplayInfo;",
1321 (void*)nativeGetDisplayConfigs },
1322 {"nativeGetActiveConfig", "(Landroid/os/IBinder;)I",
1323 (void*)nativeGetActiveConfig },
1324 {"nativeSetActiveConfig", "(Landroid/os/IBinder;I)Z",
1325 (void*)nativeSetActiveConfig },
Ady Abraham6070ce12019-01-24 18:48:58 -08001326 {"nativeSetAllowedDisplayConfigs", "(Landroid/os/IBinder;[I)Z",
1327 (void*)nativeSetAllowedDisplayConfigs },
Ady Abraham42f9a2fb2019-02-26 14:13:39 -08001328 {"nativeGetAllowedDisplayConfigs", "(Landroid/os/IBinder;)[I",
1329 (void*)nativeGetAllowedDisplayConfigs },
Michael Wright1c9977b2016-07-12 13:30:10 -07001330 {"nativeGetDisplayColorModes", "(Landroid/os/IBinder;)[I",
1331 (void*)nativeGetDisplayColorModes},
Daniel Solomon10e3b332019-01-20 21:09:11 -08001332 {"nativeGetDisplayNativePrimaries", "(Landroid/os/IBinder;)Landroid/view/SurfaceControl$DisplayPrimaries;",
1333 (void*)nativeGetDisplayNativePrimaries },
Michael Wright1c9977b2016-07-12 13:30:10 -07001334 {"nativeGetActiveColorMode", "(Landroid/os/IBinder;)I",
1335 (void*)nativeGetActiveColorMode},
1336 {"nativeSetActiveColorMode", "(Landroid/os/IBinder;I)Z",
1337 (void*)nativeSetActiveColorMode},
Peiyong Lin5f4a5682019-01-17 11:37:07 -08001338 {"nativeGetCompositionDataspaces", "()[I",
1339 (void*)nativeGetCompositionDataspaces},
Michael Wright9ff94c02016-03-30 18:05:40 -07001340 {"nativeGetHdrCapabilities", "(Landroid/os/IBinder;)Landroid/view/Display$HdrCapabilities;",
1341 (void*)nativeGetHdrCapabilities },
Svetoslav1376d602014-03-13 11:17:26 -07001342 {"nativeClearContentFrameStats", "(J)Z",
1343 (void*)nativeClearContentFrameStats },
1344 {"nativeGetContentFrameStats", "(JLandroid/view/WindowContentFrameStats;)Z",
1345 (void*)nativeGetContentFrameStats },
1346 {"nativeClearAnimationFrameStats", "()Z",
1347 (void*)nativeClearAnimationFrameStats },
1348 {"nativeGetAnimationFrameStats", "(Landroid/view/WindowAnimationFrameStats;)Z",
1349 (void*)nativeGetAnimationFrameStats },
Prashant Malanic55929a2014-05-25 01:59:21 -07001350 {"nativeSetDisplayPowerMode", "(Landroid/os/IBinder;I)V",
1351 (void*)nativeSetDisplayPowerMode },
Peiyong Lin0ddb7d42019-01-16 13:25:09 -08001352 {"nativeGetProtectedContentSupport", "()Z",
1353 (void*)nativeGetProtectedContentSupport },
Robert Carre13b58e2017-08-31 14:50:44 -07001354 {"nativeDeferTransactionUntil", "(JJLandroid/os/IBinder;J)V",
Rob Carr64e516f2015-10-29 00:20:45 +00001355 (void*)nativeDeferTransactionUntil },
Robert Carre13b58e2017-08-31 14:50:44 -07001356 {"nativeDeferTransactionUntilSurface", "(JJJJ)V",
Robert Carrd5c7dd62017-03-08 10:39:30 -08001357 (void*)nativeDeferTransactionUntilSurface },
Robert Carre13b58e2017-08-31 14:50:44 -07001358 {"nativeReparentChildren", "(JJLandroid/os/IBinder;)V",
Robert Carrd5c7dd62017-03-08 10:39:30 -08001359 (void*)nativeReparentChildren } ,
Robert Carr10584fa2019-01-14 15:55:19 -08001360 {"nativeReparent", "(JJJ)V",
chaviw76431402017-09-18 16:50:05 -07001361 (void*)nativeReparent },
Robert Carre13b58e2017-08-31 14:50:44 -07001362 {"nativeSeverChildren", "(JJ)V",
Robert Carrd5c7dd62017-03-08 10:39:30 -08001363 (void*)nativeSeverChildren } ,
Robert Carre13b58e2017-08-31 14:50:44 -07001364 {"nativeSetOverrideScalingMode", "(JJI)V",
Robert Carr1ca6a332016-04-11 18:00:43 -07001365 (void*)nativeSetOverrideScalingMode },
Rob Carr64e516f2015-10-29 00:20:45 +00001366 {"nativeGetHandle", "(J)Landroid/os/IBinder;",
Robert Carr6da3cc02016-06-16 15:17:07 -07001367 (void*)nativeGetHandle },
Peiyong Line3e5efd2019-03-21 20:59:47 +00001368 {"nativeScreenshot",
1369 "(Landroid/os/IBinder;Landroid/graphics/Rect;IIZIZ)"
1370 "Landroid/view/SurfaceControl$ScreenshotGraphicBuffer;",
chaviw08520a02018-09-10 16:44:56 -07001371 (void*)nativeScreenshot },
Peiyong Line3e5efd2019-03-21 20:59:47 +00001372 {"nativeCaptureLayers",
Robert Carrffcdc512019-04-02 11:51:11 -07001373 "(Landroid/os/IBinder;Landroid/graphics/Rect;F[Landroid/os/IBinder;)"
Peiyong Line3e5efd2019-03-21 20:59:47 +00001374 "Landroid/view/SurfaceControl$ScreenshotGraphicBuffer;",
Chavi Weingartend7ec64c2017-11-30 01:52:01 +00001375 (void*)nativeCaptureLayers },
Robert Carr788f5742018-07-30 17:46:45 -07001376 {"nativeSetInputWindowInfo", "(JJLandroid/view/InputWindowHandle;)V",
chaviw59f532e2018-12-26 15:34:59 -08001377 (void*)nativeSetInputWindowInfo },
1378 {"nativeTransferTouchFocus", "(JLandroid/os/IBinder;Landroid/os/IBinder;)V",
1379 (void*)nativeTransferTouchFocus },
Evan Rosky485df202018-12-06 14:11:12 -08001380 {"nativeSetMetadata", "(JILandroid/os/Parcel;)V",
1381 (void*)nativeSetMetadata },
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001382 {"nativeGetDisplayedContentSamplingAttributes",
1383 "(Landroid/os/IBinder;)Landroid/hardware/display/DisplayedContentSamplingAttributes;",
1384 (void*)nativeGetDisplayedContentSamplingAttributes },
1385 {"nativeSetDisplayedContentSamplingEnabled", "(Landroid/os/IBinder;ZII)Z",
1386 (void*)nativeSetDisplayedContentSamplingEnabled },
1387 {"nativeGetDisplayedContentSample",
1388 "(Landroid/os/IBinder;JJ)Landroid/hardware/display/DisplayedContentSample;",
1389 (void*)nativeGetDisplayedContentSample },
Robert Carr76907ee2019-01-11 13:38:19 -08001390 {"nativeSetGeometry", "(JJLandroid/graphics/Rect;Landroid/graphics/Rect;J)V",
chaviw319cd0782019-02-14 11:00:23 -08001391 (void*)nativeSetGeometry },
1392 {"nativeSyncInputWindows", "(J)V",
Dan Gittik832b4972019-02-13 18:17:47 +00001393 (void*)nativeSyncInputWindows },
1394 {"nativeGetDisplayBrightnessSupport", "(Landroid/os/IBinder;)Z",
1395 (void*)nativeGetDisplayBrightnessSupport },
1396 {"nativeSetDisplayBrightness", "(Landroid/os/IBinder;F)Z",
1397 (void*)nativeSetDisplayBrightness },
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001398};
1399
1400int register_android_view_SurfaceControl(JNIEnv* env)
1401{
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001402 int err = RegisterMethodsOrDie(env, "android/view/SurfaceControl",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001403 sSurfaceControlMethods, NELEM(sSurfaceControlMethods));
1404
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001405 jclass clazz = FindClassOrDie(env, "android/view/SurfaceControl$PhysicalDisplayInfo");
1406 gPhysicalDisplayInfoClassInfo.clazz = MakeGlobalRefOrDie(env, clazz);
1407 gPhysicalDisplayInfoClassInfo.ctor = GetMethodIDOrDie(env,
1408 gPhysicalDisplayInfoClassInfo.clazz, "<init>", "()V");
1409 gPhysicalDisplayInfoClassInfo.width = GetFieldIDOrDie(env, clazz, "width", "I");
1410 gPhysicalDisplayInfoClassInfo.height = GetFieldIDOrDie(env, clazz, "height", "I");
1411 gPhysicalDisplayInfoClassInfo.refreshRate = GetFieldIDOrDie(env, clazz, "refreshRate", "F");
1412 gPhysicalDisplayInfoClassInfo.density = GetFieldIDOrDie(env, clazz, "density", "F");
1413 gPhysicalDisplayInfoClassInfo.xDpi = GetFieldIDOrDie(env, clazz, "xDpi", "F");
1414 gPhysicalDisplayInfoClassInfo.yDpi = GetFieldIDOrDie(env, clazz, "yDpi", "F");
1415 gPhysicalDisplayInfoClassInfo.secure = GetFieldIDOrDie(env, clazz, "secure", "Z");
1416 gPhysicalDisplayInfoClassInfo.appVsyncOffsetNanos = GetFieldIDOrDie(env,
1417 clazz, "appVsyncOffsetNanos", "J");
1418 gPhysicalDisplayInfoClassInfo.presentationDeadlineNanos = GetFieldIDOrDie(env,
1419 clazz, "presentationDeadlineNanos", "J");
Svetoslav1376d602014-03-13 11:17:26 -07001420
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001421 jclass rectClazz = FindClassOrDie(env, "android/graphics/Rect");
1422 gRectClassInfo.bottom = GetFieldIDOrDie(env, rectClazz, "bottom", "I");
1423 gRectClassInfo.left = GetFieldIDOrDie(env, rectClazz, "left", "I");
1424 gRectClassInfo.right = GetFieldIDOrDie(env, rectClazz, "right", "I");
1425 gRectClassInfo.top = GetFieldIDOrDie(env, rectClazz, "top", "I");
Dan Stoza9890e3412014-05-22 16:12:54 -07001426
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001427 jclass frameStatsClazz = FindClassOrDie(env, "android/view/FrameStats");
1428 jfieldID undefined_time_nano_field = GetStaticFieldIDOrDie(env,
1429 frameStatsClazz, "UNDEFINED_TIME_NANO", "J");
Svetoslav1376d602014-03-13 11:17:26 -07001430 nsecs_t undefined_time_nano = env->GetStaticLongField(frameStatsClazz, undefined_time_nano_field);
1431
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001432 jclass contFrameStatsClazz = FindClassOrDie(env, "android/view/WindowContentFrameStats");
1433 gWindowContentFrameStatsClassInfo.init = GetMethodIDOrDie(env,
1434 contFrameStatsClazz, "init", "(J[J[J[J)V");
Svetoslav1376d602014-03-13 11:17:26 -07001435 gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO = undefined_time_nano;
1436
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001437 jclass animFrameStatsClazz = FindClassOrDie(env, "android/view/WindowAnimationFrameStats");
1438 gWindowAnimationFrameStatsClassInfo.init = GetMethodIDOrDie(env,
1439 animFrameStatsClazz, "init", "(J[J)V");
Svetoslav1376d602014-03-13 11:17:26 -07001440 gWindowAnimationFrameStatsClassInfo.UNDEFINED_TIME_NANO = undefined_time_nano;
1441
Hangyu Kuang54ac2192016-04-25 13:22:02 -07001442 jclass hdrCapabilitiesClazz = FindClassOrDie(env, "android/view/Display$HdrCapabilities");
1443 gHdrCapabilitiesClassInfo.clazz = MakeGlobalRefOrDie(env, hdrCapabilitiesClazz);
1444 gHdrCapabilitiesClassInfo.ctor = GetMethodIDOrDie(env, hdrCapabilitiesClazz, "<init>",
1445 "([IFFF)V");
1446
Robert Carr6486d312017-01-09 19:48:29 -08001447 jclass graphicsBufferClazz = FindClassOrDie(env, "android/graphics/GraphicBuffer");
1448 gGraphicBufferClassInfo.clazz = MakeGlobalRefOrDie(env, graphicsBufferClazz);
1449 gGraphicBufferClassInfo.builder = GetStaticMethodIDOrDie(env, graphicsBufferClazz,
1450 "createFromExisting", "(IIIIJ)Landroid/graphics/GraphicBuffer;");
1451
Peiyong Line3e5efd2019-03-21 20:59:47 +00001452 jclass screenshotGraphicsBufferClazz = FindClassOrDie(env,
1453 "android/view/SurfaceControl$ScreenshotGraphicBuffer");
1454 gScreenshotGraphicBufferClassInfo.clazz =
1455 MakeGlobalRefOrDie(env, screenshotGraphicsBufferClazz);
1456 gScreenshotGraphicBufferClassInfo.builder = GetStaticMethodIDOrDie(env,
1457 screenshotGraphicsBufferClazz,
1458 "createFromNative", "(IIIIJI)Landroid/view/SurfaceControl$ScreenshotGraphicBuffer;");
1459
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001460 jclass displayedContentSampleClazz = FindClassOrDie(env,
1461 "android/hardware/display/DisplayedContentSample");
1462 gDisplayedContentSampleClassInfo.clazz = MakeGlobalRefOrDie(env, displayedContentSampleClazz);
1463 gDisplayedContentSampleClassInfo.ctor = GetMethodIDOrDie(env,
1464 displayedContentSampleClazz, "<init>", "(J[J[J[J[J)V");
1465
1466 jclass displayedContentSamplingAttributesClazz = FindClassOrDie(env,
1467 "android/hardware/display/DisplayedContentSamplingAttributes");
1468 gDisplayedContentSamplingAttributesClassInfo.clazz = MakeGlobalRefOrDie(env,
1469 displayedContentSamplingAttributesClazz);
1470 gDisplayedContentSamplingAttributesClassInfo.ctor = GetMethodIDOrDie(env,
1471 displayedContentSamplingAttributesClazz, "<init>", "(III)V");
Daniel Solomon10e3b332019-01-20 21:09:11 -08001472
1473 jclass cieXyzClazz = FindClassOrDie(env, "android/view/SurfaceControl$CieXyz");
1474 gCieXyzClassInfo.clazz = MakeGlobalRefOrDie(env, cieXyzClazz);
1475 gCieXyzClassInfo.ctor = GetMethodIDOrDie(env, gCieXyzClassInfo.clazz, "<init>", "()V");
1476 gCieXyzClassInfo.X = GetFieldIDOrDie(env, cieXyzClazz, "X", "F");
1477 gCieXyzClassInfo.Y = GetFieldIDOrDie(env, cieXyzClazz, "Y", "F");
1478 gCieXyzClassInfo.Z = GetFieldIDOrDie(env, cieXyzClazz, "Z", "F");
1479
1480 jclass displayPrimariesClazz = FindClassOrDie(env,
1481 "android/view/SurfaceControl$DisplayPrimaries");
1482 gDisplayPrimariesClassInfo.clazz = MakeGlobalRefOrDie(env, displayPrimariesClazz);
1483 gDisplayPrimariesClassInfo.ctor = GetMethodIDOrDie(env, gDisplayPrimariesClassInfo.clazz,
1484 "<init>", "()V");
1485 gDisplayPrimariesClassInfo.red = GetFieldIDOrDie(env, displayPrimariesClazz, "red",
1486 "Landroid/view/SurfaceControl$CieXyz;");
1487 gDisplayPrimariesClassInfo.green = GetFieldIDOrDie(env, displayPrimariesClazz, "green",
1488 "Landroid/view/SurfaceControl$CieXyz;");
1489 gDisplayPrimariesClassInfo.blue = GetFieldIDOrDie(env, displayPrimariesClazz, "blue",
1490 "Landroid/view/SurfaceControl$CieXyz;");
1491 gDisplayPrimariesClassInfo.white = GetFieldIDOrDie(env, displayPrimariesClazz, "white",
1492 "Landroid/view/SurfaceControl$CieXyz;");
1493
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001494 return err;
1495}
1496
Dominik Laskowski3316a0a2019-01-25 02:56:41 -08001497} // namespace android