blob: f292d25c15fe2390444e6050a3b50ad07fccb6c5 [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>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080039#include <ui/DisplayInfo.h>
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -070040#include <ui/DisplayedFrameStats.h>
Svetoslav1376d602014-03-13 11:17:26 -070041#include <ui/FrameStats.h>
Peiyong Linb88549e2018-03-28 12:03:45 -070042#include <ui/GraphicTypes.h>
Peiyong Lin371b98f2018-03-14 17:29:10 -070043#include <ui/HdrCapabilities.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080044#include <ui/Rect.h>
45#include <ui/Region.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080046#include <utils/Log.h>
47
Mathias Agopian3866f0d2013-02-11 22:08:48 -080048// ----------------------------------------------------------------------------
49
50namespace android {
51
52static const char* const OutOfResourcesException =
53 "android/view/Surface$OutOfResourcesException";
54
55static struct {
Dan Stoza00101052014-05-02 15:23:40 -070056 jclass clazz;
57 jmethodID ctor;
Mathias Agopian3866f0d2013-02-11 22:08:48 -080058 jfieldID width;
59 jfieldID height;
60 jfieldID refreshRate;
61 jfieldID density;
62 jfieldID xDpi;
63 jfieldID yDpi;
64 jfieldID secure;
Andy McFaddene8b1aeb2014-06-13 14:05:40 -070065 jfieldID appVsyncOffsetNanos;
66 jfieldID presentationDeadlineNanos;
Mathias Agopian3866f0d2013-02-11 22:08:48 -080067} gPhysicalDisplayInfoClassInfo;
68
Dan Stoza9890e3412014-05-22 16:12:54 -070069static struct {
70 jfieldID bottom;
71 jfieldID left;
72 jfieldID right;
73 jfieldID top;
74} gRectClassInfo;
75
Leon Scroggins46cb9bd2014-03-06 15:36:39 -050076// Implements SkMallocPixelRef::ReleaseProc, to delete the screenshot on unref.
77void DeleteScreenshot(void* addr, void* context) {
Leon Scroggins46cb9bd2014-03-06 15:36:39 -050078 delete ((ScreenshotClient*) context);
79}
Mathias Agopian3866f0d2013-02-11 22:08:48 -080080
Svetoslav1376d602014-03-13 11:17:26 -070081static struct {
82 nsecs_t UNDEFINED_TIME_NANO;
83 jmethodID init;
84} gWindowContentFrameStatsClassInfo;
85
86static struct {
87 nsecs_t UNDEFINED_TIME_NANO;
88 jmethodID init;
89} gWindowAnimationFrameStatsClassInfo;
90
Hangyu Kuang54ac2192016-04-25 13:22:02 -070091static struct {
92 jclass clazz;
93 jmethodID ctor;
94} gHdrCapabilitiesClassInfo;
95
Robert Carr6486d312017-01-09 19:48:29 -080096static struct {
97 jclass clazz;
98 jmethodID builder;
99} gGraphicBufferClassInfo;
100
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -0700101static struct {
102 jclass clazz;
103 jmethodID ctor;
104} gDisplayedContentSampleClassInfo;
105
106static struct {
107 jclass clazz;
108 jmethodID ctor;
109} gDisplayedContentSamplingAttributesClassInfo;
110
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800111// ----------------------------------------------------------------------------
112
Robert Carre13b58e2017-08-31 14:50:44 -0700113static jlong nativeCreateTransaction(JNIEnv* env, jclass clazz) {
114 return reinterpret_cast<jlong>(new SurfaceComposerClient::Transaction);
115}
116
117static void releaseTransaction(SurfaceComposerClient::Transaction* t) {
118 delete t;
119}
120
121static jlong nativeGetNativeTransactionFinalizer(JNIEnv* env, jclass clazz) {
122 return static_cast<jlong>(reinterpret_cast<uintptr_t>(&releaseTransaction));
123}
124
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000125static jlong nativeCreate(JNIEnv* env, jclass clazz, jobject sessionObj,
Albert Chaulk3bf2e572016-11-22 13:59:19 -0500126 jstring nameStr, jint w, jint h, jint format, jint flags, jlong parentObject,
127 jint windowType, jint ownerUid) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800128 ScopedUtfChars name(env, nameStr);
129 sp<SurfaceComposerClient> client(android_view_SurfaceSession_getClient(env, sessionObj));
Robert Carr838120c2016-11-01 18:31:12 -0700130 SurfaceControl *parent = reinterpret_cast<SurfaceControl*>(parentObject);
Robert Carrb0f39362018-03-14 13:52:25 -0700131 sp<SurfaceControl> surface;
132 status_t err = client->createSurfaceChecked(
133 String8(name.c_str()), w, h, format, &surface, flags, parent, windowType, ownerUid);
134 if (err == NAME_NOT_FOUND) {
135 jniThrowException(env, "java/lang/IllegalArgumentException", NULL);
136 return 0;
137 } else if (err != NO_ERROR) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800138 jniThrowException(env, OutOfResourcesException, NULL);
139 return 0;
140 }
Albert Chaulk3bf2e572016-11-22 13:59:19 -0500141
Mathias Agopianb1d90c82013-03-06 17:45:42 -0800142 surface->incStrong((void *)nativeCreate);
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000143 return reinterpret_cast<jlong>(surface.get());
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800144}
145
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000146static void nativeRelease(JNIEnv* env, jclass clazz, jlong nativeObject) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800147 sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(nativeObject));
Mathias Agopianb1d90c82013-03-06 17:45:42 -0800148 ctrl->decStrong((void *)nativeCreate);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800149}
150
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000151static void nativeDestroy(JNIEnv* env, jclass clazz, jlong nativeObject) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800152 sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(nativeObject));
153 ctrl->clear();
Mathias Agopianb1d90c82013-03-06 17:45:42 -0800154 ctrl->decStrong((void *)nativeCreate);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800155}
156
Chong Zhang47e36a32016-02-29 16:44:33 -0800157static void nativeDisconnect(JNIEnv* env, jclass clazz, jlong nativeObject) {
158 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
159 if (ctrl != NULL) {
160 ctrl->disconnect();
161 }
162}
163
Robert Carr6486d312017-01-09 19:48:29 -0800164static Rect rectFromObj(JNIEnv* env, jobject rectObj) {
165 int left = env->GetIntField(rectObj, gRectClassInfo.left);
166 int top = env->GetIntField(rectObj, gRectClassInfo.top);
167 int right = env->GetIntField(rectObj, gRectClassInfo.right);
168 int bottom = env->GetIntField(rectObj, gRectClassInfo.bottom);
169 return Rect(left, top, right, bottom);
170}
171
chaviw08520a02018-09-10 16:44:56 -0700172static jobject nativeScreenshot(JNIEnv* env, jclass clazz,
Robert Carr6486d312017-01-09 19:48:29 -0800173 jobject displayTokenObj, jobject sourceCropObj, jint width, jint height,
chaviw08520a02018-09-10 16:44:56 -0700174 bool useIdentityTransform, int rotation) {
Robert Carr6486d312017-01-09 19:48:29 -0800175 sp<IBinder> displayToken = ibinderForJavaObject(env, displayTokenObj);
176 if (displayToken == NULL) {
177 return NULL;
178 }
179 Rect sourceCrop = rectFromObj(env, sourceCropObj);
Robert Carr6486d312017-01-09 19:48:29 -0800180 sp<GraphicBuffer> buffer;
Peiyong Lin10a34d12018-09-19 13:56:12 -0700181 status_t res = ScreenshotClient::capture(displayToken, ui::Dataspace::V0_SRGB,
182 ui::PixelFormat::RGBA_8888,
183 sourceCrop, width, height,
184 useIdentityTransform, rotation, &buffer);
Robert Carr6486d312017-01-09 19:48:29 -0800185 if (res != NO_ERROR) {
186 return NULL;
187 }
188
189 return env->CallStaticObjectMethod(gGraphicBufferClassInfo.clazz,
190 gGraphicBufferClassInfo.builder,
191 buffer->getWidth(),
192 buffer->getHeight(),
193 buffer->getPixelFormat(),
Mathias Agopian113fd302017-05-25 18:31:04 -0700194 (jint)buffer->getUsage(),
Patrik Torstensson511a8082017-03-27 15:04:11 +0100195 (jlong)buffer.get());
Robert Carr6486d312017-01-09 19:48:29 -0800196}
197
Chavi Weingartend7ec64c2017-11-30 01:52:01 +0000198static jobject nativeCaptureLayers(JNIEnv* env, jclass clazz, jobject layerHandleToken,
chaviwfbe47df2017-11-10 16:14:49 -0800199 jobject sourceCropObj, jfloat frameScale) {
200
201 sp<IBinder> layerHandle = ibinderForJavaObject(env, layerHandleToken);
202 if (layerHandle == NULL) {
203 return NULL;
204 }
205
206 Rect sourceCrop;
207 if (sourceCropObj != NULL) {
208 sourceCrop = rectFromObj(env, sourceCropObj);
209 }
210
211 sp<GraphicBuffer> buffer;
Peiyong Lin10a34d12018-09-19 13:56:12 -0700212 status_t res = ScreenshotClient::captureChildLayers(layerHandle, ui::Dataspace::V0_SRGB,
213 ui::PixelFormat::RGBA_8888, sourceCrop,
214 frameScale, &buffer);
chaviwfbe47df2017-11-10 16:14:49 -0800215 if (res != NO_ERROR) {
216 return NULL;
217 }
218
219 return env->CallStaticObjectMethod(gGraphicBufferClassInfo.clazz,
220 gGraphicBufferClassInfo.builder,
221 buffer->getWidth(),
222 buffer->getHeight(),
223 buffer->getPixelFormat(),
224 (jint)buffer->getUsage(),
225 (jlong)buffer.get());
chaviw1cda84c2017-10-23 16:47:10 -0700226}
227
Robert Carre13b58e2017-08-31 14:50:44 -0700228static void nativeApplyTransaction(JNIEnv* env, jclass clazz, jlong transactionObj, jboolean sync) {
229 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
230 transaction->apply(sync);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800231}
232
Robert Carrb1579c82017-09-05 14:54:47 -0700233static void nativeMergeTransaction(JNIEnv* env, jclass clazz,
234 jlong transactionObj, jlong otherTransactionObj) {
235 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
236 auto otherTransaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(
237 otherTransactionObj);
238 transaction->merge(std::move(*otherTransaction));
239}
240
Robert Carre13b58e2017-08-31 14:50:44 -0700241static void nativeSetAnimationTransaction(JNIEnv* env, jclass clazz, jlong transactionObj) {
242 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
243 transaction->setAnimationTransaction();
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800244}
245
Jorim Jaggiaa763cd2018-03-22 23:20:36 +0100246static void nativeSetEarlyWakeup(JNIEnv* env, jclass clazz, jlong transactionObj) {
247 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
248 transaction->setEarlyWakeup();
249}
250
Robert Carre13b58e2017-08-31 14:50:44 -0700251static void nativeSetLayer(JNIEnv* env, jclass clazz, jlong transactionObj,
252 jlong nativeObject, jint zorder) {
253 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800254
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800255 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700256 transaction->setLayer(ctrl, zorder);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800257}
258
Robert Carre13b58e2017-08-31 14:50:44 -0700259static void nativeSetRelativeLayer(JNIEnv* env, jclass clazz, jlong transactionObj,
260 jlong nativeObject,
Robert Carraf422a82017-04-10 18:34:33 -0700261 jobject relativeTo, jint zorder) {
Robert Carre13b58e2017-08-31 14:50:44 -0700262
Robert Carraf422a82017-04-10 18:34:33 -0700263 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
264 sp<IBinder> handle = ibinderForJavaObject(env, relativeTo);
265
Robert Carre13b58e2017-08-31 14:50:44 -0700266 {
267 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
268 transaction->setRelativeLayer(ctrl, handle, zorder);
269 }
Robert Carraf422a82017-04-10 18:34:33 -0700270}
271
Robert Carre13b58e2017-08-31 14:50:44 -0700272static void nativeSetPosition(JNIEnv* env, jclass clazz, jlong transactionObj,
273 jlong nativeObject, jfloat x, jfloat y) {
274 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
275
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800276 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700277 transaction->setPosition(ctrl, x, y);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800278}
279
Robert Carr6da3cc02016-06-16 15:17:07 -0700280static void nativeSetGeometryAppliesWithResize(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700281jlong transactionObj,
Robert Carra9408d42016-06-03 13:28:48 -0700282 jlong nativeObject) {
Robert Carre13b58e2017-08-31 14:50:44 -0700283 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
284
Robert Carra9408d42016-06-03 13:28:48 -0700285 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700286 transaction->setGeometryAppliesWithResize(ctrl);
Robert Carra9408d42016-06-03 13:28:48 -0700287}
288
Robert Carre13b58e2017-08-31 14:50:44 -0700289static void nativeSetSize(JNIEnv* env, jclass clazz, jlong transactionObj,
290 jlong nativeObject, jint w, jint h) {
291 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
292
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800293 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700294 transaction->setSize(ctrl, w, h);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800295}
296
Robert Carre13b58e2017-08-31 14:50:44 -0700297static void nativeSetFlags(JNIEnv* env, jclass clazz, jlong transactionObj,
298 jlong nativeObject, jint flags, jint mask) {
299 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
300
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800301 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700302 transaction->setFlags(ctrl, flags, mask);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800303}
304
Robert Carre13b58e2017-08-31 14:50:44 -0700305static void nativeSetTransparentRegionHint(JNIEnv* env, jclass clazz, jlong transactionObj,
306 jlong nativeObject, jobject regionObj) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800307 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
308 SkRegion* region = android_graphics_Region_getSkRegion(env, regionObj);
309 if (!region) {
310 doThrowIAE(env);
311 return;
312 }
313
314 const SkIRect& b(region->getBounds());
315 Region reg(Rect(b.fLeft, b.fTop, b.fRight, b.fBottom));
316 if (region->isComplex()) {
317 SkRegion::Iterator it(*region);
318 while (!it.done()) {
319 const SkIRect& r(it.rect());
320 reg.addRectUnchecked(r.fLeft, r.fTop, r.fRight, r.fBottom);
321 it.next();
322 }
323 }
324
Robert Carre13b58e2017-08-31 14:50:44 -0700325 {
326 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
327 transaction->setTransparentRegionHint(ctrl, reg);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800328 }
329}
330
Robert Carre13b58e2017-08-31 14:50:44 -0700331static void nativeSetAlpha(JNIEnv* env, jclass clazz, jlong transactionObj,
332 jlong nativeObject, jfloat alpha) {
333 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
334
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800335 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700336 transaction->setAlpha(ctrl, alpha);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800337}
338
Robert Carr788f5742018-07-30 17:46:45 -0700339static void nativeSetInputWindowInfo(JNIEnv* env, jclass clazz, jlong transactionObj,
340 jlong nativeObject, jobject inputWindow) {
341 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
342
343 sp<NativeInputWindowHandle> handle = android_server_InputWindowHandle_getHandle(
344 env, inputWindow);
345 handle->updateInfo();
346
347 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
348 transaction->setInputWindowInfo(ctrl, *handle->getInfo());
349}
350
chaviw59f532e2018-12-26 15:34:59 -0800351static void nativeTransferTouchFocus(JNIEnv* env, jclass clazz, jlong transactionObj,
352 jobject fromTokenObj, jobject toTokenObj) {
353 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
354
355 sp<IBinder> fromToken(ibinderForJavaObject(env, fromTokenObj));
356 sp<IBinder> toToken(ibinderForJavaObject(env, toTokenObj));
357 transaction->transferTouchFocus(fromToken, toToken);
358}
359
Robert Carre13b58e2017-08-31 14:50:44 -0700360static void nativeSetColor(JNIEnv* env, jclass clazz, jlong transactionObj,
361 jlong nativeObject, jfloatArray fColor) {
362 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
chaviw0dd03f52017-08-25 12:15:26 -0700363 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700364
chaviw0dd03f52017-08-25 12:15:26 -0700365 float* floatColors = env->GetFloatArrayElements(fColor, 0);
366 half3 color(floatColors[0], floatColors[1], floatColors[2]);
Robert Carre13b58e2017-08-31 14:50:44 -0700367 transaction->setColor(ctrl, color);
chaviw0dd03f52017-08-25 12:15:26 -0700368}
369
Robert Carre13b58e2017-08-31 14:50:44 -0700370static void nativeSetMatrix(JNIEnv* env, jclass clazz, jlong transactionObj,
371 jlong nativeObject,
Robert Carr0edf18f2017-02-21 20:01:47 -0800372 jfloat dsdx, jfloat dtdx, jfloat dtdy, jfloat dsdy) {
Robert Carre13b58e2017-08-31 14:50:44 -0700373 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
374
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800375 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700376 transaction->setMatrix(ctrl, dsdx, dtdx, dtdy, dsdy);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800377}
378
Peiyong Lin52bb6b42018-10-01 11:40:50 -0700379static void nativeSetColorTransform(JNIEnv* env, jclass clazz, jlong transactionObj,
380 jlong nativeObject, jfloatArray fMatrix, jfloatArray fTranslation) {
381 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
382 SurfaceControl* const surfaceControl = reinterpret_cast<SurfaceControl*>(nativeObject);
383 float* floatMatrix = env->GetFloatArrayElements(fMatrix, 0);
384 mat3 matrix(static_cast<float const*>(floatMatrix));
385 float* floatTranslation = env->GetFloatArrayElements(fTranslation, 0);
386 vec3 translation(floatTranslation[0], floatTranslation[1], floatTranslation[2]);
387 transaction->setColorTransform(surfaceControl, matrix, translation);
388}
389
Robert Carre13b58e2017-08-31 14:50:44 -0700390static void nativeSetWindowCrop(JNIEnv* env, jclass clazz, jlong transactionObj,
391 jlong nativeObject,
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800392 jint l, jint t, jint r, jint b) {
Robert Carre13b58e2017-08-31 14:50:44 -0700393 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
394
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800395 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
396 Rect crop(l, t, r, b);
Marissa Wallcb32fdd2018-07-24 09:53:30 -0700397 transaction->setCrop_legacy(ctrl, crop);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800398}
399
Lucas Dupinff9d6ab2018-10-16 18:05:50 -0700400static void nativeSetCornerRadius(JNIEnv* env, jclass clazz, jlong transactionObj,
401 jlong nativeObject, jfloat cornerRadius) {
402 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
403
404 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
405 transaction->setCornerRadius(ctrl, cornerRadius);
406}
407
Robert Carre13b58e2017-08-31 14:50:44 -0700408static void nativeSetLayerStack(JNIEnv* env, jclass clazz, jlong transactionObj,
409 jlong nativeObject, jint layerStack) {
410 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
411
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800412 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700413 transaction->setLayerStack(ctrl, layerStack);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800414}
415
416static jobject nativeGetBuiltInDisplay(JNIEnv* env, jclass clazz, jint id) {
417 sp<IBinder> token(SurfaceComposerClient::getBuiltInDisplay(id));
418 return javaObjectForIBinder(env, token);
419}
420
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -0700421static jobject nativeGetDisplayedContentSamplingAttributes(JNIEnv* env, jclass clazz,
422 jobject tokenObj) {
423 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
424
425 ui::PixelFormat format;
426 ui::Dataspace dataspace;
427 uint8_t componentMask;
428 status_t err = SurfaceComposerClient::getDisplayedContentSamplingAttributes(
429 token, &format, &dataspace, &componentMask);
430 if (err != OK) {
431 return nullptr;
432 }
433 return env->NewObject(gDisplayedContentSamplingAttributesClassInfo.clazz,
434 gDisplayedContentSamplingAttributesClassInfo.ctor,
435 format, dataspace, componentMask);
436}
437
438static jboolean nativeSetDisplayedContentSamplingEnabled(JNIEnv* env, jclass clazz,
439 jobject tokenObj, jboolean enable, jint componentMask, jint maxFrames) {
440 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
Kevin DuBois205a6802019-01-07 17:04:46 -0800441 status_t rc = SurfaceComposerClient::setDisplayContentSamplingEnabled(
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -0700442 token, enable, componentMask, maxFrames);
Kevin DuBois205a6802019-01-07 17:04:46 -0800443 return rc == OK;
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -0700444}
445
446static jobject nativeGetDisplayedContentSample(JNIEnv* env, jclass clazz, jobject tokenObj,
447 jlong maxFrames, jlong timestamp) {
448 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
449
450 DisplayedFrameStats stats;
451 status_t err = SurfaceComposerClient::getDisplayedContentSample(
452 token, maxFrames, timestamp, &stats);
453 if (err != OK) {
454 return nullptr;
455 }
456
457 jlongArray histogramComponent0 = env->NewLongArray(stats.component_0_sample.size());
458 jlongArray histogramComponent1 = env->NewLongArray(stats.component_1_sample.size());
459 jlongArray histogramComponent2 = env->NewLongArray(stats.component_2_sample.size());
460 jlongArray histogramComponent3 = env->NewLongArray(stats.component_3_sample.size());
461 if ((histogramComponent0 == nullptr) ||
462 (histogramComponent1 == nullptr) ||
463 (histogramComponent2 == nullptr) ||
464 (histogramComponent3 == nullptr)) {
465 return JNI_FALSE;
466 }
467
468 env->SetLongArrayRegion(histogramComponent0, 0,
469 stats.component_0_sample.size(),
470 reinterpret_cast<jlong*>(stats.component_0_sample.data()));
471 env->SetLongArrayRegion(histogramComponent1, 0,
472 stats.component_1_sample.size(),
473 reinterpret_cast<jlong*>(stats.component_1_sample.data()));
474 env->SetLongArrayRegion(histogramComponent2, 0,
475 stats.component_2_sample.size(),
476 reinterpret_cast<jlong*>(stats.component_2_sample.data()));
477 env->SetLongArrayRegion(histogramComponent3, 0,
478 stats.component_3_sample.size(),
479 reinterpret_cast<jlong*>(stats.component_3_sample.data()));
480 return env->NewObject(gDisplayedContentSampleClassInfo.clazz,
481 gDisplayedContentSampleClassInfo.ctor,
482 stats.numFrames,
483 histogramComponent0,
484 histogramComponent1,
485 histogramComponent2,
486 histogramComponent3);
487}
488
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800489static jobject nativeCreateDisplay(JNIEnv* env, jclass clazz, jstring nameObj,
490 jboolean secure) {
491 ScopedUtfChars name(env, nameObj);
492 sp<IBinder> token(SurfaceComposerClient::createDisplay(
493 String8(name.c_str()), bool(secure)));
494 return javaObjectForIBinder(env, token);
495}
496
Jesse Hall6a6bc212013-08-08 12:15:03 -0700497static void nativeDestroyDisplay(JNIEnv* env, jclass clazz, jobject tokenObj) {
498 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
499 if (token == NULL) return;
500 SurfaceComposerClient::destroyDisplay(token);
501}
502
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800503static void nativeSetDisplaySurface(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700504 jlong transactionObj,
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000505 jobject tokenObj, jlong nativeSurfaceObject) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800506 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
507 if (token == NULL) return;
Mathias Agopianffddc9b2013-02-25 15:56:31 -0800508 sp<IGraphicBufferProducer> bufferProducer;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800509 sp<Surface> sur(reinterpret_cast<Surface *>(nativeSurfaceObject));
Mathias Agopianffddc9b2013-02-25 15:56:31 -0800510 if (sur != NULL) {
511 bufferProducer = sur->getIGraphicBufferProducer();
512 }
Robert Carre13b58e2017-08-31 14:50:44 -0700513
514
515 status_t err = NO_ERROR;
516 {
517 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
518 err = transaction->setDisplaySurface(token,
519 bufferProducer);
520 }
Pablo Ceballosaff2f942016-07-29 14:49:55 -0700521 if (err != NO_ERROR) {
522 doThrowIAE(env, "Illegal Surface, could not enable async mode. Was this"
523 " Surface created with singleBufferMode?");
524 }
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800525}
526
527static void nativeSetDisplayLayerStack(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700528 jlong transactionObj,
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800529 jobject tokenObj, jint layerStack) {
Robert Carre13b58e2017-08-31 14:50:44 -0700530
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800531 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
532 if (token == NULL) return;
533
Robert Carre13b58e2017-08-31 14:50:44 -0700534 {
535 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
536 transaction->setDisplayLayerStack(token, layerStack);
537 }
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800538}
539
540static void nativeSetDisplayProjection(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700541 jlong transactionObj,
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800542 jobject tokenObj, jint orientation,
543 jint layerStackRect_left, jint layerStackRect_top, jint layerStackRect_right, jint layerStackRect_bottom,
544 jint displayRect_left, jint displayRect_top, jint displayRect_right, jint displayRect_bottom) {
545 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
546 if (token == NULL) return;
547 Rect layerStackRect(layerStackRect_left, layerStackRect_top, layerStackRect_right, layerStackRect_bottom);
548 Rect displayRect(displayRect_left, displayRect_top, displayRect_right, displayRect_bottom);
Robert Carre13b58e2017-08-31 14:50:44 -0700549
550 {
551 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
552 transaction->setDisplayProjection(token, orientation, layerStackRect, displayRect);
553 }
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800554}
555
Michael Wright01e840f2014-06-26 16:03:25 -0700556static void nativeSetDisplaySize(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700557 jlong transactionObj,
Michael Wright01e840f2014-06-26 16:03:25 -0700558 jobject tokenObj, jint width, jint height) {
559 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
560 if (token == NULL) return;
Robert Carre13b58e2017-08-31 14:50:44 -0700561
562 {
563 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
564 transaction->setDisplaySize(token, width, height);
565 }
Michael Wright01e840f2014-06-26 16:03:25 -0700566}
567
Dan Stoza00101052014-05-02 15:23:40 -0700568static jobjectArray nativeGetDisplayConfigs(JNIEnv* env, jclass clazz,
569 jobject tokenObj) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800570 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
Dan Stoza00101052014-05-02 15:23:40 -0700571 if (token == NULL) return NULL;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800572
Dan Stoza00101052014-05-02 15:23:40 -0700573 Vector<DisplayInfo> configs;
574 if (SurfaceComposerClient::getDisplayConfigs(token, &configs) != NO_ERROR ||
575 configs.size() == 0) {
576 return NULL;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800577 }
578
Dan Stoza00101052014-05-02 15:23:40 -0700579 jobjectArray configArray = env->NewObjectArray(configs.size(),
580 gPhysicalDisplayInfoClassInfo.clazz, NULL);
581
582 for (size_t c = 0; c < configs.size(); ++c) {
583 const DisplayInfo& info = configs[c];
584 jobject infoObj = env->NewObject(gPhysicalDisplayInfoClassInfo.clazz,
585 gPhysicalDisplayInfoClassInfo.ctor);
586 env->SetIntField(infoObj, gPhysicalDisplayInfoClassInfo.width, info.w);
587 env->SetIntField(infoObj, gPhysicalDisplayInfoClassInfo.height, info.h);
588 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.refreshRate, info.fps);
589 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.density, info.density);
590 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.xDpi, info.xdpi);
591 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.yDpi, info.ydpi);
592 env->SetBooleanField(infoObj, gPhysicalDisplayInfoClassInfo.secure, info.secure);
Andy McFaddene8b1aeb2014-06-13 14:05:40 -0700593 env->SetLongField(infoObj, gPhysicalDisplayInfoClassInfo.appVsyncOffsetNanos,
594 info.appVsyncOffset);
595 env->SetLongField(infoObj, gPhysicalDisplayInfoClassInfo.presentationDeadlineNanos,
596 info.presentationDeadline);
Dan Stoza00101052014-05-02 15:23:40 -0700597 env->SetObjectArrayElement(configArray, static_cast<jsize>(c), infoObj);
598 env->DeleteLocalRef(infoObj);
599 }
600
601 return configArray;
602}
603
604static jint nativeGetActiveConfig(JNIEnv* env, jclass clazz, jobject tokenObj) {
605 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
606 if (token == NULL) return -1;
607 return static_cast<jint>(SurfaceComposerClient::getActiveConfig(token));
608}
609
610static jboolean nativeSetActiveConfig(JNIEnv* env, jclass clazz, jobject tokenObj, jint id) {
611 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
612 if (token == NULL) return JNI_FALSE;
613 status_t err = SurfaceComposerClient::setActiveConfig(token, static_cast<int>(id));
614 return err == NO_ERROR ? JNI_TRUE : JNI_FALSE;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800615}
616
Michael Wright1c9977b2016-07-12 13:30:10 -0700617static jintArray nativeGetDisplayColorModes(JNIEnv* env, jclass, jobject tokenObj) {
618 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
619 if (token == NULL) return NULL;
Peiyong Linb88549e2018-03-28 12:03:45 -0700620 Vector<ui::ColorMode> colorModes;
Michael Wright1c9977b2016-07-12 13:30:10 -0700621 if (SurfaceComposerClient::getDisplayColorModes(token, &colorModes) != NO_ERROR ||
622 colorModes.isEmpty()) {
623 return NULL;
624 }
625
626 jintArray colorModesArray = env->NewIntArray(colorModes.size());
627 if (colorModesArray == NULL) {
628 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
629 return NULL;
630 }
631 jint* colorModesArrayValues = env->GetIntArrayElements(colorModesArray, 0);
632 for (size_t i = 0; i < colorModes.size(); i++) {
633 colorModesArrayValues[i] = static_cast<jint>(colorModes[i]);
634 }
635 env->ReleaseIntArrayElements(colorModesArray, colorModesArrayValues, 0);
636 return colorModesArray;
637}
638
639static jint nativeGetActiveColorMode(JNIEnv* env, jclass, jobject tokenObj) {
640 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
641 if (token == NULL) return -1;
642 return static_cast<jint>(SurfaceComposerClient::getActiveColorMode(token));
643}
644
645static jboolean nativeSetActiveColorMode(JNIEnv* env, jclass,
646 jobject tokenObj, jint colorMode) {
647 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
648 if (token == NULL) return JNI_FALSE;
649 status_t err = SurfaceComposerClient::setActiveColorMode(token,
Peiyong Linb88549e2018-03-28 12:03:45 -0700650 static_cast<ui::ColorMode>(colorMode));
Michael Wright1c9977b2016-07-12 13:30:10 -0700651 return err == NO_ERROR ? JNI_TRUE : JNI_FALSE;
652}
653
Prashant Malanic55929a2014-05-25 01:59:21 -0700654static void nativeSetDisplayPowerMode(JNIEnv* env, jclass clazz, jobject tokenObj, jint mode) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800655 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
656 if (token == NULL) return;
657
Tom Cherry8ed74bb2017-07-10 14:31:18 -0700658 android::base::Timer t;
Prashant Malanic55929a2014-05-25 01:59:21 -0700659 SurfaceComposerClient::setDisplayPowerMode(token, mode);
Tom Cherry8ed74bb2017-07-10 14:31:18 -0700660 if (t.duration() > 100ms) ALOGD("Excessive delay in setPowerMode()");
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800661}
662
Svetoslav1376d602014-03-13 11:17:26 -0700663static jboolean nativeClearContentFrameStats(JNIEnv* env, jclass clazz, jlong nativeObject) {
664 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
665 status_t err = ctrl->clearLayerFrameStats();
666
667 if (err < 0 && err != NO_INIT) {
668 doThrowIAE(env);
669 }
670
671 // The other end is not ready, just report we failed.
672 if (err == NO_INIT) {
673 return JNI_FALSE;
674 }
675
676 return JNI_TRUE;
677}
678
679static jboolean nativeGetContentFrameStats(JNIEnv* env, jclass clazz, jlong nativeObject,
680 jobject outStats) {
681 FrameStats stats;
682
683 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
684 status_t err = ctrl->getLayerFrameStats(&stats);
685 if (err < 0 && err != NO_INIT) {
686 doThrowIAE(env);
687 }
688
689 // The other end is not ready, fine just return empty stats.
690 if (err == NO_INIT) {
691 return JNI_FALSE;
692 }
693
694 jlong refreshPeriodNano = static_cast<jlong>(stats.refreshPeriodNano);
695 size_t frameCount = stats.desiredPresentTimesNano.size();
696
697 jlongArray postedTimesNanoDst = env->NewLongArray(frameCount);
698 if (postedTimesNanoDst == NULL) {
699 return JNI_FALSE;
700 }
701
702 jlongArray presentedTimesNanoDst = env->NewLongArray(frameCount);
703 if (presentedTimesNanoDst == NULL) {
704 return JNI_FALSE;
705 }
706
707 jlongArray readyTimesNanoDst = env->NewLongArray(frameCount);
708 if (readyTimesNanoDst == NULL) {
709 return JNI_FALSE;
710 }
711
712 nsecs_t postedTimesNanoSrc[frameCount];
713 nsecs_t presentedTimesNanoSrc[frameCount];
714 nsecs_t readyTimesNanoSrc[frameCount];
715
716 for (size_t i = 0; i < frameCount; i++) {
717 nsecs_t postedTimeNano = stats.desiredPresentTimesNano[i];
718 if (postedTimeNano == INT64_MAX) {
719 postedTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
720 }
721 postedTimesNanoSrc[i] = postedTimeNano;
722
723 nsecs_t presentedTimeNano = stats.actualPresentTimesNano[i];
724 if (presentedTimeNano == INT64_MAX) {
725 presentedTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
726 }
727 presentedTimesNanoSrc[i] = presentedTimeNano;
728
729 nsecs_t readyTimeNano = stats.frameReadyTimesNano[i];
730 if (readyTimeNano == INT64_MAX) {
731 readyTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
732 }
733 readyTimesNanoSrc[i] = readyTimeNano;
734 }
735
736 env->SetLongArrayRegion(postedTimesNanoDst, 0, frameCount, postedTimesNanoSrc);
737 env->SetLongArrayRegion(presentedTimesNanoDst, 0, frameCount, presentedTimesNanoSrc);
738 env->SetLongArrayRegion(readyTimesNanoDst, 0, frameCount, readyTimesNanoSrc);
739
740 env->CallVoidMethod(outStats, gWindowContentFrameStatsClassInfo.init, refreshPeriodNano,
741 postedTimesNanoDst, presentedTimesNanoDst, readyTimesNanoDst);
742
743 if (env->ExceptionCheck()) {
744 return JNI_FALSE;
745 }
746
747 return JNI_TRUE;
748}
749
750static jboolean nativeClearAnimationFrameStats(JNIEnv* env, jclass clazz) {
751 status_t err = SurfaceComposerClient::clearAnimationFrameStats();
752
753 if (err < 0 && err != NO_INIT) {
754 doThrowIAE(env);
755 }
756
757 // The other end is not ready, just report we failed.
758 if (err == NO_INIT) {
759 return JNI_FALSE;
760 }
761
762 return JNI_TRUE;
763}
764
765static jboolean nativeGetAnimationFrameStats(JNIEnv* env, jclass clazz, jobject outStats) {
766 FrameStats stats;
767
768 status_t err = SurfaceComposerClient::getAnimationFrameStats(&stats);
769 if (err < 0 && err != NO_INIT) {
770 doThrowIAE(env);
771 }
772
773 // The other end is not ready, fine just return empty stats.
774 if (err == NO_INIT) {
775 return JNI_FALSE;
776 }
777
778 jlong refreshPeriodNano = static_cast<jlong>(stats.refreshPeriodNano);
779 size_t frameCount = stats.desiredPresentTimesNano.size();
780
781 jlongArray presentedTimesNanoDst = env->NewLongArray(frameCount);
782 if (presentedTimesNanoDst == NULL) {
783 return JNI_FALSE;
784 }
785
786 nsecs_t presentedTimesNanoSrc[frameCount];
787
788 for (size_t i = 0; i < frameCount; i++) {
Allen Hairac5eda32014-04-24 11:50:37 -0700789 nsecs_t presentedTimeNano = stats.actualPresentTimesNano[i];
Svetoslav1376d602014-03-13 11:17:26 -0700790 if (presentedTimeNano == INT64_MAX) {
791 presentedTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
792 }
793 presentedTimesNanoSrc[i] = presentedTimeNano;
794 }
795
796 env->SetLongArrayRegion(presentedTimesNanoDst, 0, frameCount, presentedTimesNanoSrc);
797
798 env->CallVoidMethod(outStats, gWindowAnimationFrameStatsClassInfo.init, refreshPeriodNano,
799 presentedTimesNanoDst);
800
801 if (env->ExceptionCheck()) {
802 return JNI_FALSE;
803 }
804
805 return JNI_TRUE;
806}
807
Robert Carre13b58e2017-08-31 14:50:44 -0700808static void nativeDeferTransactionUntil(JNIEnv* env, jclass clazz, jlong transactionObj,
809 jlong nativeObject,
Rob Carr64e516f2015-10-29 00:20:45 +0000810 jobject handleObject, jlong frameNumber) {
811 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
812 sp<IBinder> handle = ibinderForJavaObject(env, handleObject);
813
Robert Carre13b58e2017-08-31 14:50:44 -0700814 {
815 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
Marissa Wallcb32fdd2018-07-24 09:53:30 -0700816 transaction->deferTransactionUntil_legacy(ctrl, handle, frameNumber);
Robert Carre13b58e2017-08-31 14:50:44 -0700817 }
Rob Carr64e516f2015-10-29 00:20:45 +0000818}
819
Robert Carre13b58e2017-08-31 14:50:44 -0700820static void nativeDeferTransactionUntilSurface(JNIEnv* env, jclass clazz, jlong transactionObj,
821 jlong nativeObject,
Robert Carrd5c7dd62017-03-08 10:39:30 -0800822 jlong surfaceObject, jlong frameNumber) {
Robert Carre13b58e2017-08-31 14:50:44 -0700823 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
824
Robert Carrd5c7dd62017-03-08 10:39:30 -0800825 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
826 sp<Surface> barrier = reinterpret_cast<Surface *>(surfaceObject);
827
Marissa Wallcb32fdd2018-07-24 09:53:30 -0700828 transaction->deferTransactionUntil_legacy(ctrl, barrier, frameNumber);
Robert Carrd5c7dd62017-03-08 10:39:30 -0800829}
830
Robert Carre13b58e2017-08-31 14:50:44 -0700831static void nativeReparentChildren(JNIEnv* env, jclass clazz, jlong transactionObj,
832 jlong nativeObject,
Robert Carrd5c7dd62017-03-08 10:39:30 -0800833 jobject newParentObject) {
Robert Carre13b58e2017-08-31 14:50:44 -0700834
Robert Carrd5c7dd62017-03-08 10:39:30 -0800835 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
836 sp<IBinder> handle = ibinderForJavaObject(env, newParentObject);
837
Robert Carre13b58e2017-08-31 14:50:44 -0700838 {
839 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
840 transaction->reparentChildren(ctrl, handle);
841 }
Robert Carrd5c7dd62017-03-08 10:39:30 -0800842}
843
Robert Carre13b58e2017-08-31 14:50:44 -0700844static void nativeReparent(JNIEnv* env, jclass clazz, jlong transactionObj,
845 jlong nativeObject,
chaviw76431402017-09-18 16:50:05 -0700846 jobject newParentObject) {
chaviw63542382017-08-17 17:39:29 -0700847 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
848 sp<IBinder> parentHandle = ibinderForJavaObject(env, newParentObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700849
850 {
851 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
852 transaction->reparent(ctrl, parentHandle);
853 }
chaviw63542382017-08-17 17:39:29 -0700854}
855
Robert Carre13b58e2017-08-31 14:50:44 -0700856static void nativeSeverChildren(JNIEnv* env, jclass clazz, jlong transactionObj,
857 jlong nativeObject) {
858 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
859
Robert Carrd5c7dd62017-03-08 10:39:30 -0800860 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700861 transaction->detachChildren(ctrl);
Robert Carrd5c7dd62017-03-08 10:39:30 -0800862}
863
Robert Carre13b58e2017-08-31 14:50:44 -0700864static void nativeSetOverrideScalingMode(JNIEnv* env, jclass clazz, jlong transactionObj,
865 jlong nativeObject,
Robert Carr1ca6a332016-04-11 18:00:43 -0700866 jint scalingMode) {
Robert Carre13b58e2017-08-31 14:50:44 -0700867 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
Robert Carr1ca6a332016-04-11 18:00:43 -0700868
Robert Carre13b58e2017-08-31 14:50:44 -0700869 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
870 transaction->setOverrideScalingMode(ctrl, scalingMode);
Robert Carr1ca6a332016-04-11 18:00:43 -0700871}
872
Chavi Weingartenb736e322018-02-23 00:27:54 +0000873static void nativeDestroyInTransaction(JNIEnv* env, jclass clazz,
874 jlong transactionObj,
875 jlong nativeObject) {
876 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
877 auto ctrl = reinterpret_cast<SurfaceControl*>(nativeObject);
878 transaction->destroySurface(ctrl);
879}
880
Rob Carr64e516f2015-10-29 00:20:45 +0000881static jobject nativeGetHandle(JNIEnv* env, jclass clazz, jlong nativeObject) {
882 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Rob Carr64e516f2015-10-29 00:20:45 +0000883 return javaObjectForIBinder(env, ctrl->getHandle());
884}
885
Hangyu Kuang54ac2192016-04-25 13:22:02 -0700886static jobject nativeGetHdrCapabilities(JNIEnv* env, jclass clazz, jobject tokenObject) {
887 sp<IBinder> token(ibinderForJavaObject(env, tokenObject));
888 if (token == NULL) return NULL;
889
890 HdrCapabilities capabilities;
891 SurfaceComposerClient::getHdrCapabilities(token, &capabilities);
892
893 const auto& types = capabilities.getSupportedHdrTypes();
Peiyong Lin3a0c6e12018-04-16 11:05:29 -0700894 std::vector<int32_t> intTypes;
895 for (auto type : types) {
896 intTypes.push_back(static_cast<int32_t>(type));
897 }
Hangyu Kuang54ac2192016-04-25 13:22:02 -0700898 auto typesArray = env->NewIntArray(types.size());
Peiyong Lin3a0c6e12018-04-16 11:05:29 -0700899 env->SetIntArrayRegion(typesArray, 0, intTypes.size(), intTypes.data());
Hangyu Kuang54ac2192016-04-25 13:22:02 -0700900
Michael Wright9ff94c02016-03-30 18:05:40 -0700901 return env->NewObject(gHdrCapabilitiesClassInfo.clazz, gHdrCapabilitiesClassInfo.ctor,
Hangyu Kuang54ac2192016-04-25 13:22:02 -0700902 typesArray, capabilities.getDesiredMaxLuminance(),
903 capabilities.getDesiredMaxAverageLuminance(), capabilities.getDesiredMinLuminance());
904}
905
Jorim Jaggi06975df2017-12-01 14:52:13 +0100906static jlong nativeReadFromParcel(JNIEnv* env, jclass clazz, jobject parcelObj) {
907 Parcel* parcel = parcelForJavaObject(env, parcelObj);
908 if (parcel == NULL) {
909 doThrowNPE(env);
910 return 0;
911 }
912 sp<SurfaceControl> surface = SurfaceControl::readFromParcel(parcel);
913 if (surface == nullptr) {
914 return 0;
915 }
916 surface->incStrong((void *)nativeCreate);
917 return reinterpret_cast<jlong>(surface.get());
918}
919
chaviwbeb7a0c2018-12-05 13:49:54 -0800920static jlong nativeCopyFromSurfaceControl(JNIEnv* env, jclass clazz, jlong surfaceControlNativeObj) {
921 sp<SurfaceControl> surface(reinterpret_cast<SurfaceControl *>(surfaceControlNativeObj));
922 if (surface == nullptr) {
923 return 0;
924 }
Robert Carr5fea55b2018-12-10 13:05:52 -0800925
926 sp<SurfaceControl> newSurface = new SurfaceControl(surface);
927 newSurface->incStrong((void *)nativeCreate);
928 return reinterpret_cast<jlong>(newSurface.get());
chaviwbeb7a0c2018-12-05 13:49:54 -0800929}
930
Jorim Jaggi06975df2017-12-01 14:52:13 +0100931static void nativeWriteToParcel(JNIEnv* env, jclass clazz,
932 jlong nativeObject, jobject parcelObj) {
933 Parcel* parcel = parcelForJavaObject(env, parcelObj);
934 if (parcel == NULL) {
935 doThrowNPE(env);
936 return;
937 }
938 SurfaceControl* const self = reinterpret_cast<SurfaceControl *>(nativeObject);
chaviwbeb7a0c2018-12-05 13:49:54 -0800939 if (self != nullptr) {
940 self->writeToParcel(parcel);
941 }
Jorim Jaggi06975df2017-12-01 14:52:13 +0100942}
943
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800944// ----------------------------------------------------------------------------
945
Daniel Micay76f6a862015-09-19 17:31:01 -0400946static const JNINativeMethod sSurfaceControlMethods[] = {
Albert Chaulk3bf2e572016-11-22 13:59:19 -0500947 {"nativeCreate", "(Landroid/view/SurfaceSession;Ljava/lang/String;IIIIJII)J",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800948 (void*)nativeCreate },
Jorim Jaggi06975df2017-12-01 14:52:13 +0100949 {"nativeReadFromParcel", "(Landroid/os/Parcel;)J",
950 (void*)nativeReadFromParcel },
chaviwbeb7a0c2018-12-05 13:49:54 -0800951 {"nativeCopyFromSurfaceControl", "(J)J" ,
952 (void*)nativeCopyFromSurfaceControl },
Jorim Jaggi06975df2017-12-01 14:52:13 +0100953 {"nativeWriteToParcel", "(JLandroid/os/Parcel;)V",
954 (void*)nativeWriteToParcel },
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000955 {"nativeRelease", "(J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800956 (void*)nativeRelease },
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000957 {"nativeDestroy", "(J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800958 (void*)nativeDestroy },
Chong Zhang47e36a32016-02-29 16:44:33 -0800959 {"nativeDisconnect", "(J)V",
960 (void*)nativeDisconnect },
Robert Carre13b58e2017-08-31 14:50:44 -0700961 {"nativeCreateTransaction", "()J",
962 (void*)nativeCreateTransaction },
963 {"nativeApplyTransaction", "(JZ)V",
964 (void*)nativeApplyTransaction },
965 {"nativeGetNativeTransactionFinalizer", "()J",
966 (void*)nativeGetNativeTransactionFinalizer },
Robert Carrb1579c82017-09-05 14:54:47 -0700967 {"nativeMergeTransaction", "(JJ)V",
968 (void*)nativeMergeTransaction },
Robert Carre13b58e2017-08-31 14:50:44 -0700969 {"nativeSetAnimationTransaction", "(J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800970 (void*)nativeSetAnimationTransaction },
Jorim Jaggiaa763cd2018-03-22 23:20:36 +0100971 {"nativeSetEarlyWakeup", "(J)V",
972 (void*)nativeSetEarlyWakeup },
Robert Carre13b58e2017-08-31 14:50:44 -0700973 {"nativeSetLayer", "(JJI)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800974 (void*)nativeSetLayer },
Robert Carre13b58e2017-08-31 14:50:44 -0700975 {"nativeSetRelativeLayer", "(JJLandroid/os/IBinder;I)V",
Robert Carraf422a82017-04-10 18:34:33 -0700976 (void*)nativeSetRelativeLayer },
Robert Carre13b58e2017-08-31 14:50:44 -0700977 {"nativeSetPosition", "(JJFF)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800978 (void*)nativeSetPosition },
Robert Carre13b58e2017-08-31 14:50:44 -0700979 {"nativeSetGeometryAppliesWithResize", "(JJ)V",
Robert Carr6da3cc02016-06-16 15:17:07 -0700980 (void*)nativeSetGeometryAppliesWithResize },
Robert Carre13b58e2017-08-31 14:50:44 -0700981 {"nativeSetSize", "(JJII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800982 (void*)nativeSetSize },
Robert Carre13b58e2017-08-31 14:50:44 -0700983 {"nativeSetTransparentRegionHint", "(JJLandroid/graphics/Region;)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800984 (void*)nativeSetTransparentRegionHint },
Robert Carre13b58e2017-08-31 14:50:44 -0700985 {"nativeSetAlpha", "(JJF)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800986 (void*)nativeSetAlpha },
Robert Carre13b58e2017-08-31 14:50:44 -0700987 {"nativeSetColor", "(JJ[F)V",
chaviw0dd03f52017-08-25 12:15:26 -0700988 (void*)nativeSetColor },
Robert Carre13b58e2017-08-31 14:50:44 -0700989 {"nativeSetMatrix", "(JJFFFF)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800990 (void*)nativeSetMatrix },
Peiyong Lin52bb6b42018-10-01 11:40:50 -0700991 {"nativeSetColorTransform", "(JJ[F[F)V",
992 (void*)nativeSetColorTransform },
Robert Carre13b58e2017-08-31 14:50:44 -0700993 {"nativeSetFlags", "(JJII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800994 (void*)nativeSetFlags },
Robert Carre13b58e2017-08-31 14:50:44 -0700995 {"nativeSetWindowCrop", "(JJIIII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800996 (void*)nativeSetWindowCrop },
Lucas Dupinff9d6ab2018-10-16 18:05:50 -0700997 {"nativeSetCornerRadius", "(JJF)V",
998 (void*)nativeSetCornerRadius },
Robert Carre13b58e2017-08-31 14:50:44 -0700999 {"nativeSetLayerStack", "(JJI)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001000 (void*)nativeSetLayerStack },
1001 {"nativeGetBuiltInDisplay", "(I)Landroid/os/IBinder;",
1002 (void*)nativeGetBuiltInDisplay },
1003 {"nativeCreateDisplay", "(Ljava/lang/String;Z)Landroid/os/IBinder;",
1004 (void*)nativeCreateDisplay },
Jesse Hall6a6bc212013-08-08 12:15:03 -07001005 {"nativeDestroyDisplay", "(Landroid/os/IBinder;)V",
1006 (void*)nativeDestroyDisplay },
Robert Carre13b58e2017-08-31 14:50:44 -07001007 {"nativeSetDisplaySurface", "(JLandroid/os/IBinder;J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001008 (void*)nativeSetDisplaySurface },
Robert Carre13b58e2017-08-31 14:50:44 -07001009 {"nativeSetDisplayLayerStack", "(JLandroid/os/IBinder;I)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001010 (void*)nativeSetDisplayLayerStack },
Robert Carre13b58e2017-08-31 14:50:44 -07001011 {"nativeSetDisplayProjection", "(JLandroid/os/IBinder;IIIIIIIII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001012 (void*)nativeSetDisplayProjection },
Robert Carre13b58e2017-08-31 14:50:44 -07001013 {"nativeSetDisplaySize", "(JLandroid/os/IBinder;II)V",
Michael Wright01e840f2014-06-26 16:03:25 -07001014 (void*)nativeSetDisplaySize },
Dan Stoza00101052014-05-02 15:23:40 -07001015 {"nativeGetDisplayConfigs", "(Landroid/os/IBinder;)[Landroid/view/SurfaceControl$PhysicalDisplayInfo;",
1016 (void*)nativeGetDisplayConfigs },
1017 {"nativeGetActiveConfig", "(Landroid/os/IBinder;)I",
1018 (void*)nativeGetActiveConfig },
1019 {"nativeSetActiveConfig", "(Landroid/os/IBinder;I)Z",
1020 (void*)nativeSetActiveConfig },
Michael Wright1c9977b2016-07-12 13:30:10 -07001021 {"nativeGetDisplayColorModes", "(Landroid/os/IBinder;)[I",
1022 (void*)nativeGetDisplayColorModes},
1023 {"nativeGetActiveColorMode", "(Landroid/os/IBinder;)I",
1024 (void*)nativeGetActiveColorMode},
1025 {"nativeSetActiveColorMode", "(Landroid/os/IBinder;I)Z",
1026 (void*)nativeSetActiveColorMode},
Michael Wright9ff94c02016-03-30 18:05:40 -07001027 {"nativeGetHdrCapabilities", "(Landroid/os/IBinder;)Landroid/view/Display$HdrCapabilities;",
1028 (void*)nativeGetHdrCapabilities },
Svetoslav1376d602014-03-13 11:17:26 -07001029 {"nativeClearContentFrameStats", "(J)Z",
1030 (void*)nativeClearContentFrameStats },
1031 {"nativeGetContentFrameStats", "(JLandroid/view/WindowContentFrameStats;)Z",
1032 (void*)nativeGetContentFrameStats },
1033 {"nativeClearAnimationFrameStats", "()Z",
1034 (void*)nativeClearAnimationFrameStats },
1035 {"nativeGetAnimationFrameStats", "(Landroid/view/WindowAnimationFrameStats;)Z",
1036 (void*)nativeGetAnimationFrameStats },
Prashant Malanic55929a2014-05-25 01:59:21 -07001037 {"nativeSetDisplayPowerMode", "(Landroid/os/IBinder;I)V",
1038 (void*)nativeSetDisplayPowerMode },
Robert Carre13b58e2017-08-31 14:50:44 -07001039 {"nativeDeferTransactionUntil", "(JJLandroid/os/IBinder;J)V",
Rob Carr64e516f2015-10-29 00:20:45 +00001040 (void*)nativeDeferTransactionUntil },
Robert Carre13b58e2017-08-31 14:50:44 -07001041 {"nativeDeferTransactionUntilSurface", "(JJJJ)V",
Robert Carrd5c7dd62017-03-08 10:39:30 -08001042 (void*)nativeDeferTransactionUntilSurface },
Robert Carre13b58e2017-08-31 14:50:44 -07001043 {"nativeReparentChildren", "(JJLandroid/os/IBinder;)V",
Robert Carrd5c7dd62017-03-08 10:39:30 -08001044 (void*)nativeReparentChildren } ,
Robert Carre13b58e2017-08-31 14:50:44 -07001045 {"nativeReparent", "(JJLandroid/os/IBinder;)V",
chaviw76431402017-09-18 16:50:05 -07001046 (void*)nativeReparent },
Robert Carre13b58e2017-08-31 14:50:44 -07001047 {"nativeSeverChildren", "(JJ)V",
Robert Carrd5c7dd62017-03-08 10:39:30 -08001048 (void*)nativeSeverChildren } ,
Robert Carre13b58e2017-08-31 14:50:44 -07001049 {"nativeSetOverrideScalingMode", "(JJI)V",
Robert Carr1ca6a332016-04-11 18:00:43 -07001050 (void*)nativeSetOverrideScalingMode },
Chavi Weingartenb736e322018-02-23 00:27:54 +00001051 {"nativeDestroy", "(JJ)V",
1052 (void*)nativeDestroyInTransaction },
Rob Carr64e516f2015-10-29 00:20:45 +00001053 {"nativeGetHandle", "(J)Landroid/os/IBinder;",
Robert Carr6da3cc02016-06-16 15:17:07 -07001054 (void*)nativeGetHandle },
chaviw08520a02018-09-10 16:44:56 -07001055 {"nativeScreenshot", "(Landroid/os/IBinder;Landroid/graphics/Rect;IIZI)Landroid/graphics/GraphicBuffer;",
1056 (void*)nativeScreenshot },
Chavi Weingartenea2eb5a2017-11-29 21:26:24 +00001057 {"nativeCaptureLayers", "(Landroid/os/IBinder;Landroid/graphics/Rect;F)Landroid/graphics/GraphicBuffer;",
Chavi Weingartend7ec64c2017-11-30 01:52:01 +00001058 (void*)nativeCaptureLayers },
Robert Carr788f5742018-07-30 17:46:45 -07001059 {"nativeSetInputWindowInfo", "(JJLandroid/view/InputWindowHandle;)V",
chaviw59f532e2018-12-26 15:34:59 -08001060 (void*)nativeSetInputWindowInfo },
1061 {"nativeTransferTouchFocus", "(JLandroid/os/IBinder;Landroid/os/IBinder;)V",
1062 (void*)nativeTransferTouchFocus },
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001063 {"nativeGetDisplayedContentSamplingAttributes",
1064 "(Landroid/os/IBinder;)Landroid/hardware/display/DisplayedContentSamplingAttributes;",
1065 (void*)nativeGetDisplayedContentSamplingAttributes },
1066 {"nativeSetDisplayedContentSamplingEnabled", "(Landroid/os/IBinder;ZII)Z",
1067 (void*)nativeSetDisplayedContentSamplingEnabled },
1068 {"nativeGetDisplayedContentSample",
1069 "(Landroid/os/IBinder;JJ)Landroid/hardware/display/DisplayedContentSample;",
1070 (void*)nativeGetDisplayedContentSample },
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001071};
1072
1073int register_android_view_SurfaceControl(JNIEnv* env)
1074{
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001075 int err = RegisterMethodsOrDie(env, "android/view/SurfaceControl",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001076 sSurfaceControlMethods, NELEM(sSurfaceControlMethods));
1077
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001078 jclass clazz = FindClassOrDie(env, "android/view/SurfaceControl$PhysicalDisplayInfo");
1079 gPhysicalDisplayInfoClassInfo.clazz = MakeGlobalRefOrDie(env, clazz);
1080 gPhysicalDisplayInfoClassInfo.ctor = GetMethodIDOrDie(env,
1081 gPhysicalDisplayInfoClassInfo.clazz, "<init>", "()V");
1082 gPhysicalDisplayInfoClassInfo.width = GetFieldIDOrDie(env, clazz, "width", "I");
1083 gPhysicalDisplayInfoClassInfo.height = GetFieldIDOrDie(env, clazz, "height", "I");
1084 gPhysicalDisplayInfoClassInfo.refreshRate = GetFieldIDOrDie(env, clazz, "refreshRate", "F");
1085 gPhysicalDisplayInfoClassInfo.density = GetFieldIDOrDie(env, clazz, "density", "F");
1086 gPhysicalDisplayInfoClassInfo.xDpi = GetFieldIDOrDie(env, clazz, "xDpi", "F");
1087 gPhysicalDisplayInfoClassInfo.yDpi = GetFieldIDOrDie(env, clazz, "yDpi", "F");
1088 gPhysicalDisplayInfoClassInfo.secure = GetFieldIDOrDie(env, clazz, "secure", "Z");
1089 gPhysicalDisplayInfoClassInfo.appVsyncOffsetNanos = GetFieldIDOrDie(env,
1090 clazz, "appVsyncOffsetNanos", "J");
1091 gPhysicalDisplayInfoClassInfo.presentationDeadlineNanos = GetFieldIDOrDie(env,
1092 clazz, "presentationDeadlineNanos", "J");
Svetoslav1376d602014-03-13 11:17:26 -07001093
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001094 jclass rectClazz = FindClassOrDie(env, "android/graphics/Rect");
1095 gRectClassInfo.bottom = GetFieldIDOrDie(env, rectClazz, "bottom", "I");
1096 gRectClassInfo.left = GetFieldIDOrDie(env, rectClazz, "left", "I");
1097 gRectClassInfo.right = GetFieldIDOrDie(env, rectClazz, "right", "I");
1098 gRectClassInfo.top = GetFieldIDOrDie(env, rectClazz, "top", "I");
Dan Stoza9890e3412014-05-22 16:12:54 -07001099
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001100 jclass frameStatsClazz = FindClassOrDie(env, "android/view/FrameStats");
1101 jfieldID undefined_time_nano_field = GetStaticFieldIDOrDie(env,
1102 frameStatsClazz, "UNDEFINED_TIME_NANO", "J");
Svetoslav1376d602014-03-13 11:17:26 -07001103 nsecs_t undefined_time_nano = env->GetStaticLongField(frameStatsClazz, undefined_time_nano_field);
1104
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001105 jclass contFrameStatsClazz = FindClassOrDie(env, "android/view/WindowContentFrameStats");
1106 gWindowContentFrameStatsClassInfo.init = GetMethodIDOrDie(env,
1107 contFrameStatsClazz, "init", "(J[J[J[J)V");
Svetoslav1376d602014-03-13 11:17:26 -07001108 gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO = undefined_time_nano;
1109
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001110 jclass animFrameStatsClazz = FindClassOrDie(env, "android/view/WindowAnimationFrameStats");
1111 gWindowAnimationFrameStatsClassInfo.init = GetMethodIDOrDie(env,
1112 animFrameStatsClazz, "init", "(J[J)V");
Svetoslav1376d602014-03-13 11:17:26 -07001113 gWindowAnimationFrameStatsClassInfo.UNDEFINED_TIME_NANO = undefined_time_nano;
1114
Hangyu Kuang54ac2192016-04-25 13:22:02 -07001115 jclass hdrCapabilitiesClazz = FindClassOrDie(env, "android/view/Display$HdrCapabilities");
1116 gHdrCapabilitiesClassInfo.clazz = MakeGlobalRefOrDie(env, hdrCapabilitiesClazz);
1117 gHdrCapabilitiesClassInfo.ctor = GetMethodIDOrDie(env, hdrCapabilitiesClazz, "<init>",
1118 "([IFFF)V");
1119
Robert Carr6486d312017-01-09 19:48:29 -08001120 jclass graphicsBufferClazz = FindClassOrDie(env, "android/graphics/GraphicBuffer");
1121 gGraphicBufferClassInfo.clazz = MakeGlobalRefOrDie(env, graphicsBufferClazz);
1122 gGraphicBufferClassInfo.builder = GetStaticMethodIDOrDie(env, graphicsBufferClazz,
1123 "createFromExisting", "(IIIIJ)Landroid/graphics/GraphicBuffer;");
1124
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001125 jclass displayedContentSampleClazz = FindClassOrDie(env,
1126 "android/hardware/display/DisplayedContentSample");
1127 gDisplayedContentSampleClassInfo.clazz = MakeGlobalRefOrDie(env, displayedContentSampleClazz);
1128 gDisplayedContentSampleClassInfo.ctor = GetMethodIDOrDie(env,
1129 displayedContentSampleClazz, "<init>", "(J[J[J[J[J)V");
1130
1131 jclass displayedContentSamplingAttributesClazz = FindClassOrDie(env,
1132 "android/hardware/display/DisplayedContentSamplingAttributes");
1133 gDisplayedContentSamplingAttributesClassInfo.clazz = MakeGlobalRefOrDie(env,
1134 displayedContentSamplingAttributesClazz);
1135 gDisplayedContentSamplingAttributesClassInfo.ctor = GetMethodIDOrDie(env,
1136 displayedContentSamplingAttributesClazz, "<init>", "(III)V");
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001137 return err;
1138}
1139
1140};