blob: 6576587899be1fb40a03eb87a18e3b0831e00b59 [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));
441 return SurfaceComposerClient::setDisplayContentSamplingEnabled(
442 token, enable, componentMask, maxFrames);
443}
444
445static jobject nativeGetDisplayedContentSample(JNIEnv* env, jclass clazz, jobject tokenObj,
446 jlong maxFrames, jlong timestamp) {
447 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
448
449 DisplayedFrameStats stats;
450 status_t err = SurfaceComposerClient::getDisplayedContentSample(
451 token, maxFrames, timestamp, &stats);
452 if (err != OK) {
453 return nullptr;
454 }
455
456 jlongArray histogramComponent0 = env->NewLongArray(stats.component_0_sample.size());
457 jlongArray histogramComponent1 = env->NewLongArray(stats.component_1_sample.size());
458 jlongArray histogramComponent2 = env->NewLongArray(stats.component_2_sample.size());
459 jlongArray histogramComponent3 = env->NewLongArray(stats.component_3_sample.size());
460 if ((histogramComponent0 == nullptr) ||
461 (histogramComponent1 == nullptr) ||
462 (histogramComponent2 == nullptr) ||
463 (histogramComponent3 == nullptr)) {
464 return JNI_FALSE;
465 }
466
467 env->SetLongArrayRegion(histogramComponent0, 0,
468 stats.component_0_sample.size(),
469 reinterpret_cast<jlong*>(stats.component_0_sample.data()));
470 env->SetLongArrayRegion(histogramComponent1, 0,
471 stats.component_1_sample.size(),
472 reinterpret_cast<jlong*>(stats.component_1_sample.data()));
473 env->SetLongArrayRegion(histogramComponent2, 0,
474 stats.component_2_sample.size(),
475 reinterpret_cast<jlong*>(stats.component_2_sample.data()));
476 env->SetLongArrayRegion(histogramComponent3, 0,
477 stats.component_3_sample.size(),
478 reinterpret_cast<jlong*>(stats.component_3_sample.data()));
479 return env->NewObject(gDisplayedContentSampleClassInfo.clazz,
480 gDisplayedContentSampleClassInfo.ctor,
481 stats.numFrames,
482 histogramComponent0,
483 histogramComponent1,
484 histogramComponent2,
485 histogramComponent3);
486}
487
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800488static jobject nativeCreateDisplay(JNIEnv* env, jclass clazz, jstring nameObj,
489 jboolean secure) {
490 ScopedUtfChars name(env, nameObj);
491 sp<IBinder> token(SurfaceComposerClient::createDisplay(
492 String8(name.c_str()), bool(secure)));
493 return javaObjectForIBinder(env, token);
494}
495
Jesse Hall6a6bc212013-08-08 12:15:03 -0700496static void nativeDestroyDisplay(JNIEnv* env, jclass clazz, jobject tokenObj) {
497 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
498 if (token == NULL) return;
499 SurfaceComposerClient::destroyDisplay(token);
500}
501
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800502static void nativeSetDisplaySurface(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700503 jlong transactionObj,
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000504 jobject tokenObj, jlong nativeSurfaceObject) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800505 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
506 if (token == NULL) return;
Mathias Agopianffddc9b2013-02-25 15:56:31 -0800507 sp<IGraphicBufferProducer> bufferProducer;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800508 sp<Surface> sur(reinterpret_cast<Surface *>(nativeSurfaceObject));
Mathias Agopianffddc9b2013-02-25 15:56:31 -0800509 if (sur != NULL) {
510 bufferProducer = sur->getIGraphicBufferProducer();
511 }
Robert Carre13b58e2017-08-31 14:50:44 -0700512
513
514 status_t err = NO_ERROR;
515 {
516 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
517 err = transaction->setDisplaySurface(token,
518 bufferProducer);
519 }
Pablo Ceballosaff2f942016-07-29 14:49:55 -0700520 if (err != NO_ERROR) {
521 doThrowIAE(env, "Illegal Surface, could not enable async mode. Was this"
522 " Surface created with singleBufferMode?");
523 }
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800524}
525
526static void nativeSetDisplayLayerStack(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700527 jlong transactionObj,
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800528 jobject tokenObj, jint layerStack) {
Robert Carre13b58e2017-08-31 14:50:44 -0700529
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800530 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
531 if (token == NULL) return;
532
Robert Carre13b58e2017-08-31 14:50:44 -0700533 {
534 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
535 transaction->setDisplayLayerStack(token, layerStack);
536 }
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800537}
538
539static void nativeSetDisplayProjection(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700540 jlong transactionObj,
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800541 jobject tokenObj, jint orientation,
542 jint layerStackRect_left, jint layerStackRect_top, jint layerStackRect_right, jint layerStackRect_bottom,
543 jint displayRect_left, jint displayRect_top, jint displayRect_right, jint displayRect_bottom) {
544 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
545 if (token == NULL) return;
546 Rect layerStackRect(layerStackRect_left, layerStackRect_top, layerStackRect_right, layerStackRect_bottom);
547 Rect displayRect(displayRect_left, displayRect_top, displayRect_right, displayRect_bottom);
Robert Carre13b58e2017-08-31 14:50:44 -0700548
549 {
550 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
551 transaction->setDisplayProjection(token, orientation, layerStackRect, displayRect);
552 }
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800553}
554
Michael Wright01e840f2014-06-26 16:03:25 -0700555static void nativeSetDisplaySize(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700556 jlong transactionObj,
Michael Wright01e840f2014-06-26 16:03:25 -0700557 jobject tokenObj, jint width, jint height) {
558 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
559 if (token == NULL) return;
Robert Carre13b58e2017-08-31 14:50:44 -0700560
561 {
562 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
563 transaction->setDisplaySize(token, width, height);
564 }
Michael Wright01e840f2014-06-26 16:03:25 -0700565}
566
Dan Stoza00101052014-05-02 15:23:40 -0700567static jobjectArray nativeGetDisplayConfigs(JNIEnv* env, jclass clazz,
568 jobject tokenObj) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800569 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
Dan Stoza00101052014-05-02 15:23:40 -0700570 if (token == NULL) return NULL;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800571
Dan Stoza00101052014-05-02 15:23:40 -0700572 Vector<DisplayInfo> configs;
573 if (SurfaceComposerClient::getDisplayConfigs(token, &configs) != NO_ERROR ||
574 configs.size() == 0) {
575 return NULL;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800576 }
577
Dan Stoza00101052014-05-02 15:23:40 -0700578 jobjectArray configArray = env->NewObjectArray(configs.size(),
579 gPhysicalDisplayInfoClassInfo.clazz, NULL);
580
581 for (size_t c = 0; c < configs.size(); ++c) {
582 const DisplayInfo& info = configs[c];
583 jobject infoObj = env->NewObject(gPhysicalDisplayInfoClassInfo.clazz,
584 gPhysicalDisplayInfoClassInfo.ctor);
585 env->SetIntField(infoObj, gPhysicalDisplayInfoClassInfo.width, info.w);
586 env->SetIntField(infoObj, gPhysicalDisplayInfoClassInfo.height, info.h);
587 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.refreshRate, info.fps);
588 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.density, info.density);
589 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.xDpi, info.xdpi);
590 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.yDpi, info.ydpi);
591 env->SetBooleanField(infoObj, gPhysicalDisplayInfoClassInfo.secure, info.secure);
Andy McFaddene8b1aeb2014-06-13 14:05:40 -0700592 env->SetLongField(infoObj, gPhysicalDisplayInfoClassInfo.appVsyncOffsetNanos,
593 info.appVsyncOffset);
594 env->SetLongField(infoObj, gPhysicalDisplayInfoClassInfo.presentationDeadlineNanos,
595 info.presentationDeadline);
Dan Stoza00101052014-05-02 15:23:40 -0700596 env->SetObjectArrayElement(configArray, static_cast<jsize>(c), infoObj);
597 env->DeleteLocalRef(infoObj);
598 }
599
600 return configArray;
601}
602
603static jint nativeGetActiveConfig(JNIEnv* env, jclass clazz, jobject tokenObj) {
604 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
605 if (token == NULL) return -1;
606 return static_cast<jint>(SurfaceComposerClient::getActiveConfig(token));
607}
608
609static jboolean nativeSetActiveConfig(JNIEnv* env, jclass clazz, jobject tokenObj, jint id) {
610 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
611 if (token == NULL) return JNI_FALSE;
612 status_t err = SurfaceComposerClient::setActiveConfig(token, static_cast<int>(id));
613 return err == NO_ERROR ? JNI_TRUE : JNI_FALSE;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800614}
615
Michael Wright1c9977b2016-07-12 13:30:10 -0700616static jintArray nativeGetDisplayColorModes(JNIEnv* env, jclass, jobject tokenObj) {
617 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
618 if (token == NULL) return NULL;
Peiyong Linb88549e2018-03-28 12:03:45 -0700619 Vector<ui::ColorMode> colorModes;
Michael Wright1c9977b2016-07-12 13:30:10 -0700620 if (SurfaceComposerClient::getDisplayColorModes(token, &colorModes) != NO_ERROR ||
621 colorModes.isEmpty()) {
622 return NULL;
623 }
624
625 jintArray colorModesArray = env->NewIntArray(colorModes.size());
626 if (colorModesArray == NULL) {
627 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
628 return NULL;
629 }
630 jint* colorModesArrayValues = env->GetIntArrayElements(colorModesArray, 0);
631 for (size_t i = 0; i < colorModes.size(); i++) {
632 colorModesArrayValues[i] = static_cast<jint>(colorModes[i]);
633 }
634 env->ReleaseIntArrayElements(colorModesArray, colorModesArrayValues, 0);
635 return colorModesArray;
636}
637
638static jint nativeGetActiveColorMode(JNIEnv* env, jclass, jobject tokenObj) {
639 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
640 if (token == NULL) return -1;
641 return static_cast<jint>(SurfaceComposerClient::getActiveColorMode(token));
642}
643
644static jboolean nativeSetActiveColorMode(JNIEnv* env, jclass,
645 jobject tokenObj, jint colorMode) {
646 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
647 if (token == NULL) return JNI_FALSE;
648 status_t err = SurfaceComposerClient::setActiveColorMode(token,
Peiyong Linb88549e2018-03-28 12:03:45 -0700649 static_cast<ui::ColorMode>(colorMode));
Michael Wright1c9977b2016-07-12 13:30:10 -0700650 return err == NO_ERROR ? JNI_TRUE : JNI_FALSE;
651}
652
Prashant Malanic55929a2014-05-25 01:59:21 -0700653static void nativeSetDisplayPowerMode(JNIEnv* env, jclass clazz, jobject tokenObj, jint mode) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800654 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
655 if (token == NULL) return;
656
Tom Cherry8ed74bb2017-07-10 14:31:18 -0700657 android::base::Timer t;
Prashant Malanic55929a2014-05-25 01:59:21 -0700658 SurfaceComposerClient::setDisplayPowerMode(token, mode);
Tom Cherry8ed74bb2017-07-10 14:31:18 -0700659 if (t.duration() > 100ms) ALOGD("Excessive delay in setPowerMode()");
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800660}
661
Svetoslav1376d602014-03-13 11:17:26 -0700662static jboolean nativeClearContentFrameStats(JNIEnv* env, jclass clazz, jlong nativeObject) {
663 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
664 status_t err = ctrl->clearLayerFrameStats();
665
666 if (err < 0 && err != NO_INIT) {
667 doThrowIAE(env);
668 }
669
670 // The other end is not ready, just report we failed.
671 if (err == NO_INIT) {
672 return JNI_FALSE;
673 }
674
675 return JNI_TRUE;
676}
677
678static jboolean nativeGetContentFrameStats(JNIEnv* env, jclass clazz, jlong nativeObject,
679 jobject outStats) {
680 FrameStats stats;
681
682 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
683 status_t err = ctrl->getLayerFrameStats(&stats);
684 if (err < 0 && err != NO_INIT) {
685 doThrowIAE(env);
686 }
687
688 // The other end is not ready, fine just return empty stats.
689 if (err == NO_INIT) {
690 return JNI_FALSE;
691 }
692
693 jlong refreshPeriodNano = static_cast<jlong>(stats.refreshPeriodNano);
694 size_t frameCount = stats.desiredPresentTimesNano.size();
695
696 jlongArray postedTimesNanoDst = env->NewLongArray(frameCount);
697 if (postedTimesNanoDst == NULL) {
698 return JNI_FALSE;
699 }
700
701 jlongArray presentedTimesNanoDst = env->NewLongArray(frameCount);
702 if (presentedTimesNanoDst == NULL) {
703 return JNI_FALSE;
704 }
705
706 jlongArray readyTimesNanoDst = env->NewLongArray(frameCount);
707 if (readyTimesNanoDst == NULL) {
708 return JNI_FALSE;
709 }
710
711 nsecs_t postedTimesNanoSrc[frameCount];
712 nsecs_t presentedTimesNanoSrc[frameCount];
713 nsecs_t readyTimesNanoSrc[frameCount];
714
715 for (size_t i = 0; i < frameCount; i++) {
716 nsecs_t postedTimeNano = stats.desiredPresentTimesNano[i];
717 if (postedTimeNano == INT64_MAX) {
718 postedTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
719 }
720 postedTimesNanoSrc[i] = postedTimeNano;
721
722 nsecs_t presentedTimeNano = stats.actualPresentTimesNano[i];
723 if (presentedTimeNano == INT64_MAX) {
724 presentedTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
725 }
726 presentedTimesNanoSrc[i] = presentedTimeNano;
727
728 nsecs_t readyTimeNano = stats.frameReadyTimesNano[i];
729 if (readyTimeNano == INT64_MAX) {
730 readyTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
731 }
732 readyTimesNanoSrc[i] = readyTimeNano;
733 }
734
735 env->SetLongArrayRegion(postedTimesNanoDst, 0, frameCount, postedTimesNanoSrc);
736 env->SetLongArrayRegion(presentedTimesNanoDst, 0, frameCount, presentedTimesNanoSrc);
737 env->SetLongArrayRegion(readyTimesNanoDst, 0, frameCount, readyTimesNanoSrc);
738
739 env->CallVoidMethod(outStats, gWindowContentFrameStatsClassInfo.init, refreshPeriodNano,
740 postedTimesNanoDst, presentedTimesNanoDst, readyTimesNanoDst);
741
742 if (env->ExceptionCheck()) {
743 return JNI_FALSE;
744 }
745
746 return JNI_TRUE;
747}
748
749static jboolean nativeClearAnimationFrameStats(JNIEnv* env, jclass clazz) {
750 status_t err = SurfaceComposerClient::clearAnimationFrameStats();
751
752 if (err < 0 && err != NO_INIT) {
753 doThrowIAE(env);
754 }
755
756 // The other end is not ready, just report we failed.
757 if (err == NO_INIT) {
758 return JNI_FALSE;
759 }
760
761 return JNI_TRUE;
762}
763
764static jboolean nativeGetAnimationFrameStats(JNIEnv* env, jclass clazz, jobject outStats) {
765 FrameStats stats;
766
767 status_t err = SurfaceComposerClient::getAnimationFrameStats(&stats);
768 if (err < 0 && err != NO_INIT) {
769 doThrowIAE(env);
770 }
771
772 // The other end is not ready, fine just return empty stats.
773 if (err == NO_INIT) {
774 return JNI_FALSE;
775 }
776
777 jlong refreshPeriodNano = static_cast<jlong>(stats.refreshPeriodNano);
778 size_t frameCount = stats.desiredPresentTimesNano.size();
779
780 jlongArray presentedTimesNanoDst = env->NewLongArray(frameCount);
781 if (presentedTimesNanoDst == NULL) {
782 return JNI_FALSE;
783 }
784
785 nsecs_t presentedTimesNanoSrc[frameCount];
786
787 for (size_t i = 0; i < frameCount; i++) {
Allen Hairac5eda32014-04-24 11:50:37 -0700788 nsecs_t presentedTimeNano = stats.actualPresentTimesNano[i];
Svetoslav1376d602014-03-13 11:17:26 -0700789 if (presentedTimeNano == INT64_MAX) {
790 presentedTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
791 }
792 presentedTimesNanoSrc[i] = presentedTimeNano;
793 }
794
795 env->SetLongArrayRegion(presentedTimesNanoDst, 0, frameCount, presentedTimesNanoSrc);
796
797 env->CallVoidMethod(outStats, gWindowAnimationFrameStatsClassInfo.init, refreshPeriodNano,
798 presentedTimesNanoDst);
799
800 if (env->ExceptionCheck()) {
801 return JNI_FALSE;
802 }
803
804 return JNI_TRUE;
805}
806
Robert Carre13b58e2017-08-31 14:50:44 -0700807static void nativeDeferTransactionUntil(JNIEnv* env, jclass clazz, jlong transactionObj,
808 jlong nativeObject,
Rob Carr64e516f2015-10-29 00:20:45 +0000809 jobject handleObject, jlong frameNumber) {
810 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
811 sp<IBinder> handle = ibinderForJavaObject(env, handleObject);
812
Robert Carre13b58e2017-08-31 14:50:44 -0700813 {
814 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
Marissa Wallcb32fdd2018-07-24 09:53:30 -0700815 transaction->deferTransactionUntil_legacy(ctrl, handle, frameNumber);
Robert Carre13b58e2017-08-31 14:50:44 -0700816 }
Rob Carr64e516f2015-10-29 00:20:45 +0000817}
818
Robert Carre13b58e2017-08-31 14:50:44 -0700819static void nativeDeferTransactionUntilSurface(JNIEnv* env, jclass clazz, jlong transactionObj,
820 jlong nativeObject,
Robert Carrd5c7dd62017-03-08 10:39:30 -0800821 jlong surfaceObject, jlong frameNumber) {
Robert Carre13b58e2017-08-31 14:50:44 -0700822 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
823
Robert Carrd5c7dd62017-03-08 10:39:30 -0800824 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
825 sp<Surface> barrier = reinterpret_cast<Surface *>(surfaceObject);
826
Marissa Wallcb32fdd2018-07-24 09:53:30 -0700827 transaction->deferTransactionUntil_legacy(ctrl, barrier, frameNumber);
Robert Carrd5c7dd62017-03-08 10:39:30 -0800828}
829
Robert Carre13b58e2017-08-31 14:50:44 -0700830static void nativeReparentChildren(JNIEnv* env, jclass clazz, jlong transactionObj,
831 jlong nativeObject,
Robert Carrd5c7dd62017-03-08 10:39:30 -0800832 jobject newParentObject) {
Robert Carre13b58e2017-08-31 14:50:44 -0700833
Robert Carrd5c7dd62017-03-08 10:39:30 -0800834 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
835 sp<IBinder> handle = ibinderForJavaObject(env, newParentObject);
836
Robert Carre13b58e2017-08-31 14:50:44 -0700837 {
838 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
839 transaction->reparentChildren(ctrl, handle);
840 }
Robert Carrd5c7dd62017-03-08 10:39:30 -0800841}
842
Robert Carre13b58e2017-08-31 14:50:44 -0700843static void nativeReparent(JNIEnv* env, jclass clazz, jlong transactionObj,
844 jlong nativeObject,
chaviw76431402017-09-18 16:50:05 -0700845 jobject newParentObject) {
chaviw63542382017-08-17 17:39:29 -0700846 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
847 sp<IBinder> parentHandle = ibinderForJavaObject(env, newParentObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700848
849 {
850 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
851 transaction->reparent(ctrl, parentHandle);
852 }
chaviw63542382017-08-17 17:39:29 -0700853}
854
Robert Carre13b58e2017-08-31 14:50:44 -0700855static void nativeSeverChildren(JNIEnv* env, jclass clazz, jlong transactionObj,
856 jlong nativeObject) {
857 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
858
Robert Carrd5c7dd62017-03-08 10:39:30 -0800859 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700860 transaction->detachChildren(ctrl);
Robert Carrd5c7dd62017-03-08 10:39:30 -0800861}
862
Robert Carre13b58e2017-08-31 14:50:44 -0700863static void nativeSetOverrideScalingMode(JNIEnv* env, jclass clazz, jlong transactionObj,
864 jlong nativeObject,
Robert Carr1ca6a332016-04-11 18:00:43 -0700865 jint scalingMode) {
Robert Carre13b58e2017-08-31 14:50:44 -0700866 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
Robert Carr1ca6a332016-04-11 18:00:43 -0700867
Robert Carre13b58e2017-08-31 14:50:44 -0700868 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
869 transaction->setOverrideScalingMode(ctrl, scalingMode);
Robert Carr1ca6a332016-04-11 18:00:43 -0700870}
871
Chavi Weingartenb736e322018-02-23 00:27:54 +0000872static void nativeDestroyInTransaction(JNIEnv* env, jclass clazz,
873 jlong transactionObj,
874 jlong nativeObject) {
875 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
876 auto ctrl = reinterpret_cast<SurfaceControl*>(nativeObject);
877 transaction->destroySurface(ctrl);
878}
879
Rob Carr64e516f2015-10-29 00:20:45 +0000880static jobject nativeGetHandle(JNIEnv* env, jclass clazz, jlong nativeObject) {
881 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Rob Carr64e516f2015-10-29 00:20:45 +0000882 return javaObjectForIBinder(env, ctrl->getHandle());
883}
884
Hangyu Kuang54ac2192016-04-25 13:22:02 -0700885static jobject nativeGetHdrCapabilities(JNIEnv* env, jclass clazz, jobject tokenObject) {
886 sp<IBinder> token(ibinderForJavaObject(env, tokenObject));
887 if (token == NULL) return NULL;
888
889 HdrCapabilities capabilities;
890 SurfaceComposerClient::getHdrCapabilities(token, &capabilities);
891
892 const auto& types = capabilities.getSupportedHdrTypes();
Peiyong Lin3a0c6e12018-04-16 11:05:29 -0700893 std::vector<int32_t> intTypes;
894 for (auto type : types) {
895 intTypes.push_back(static_cast<int32_t>(type));
896 }
Hangyu Kuang54ac2192016-04-25 13:22:02 -0700897 auto typesArray = env->NewIntArray(types.size());
Peiyong Lin3a0c6e12018-04-16 11:05:29 -0700898 env->SetIntArrayRegion(typesArray, 0, intTypes.size(), intTypes.data());
Hangyu Kuang54ac2192016-04-25 13:22:02 -0700899
Michael Wright9ff94c02016-03-30 18:05:40 -0700900 return env->NewObject(gHdrCapabilitiesClassInfo.clazz, gHdrCapabilitiesClassInfo.ctor,
Hangyu Kuang54ac2192016-04-25 13:22:02 -0700901 typesArray, capabilities.getDesiredMaxLuminance(),
902 capabilities.getDesiredMaxAverageLuminance(), capabilities.getDesiredMinLuminance());
903}
904
Jorim Jaggi06975df2017-12-01 14:52:13 +0100905static jlong nativeReadFromParcel(JNIEnv* env, jclass clazz, jobject parcelObj) {
906 Parcel* parcel = parcelForJavaObject(env, parcelObj);
907 if (parcel == NULL) {
908 doThrowNPE(env);
909 return 0;
910 }
911 sp<SurfaceControl> surface = SurfaceControl::readFromParcel(parcel);
912 if (surface == nullptr) {
913 return 0;
914 }
915 surface->incStrong((void *)nativeCreate);
916 return reinterpret_cast<jlong>(surface.get());
917}
918
919static void nativeWriteToParcel(JNIEnv* env, jclass clazz,
920 jlong nativeObject, jobject parcelObj) {
921 Parcel* parcel = parcelForJavaObject(env, parcelObj);
922 if (parcel == NULL) {
923 doThrowNPE(env);
924 return;
925 }
926 SurfaceControl* const self = reinterpret_cast<SurfaceControl *>(nativeObject);
927 self->writeToParcel(parcel);
928}
929
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800930// ----------------------------------------------------------------------------
931
Daniel Micay76f6a862015-09-19 17:31:01 -0400932static const JNINativeMethod sSurfaceControlMethods[] = {
Albert Chaulk3bf2e572016-11-22 13:59:19 -0500933 {"nativeCreate", "(Landroid/view/SurfaceSession;Ljava/lang/String;IIIIJII)J",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800934 (void*)nativeCreate },
Jorim Jaggi06975df2017-12-01 14:52:13 +0100935 {"nativeReadFromParcel", "(Landroid/os/Parcel;)J",
936 (void*)nativeReadFromParcel },
937 {"nativeWriteToParcel", "(JLandroid/os/Parcel;)V",
938 (void*)nativeWriteToParcel },
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000939 {"nativeRelease", "(J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800940 (void*)nativeRelease },
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000941 {"nativeDestroy", "(J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800942 (void*)nativeDestroy },
Chong Zhang47e36a32016-02-29 16:44:33 -0800943 {"nativeDisconnect", "(J)V",
944 (void*)nativeDisconnect },
Robert Carre13b58e2017-08-31 14:50:44 -0700945 {"nativeCreateTransaction", "()J",
946 (void*)nativeCreateTransaction },
947 {"nativeApplyTransaction", "(JZ)V",
948 (void*)nativeApplyTransaction },
949 {"nativeGetNativeTransactionFinalizer", "()J",
950 (void*)nativeGetNativeTransactionFinalizer },
Robert Carrb1579c82017-09-05 14:54:47 -0700951 {"nativeMergeTransaction", "(JJ)V",
952 (void*)nativeMergeTransaction },
Robert Carre13b58e2017-08-31 14:50:44 -0700953 {"nativeSetAnimationTransaction", "(J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800954 (void*)nativeSetAnimationTransaction },
Jorim Jaggiaa763cd2018-03-22 23:20:36 +0100955 {"nativeSetEarlyWakeup", "(J)V",
956 (void*)nativeSetEarlyWakeup },
Robert Carre13b58e2017-08-31 14:50:44 -0700957 {"nativeSetLayer", "(JJI)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800958 (void*)nativeSetLayer },
Robert Carre13b58e2017-08-31 14:50:44 -0700959 {"nativeSetRelativeLayer", "(JJLandroid/os/IBinder;I)V",
Robert Carraf422a82017-04-10 18:34:33 -0700960 (void*)nativeSetRelativeLayer },
Robert Carre13b58e2017-08-31 14:50:44 -0700961 {"nativeSetPosition", "(JJFF)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800962 (void*)nativeSetPosition },
Robert Carre13b58e2017-08-31 14:50:44 -0700963 {"nativeSetGeometryAppliesWithResize", "(JJ)V",
Robert Carr6da3cc02016-06-16 15:17:07 -0700964 (void*)nativeSetGeometryAppliesWithResize },
Robert Carre13b58e2017-08-31 14:50:44 -0700965 {"nativeSetSize", "(JJII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800966 (void*)nativeSetSize },
Robert Carre13b58e2017-08-31 14:50:44 -0700967 {"nativeSetTransparentRegionHint", "(JJLandroid/graphics/Region;)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800968 (void*)nativeSetTransparentRegionHint },
Robert Carre13b58e2017-08-31 14:50:44 -0700969 {"nativeSetAlpha", "(JJF)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800970 (void*)nativeSetAlpha },
Robert Carre13b58e2017-08-31 14:50:44 -0700971 {"nativeSetColor", "(JJ[F)V",
chaviw0dd03f52017-08-25 12:15:26 -0700972 (void*)nativeSetColor },
Robert Carre13b58e2017-08-31 14:50:44 -0700973 {"nativeSetMatrix", "(JJFFFF)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800974 (void*)nativeSetMatrix },
Peiyong Lin52bb6b42018-10-01 11:40:50 -0700975 {"nativeSetColorTransform", "(JJ[F[F)V",
976 (void*)nativeSetColorTransform },
Robert Carre13b58e2017-08-31 14:50:44 -0700977 {"nativeSetFlags", "(JJII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800978 (void*)nativeSetFlags },
Robert Carre13b58e2017-08-31 14:50:44 -0700979 {"nativeSetWindowCrop", "(JJIIII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800980 (void*)nativeSetWindowCrop },
Lucas Dupinff9d6ab2018-10-16 18:05:50 -0700981 {"nativeSetCornerRadius", "(JJF)V",
982 (void*)nativeSetCornerRadius },
Robert Carre13b58e2017-08-31 14:50:44 -0700983 {"nativeSetLayerStack", "(JJI)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800984 (void*)nativeSetLayerStack },
985 {"nativeGetBuiltInDisplay", "(I)Landroid/os/IBinder;",
986 (void*)nativeGetBuiltInDisplay },
987 {"nativeCreateDisplay", "(Ljava/lang/String;Z)Landroid/os/IBinder;",
988 (void*)nativeCreateDisplay },
Jesse Hall6a6bc212013-08-08 12:15:03 -0700989 {"nativeDestroyDisplay", "(Landroid/os/IBinder;)V",
990 (void*)nativeDestroyDisplay },
Robert Carre13b58e2017-08-31 14:50:44 -0700991 {"nativeSetDisplaySurface", "(JLandroid/os/IBinder;J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800992 (void*)nativeSetDisplaySurface },
Robert Carre13b58e2017-08-31 14:50:44 -0700993 {"nativeSetDisplayLayerStack", "(JLandroid/os/IBinder;I)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800994 (void*)nativeSetDisplayLayerStack },
Robert Carre13b58e2017-08-31 14:50:44 -0700995 {"nativeSetDisplayProjection", "(JLandroid/os/IBinder;IIIIIIIII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800996 (void*)nativeSetDisplayProjection },
Robert Carre13b58e2017-08-31 14:50:44 -0700997 {"nativeSetDisplaySize", "(JLandroid/os/IBinder;II)V",
Michael Wright01e840f2014-06-26 16:03:25 -0700998 (void*)nativeSetDisplaySize },
Dan Stoza00101052014-05-02 15:23:40 -0700999 {"nativeGetDisplayConfigs", "(Landroid/os/IBinder;)[Landroid/view/SurfaceControl$PhysicalDisplayInfo;",
1000 (void*)nativeGetDisplayConfigs },
1001 {"nativeGetActiveConfig", "(Landroid/os/IBinder;)I",
1002 (void*)nativeGetActiveConfig },
1003 {"nativeSetActiveConfig", "(Landroid/os/IBinder;I)Z",
1004 (void*)nativeSetActiveConfig },
Michael Wright1c9977b2016-07-12 13:30:10 -07001005 {"nativeGetDisplayColorModes", "(Landroid/os/IBinder;)[I",
1006 (void*)nativeGetDisplayColorModes},
1007 {"nativeGetActiveColorMode", "(Landroid/os/IBinder;)I",
1008 (void*)nativeGetActiveColorMode},
1009 {"nativeSetActiveColorMode", "(Landroid/os/IBinder;I)Z",
1010 (void*)nativeSetActiveColorMode},
Michael Wright9ff94c02016-03-30 18:05:40 -07001011 {"nativeGetHdrCapabilities", "(Landroid/os/IBinder;)Landroid/view/Display$HdrCapabilities;",
1012 (void*)nativeGetHdrCapabilities },
Svetoslav1376d602014-03-13 11:17:26 -07001013 {"nativeClearContentFrameStats", "(J)Z",
1014 (void*)nativeClearContentFrameStats },
1015 {"nativeGetContentFrameStats", "(JLandroid/view/WindowContentFrameStats;)Z",
1016 (void*)nativeGetContentFrameStats },
1017 {"nativeClearAnimationFrameStats", "()Z",
1018 (void*)nativeClearAnimationFrameStats },
1019 {"nativeGetAnimationFrameStats", "(Landroid/view/WindowAnimationFrameStats;)Z",
1020 (void*)nativeGetAnimationFrameStats },
Prashant Malanic55929a2014-05-25 01:59:21 -07001021 {"nativeSetDisplayPowerMode", "(Landroid/os/IBinder;I)V",
1022 (void*)nativeSetDisplayPowerMode },
Robert Carre13b58e2017-08-31 14:50:44 -07001023 {"nativeDeferTransactionUntil", "(JJLandroid/os/IBinder;J)V",
Rob Carr64e516f2015-10-29 00:20:45 +00001024 (void*)nativeDeferTransactionUntil },
Robert Carre13b58e2017-08-31 14:50:44 -07001025 {"nativeDeferTransactionUntilSurface", "(JJJJ)V",
Robert Carrd5c7dd62017-03-08 10:39:30 -08001026 (void*)nativeDeferTransactionUntilSurface },
Robert Carre13b58e2017-08-31 14:50:44 -07001027 {"nativeReparentChildren", "(JJLandroid/os/IBinder;)V",
Robert Carrd5c7dd62017-03-08 10:39:30 -08001028 (void*)nativeReparentChildren } ,
Robert Carre13b58e2017-08-31 14:50:44 -07001029 {"nativeReparent", "(JJLandroid/os/IBinder;)V",
chaviw76431402017-09-18 16:50:05 -07001030 (void*)nativeReparent },
Robert Carre13b58e2017-08-31 14:50:44 -07001031 {"nativeSeverChildren", "(JJ)V",
Robert Carrd5c7dd62017-03-08 10:39:30 -08001032 (void*)nativeSeverChildren } ,
Robert Carre13b58e2017-08-31 14:50:44 -07001033 {"nativeSetOverrideScalingMode", "(JJI)V",
Robert Carr1ca6a332016-04-11 18:00:43 -07001034 (void*)nativeSetOverrideScalingMode },
Chavi Weingartenb736e322018-02-23 00:27:54 +00001035 {"nativeDestroy", "(JJ)V",
1036 (void*)nativeDestroyInTransaction },
Rob Carr64e516f2015-10-29 00:20:45 +00001037 {"nativeGetHandle", "(J)Landroid/os/IBinder;",
Robert Carr6da3cc02016-06-16 15:17:07 -07001038 (void*)nativeGetHandle },
chaviw08520a02018-09-10 16:44:56 -07001039 {"nativeScreenshot", "(Landroid/os/IBinder;Landroid/graphics/Rect;IIZI)Landroid/graphics/GraphicBuffer;",
1040 (void*)nativeScreenshot },
Chavi Weingartenea2eb5a2017-11-29 21:26:24 +00001041 {"nativeCaptureLayers", "(Landroid/os/IBinder;Landroid/graphics/Rect;F)Landroid/graphics/GraphicBuffer;",
Chavi Weingartend7ec64c2017-11-30 01:52:01 +00001042 (void*)nativeCaptureLayers },
Robert Carr788f5742018-07-30 17:46:45 -07001043 {"nativeSetInputWindowInfo", "(JJLandroid/view/InputWindowHandle;)V",
chaviw59f532e2018-12-26 15:34:59 -08001044 (void*)nativeSetInputWindowInfo },
1045 {"nativeTransferTouchFocus", "(JLandroid/os/IBinder;Landroid/os/IBinder;)V",
1046 (void*)nativeTransferTouchFocus },
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001047 {"nativeGetDisplayedContentSamplingAttributes",
1048 "(Landroid/os/IBinder;)Landroid/hardware/display/DisplayedContentSamplingAttributes;",
1049 (void*)nativeGetDisplayedContentSamplingAttributes },
1050 {"nativeSetDisplayedContentSamplingEnabled", "(Landroid/os/IBinder;ZII)Z",
1051 (void*)nativeSetDisplayedContentSamplingEnabled },
1052 {"nativeGetDisplayedContentSample",
1053 "(Landroid/os/IBinder;JJ)Landroid/hardware/display/DisplayedContentSample;",
1054 (void*)nativeGetDisplayedContentSample },
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001055};
1056
1057int register_android_view_SurfaceControl(JNIEnv* env)
1058{
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001059 int err = RegisterMethodsOrDie(env, "android/view/SurfaceControl",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001060 sSurfaceControlMethods, NELEM(sSurfaceControlMethods));
1061
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001062 jclass clazz = FindClassOrDie(env, "android/view/SurfaceControl$PhysicalDisplayInfo");
1063 gPhysicalDisplayInfoClassInfo.clazz = MakeGlobalRefOrDie(env, clazz);
1064 gPhysicalDisplayInfoClassInfo.ctor = GetMethodIDOrDie(env,
1065 gPhysicalDisplayInfoClassInfo.clazz, "<init>", "()V");
1066 gPhysicalDisplayInfoClassInfo.width = GetFieldIDOrDie(env, clazz, "width", "I");
1067 gPhysicalDisplayInfoClassInfo.height = GetFieldIDOrDie(env, clazz, "height", "I");
1068 gPhysicalDisplayInfoClassInfo.refreshRate = GetFieldIDOrDie(env, clazz, "refreshRate", "F");
1069 gPhysicalDisplayInfoClassInfo.density = GetFieldIDOrDie(env, clazz, "density", "F");
1070 gPhysicalDisplayInfoClassInfo.xDpi = GetFieldIDOrDie(env, clazz, "xDpi", "F");
1071 gPhysicalDisplayInfoClassInfo.yDpi = GetFieldIDOrDie(env, clazz, "yDpi", "F");
1072 gPhysicalDisplayInfoClassInfo.secure = GetFieldIDOrDie(env, clazz, "secure", "Z");
1073 gPhysicalDisplayInfoClassInfo.appVsyncOffsetNanos = GetFieldIDOrDie(env,
1074 clazz, "appVsyncOffsetNanos", "J");
1075 gPhysicalDisplayInfoClassInfo.presentationDeadlineNanos = GetFieldIDOrDie(env,
1076 clazz, "presentationDeadlineNanos", "J");
Svetoslav1376d602014-03-13 11:17:26 -07001077
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001078 jclass rectClazz = FindClassOrDie(env, "android/graphics/Rect");
1079 gRectClassInfo.bottom = GetFieldIDOrDie(env, rectClazz, "bottom", "I");
1080 gRectClassInfo.left = GetFieldIDOrDie(env, rectClazz, "left", "I");
1081 gRectClassInfo.right = GetFieldIDOrDie(env, rectClazz, "right", "I");
1082 gRectClassInfo.top = GetFieldIDOrDie(env, rectClazz, "top", "I");
Dan Stoza9890e3412014-05-22 16:12:54 -07001083
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001084 jclass frameStatsClazz = FindClassOrDie(env, "android/view/FrameStats");
1085 jfieldID undefined_time_nano_field = GetStaticFieldIDOrDie(env,
1086 frameStatsClazz, "UNDEFINED_TIME_NANO", "J");
Svetoslav1376d602014-03-13 11:17:26 -07001087 nsecs_t undefined_time_nano = env->GetStaticLongField(frameStatsClazz, undefined_time_nano_field);
1088
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001089 jclass contFrameStatsClazz = FindClassOrDie(env, "android/view/WindowContentFrameStats");
1090 gWindowContentFrameStatsClassInfo.init = GetMethodIDOrDie(env,
1091 contFrameStatsClazz, "init", "(J[J[J[J)V");
Svetoslav1376d602014-03-13 11:17:26 -07001092 gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO = undefined_time_nano;
1093
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001094 jclass animFrameStatsClazz = FindClassOrDie(env, "android/view/WindowAnimationFrameStats");
1095 gWindowAnimationFrameStatsClassInfo.init = GetMethodIDOrDie(env,
1096 animFrameStatsClazz, "init", "(J[J)V");
Svetoslav1376d602014-03-13 11:17:26 -07001097 gWindowAnimationFrameStatsClassInfo.UNDEFINED_TIME_NANO = undefined_time_nano;
1098
Hangyu Kuang54ac2192016-04-25 13:22:02 -07001099 jclass hdrCapabilitiesClazz = FindClassOrDie(env, "android/view/Display$HdrCapabilities");
1100 gHdrCapabilitiesClassInfo.clazz = MakeGlobalRefOrDie(env, hdrCapabilitiesClazz);
1101 gHdrCapabilitiesClassInfo.ctor = GetMethodIDOrDie(env, hdrCapabilitiesClazz, "<init>",
1102 "([IFFF)V");
1103
Robert Carr6486d312017-01-09 19:48:29 -08001104 jclass graphicsBufferClazz = FindClassOrDie(env, "android/graphics/GraphicBuffer");
1105 gGraphicBufferClassInfo.clazz = MakeGlobalRefOrDie(env, graphicsBufferClazz);
1106 gGraphicBufferClassInfo.builder = GetStaticMethodIDOrDie(env, graphicsBufferClazz,
1107 "createFromExisting", "(IIIIJ)Landroid/graphics/GraphicBuffer;");
1108
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001109 jclass displayedContentSampleClazz = FindClassOrDie(env,
1110 "android/hardware/display/DisplayedContentSample");
1111 gDisplayedContentSampleClassInfo.clazz = MakeGlobalRefOrDie(env, displayedContentSampleClazz);
1112 gDisplayedContentSampleClassInfo.ctor = GetMethodIDOrDie(env,
1113 displayedContentSampleClazz, "<init>", "(J[J[J[J[J)V");
1114
1115 jclass displayedContentSamplingAttributesClazz = FindClassOrDie(env,
1116 "android/hardware/display/DisplayedContentSamplingAttributes");
1117 gDisplayedContentSamplingAttributesClassInfo.clazz = MakeGlobalRefOrDie(env,
1118 displayedContentSamplingAttributesClazz);
1119 gDisplayedContentSamplingAttributesClassInfo.ctor = GetMethodIDOrDie(env,
1120 displayedContentSamplingAttributesClazz, "<init>", "(III)V");
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001121 return err;
1122}
1123
1124};