blob: c0b31e49960b3646a616c9184c7ce3832d2348a2 [file] [log] [blame]
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "SurfaceControl"
Robert Carr6486d312017-01-09 19:48:29 -080018#define LOG_NDEBUG 0
Mathias Agopian3866f0d2013-02-11 22:08:48 -080019
Mathias Agopian3866f0d2013-02-11 22:08:48 -080020#include "android_os_Parcel.h"
21#include "android_util_Binder.h"
Robert Carr788f5742018-07-30 17:46:45 -070022#include "android_hardware_input_InputWindowHandle.h"
John Reckf29ed282015-04-07 07:32:03 -070023#include "android/graphics/Bitmap.h"
Mathias Agopian3866f0d2013-02-11 22:08:48 -080024#include "android/graphics/GraphicsJNI.h"
25#include "android/graphics/Region.h"
Andreas Gampeed6b9df2014-11-20 22:02:20 -080026#include "core_jni_helpers.h"
Ben Wagner60126ef2015-08-07 12:13:48 -040027
Tom Cherry8ed74bb2017-07-10 14:31:18 -070028#include <android-base/chrono_utils.h>
Steven Moreland2279b252017-07-19 09:50:45 -070029#include <nativehelper/JNIHelp.h>
30#include <nativehelper/ScopedUtfChars.h>
Mathias Agopian0449a402013-03-01 23:01:51 -080031#include <android_runtime/android_view_Surface.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080032#include <android_runtime/android_view_SurfaceSession.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080033#include <gui/Surface.h>
34#include <gui/SurfaceComposerClient.h>
Ben Wagner60126ef2015-08-07 12:13:48 -040035#include <jni.h>
36#include <memory>
37#include <stdio.h>
Michael Wright1c9977b2016-07-12 13:30:10 -070038#include <system/graphics.h>
Daniel Solomon10e3b332019-01-20 21:09:11 -080039#include <ui/ConfigStoreTypes.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080040#include <ui/DisplayInfo.h>
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -070041#include <ui/DisplayedFrameStats.h>
Svetoslav1376d602014-03-13 11:17:26 -070042#include <ui/FrameStats.h>
Peiyong Linb88549e2018-03-28 12:03:45 -070043#include <ui/GraphicTypes.h>
Peiyong Lin371b98f2018-03-14 17:29:10 -070044#include <ui/HdrCapabilities.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080045#include <ui/Rect.h>
46#include <ui/Region.h>
Mathias Agopian3866f0d2013-02-11 22:08:48 -080047#include <utils/Log.h>
48
Mathias Agopian3866f0d2013-02-11 22:08:48 -080049// ----------------------------------------------------------------------------
50
51namespace android {
52
53static const char* const OutOfResourcesException =
54 "android/view/Surface$OutOfResourcesException";
55
56static struct {
Dan Stoza00101052014-05-02 15:23:40 -070057 jclass clazz;
58 jmethodID ctor;
Mathias Agopian3866f0d2013-02-11 22:08:48 -080059 jfieldID width;
60 jfieldID height;
61 jfieldID refreshRate;
62 jfieldID density;
63 jfieldID xDpi;
64 jfieldID yDpi;
65 jfieldID secure;
Andy McFaddene8b1aeb2014-06-13 14:05:40 -070066 jfieldID appVsyncOffsetNanos;
67 jfieldID presentationDeadlineNanos;
Mathias Agopian3866f0d2013-02-11 22:08:48 -080068} gPhysicalDisplayInfoClassInfo;
69
Dan Stoza9890e3412014-05-22 16:12:54 -070070static struct {
71 jfieldID bottom;
72 jfieldID left;
73 jfieldID right;
74 jfieldID top;
75} gRectClassInfo;
76
Leon Scroggins46cb9bd2014-03-06 15:36:39 -050077// Implements SkMallocPixelRef::ReleaseProc, to delete the screenshot on unref.
78void DeleteScreenshot(void* addr, void* context) {
Leon Scroggins46cb9bd2014-03-06 15:36:39 -050079 delete ((ScreenshotClient*) context);
80}
Mathias Agopian3866f0d2013-02-11 22:08:48 -080081
Svetoslav1376d602014-03-13 11:17:26 -070082static struct {
83 nsecs_t UNDEFINED_TIME_NANO;
84 jmethodID init;
85} gWindowContentFrameStatsClassInfo;
86
87static struct {
88 nsecs_t UNDEFINED_TIME_NANO;
89 jmethodID init;
90} gWindowAnimationFrameStatsClassInfo;
91
Hangyu Kuang54ac2192016-04-25 13:22:02 -070092static struct {
93 jclass clazz;
94 jmethodID ctor;
95} gHdrCapabilitiesClassInfo;
96
Robert Carr6486d312017-01-09 19:48:29 -080097static struct {
98 jclass clazz;
99 jmethodID builder;
100} gGraphicBufferClassInfo;
101
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -0700102static struct {
103 jclass clazz;
104 jmethodID ctor;
105} gDisplayedContentSampleClassInfo;
106
107static struct {
108 jclass clazz;
109 jmethodID ctor;
110} gDisplayedContentSamplingAttributesClassInfo;
111
Daniel Solomon10e3b332019-01-20 21:09:11 -0800112static struct {
113 jclass clazz;
114 jmethodID ctor;
115 jfieldID X;
116 jfieldID Y;
117 jfieldID Z;
118} gCieXyzClassInfo;
119
120static struct {
121 jclass clazz;
122 jmethodID ctor;
123 jfieldID red;
124 jfieldID green;
125 jfieldID blue;
126 jfieldID white;
127} gDisplayPrimariesClassInfo;
128
Peiyong Line3e5efd2019-03-21 20:59:47 +0000129static struct {
130 jclass clazz;
131 jmethodID builder;
132} gScreenshotGraphicBufferClassInfo;
133
134class JNamedColorSpace {
135public:
136 // ColorSpace.Named.SRGB.ordinal() = 0;
137 static constexpr jint SRGB = 0;
138
139 // ColorSpace.Named.DISPLAY_P3.ordinal() = 6;
140 static constexpr jint DISPLAY_P3 = 6;
141};
142
143constexpr jint fromDataspaceToNamedColorSpaceValue(const ui::Dataspace dataspace) {
144 switch (dataspace) {
145 case ui::Dataspace::DISPLAY_P3:
146 return JNamedColorSpace::DISPLAY_P3;
147 default:
148 return JNamedColorSpace::SRGB;
149 }
150}
151
152constexpr ui::Dataspace pickDataspaceFromColorMode(const ui::ColorMode colorMode) {
153 switch (colorMode) {
154 case ui::ColorMode::DISPLAY_P3:
155 case ui::ColorMode::BT2100_PQ:
156 case ui::ColorMode::BT2100_HLG:
157 case ui::ColorMode::DISPLAY_BT2020:
158 return ui::Dataspace::DISPLAY_P3;
159 default:
160 return ui::Dataspace::V0_SRGB;
161 }
162}
163
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800164// ----------------------------------------------------------------------------
165
Robert Carre13b58e2017-08-31 14:50:44 -0700166static jlong nativeCreateTransaction(JNIEnv* env, jclass clazz) {
167 return reinterpret_cast<jlong>(new SurfaceComposerClient::Transaction);
168}
169
170static void releaseTransaction(SurfaceComposerClient::Transaction* t) {
171 delete t;
172}
173
174static jlong nativeGetNativeTransactionFinalizer(JNIEnv* env, jclass clazz) {
175 return static_cast<jlong>(reinterpret_cast<uintptr_t>(&releaseTransaction));
176}
177
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000178static jlong nativeCreate(JNIEnv* env, jclass clazz, jobject sessionObj,
Albert Chaulk3bf2e572016-11-22 13:59:19 -0500179 jstring nameStr, jint w, jint h, jint format, jint flags, jlong parentObject,
Evan Rosky485df202018-12-06 14:11:12 -0800180 jobject metadataParcel) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800181 ScopedUtfChars name(env, nameStr);
Robert Carr76907ee2019-01-11 13:38:19 -0800182 sp<SurfaceComposerClient> client;
183 if (sessionObj != NULL) {
184 client = android_view_SurfaceSession_getClient(env, sessionObj);
185 } else {
186 client = SurfaceComposerClient::getDefault();
187 }
Robert Carr838120c2016-11-01 18:31:12 -0700188 SurfaceControl *parent = reinterpret_cast<SurfaceControl*>(parentObject);
Robert Carrb0f39362018-03-14 13:52:25 -0700189 sp<SurfaceControl> surface;
Evan Rosky485df202018-12-06 14:11:12 -0800190 LayerMetadata metadata;
191 Parcel* parcel = parcelForJavaObject(env, metadataParcel);
192 if (parcel && !parcel->objectsCount()) {
193 status_t err = metadata.readFromParcel(parcel);
194 if (err != NO_ERROR) {
195 jniThrowException(env, "java/lang/IllegalArgumentException",
196 "Metadata parcel has wrong format");
197 }
198 }
199
Robert Carrb0f39362018-03-14 13:52:25 -0700200 status_t err = client->createSurfaceChecked(
Evan Rosky485df202018-12-06 14:11:12 -0800201 String8(name.c_str()), w, h, format, &surface, flags, parent, std::move(metadata));
Robert Carrb0f39362018-03-14 13:52:25 -0700202 if (err == NAME_NOT_FOUND) {
203 jniThrowException(env, "java/lang/IllegalArgumentException", NULL);
204 return 0;
205 } else if (err != NO_ERROR) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800206 jniThrowException(env, OutOfResourcesException, NULL);
207 return 0;
208 }
Albert Chaulk3bf2e572016-11-22 13:59:19 -0500209
Mathias Agopianb1d90c82013-03-06 17:45:42 -0800210 surface->incStrong((void *)nativeCreate);
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000211 return reinterpret_cast<jlong>(surface.get());
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800212}
213
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000214static void nativeRelease(JNIEnv* env, jclass clazz, jlong nativeObject) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800215 sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(nativeObject));
Robert Carrcc6d4832019-02-04 15:41:12 -0800216 ctrl->release();
Mathias Agopianb1d90c82013-03-06 17:45:42 -0800217 ctrl->decStrong((void *)nativeCreate);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800218}
219
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000220static void nativeDestroy(JNIEnv* env, jclass clazz, jlong nativeObject) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800221 sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(nativeObject));
Robert Carrcc6d4832019-02-04 15:41:12 -0800222 ctrl->destroy();
Mathias Agopianb1d90c82013-03-06 17:45:42 -0800223 ctrl->decStrong((void *)nativeCreate);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800224}
225
Chong Zhang47e36a32016-02-29 16:44:33 -0800226static void nativeDisconnect(JNIEnv* env, jclass clazz, jlong nativeObject) {
227 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
228 if (ctrl != NULL) {
229 ctrl->disconnect();
230 }
231}
232
Robert Carr6486d312017-01-09 19:48:29 -0800233static Rect rectFromObj(JNIEnv* env, jobject rectObj) {
234 int left = env->GetIntField(rectObj, gRectClassInfo.left);
235 int top = env->GetIntField(rectObj, gRectClassInfo.top);
236 int right = env->GetIntField(rectObj, gRectClassInfo.right);
237 int bottom = env->GetIntField(rectObj, gRectClassInfo.bottom);
238 return Rect(left, top, right, bottom);
239}
240
chaviw08520a02018-09-10 16:44:56 -0700241static jobject nativeScreenshot(JNIEnv* env, jclass clazz,
Robert Carr6486d312017-01-09 19:48:29 -0800242 jobject displayTokenObj, jobject sourceCropObj, jint width, jint height,
Robert Carr5c52b132019-02-15 15:48:11 -0800243 bool useIdentityTransform, int rotation, bool captureSecureLayers) {
Robert Carr6486d312017-01-09 19:48:29 -0800244 sp<IBinder> displayToken = ibinderForJavaObject(env, displayTokenObj);
245 if (displayToken == NULL) {
246 return NULL;
247 }
Peiyong Line3e5efd2019-03-21 20:59:47 +0000248 const ui::ColorMode colorMode = SurfaceComposerClient::getActiveColorMode(displayToken);
249 const ui::Dataspace dataspace = pickDataspaceFromColorMode(colorMode);
250
Robert Carr6486d312017-01-09 19:48:29 -0800251 Rect sourceCrop = rectFromObj(env, sourceCropObj);
Robert Carr6486d312017-01-09 19:48:29 -0800252 sp<GraphicBuffer> buffer;
Robert Carr66b5664f2019-04-02 14:18:56 -0700253 bool capturedSecureLayers = false;
Peiyong Line3e5efd2019-03-21 20:59:47 +0000254 status_t res = ScreenshotClient::capture(displayToken, dataspace,
Robert Carr5c52b132019-02-15 15:48:11 -0800255 ui::PixelFormat::RGBA_8888,
256 sourceCrop, width, height,
Robert Carr66b5664f2019-04-02 14:18:56 -0700257 useIdentityTransform, rotation, captureSecureLayers, &buffer, capturedSecureLayers);
Robert Carr6486d312017-01-09 19:48:29 -0800258 if (res != NO_ERROR) {
259 return NULL;
260 }
261
Peiyong Line3e5efd2019-03-21 20:59:47 +0000262 const jint namedColorSpace = fromDataspaceToNamedColorSpaceValue(dataspace);
263 return env->CallStaticObjectMethod(gScreenshotGraphicBufferClassInfo.clazz,
264 gScreenshotGraphicBufferClassInfo.builder,
Robert Carr6486d312017-01-09 19:48:29 -0800265 buffer->getWidth(),
266 buffer->getHeight(),
267 buffer->getPixelFormat(),
Mathias Agopian113fd302017-05-25 18:31:04 -0700268 (jint)buffer->getUsage(),
Peiyong Line3e5efd2019-03-21 20:59:47 +0000269 (jlong)buffer.get(),
Robert Carr66b5664f2019-04-02 14:18:56 -0700270 namedColorSpace,
271 capturedSecureLayers);
Robert Carr6486d312017-01-09 19:48:29 -0800272}
273
Peiyong Lin21e499a2019-04-03 16:37:46 -0700274static jobject nativeCaptureLayers(JNIEnv* env, jclass clazz, jobject displayTokenObj,
275 jobject layerHandleToken, jobject sourceCropObj, jfloat frameScale,
276 jobjectArray excludeArray) {
chaviwfbe47df2017-11-10 16:14:49 -0800277
278 sp<IBinder> layerHandle = ibinderForJavaObject(env, layerHandleToken);
279 if (layerHandle == NULL) {
280 return NULL;
281 }
282
283 Rect sourceCrop;
284 if (sourceCropObj != NULL) {
285 sourceCrop = rectFromObj(env, sourceCropObj);
286 }
287
Robert Carrffcdc512019-04-02 11:51:11 -0700288 std::unordered_set<sp<IBinder>,ISurfaceComposer::SpHash<IBinder>> excludeHandles;
289 if (excludeArray != NULL) {
290 const jsize len = env->GetArrayLength(excludeArray);
291 excludeHandles.reserve(len);
292
293 for (jsize i = 0; i < len; i++) {
294 jobject obj = env->GetObjectArrayElement(excludeArray, i);
295 if (obj == nullptr) {
296 jniThrowNullPointerException(env, "Exclude layer is null");
297 return NULL;
298 }
299 sp<IBinder> excludeHandle = ibinderForJavaObject(env, obj);
300 excludeHandles.emplace(excludeHandle);
301 }
302 }
303
chaviwfbe47df2017-11-10 16:14:49 -0800304 sp<GraphicBuffer> buffer;
Peiyong Lin21e499a2019-04-03 16:37:46 -0700305 ui::Dataspace dataspace = ui::Dataspace::V0_SRGB;
306 sp<IBinder> displayToken = ibinderForJavaObject(env, displayTokenObj);
307 if (displayToken != nullptr) {
308 const ui::ColorMode colorMode = SurfaceComposerClient::getActiveColorMode(displayToken);
309 dataspace = pickDataspaceFromColorMode(colorMode);
310 }
Peiyong Line3e5efd2019-03-21 20:59:47 +0000311 status_t res = ScreenshotClient::captureChildLayers(layerHandle, dataspace,
Peiyong Lin10a34d12018-09-19 13:56:12 -0700312 ui::PixelFormat::RGBA_8888, sourceCrop,
Robert Carrffcdc512019-04-02 11:51:11 -0700313 excludeHandles, frameScale, &buffer);
chaviwfbe47df2017-11-10 16:14:49 -0800314 if (res != NO_ERROR) {
315 return NULL;
316 }
317
Peiyong Line3e5efd2019-03-21 20:59:47 +0000318 const jint namedColorSpace = fromDataspaceToNamedColorSpaceValue(dataspace);
319 return env->CallStaticObjectMethod(gScreenshotGraphicBufferClassInfo.clazz,
320 gScreenshotGraphicBufferClassInfo.builder,
chaviwfbe47df2017-11-10 16:14:49 -0800321 buffer->getWidth(),
322 buffer->getHeight(),
323 buffer->getPixelFormat(),
324 (jint)buffer->getUsage(),
Peiyong Line3e5efd2019-03-21 20:59:47 +0000325 (jlong)buffer.get(),
Robert Carrbf9298f2019-04-09 07:42:02 -0700326 namedColorSpace,
327 false /* capturedSecureLayers */);
chaviw1cda84c2017-10-23 16:47:10 -0700328}
329
Robert Carre13b58e2017-08-31 14:50:44 -0700330static void nativeApplyTransaction(JNIEnv* env, jclass clazz, jlong transactionObj, jboolean sync) {
331 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
332 transaction->apply(sync);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800333}
334
Robert Carrb1579c82017-09-05 14:54:47 -0700335static void nativeMergeTransaction(JNIEnv* env, jclass clazz,
336 jlong transactionObj, jlong otherTransactionObj) {
337 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
338 auto otherTransaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(
339 otherTransactionObj);
340 transaction->merge(std::move(*otherTransaction));
341}
342
Robert Carre13b58e2017-08-31 14:50:44 -0700343static void nativeSetAnimationTransaction(JNIEnv* env, jclass clazz, jlong transactionObj) {
344 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
345 transaction->setAnimationTransaction();
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800346}
347
Jorim Jaggiaa763cd2018-03-22 23:20:36 +0100348static void nativeSetEarlyWakeup(JNIEnv* env, jclass clazz, jlong transactionObj) {
349 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
350 transaction->setEarlyWakeup();
351}
352
Robert Carre13b58e2017-08-31 14:50:44 -0700353static void nativeSetLayer(JNIEnv* env, jclass clazz, jlong transactionObj,
354 jlong nativeObject, jint zorder) {
355 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800356
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800357 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700358 transaction->setLayer(ctrl, zorder);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800359}
360
Robert Carre13b58e2017-08-31 14:50:44 -0700361static void nativeSetRelativeLayer(JNIEnv* env, jclass clazz, jlong transactionObj,
362 jlong nativeObject,
Robert Carraf422a82017-04-10 18:34:33 -0700363 jobject relativeTo, jint zorder) {
Robert Carre13b58e2017-08-31 14:50:44 -0700364
Robert Carraf422a82017-04-10 18:34:33 -0700365 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
366 sp<IBinder> handle = ibinderForJavaObject(env, relativeTo);
367
Robert Carre13b58e2017-08-31 14:50:44 -0700368 {
369 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
370 transaction->setRelativeLayer(ctrl, handle, zorder);
371 }
Robert Carraf422a82017-04-10 18:34:33 -0700372}
373
Robert Carre13b58e2017-08-31 14:50:44 -0700374static void nativeSetPosition(JNIEnv* env, jclass clazz, jlong transactionObj,
375 jlong nativeObject, jfloat x, jfloat y) {
376 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
377
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800378 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700379 transaction->setPosition(ctrl, x, y);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800380}
381
Robert Carr76907ee2019-01-11 13:38:19 -0800382static void nativeSetGeometry(JNIEnv* env, jclass clazz, jlong transactionObj, jlong nativeObject,
383 jobject sourceObj, jobject dstObj, jlong orientation) {
384 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
385 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
386
387 Rect source, dst;
388 if (sourceObj != NULL) {
389 source = rectFromObj(env, sourceObj);
390 }
391 if (dstObj != NULL) {
392 dst = rectFromObj(env, dstObj);
393 }
394 transaction->setGeometry(ctrl, source, dst, orientation);
395}
396
Robert Carr6da3cc02016-06-16 15:17:07 -0700397static void nativeSetGeometryAppliesWithResize(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700398jlong transactionObj,
Robert Carra9408d42016-06-03 13:28:48 -0700399 jlong nativeObject) {
Robert Carre13b58e2017-08-31 14:50:44 -0700400 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
401
Robert Carra9408d42016-06-03 13:28:48 -0700402 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700403 transaction->setGeometryAppliesWithResize(ctrl);
Robert Carra9408d42016-06-03 13:28:48 -0700404}
405
Robert Carre13b58e2017-08-31 14:50:44 -0700406static void nativeSetSize(JNIEnv* env, jclass clazz, jlong transactionObj,
407 jlong nativeObject, jint w, jint h) {
408 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
409
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800410 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700411 transaction->setSize(ctrl, w, h);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800412}
413
Robert Carre13b58e2017-08-31 14:50:44 -0700414static void nativeSetFlags(JNIEnv* env, jclass clazz, jlong transactionObj,
415 jlong nativeObject, jint flags, jint mask) {
416 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
417
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800418 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700419 transaction->setFlags(ctrl, flags, mask);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800420}
421
Robert Carre13b58e2017-08-31 14:50:44 -0700422static void nativeSetTransparentRegionHint(JNIEnv* env, jclass clazz, jlong transactionObj,
423 jlong nativeObject, jobject regionObj) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800424 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
425 SkRegion* region = android_graphics_Region_getSkRegion(env, regionObj);
426 if (!region) {
427 doThrowIAE(env);
428 return;
429 }
430
431 const SkIRect& b(region->getBounds());
432 Region reg(Rect(b.fLeft, b.fTop, b.fRight, b.fBottom));
433 if (region->isComplex()) {
434 SkRegion::Iterator it(*region);
435 while (!it.done()) {
436 const SkIRect& r(it.rect());
437 reg.addRectUnchecked(r.fLeft, r.fTop, r.fRight, r.fBottom);
438 it.next();
439 }
440 }
441
Robert Carre13b58e2017-08-31 14:50:44 -0700442 {
443 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
444 transaction->setTransparentRegionHint(ctrl, reg);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800445 }
446}
447
Robert Carre13b58e2017-08-31 14:50:44 -0700448static void nativeSetAlpha(JNIEnv* env, jclass clazz, jlong transactionObj,
449 jlong nativeObject, jfloat alpha) {
450 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
451
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800452 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700453 transaction->setAlpha(ctrl, alpha);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800454}
455
Robert Carr788f5742018-07-30 17:46:45 -0700456static void nativeSetInputWindowInfo(JNIEnv* env, jclass clazz, jlong transactionObj,
457 jlong nativeObject, jobject inputWindow) {
458 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
459
Riddle Hsucd958bc2019-01-23 15:40:26 +0800460 sp<NativeInputWindowHandle> handle = android_view_InputWindowHandle_getHandle(
Robert Carr788f5742018-07-30 17:46:45 -0700461 env, inputWindow);
462 handle->updateInfo();
463
464 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
465 transaction->setInputWindowInfo(ctrl, *handle->getInfo());
466}
467
chaviw59f532e2018-12-26 15:34:59 -0800468static void nativeTransferTouchFocus(JNIEnv* env, jclass clazz, jlong transactionObj,
469 jobject fromTokenObj, jobject toTokenObj) {
470 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
471
472 sp<IBinder> fromToken(ibinderForJavaObject(env, fromTokenObj));
473 sp<IBinder> toToken(ibinderForJavaObject(env, toTokenObj));
474 transaction->transferTouchFocus(fromToken, toToken);
475}
476
chaviw319cd0782019-02-14 11:00:23 -0800477static void nativeSyncInputWindows(JNIEnv* env, jclass clazz, jlong transactionObj) {
478 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
479 transaction->syncInputWindows();
480}
481
Evan Rosky485df202018-12-06 14:11:12 -0800482static void nativeSetMetadata(JNIEnv* env, jclass clazz, jlong transactionObj,
483 jlong nativeObject, jint id, jobject parcelObj) {
484 Parcel* parcel = parcelForJavaObject(env, parcelObj);
485 if (!parcel) {
486 jniThrowNullPointerException(env, "attribute data");
487 return;
488 }
489 if (parcel->objectsCount()) {
490 jniThrowException(env, "java/lang/RuntimeException",
491 "Tried to marshall a Parcel that contained Binder objects.");
492 return;
493 }
494
495 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
496
497 std::vector<uint8_t> byteData(parcel->dataSize());
498 memcpy(byteData.data(), parcel->data(), parcel->dataSize());
499
500 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl*>(nativeObject);
501 transaction->setMetadata(ctrl, id, std::move(byteData));
502}
503
Robert Carre13b58e2017-08-31 14:50:44 -0700504static void nativeSetColor(JNIEnv* env, jclass clazz, jlong transactionObj,
505 jlong nativeObject, jfloatArray fColor) {
506 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
chaviw0dd03f52017-08-25 12:15:26 -0700507 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700508
chaviw0dd03f52017-08-25 12:15:26 -0700509 float* floatColors = env->GetFloatArrayElements(fColor, 0);
510 half3 color(floatColors[0], floatColors[1], floatColors[2]);
Robert Carre13b58e2017-08-31 14:50:44 -0700511 transaction->setColor(ctrl, color);
chaviw0dd03f52017-08-25 12:15:26 -0700512}
513
Robert Carre13b58e2017-08-31 14:50:44 -0700514static void nativeSetMatrix(JNIEnv* env, jclass clazz, jlong transactionObj,
515 jlong nativeObject,
Robert Carr0edf18f2017-02-21 20:01:47 -0800516 jfloat dsdx, jfloat dtdx, jfloat dtdy, jfloat dsdy) {
Robert Carre13b58e2017-08-31 14:50:44 -0700517 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
518
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800519 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700520 transaction->setMatrix(ctrl, dsdx, dtdx, dtdy, dsdy);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800521}
522
Peiyong Lin52bb6b42018-10-01 11:40:50 -0700523static void nativeSetColorTransform(JNIEnv* env, jclass clazz, jlong transactionObj,
524 jlong nativeObject, jfloatArray fMatrix, jfloatArray fTranslation) {
525 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
526 SurfaceControl* const surfaceControl = reinterpret_cast<SurfaceControl*>(nativeObject);
527 float* floatMatrix = env->GetFloatArrayElements(fMatrix, 0);
528 mat3 matrix(static_cast<float const*>(floatMatrix));
529 float* floatTranslation = env->GetFloatArrayElements(fTranslation, 0);
530 vec3 translation(floatTranslation[0], floatTranslation[1], floatTranslation[2]);
531 transaction->setColorTransform(surfaceControl, matrix, translation);
532}
533
Peiyong Linf4f0f642019-03-01 14:36:05 -0800534static void nativeSetColorSpaceAgnostic(JNIEnv* env, jclass clazz, jlong transactionObj,
535 jlong nativeObject, jboolean agnostic) {
536 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
537 SurfaceControl* const surfaceControl = reinterpret_cast<SurfaceControl*>(nativeObject);
538 transaction->setColorSpaceAgnostic(surfaceControl, agnostic);
539}
540
Robert Carre13b58e2017-08-31 14:50:44 -0700541static void nativeSetWindowCrop(JNIEnv* env, jclass clazz, jlong transactionObj,
542 jlong nativeObject,
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800543 jint l, jint t, jint r, jint b) {
Robert Carre13b58e2017-08-31 14:50:44 -0700544 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
545
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800546 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
547 Rect crop(l, t, r, b);
Marissa Wallcb32fdd2018-07-24 09:53:30 -0700548 transaction->setCrop_legacy(ctrl, crop);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800549}
550
Lucas Dupinff9d6ab2018-10-16 18:05:50 -0700551static void nativeSetCornerRadius(JNIEnv* env, jclass clazz, jlong transactionObj,
552 jlong nativeObject, jfloat cornerRadius) {
553 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
554
555 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
556 transaction->setCornerRadius(ctrl, cornerRadius);
557}
558
Robert Carre13b58e2017-08-31 14:50:44 -0700559static void nativeSetLayerStack(JNIEnv* env, jclass clazz, jlong transactionObj,
560 jlong nativeObject, jint layerStack) {
561 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
562
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800563 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -0700564 transaction->setLayerStack(ctrl, layerStack);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800565}
566
Dominik Laskowski3316a0a2019-01-25 02:56:41 -0800567static jlongArray nativeGetPhysicalDisplayIds(JNIEnv* env, jclass clazz) {
568 const auto displayIds = SurfaceComposerClient::getPhysicalDisplayIds();
569 jlongArray array = env->NewLongArray(displayIds.size());
570 if (array == nullptr) {
571 jniThrowException(env, "java/lang/OutOfMemoryError", nullptr);
572 return nullptr;
573 }
574
575 if (displayIds.empty()) {
576 return array;
577 }
578
579 jlong* values = env->GetLongArrayElements(array, 0);
580 for (size_t i = 0; i < displayIds.size(); ++i) {
581 values[i] = static_cast<jlong>(displayIds[i]);
582 }
583
584 env->ReleaseLongArrayElements(array, values, 0);
585 return array;
586}
587
588static jobject nativeGetPhysicalDisplayToken(JNIEnv* env, jclass clazz, jlong physicalDisplayId) {
589 sp<IBinder> token = SurfaceComposerClient::getPhysicalDisplayToken(physicalDisplayId);
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800590 return javaObjectForIBinder(env, token);
591}
592
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -0700593static jobject nativeGetDisplayedContentSamplingAttributes(JNIEnv* env, jclass clazz,
594 jobject tokenObj) {
595 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
596
597 ui::PixelFormat format;
598 ui::Dataspace dataspace;
599 uint8_t componentMask;
600 status_t err = SurfaceComposerClient::getDisplayedContentSamplingAttributes(
601 token, &format, &dataspace, &componentMask);
602 if (err != OK) {
603 return nullptr;
604 }
605 return env->NewObject(gDisplayedContentSamplingAttributesClassInfo.clazz,
606 gDisplayedContentSamplingAttributesClassInfo.ctor,
607 format, dataspace, componentMask);
608}
609
610static jboolean nativeSetDisplayedContentSamplingEnabled(JNIEnv* env, jclass clazz,
611 jobject tokenObj, jboolean enable, jint componentMask, jint maxFrames) {
612 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
Kevin DuBois205a6802019-01-07 17:04:46 -0800613 status_t rc = SurfaceComposerClient::setDisplayContentSamplingEnabled(
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -0700614 token, enable, componentMask, maxFrames);
Kevin DuBois205a6802019-01-07 17:04:46 -0800615 return rc == OK;
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -0700616}
617
618static jobject nativeGetDisplayedContentSample(JNIEnv* env, jclass clazz, jobject tokenObj,
619 jlong maxFrames, jlong timestamp) {
620 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
621
622 DisplayedFrameStats stats;
623 status_t err = SurfaceComposerClient::getDisplayedContentSample(
624 token, maxFrames, timestamp, &stats);
625 if (err != OK) {
626 return nullptr;
627 }
628
629 jlongArray histogramComponent0 = env->NewLongArray(stats.component_0_sample.size());
630 jlongArray histogramComponent1 = env->NewLongArray(stats.component_1_sample.size());
631 jlongArray histogramComponent2 = env->NewLongArray(stats.component_2_sample.size());
632 jlongArray histogramComponent3 = env->NewLongArray(stats.component_3_sample.size());
633 if ((histogramComponent0 == nullptr) ||
634 (histogramComponent1 == nullptr) ||
635 (histogramComponent2 == nullptr) ||
636 (histogramComponent3 == nullptr)) {
637 return JNI_FALSE;
638 }
639
640 env->SetLongArrayRegion(histogramComponent0, 0,
641 stats.component_0_sample.size(),
642 reinterpret_cast<jlong*>(stats.component_0_sample.data()));
643 env->SetLongArrayRegion(histogramComponent1, 0,
644 stats.component_1_sample.size(),
645 reinterpret_cast<jlong*>(stats.component_1_sample.data()));
646 env->SetLongArrayRegion(histogramComponent2, 0,
647 stats.component_2_sample.size(),
648 reinterpret_cast<jlong*>(stats.component_2_sample.data()));
649 env->SetLongArrayRegion(histogramComponent3, 0,
650 stats.component_3_sample.size(),
651 reinterpret_cast<jlong*>(stats.component_3_sample.data()));
652 return env->NewObject(gDisplayedContentSampleClassInfo.clazz,
653 gDisplayedContentSampleClassInfo.ctor,
654 stats.numFrames,
655 histogramComponent0,
656 histogramComponent1,
657 histogramComponent2,
658 histogramComponent3);
659}
660
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800661static jobject nativeCreateDisplay(JNIEnv* env, jclass clazz, jstring nameObj,
662 jboolean secure) {
663 ScopedUtfChars name(env, nameObj);
664 sp<IBinder> token(SurfaceComposerClient::createDisplay(
665 String8(name.c_str()), bool(secure)));
666 return javaObjectForIBinder(env, token);
667}
668
Jesse Hall6a6bc212013-08-08 12:15:03 -0700669static void nativeDestroyDisplay(JNIEnv* env, jclass clazz, jobject tokenObj) {
670 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
671 if (token == NULL) return;
672 SurfaceComposerClient::destroyDisplay(token);
673}
674
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800675static void nativeSetDisplaySurface(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700676 jlong transactionObj,
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000677 jobject tokenObj, jlong nativeSurfaceObject) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800678 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
679 if (token == NULL) return;
Mathias Agopianffddc9b2013-02-25 15:56:31 -0800680 sp<IGraphicBufferProducer> bufferProducer;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800681 sp<Surface> sur(reinterpret_cast<Surface *>(nativeSurfaceObject));
Mathias Agopianffddc9b2013-02-25 15:56:31 -0800682 if (sur != NULL) {
683 bufferProducer = sur->getIGraphicBufferProducer();
684 }
Robert Carre13b58e2017-08-31 14:50:44 -0700685
686
687 status_t err = NO_ERROR;
688 {
689 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
690 err = transaction->setDisplaySurface(token,
691 bufferProducer);
692 }
Pablo Ceballosaff2f942016-07-29 14:49:55 -0700693 if (err != NO_ERROR) {
694 doThrowIAE(env, "Illegal Surface, could not enable async mode. Was this"
695 " Surface created with singleBufferMode?");
696 }
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800697}
698
699static void nativeSetDisplayLayerStack(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700700 jlong transactionObj,
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800701 jobject tokenObj, jint layerStack) {
Robert Carre13b58e2017-08-31 14:50:44 -0700702
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800703 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
704 if (token == NULL) return;
705
Robert Carre13b58e2017-08-31 14:50:44 -0700706 {
707 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
708 transaction->setDisplayLayerStack(token, layerStack);
709 }
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800710}
711
712static void nativeSetDisplayProjection(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700713 jlong transactionObj,
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800714 jobject tokenObj, jint orientation,
715 jint layerStackRect_left, jint layerStackRect_top, jint layerStackRect_right, jint layerStackRect_bottom,
716 jint displayRect_left, jint displayRect_top, jint displayRect_right, jint displayRect_bottom) {
717 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
718 if (token == NULL) return;
719 Rect layerStackRect(layerStackRect_left, layerStackRect_top, layerStackRect_right, layerStackRect_bottom);
720 Rect displayRect(displayRect_left, displayRect_top, displayRect_right, displayRect_bottom);
Robert Carre13b58e2017-08-31 14:50:44 -0700721
722 {
723 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
724 transaction->setDisplayProjection(token, orientation, layerStackRect, displayRect);
725 }
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800726}
727
Michael Wright01e840f2014-06-26 16:03:25 -0700728static void nativeSetDisplaySize(JNIEnv* env, jclass clazz,
Robert Carre13b58e2017-08-31 14:50:44 -0700729 jlong transactionObj,
Michael Wright01e840f2014-06-26 16:03:25 -0700730 jobject tokenObj, jint width, jint height) {
731 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
732 if (token == NULL) return;
Robert Carre13b58e2017-08-31 14:50:44 -0700733
734 {
735 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
736 transaction->setDisplaySize(token, width, height);
737 }
Michael Wright01e840f2014-06-26 16:03:25 -0700738}
739
Dan Stoza00101052014-05-02 15:23:40 -0700740static jobjectArray nativeGetDisplayConfigs(JNIEnv* env, jclass clazz,
741 jobject tokenObj) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800742 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
Dan Stoza00101052014-05-02 15:23:40 -0700743 if (token == NULL) return NULL;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800744
Dan Stoza00101052014-05-02 15:23:40 -0700745 Vector<DisplayInfo> configs;
746 if (SurfaceComposerClient::getDisplayConfigs(token, &configs) != NO_ERROR ||
747 configs.size() == 0) {
748 return NULL;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800749 }
750
Dan Stoza00101052014-05-02 15:23:40 -0700751 jobjectArray configArray = env->NewObjectArray(configs.size(),
752 gPhysicalDisplayInfoClassInfo.clazz, NULL);
753
754 for (size_t c = 0; c < configs.size(); ++c) {
755 const DisplayInfo& info = configs[c];
756 jobject infoObj = env->NewObject(gPhysicalDisplayInfoClassInfo.clazz,
757 gPhysicalDisplayInfoClassInfo.ctor);
758 env->SetIntField(infoObj, gPhysicalDisplayInfoClassInfo.width, info.w);
759 env->SetIntField(infoObj, gPhysicalDisplayInfoClassInfo.height, info.h);
760 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.refreshRate, info.fps);
761 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.density, info.density);
762 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.xDpi, info.xdpi);
763 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.yDpi, info.ydpi);
764 env->SetBooleanField(infoObj, gPhysicalDisplayInfoClassInfo.secure, info.secure);
Andy McFaddene8b1aeb2014-06-13 14:05:40 -0700765 env->SetLongField(infoObj, gPhysicalDisplayInfoClassInfo.appVsyncOffsetNanos,
766 info.appVsyncOffset);
767 env->SetLongField(infoObj, gPhysicalDisplayInfoClassInfo.presentationDeadlineNanos,
768 info.presentationDeadline);
Dan Stoza00101052014-05-02 15:23:40 -0700769 env->SetObjectArrayElement(configArray, static_cast<jsize>(c), infoObj);
770 env->DeleteLocalRef(infoObj);
771 }
772
773 return configArray;
774}
775
Ady Abraham6070ce12019-01-24 18:48:58 -0800776static jboolean nativeSetAllowedDisplayConfigs(JNIEnv* env, jclass clazz,
777 jobject tokenObj, jintArray configArray) {
778 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
779 if (token == nullptr) return JNI_FALSE;
780
781 std::vector<int32_t> allowedConfigs;
782 jsize configArraySize = env->GetArrayLength(configArray);
783 allowedConfigs.reserve(configArraySize);
784
785 jint* configArrayElements = env->GetIntArrayElements(configArray, 0);
786 for (int i = 0; i < configArraySize; i++) {
787 allowedConfigs.push_back(configArrayElements[i]);
788 }
789 env->ReleaseIntArrayElements(configArray, configArrayElements, 0);
790
791 size_t result = SurfaceComposerClient::setAllowedDisplayConfigs(token, allowedConfigs);
792 return result == NO_ERROR ? JNI_TRUE : JNI_FALSE;
793}
794
Ady Abraham42f9a2fb2019-02-26 14:13:39 -0800795static jintArray nativeGetAllowedDisplayConfigs(JNIEnv* env, jclass clazz, jobject tokenObj) {
796 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
797 if (token == nullptr) return JNI_FALSE;
798
799 std::vector<int32_t> allowedConfigs;
800 size_t result = SurfaceComposerClient::getAllowedDisplayConfigs(token, &allowedConfigs);
801 if (result != NO_ERROR) {
802 return nullptr;
803 }
804
805 jintArray allowedConfigsArray = env->NewIntArray(allowedConfigs.size());
806 if (allowedConfigsArray == nullptr) {
807 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
808 return nullptr;
809 }
810 jint* allowedConfigsArrayValues = env->GetIntArrayElements(allowedConfigsArray, 0);
811 for (size_t i = 0; i < allowedConfigs.size(); i++) {
812 allowedConfigsArrayValues[i] = static_cast<jint>(allowedConfigs[i]);
813 }
814 env->ReleaseIntArrayElements(allowedConfigsArray, allowedConfigsArrayValues, 0);
815 return allowedConfigsArray;
816}
817
Dan Stoza00101052014-05-02 15:23:40 -0700818static jint nativeGetActiveConfig(JNIEnv* env, jclass clazz, jobject tokenObj) {
819 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
820 if (token == NULL) return -1;
821 return static_cast<jint>(SurfaceComposerClient::getActiveConfig(token));
822}
823
824static jboolean nativeSetActiveConfig(JNIEnv* env, jclass clazz, jobject tokenObj, jint id) {
825 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
826 if (token == NULL) return JNI_FALSE;
827 status_t err = SurfaceComposerClient::setActiveConfig(token, static_cast<int>(id));
828 return err == NO_ERROR ? JNI_TRUE : JNI_FALSE;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800829}
830
Michael Wright1c9977b2016-07-12 13:30:10 -0700831static jintArray nativeGetDisplayColorModes(JNIEnv* env, jclass, jobject tokenObj) {
832 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
833 if (token == NULL) return NULL;
Peiyong Linb88549e2018-03-28 12:03:45 -0700834 Vector<ui::ColorMode> colorModes;
Michael Wright1c9977b2016-07-12 13:30:10 -0700835 if (SurfaceComposerClient::getDisplayColorModes(token, &colorModes) != NO_ERROR ||
836 colorModes.isEmpty()) {
837 return NULL;
838 }
839
840 jintArray colorModesArray = env->NewIntArray(colorModes.size());
841 if (colorModesArray == NULL) {
842 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
843 return NULL;
844 }
845 jint* colorModesArrayValues = env->GetIntArrayElements(colorModesArray, 0);
846 for (size_t i = 0; i < colorModes.size(); i++) {
847 colorModesArrayValues[i] = static_cast<jint>(colorModes[i]);
848 }
849 env->ReleaseIntArrayElements(colorModesArray, colorModesArrayValues, 0);
850 return colorModesArray;
851}
852
Daniel Solomon10e3b332019-01-20 21:09:11 -0800853static jobject nativeGetDisplayNativePrimaries(JNIEnv* env, jclass, jobject tokenObj) {
854 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
855 if (token == NULL) return NULL;
856
857 ui::DisplayPrimaries primaries;
858 if (SurfaceComposerClient::getDisplayNativePrimaries(token, primaries) != NO_ERROR) {
859 return NULL;
860 }
861
862 jobject jred = env->NewObject(gCieXyzClassInfo.clazz, gCieXyzClassInfo.ctor);
863 if (jred == NULL) {
864 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
865 return NULL;
866 }
867
868 jobject jgreen = env->NewObject(gCieXyzClassInfo.clazz, gCieXyzClassInfo.ctor);
869 if (jgreen == NULL) {
870 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
871 return NULL;
872 }
873
874 jobject jblue = env->NewObject(gCieXyzClassInfo.clazz, gCieXyzClassInfo.ctor);
875 if (jblue == NULL) {
876 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
877 return NULL;
878 }
879
880 jobject jwhite = env->NewObject(gCieXyzClassInfo.clazz, gCieXyzClassInfo.ctor);
881 if (jwhite == NULL) {
882 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
883 return NULL;
884 }
885
886 jobject jprimaries = env->NewObject(gDisplayPrimariesClassInfo.clazz,
887 gDisplayPrimariesClassInfo.ctor);
888 if (jprimaries == NULL) {
889 jniThrowException(env, "java/lang/OutOfMemoryError", NULL);
890 return NULL;
891 }
892
893 env->SetFloatField(jred, gCieXyzClassInfo.X, primaries.red.X);
894 env->SetFloatField(jred, gCieXyzClassInfo.Y, primaries.red.Y);
895 env->SetFloatField(jred, gCieXyzClassInfo.Z, primaries.red.Z);
896 env->SetFloatField(jgreen, gCieXyzClassInfo.X, primaries.green.X);
897 env->SetFloatField(jgreen, gCieXyzClassInfo.Y, primaries.green.Y);
898 env->SetFloatField(jgreen, gCieXyzClassInfo.Z, primaries.green.Z);
899 env->SetFloatField(jblue, gCieXyzClassInfo.X, primaries.blue.X);
900 env->SetFloatField(jblue, gCieXyzClassInfo.Y, primaries.blue.Y);
901 env->SetFloatField(jblue, gCieXyzClassInfo.Z, primaries.blue.Z);
902 env->SetFloatField(jwhite, gCieXyzClassInfo.X, primaries.white.X);
903 env->SetFloatField(jwhite, gCieXyzClassInfo.Y, primaries.white.Y);
904 env->SetFloatField(jwhite, gCieXyzClassInfo.Z, primaries.white.Z);
905 env->SetObjectField(jprimaries, gDisplayPrimariesClassInfo.red, jred);
906 env->SetObjectField(jprimaries, gDisplayPrimariesClassInfo.green, jgreen);
907 env->SetObjectField(jprimaries, gDisplayPrimariesClassInfo.blue, jblue);
908 env->SetObjectField(jprimaries, gDisplayPrimariesClassInfo.white, jwhite);
909
910 return jprimaries;
911}
912
Michael Wright1c9977b2016-07-12 13:30:10 -0700913static jint nativeGetActiveColorMode(JNIEnv* env, jclass, jobject tokenObj) {
914 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
915 if (token == NULL) return -1;
916 return static_cast<jint>(SurfaceComposerClient::getActiveColorMode(token));
917}
918
Peiyong Lin5f4a5682019-01-17 11:37:07 -0800919static jintArray nativeGetCompositionDataspaces(JNIEnv* env, jclass) {
920 ui::Dataspace defaultDataspace, wcgDataspace;
921 ui::PixelFormat defaultPixelFormat, wcgPixelFormat;
922 if (SurfaceComposerClient::getCompositionPreference(&defaultDataspace,
923 &defaultPixelFormat,
924 &wcgDataspace,
925 &wcgPixelFormat) != NO_ERROR) {
926 return nullptr;
927 }
928 jintArray array = env->NewIntArray(2);
929 if (array == nullptr) {
930 jniThrowException(env, "java/lang/OutOfMemoryError", nullptr);
931 return nullptr;
932 }
933 jint* arrayValues = env->GetIntArrayElements(array, 0);
934 arrayValues[0] = static_cast<jint>(defaultDataspace);
935 arrayValues[1] = static_cast<jint>(wcgDataspace);
936 env->ReleaseIntArrayElements(array, arrayValues, 0);
937 return array;
938}
939
Michael Wright1c9977b2016-07-12 13:30:10 -0700940static jboolean nativeSetActiveColorMode(JNIEnv* env, jclass,
941 jobject tokenObj, jint colorMode) {
942 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
943 if (token == NULL) return JNI_FALSE;
944 status_t err = SurfaceComposerClient::setActiveColorMode(token,
Peiyong Linb88549e2018-03-28 12:03:45 -0700945 static_cast<ui::ColorMode>(colorMode));
Michael Wright1c9977b2016-07-12 13:30:10 -0700946 return err == NO_ERROR ? JNI_TRUE : JNI_FALSE;
947}
948
Prashant Malanic55929a2014-05-25 01:59:21 -0700949static void nativeSetDisplayPowerMode(JNIEnv* env, jclass clazz, jobject tokenObj, jint mode) {
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800950 sp<IBinder> token(ibinderForJavaObject(env, tokenObj));
951 if (token == NULL) return;
952
Tom Cherry8ed74bb2017-07-10 14:31:18 -0700953 android::base::Timer t;
Prashant Malanic55929a2014-05-25 01:59:21 -0700954 SurfaceComposerClient::setDisplayPowerMode(token, mode);
Tom Cherry8ed74bb2017-07-10 14:31:18 -0700955 if (t.duration() > 100ms) ALOGD("Excessive delay in setPowerMode()");
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800956}
957
Peiyong Lin0ddb7d42019-01-16 13:25:09 -0800958static jboolean nativeGetProtectedContentSupport(JNIEnv* env, jclass) {
959 return static_cast<jboolean>(SurfaceComposerClient::getProtectedContentSupport());
960}
961
Svetoslav1376d602014-03-13 11:17:26 -0700962static jboolean nativeClearContentFrameStats(JNIEnv* env, jclass clazz, jlong nativeObject) {
963 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
964 status_t err = ctrl->clearLayerFrameStats();
965
966 if (err < 0 && err != NO_INIT) {
967 doThrowIAE(env);
968 }
969
970 // The other end is not ready, just report we failed.
971 if (err == NO_INIT) {
972 return JNI_FALSE;
973 }
974
975 return JNI_TRUE;
976}
977
978static jboolean nativeGetContentFrameStats(JNIEnv* env, jclass clazz, jlong nativeObject,
979 jobject outStats) {
980 FrameStats stats;
981
982 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
983 status_t err = ctrl->getLayerFrameStats(&stats);
984 if (err < 0 && err != NO_INIT) {
985 doThrowIAE(env);
986 }
987
988 // The other end is not ready, fine just return empty stats.
989 if (err == NO_INIT) {
990 return JNI_FALSE;
991 }
992
993 jlong refreshPeriodNano = static_cast<jlong>(stats.refreshPeriodNano);
994 size_t frameCount = stats.desiredPresentTimesNano.size();
995
996 jlongArray postedTimesNanoDst = env->NewLongArray(frameCount);
997 if (postedTimesNanoDst == NULL) {
998 return JNI_FALSE;
999 }
1000
1001 jlongArray presentedTimesNanoDst = env->NewLongArray(frameCount);
1002 if (presentedTimesNanoDst == NULL) {
1003 return JNI_FALSE;
1004 }
1005
1006 jlongArray readyTimesNanoDst = env->NewLongArray(frameCount);
1007 if (readyTimesNanoDst == NULL) {
1008 return JNI_FALSE;
1009 }
1010
1011 nsecs_t postedTimesNanoSrc[frameCount];
1012 nsecs_t presentedTimesNanoSrc[frameCount];
1013 nsecs_t readyTimesNanoSrc[frameCount];
1014
1015 for (size_t i = 0; i < frameCount; i++) {
1016 nsecs_t postedTimeNano = stats.desiredPresentTimesNano[i];
1017 if (postedTimeNano == INT64_MAX) {
1018 postedTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
1019 }
1020 postedTimesNanoSrc[i] = postedTimeNano;
1021
1022 nsecs_t presentedTimeNano = stats.actualPresentTimesNano[i];
1023 if (presentedTimeNano == INT64_MAX) {
1024 presentedTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
1025 }
1026 presentedTimesNanoSrc[i] = presentedTimeNano;
1027
1028 nsecs_t readyTimeNano = stats.frameReadyTimesNano[i];
1029 if (readyTimeNano == INT64_MAX) {
1030 readyTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
1031 }
1032 readyTimesNanoSrc[i] = readyTimeNano;
1033 }
1034
1035 env->SetLongArrayRegion(postedTimesNanoDst, 0, frameCount, postedTimesNanoSrc);
1036 env->SetLongArrayRegion(presentedTimesNanoDst, 0, frameCount, presentedTimesNanoSrc);
1037 env->SetLongArrayRegion(readyTimesNanoDst, 0, frameCount, readyTimesNanoSrc);
1038
1039 env->CallVoidMethod(outStats, gWindowContentFrameStatsClassInfo.init, refreshPeriodNano,
1040 postedTimesNanoDst, presentedTimesNanoDst, readyTimesNanoDst);
1041
1042 if (env->ExceptionCheck()) {
1043 return JNI_FALSE;
1044 }
1045
1046 return JNI_TRUE;
1047}
1048
1049static jboolean nativeClearAnimationFrameStats(JNIEnv* env, jclass clazz) {
1050 status_t err = SurfaceComposerClient::clearAnimationFrameStats();
1051
1052 if (err < 0 && err != NO_INIT) {
1053 doThrowIAE(env);
1054 }
1055
1056 // The other end is not ready, just report we failed.
1057 if (err == NO_INIT) {
1058 return JNI_FALSE;
1059 }
1060
1061 return JNI_TRUE;
1062}
1063
1064static jboolean nativeGetAnimationFrameStats(JNIEnv* env, jclass clazz, jobject outStats) {
1065 FrameStats stats;
1066
1067 status_t err = SurfaceComposerClient::getAnimationFrameStats(&stats);
1068 if (err < 0 && err != NO_INIT) {
1069 doThrowIAE(env);
1070 }
1071
1072 // The other end is not ready, fine just return empty stats.
1073 if (err == NO_INIT) {
1074 return JNI_FALSE;
1075 }
1076
1077 jlong refreshPeriodNano = static_cast<jlong>(stats.refreshPeriodNano);
1078 size_t frameCount = stats.desiredPresentTimesNano.size();
1079
1080 jlongArray presentedTimesNanoDst = env->NewLongArray(frameCount);
1081 if (presentedTimesNanoDst == NULL) {
1082 return JNI_FALSE;
1083 }
1084
1085 nsecs_t presentedTimesNanoSrc[frameCount];
1086
1087 for (size_t i = 0; i < frameCount; i++) {
Allen Hairac5eda32014-04-24 11:50:37 -07001088 nsecs_t presentedTimeNano = stats.actualPresentTimesNano[i];
Svetoslav1376d602014-03-13 11:17:26 -07001089 if (presentedTimeNano == INT64_MAX) {
1090 presentedTimeNano = gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO;
1091 }
1092 presentedTimesNanoSrc[i] = presentedTimeNano;
1093 }
1094
1095 env->SetLongArrayRegion(presentedTimesNanoDst, 0, frameCount, presentedTimesNanoSrc);
1096
1097 env->CallVoidMethod(outStats, gWindowAnimationFrameStatsClassInfo.init, refreshPeriodNano,
1098 presentedTimesNanoDst);
1099
1100 if (env->ExceptionCheck()) {
1101 return JNI_FALSE;
1102 }
1103
1104 return JNI_TRUE;
1105}
1106
Robert Carre13b58e2017-08-31 14:50:44 -07001107static void nativeDeferTransactionUntil(JNIEnv* env, jclass clazz, jlong transactionObj,
1108 jlong nativeObject,
Rob Carr64e516f2015-10-29 00:20:45 +00001109 jobject handleObject, jlong frameNumber) {
1110 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
1111 sp<IBinder> handle = ibinderForJavaObject(env, handleObject);
1112
Robert Carre13b58e2017-08-31 14:50:44 -07001113 {
1114 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
Marissa Wallcb32fdd2018-07-24 09:53:30 -07001115 transaction->deferTransactionUntil_legacy(ctrl, handle, frameNumber);
Robert Carre13b58e2017-08-31 14:50:44 -07001116 }
Rob Carr64e516f2015-10-29 00:20:45 +00001117}
1118
Robert Carre13b58e2017-08-31 14:50:44 -07001119static void nativeDeferTransactionUntilSurface(JNIEnv* env, jclass clazz, jlong transactionObj,
1120 jlong nativeObject,
Robert Carrd5c7dd62017-03-08 10:39:30 -08001121 jlong surfaceObject, jlong frameNumber) {
Robert Carre13b58e2017-08-31 14:50:44 -07001122 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
1123
Robert Carrd5c7dd62017-03-08 10:39:30 -08001124 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
1125 sp<Surface> barrier = reinterpret_cast<Surface *>(surfaceObject);
1126
Marissa Wallcb32fdd2018-07-24 09:53:30 -07001127 transaction->deferTransactionUntil_legacy(ctrl, barrier, frameNumber);
Robert Carrd5c7dd62017-03-08 10:39:30 -08001128}
1129
Robert Carre13b58e2017-08-31 14:50:44 -07001130static void nativeReparentChildren(JNIEnv* env, jclass clazz, jlong transactionObj,
1131 jlong nativeObject,
Robert Carrd5c7dd62017-03-08 10:39:30 -08001132 jobject newParentObject) {
Robert Carre13b58e2017-08-31 14:50:44 -07001133
Robert Carrd5c7dd62017-03-08 10:39:30 -08001134 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
1135 sp<IBinder> handle = ibinderForJavaObject(env, newParentObject);
1136
Robert Carre13b58e2017-08-31 14:50:44 -07001137 {
1138 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
1139 transaction->reparentChildren(ctrl, handle);
1140 }
Robert Carrd5c7dd62017-03-08 10:39:30 -08001141}
1142
Robert Carre13b58e2017-08-31 14:50:44 -07001143static void nativeReparent(JNIEnv* env, jclass clazz, jlong transactionObj,
1144 jlong nativeObject,
Robert Carr10584fa2019-01-14 15:55:19 -08001145 jlong newParentObject) {
chaviw63542382017-08-17 17:39:29 -07001146 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carr10584fa2019-01-14 15:55:19 -08001147 auto newParent = reinterpret_cast<SurfaceControl *>(newParentObject);
Robert Carre13b58e2017-08-31 14:50:44 -07001148
1149 {
1150 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
Robert Carr10584fa2019-01-14 15:55:19 -08001151 transaction->reparent(ctrl, newParent != NULL ? newParent->getHandle() : NULL);
Robert Carre13b58e2017-08-31 14:50:44 -07001152 }
chaviw63542382017-08-17 17:39:29 -07001153}
1154
Robert Carre13b58e2017-08-31 14:50:44 -07001155static void nativeSeverChildren(JNIEnv* env, jclass clazz, jlong transactionObj,
1156 jlong nativeObject) {
1157 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
1158
Robert Carrd5c7dd62017-03-08 10:39:30 -08001159 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Robert Carre13b58e2017-08-31 14:50:44 -07001160 transaction->detachChildren(ctrl);
Robert Carrd5c7dd62017-03-08 10:39:30 -08001161}
1162
Robert Carre13b58e2017-08-31 14:50:44 -07001163static void nativeSetOverrideScalingMode(JNIEnv* env, jclass clazz, jlong transactionObj,
1164 jlong nativeObject,
Robert Carr1ca6a332016-04-11 18:00:43 -07001165 jint scalingMode) {
Robert Carre13b58e2017-08-31 14:50:44 -07001166 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
Robert Carr1ca6a332016-04-11 18:00:43 -07001167
Robert Carre13b58e2017-08-31 14:50:44 -07001168 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
1169 transaction->setOverrideScalingMode(ctrl, scalingMode);
Robert Carr1ca6a332016-04-11 18:00:43 -07001170}
1171
Rob Carr64e516f2015-10-29 00:20:45 +00001172static jobject nativeGetHandle(JNIEnv* env, jclass clazz, jlong nativeObject) {
1173 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject);
Rob Carr64e516f2015-10-29 00:20:45 +00001174 return javaObjectForIBinder(env, ctrl->getHandle());
1175}
1176
Hangyu Kuang54ac2192016-04-25 13:22:02 -07001177static jobject nativeGetHdrCapabilities(JNIEnv* env, jclass clazz, jobject tokenObject) {
1178 sp<IBinder> token(ibinderForJavaObject(env, tokenObject));
1179 if (token == NULL) return NULL;
1180
1181 HdrCapabilities capabilities;
1182 SurfaceComposerClient::getHdrCapabilities(token, &capabilities);
1183
1184 const auto& types = capabilities.getSupportedHdrTypes();
Peiyong Lin3a0c6e12018-04-16 11:05:29 -07001185 std::vector<int32_t> intTypes;
1186 for (auto type : types) {
1187 intTypes.push_back(static_cast<int32_t>(type));
1188 }
Hangyu Kuang54ac2192016-04-25 13:22:02 -07001189 auto typesArray = env->NewIntArray(types.size());
Peiyong Lin3a0c6e12018-04-16 11:05:29 -07001190 env->SetIntArrayRegion(typesArray, 0, intTypes.size(), intTypes.data());
Hangyu Kuang54ac2192016-04-25 13:22:02 -07001191
Michael Wright9ff94c02016-03-30 18:05:40 -07001192 return env->NewObject(gHdrCapabilitiesClassInfo.clazz, gHdrCapabilitiesClassInfo.ctor,
Hangyu Kuang54ac2192016-04-25 13:22:02 -07001193 typesArray, capabilities.getDesiredMaxLuminance(),
1194 capabilities.getDesiredMaxAverageLuminance(), capabilities.getDesiredMinLuminance());
1195}
1196
Jorim Jaggi06975df2017-12-01 14:52:13 +01001197static jlong nativeReadFromParcel(JNIEnv* env, jclass clazz, jobject parcelObj) {
1198 Parcel* parcel = parcelForJavaObject(env, parcelObj);
1199 if (parcel == NULL) {
1200 doThrowNPE(env);
1201 return 0;
1202 }
1203 sp<SurfaceControl> surface = SurfaceControl::readFromParcel(parcel);
1204 if (surface == nullptr) {
1205 return 0;
1206 }
1207 surface->incStrong((void *)nativeCreate);
1208 return reinterpret_cast<jlong>(surface.get());
1209}
1210
chaviwbeb7a0c2018-12-05 13:49:54 -08001211static jlong nativeCopyFromSurfaceControl(JNIEnv* env, jclass clazz, jlong surfaceControlNativeObj) {
1212 sp<SurfaceControl> surface(reinterpret_cast<SurfaceControl *>(surfaceControlNativeObj));
1213 if (surface == nullptr) {
1214 return 0;
1215 }
Robert Carr5fea55b2018-12-10 13:05:52 -08001216
1217 sp<SurfaceControl> newSurface = new SurfaceControl(surface);
1218 newSurface->incStrong((void *)nativeCreate);
1219 return reinterpret_cast<jlong>(newSurface.get());
chaviwbeb7a0c2018-12-05 13:49:54 -08001220}
1221
Jorim Jaggi06975df2017-12-01 14:52:13 +01001222static void nativeWriteToParcel(JNIEnv* env, jclass clazz,
1223 jlong nativeObject, jobject parcelObj) {
1224 Parcel* parcel = parcelForJavaObject(env, parcelObj);
1225 if (parcel == NULL) {
1226 doThrowNPE(env);
1227 return;
1228 }
1229 SurfaceControl* const self = reinterpret_cast<SurfaceControl *>(nativeObject);
chaviwbeb7a0c2018-12-05 13:49:54 -08001230 if (self != nullptr) {
1231 self->writeToParcel(parcel);
1232 }
Jorim Jaggi06975df2017-12-01 14:52:13 +01001233}
1234
Dan Gittik832b4972019-02-13 18:17:47 +00001235static jboolean nativeGetDisplayBrightnessSupport(JNIEnv* env, jclass clazz,
1236 jobject displayTokenObject) {
1237 sp<IBinder> displayToken(ibinderForJavaObject(env, displayTokenObject));
1238 if (displayToken == nullptr) {
1239 return JNI_FALSE;
1240 }
1241 return static_cast<jboolean>(SurfaceComposerClient::getDisplayBrightnessSupport(displayToken));
1242}
1243
1244static jboolean nativeSetDisplayBrightness(JNIEnv* env, jclass clazz, jobject displayTokenObject,
1245 jfloat brightness) {
1246 sp<IBinder> displayToken(ibinderForJavaObject(env, displayTokenObject));
1247 if (displayToken == nullptr) {
1248 return JNI_FALSE;
1249 }
1250 status_t error = SurfaceComposerClient::setDisplayBrightness(displayToken, brightness);
1251 return error == OK ? JNI_TRUE : JNI_FALSE;
1252}
1253
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001254// ----------------------------------------------------------------------------
1255
Daniel Micay76f6a862015-09-19 17:31:01 -04001256static const JNINativeMethod sSurfaceControlMethods[] = {
Evan Rosky485df202018-12-06 14:11:12 -08001257 {"nativeCreate", "(Landroid/view/SurfaceSession;Ljava/lang/String;IIIIJLandroid/os/Parcel;)J",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001258 (void*)nativeCreate },
Jorim Jaggi06975df2017-12-01 14:52:13 +01001259 {"nativeReadFromParcel", "(Landroid/os/Parcel;)J",
1260 (void*)nativeReadFromParcel },
chaviwbeb7a0c2018-12-05 13:49:54 -08001261 {"nativeCopyFromSurfaceControl", "(J)J" ,
1262 (void*)nativeCopyFromSurfaceControl },
Jorim Jaggi06975df2017-12-01 14:52:13 +01001263 {"nativeWriteToParcel", "(JLandroid/os/Parcel;)V",
1264 (void*)nativeWriteToParcel },
Ashok Bhat36bef0b2014-01-20 20:08:01 +00001265 {"nativeRelease", "(J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001266 (void*)nativeRelease },
Ashok Bhat36bef0b2014-01-20 20:08:01 +00001267 {"nativeDestroy", "(J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001268 (void*)nativeDestroy },
Chong Zhang47e36a32016-02-29 16:44:33 -08001269 {"nativeDisconnect", "(J)V",
1270 (void*)nativeDisconnect },
Robert Carre13b58e2017-08-31 14:50:44 -07001271 {"nativeCreateTransaction", "()J",
1272 (void*)nativeCreateTransaction },
1273 {"nativeApplyTransaction", "(JZ)V",
1274 (void*)nativeApplyTransaction },
1275 {"nativeGetNativeTransactionFinalizer", "()J",
1276 (void*)nativeGetNativeTransactionFinalizer },
Robert Carrb1579c82017-09-05 14:54:47 -07001277 {"nativeMergeTransaction", "(JJ)V",
1278 (void*)nativeMergeTransaction },
Robert Carre13b58e2017-08-31 14:50:44 -07001279 {"nativeSetAnimationTransaction", "(J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001280 (void*)nativeSetAnimationTransaction },
Jorim Jaggiaa763cd2018-03-22 23:20:36 +01001281 {"nativeSetEarlyWakeup", "(J)V",
1282 (void*)nativeSetEarlyWakeup },
Robert Carre13b58e2017-08-31 14:50:44 -07001283 {"nativeSetLayer", "(JJI)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001284 (void*)nativeSetLayer },
Robert Carre13b58e2017-08-31 14:50:44 -07001285 {"nativeSetRelativeLayer", "(JJLandroid/os/IBinder;I)V",
Robert Carraf422a82017-04-10 18:34:33 -07001286 (void*)nativeSetRelativeLayer },
Robert Carre13b58e2017-08-31 14:50:44 -07001287 {"nativeSetPosition", "(JJFF)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001288 (void*)nativeSetPosition },
Robert Carre13b58e2017-08-31 14:50:44 -07001289 {"nativeSetGeometryAppliesWithResize", "(JJ)V",
Robert Carr6da3cc02016-06-16 15:17:07 -07001290 (void*)nativeSetGeometryAppliesWithResize },
Robert Carre13b58e2017-08-31 14:50:44 -07001291 {"nativeSetSize", "(JJII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001292 (void*)nativeSetSize },
Robert Carre13b58e2017-08-31 14:50:44 -07001293 {"nativeSetTransparentRegionHint", "(JJLandroid/graphics/Region;)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001294 (void*)nativeSetTransparentRegionHint },
Robert Carre13b58e2017-08-31 14:50:44 -07001295 {"nativeSetAlpha", "(JJF)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001296 (void*)nativeSetAlpha },
Robert Carre13b58e2017-08-31 14:50:44 -07001297 {"nativeSetColor", "(JJ[F)V",
chaviw0dd03f52017-08-25 12:15:26 -07001298 (void*)nativeSetColor },
Robert Carre13b58e2017-08-31 14:50:44 -07001299 {"nativeSetMatrix", "(JJFFFF)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001300 (void*)nativeSetMatrix },
Peiyong Lin52bb6b42018-10-01 11:40:50 -07001301 {"nativeSetColorTransform", "(JJ[F[F)V",
1302 (void*)nativeSetColorTransform },
Peiyong Linf4f0f642019-03-01 14:36:05 -08001303 {"nativeSetColorSpaceAgnostic", "(JJZ)V",
1304 (void*)nativeSetColorSpaceAgnostic },
Robert Carre13b58e2017-08-31 14:50:44 -07001305 {"nativeSetFlags", "(JJII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001306 (void*)nativeSetFlags },
Robert Carre13b58e2017-08-31 14:50:44 -07001307 {"nativeSetWindowCrop", "(JJIIII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001308 (void*)nativeSetWindowCrop },
Lucas Dupinff9d6ab2018-10-16 18:05:50 -07001309 {"nativeSetCornerRadius", "(JJF)V",
1310 (void*)nativeSetCornerRadius },
Robert Carre13b58e2017-08-31 14:50:44 -07001311 {"nativeSetLayerStack", "(JJI)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001312 (void*)nativeSetLayerStack },
Dominik Laskowski3316a0a2019-01-25 02:56:41 -08001313 {"nativeGetPhysicalDisplayIds", "()[J",
1314 (void*)nativeGetPhysicalDisplayIds },
1315 {"nativeGetPhysicalDisplayToken", "(J)Landroid/os/IBinder;",
1316 (void*)nativeGetPhysicalDisplayToken },
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001317 {"nativeCreateDisplay", "(Ljava/lang/String;Z)Landroid/os/IBinder;",
1318 (void*)nativeCreateDisplay },
Jesse Hall6a6bc212013-08-08 12:15:03 -07001319 {"nativeDestroyDisplay", "(Landroid/os/IBinder;)V",
1320 (void*)nativeDestroyDisplay },
Robert Carre13b58e2017-08-31 14:50:44 -07001321 {"nativeSetDisplaySurface", "(JLandroid/os/IBinder;J)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001322 (void*)nativeSetDisplaySurface },
Robert Carre13b58e2017-08-31 14:50:44 -07001323 {"nativeSetDisplayLayerStack", "(JLandroid/os/IBinder;I)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001324 (void*)nativeSetDisplayLayerStack },
Robert Carre13b58e2017-08-31 14:50:44 -07001325 {"nativeSetDisplayProjection", "(JLandroid/os/IBinder;IIIIIIIII)V",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001326 (void*)nativeSetDisplayProjection },
Robert Carre13b58e2017-08-31 14:50:44 -07001327 {"nativeSetDisplaySize", "(JLandroid/os/IBinder;II)V",
Michael Wright01e840f2014-06-26 16:03:25 -07001328 (void*)nativeSetDisplaySize },
Dan Stoza00101052014-05-02 15:23:40 -07001329 {"nativeGetDisplayConfigs", "(Landroid/os/IBinder;)[Landroid/view/SurfaceControl$PhysicalDisplayInfo;",
1330 (void*)nativeGetDisplayConfigs },
1331 {"nativeGetActiveConfig", "(Landroid/os/IBinder;)I",
1332 (void*)nativeGetActiveConfig },
1333 {"nativeSetActiveConfig", "(Landroid/os/IBinder;I)Z",
1334 (void*)nativeSetActiveConfig },
Ady Abraham6070ce12019-01-24 18:48:58 -08001335 {"nativeSetAllowedDisplayConfigs", "(Landroid/os/IBinder;[I)Z",
1336 (void*)nativeSetAllowedDisplayConfigs },
Ady Abraham42f9a2fb2019-02-26 14:13:39 -08001337 {"nativeGetAllowedDisplayConfigs", "(Landroid/os/IBinder;)[I",
1338 (void*)nativeGetAllowedDisplayConfigs },
Michael Wright1c9977b2016-07-12 13:30:10 -07001339 {"nativeGetDisplayColorModes", "(Landroid/os/IBinder;)[I",
1340 (void*)nativeGetDisplayColorModes},
Daniel Solomon10e3b332019-01-20 21:09:11 -08001341 {"nativeGetDisplayNativePrimaries", "(Landroid/os/IBinder;)Landroid/view/SurfaceControl$DisplayPrimaries;",
1342 (void*)nativeGetDisplayNativePrimaries },
Michael Wright1c9977b2016-07-12 13:30:10 -07001343 {"nativeGetActiveColorMode", "(Landroid/os/IBinder;)I",
1344 (void*)nativeGetActiveColorMode},
1345 {"nativeSetActiveColorMode", "(Landroid/os/IBinder;I)Z",
1346 (void*)nativeSetActiveColorMode},
Peiyong Lin5f4a5682019-01-17 11:37:07 -08001347 {"nativeGetCompositionDataspaces", "()[I",
1348 (void*)nativeGetCompositionDataspaces},
Michael Wright9ff94c02016-03-30 18:05:40 -07001349 {"nativeGetHdrCapabilities", "(Landroid/os/IBinder;)Landroid/view/Display$HdrCapabilities;",
1350 (void*)nativeGetHdrCapabilities },
Svetoslav1376d602014-03-13 11:17:26 -07001351 {"nativeClearContentFrameStats", "(J)Z",
1352 (void*)nativeClearContentFrameStats },
1353 {"nativeGetContentFrameStats", "(JLandroid/view/WindowContentFrameStats;)Z",
1354 (void*)nativeGetContentFrameStats },
1355 {"nativeClearAnimationFrameStats", "()Z",
1356 (void*)nativeClearAnimationFrameStats },
1357 {"nativeGetAnimationFrameStats", "(Landroid/view/WindowAnimationFrameStats;)Z",
1358 (void*)nativeGetAnimationFrameStats },
Prashant Malanic55929a2014-05-25 01:59:21 -07001359 {"nativeSetDisplayPowerMode", "(Landroid/os/IBinder;I)V",
1360 (void*)nativeSetDisplayPowerMode },
Peiyong Lin0ddb7d42019-01-16 13:25:09 -08001361 {"nativeGetProtectedContentSupport", "()Z",
1362 (void*)nativeGetProtectedContentSupport },
Robert Carre13b58e2017-08-31 14:50:44 -07001363 {"nativeDeferTransactionUntil", "(JJLandroid/os/IBinder;J)V",
Rob Carr64e516f2015-10-29 00:20:45 +00001364 (void*)nativeDeferTransactionUntil },
Robert Carre13b58e2017-08-31 14:50:44 -07001365 {"nativeDeferTransactionUntilSurface", "(JJJJ)V",
Robert Carrd5c7dd62017-03-08 10:39:30 -08001366 (void*)nativeDeferTransactionUntilSurface },
Robert Carre13b58e2017-08-31 14:50:44 -07001367 {"nativeReparentChildren", "(JJLandroid/os/IBinder;)V",
Robert Carrd5c7dd62017-03-08 10:39:30 -08001368 (void*)nativeReparentChildren } ,
Robert Carr10584fa2019-01-14 15:55:19 -08001369 {"nativeReparent", "(JJJ)V",
chaviw76431402017-09-18 16:50:05 -07001370 (void*)nativeReparent },
Robert Carre13b58e2017-08-31 14:50:44 -07001371 {"nativeSeverChildren", "(JJ)V",
Robert Carrd5c7dd62017-03-08 10:39:30 -08001372 (void*)nativeSeverChildren } ,
Robert Carre13b58e2017-08-31 14:50:44 -07001373 {"nativeSetOverrideScalingMode", "(JJI)V",
Robert Carr1ca6a332016-04-11 18:00:43 -07001374 (void*)nativeSetOverrideScalingMode },
Rob Carr64e516f2015-10-29 00:20:45 +00001375 {"nativeGetHandle", "(J)Landroid/os/IBinder;",
Robert Carr6da3cc02016-06-16 15:17:07 -07001376 (void*)nativeGetHandle },
Peiyong Line3e5efd2019-03-21 20:59:47 +00001377 {"nativeScreenshot",
1378 "(Landroid/os/IBinder;Landroid/graphics/Rect;IIZIZ)"
1379 "Landroid/view/SurfaceControl$ScreenshotGraphicBuffer;",
chaviw08520a02018-09-10 16:44:56 -07001380 (void*)nativeScreenshot },
Peiyong Line3e5efd2019-03-21 20:59:47 +00001381 {"nativeCaptureLayers",
Peiyong Lin21e499a2019-04-03 16:37:46 -07001382 "(Landroid/os/IBinder;Landroid/os/IBinder;Landroid/graphics/Rect;"
1383 "F[Landroid/os/IBinder;)"
Peiyong Line3e5efd2019-03-21 20:59:47 +00001384 "Landroid/view/SurfaceControl$ScreenshotGraphicBuffer;",
Chavi Weingartend7ec64c2017-11-30 01:52:01 +00001385 (void*)nativeCaptureLayers },
Robert Carr788f5742018-07-30 17:46:45 -07001386 {"nativeSetInputWindowInfo", "(JJLandroid/view/InputWindowHandle;)V",
chaviw59f532e2018-12-26 15:34:59 -08001387 (void*)nativeSetInputWindowInfo },
1388 {"nativeTransferTouchFocus", "(JLandroid/os/IBinder;Landroid/os/IBinder;)V",
1389 (void*)nativeTransferTouchFocus },
Evan Roskyb51e2462019-04-03 19:27:18 -07001390 {"nativeSetMetadata", "(JJILandroid/os/Parcel;)V",
Evan Rosky485df202018-12-06 14:11:12 -08001391 (void*)nativeSetMetadata },
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001392 {"nativeGetDisplayedContentSamplingAttributes",
1393 "(Landroid/os/IBinder;)Landroid/hardware/display/DisplayedContentSamplingAttributes;",
1394 (void*)nativeGetDisplayedContentSamplingAttributes },
1395 {"nativeSetDisplayedContentSamplingEnabled", "(Landroid/os/IBinder;ZII)Z",
1396 (void*)nativeSetDisplayedContentSamplingEnabled },
1397 {"nativeGetDisplayedContentSample",
1398 "(Landroid/os/IBinder;JJ)Landroid/hardware/display/DisplayedContentSample;",
1399 (void*)nativeGetDisplayedContentSample },
Robert Carr76907ee2019-01-11 13:38:19 -08001400 {"nativeSetGeometry", "(JJLandroid/graphics/Rect;Landroid/graphics/Rect;J)V",
chaviw319cd0782019-02-14 11:00:23 -08001401 (void*)nativeSetGeometry },
1402 {"nativeSyncInputWindows", "(J)V",
Dan Gittik832b4972019-02-13 18:17:47 +00001403 (void*)nativeSyncInputWindows },
1404 {"nativeGetDisplayBrightnessSupport", "(Landroid/os/IBinder;)Z",
1405 (void*)nativeGetDisplayBrightnessSupport },
1406 {"nativeSetDisplayBrightness", "(Landroid/os/IBinder;F)Z",
1407 (void*)nativeSetDisplayBrightness },
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001408};
1409
1410int register_android_view_SurfaceControl(JNIEnv* env)
1411{
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001412 int err = RegisterMethodsOrDie(env, "android/view/SurfaceControl",
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001413 sSurfaceControlMethods, NELEM(sSurfaceControlMethods));
1414
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001415 jclass clazz = FindClassOrDie(env, "android/view/SurfaceControl$PhysicalDisplayInfo");
1416 gPhysicalDisplayInfoClassInfo.clazz = MakeGlobalRefOrDie(env, clazz);
1417 gPhysicalDisplayInfoClassInfo.ctor = GetMethodIDOrDie(env,
1418 gPhysicalDisplayInfoClassInfo.clazz, "<init>", "()V");
1419 gPhysicalDisplayInfoClassInfo.width = GetFieldIDOrDie(env, clazz, "width", "I");
1420 gPhysicalDisplayInfoClassInfo.height = GetFieldIDOrDie(env, clazz, "height", "I");
1421 gPhysicalDisplayInfoClassInfo.refreshRate = GetFieldIDOrDie(env, clazz, "refreshRate", "F");
1422 gPhysicalDisplayInfoClassInfo.density = GetFieldIDOrDie(env, clazz, "density", "F");
1423 gPhysicalDisplayInfoClassInfo.xDpi = GetFieldIDOrDie(env, clazz, "xDpi", "F");
1424 gPhysicalDisplayInfoClassInfo.yDpi = GetFieldIDOrDie(env, clazz, "yDpi", "F");
1425 gPhysicalDisplayInfoClassInfo.secure = GetFieldIDOrDie(env, clazz, "secure", "Z");
1426 gPhysicalDisplayInfoClassInfo.appVsyncOffsetNanos = GetFieldIDOrDie(env,
1427 clazz, "appVsyncOffsetNanos", "J");
1428 gPhysicalDisplayInfoClassInfo.presentationDeadlineNanos = GetFieldIDOrDie(env,
1429 clazz, "presentationDeadlineNanos", "J");
Svetoslav1376d602014-03-13 11:17:26 -07001430
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001431 jclass rectClazz = FindClassOrDie(env, "android/graphics/Rect");
1432 gRectClassInfo.bottom = GetFieldIDOrDie(env, rectClazz, "bottom", "I");
1433 gRectClassInfo.left = GetFieldIDOrDie(env, rectClazz, "left", "I");
1434 gRectClassInfo.right = GetFieldIDOrDie(env, rectClazz, "right", "I");
1435 gRectClassInfo.top = GetFieldIDOrDie(env, rectClazz, "top", "I");
Dan Stoza9890e3412014-05-22 16:12:54 -07001436
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001437 jclass frameStatsClazz = FindClassOrDie(env, "android/view/FrameStats");
1438 jfieldID undefined_time_nano_field = GetStaticFieldIDOrDie(env,
1439 frameStatsClazz, "UNDEFINED_TIME_NANO", "J");
Svetoslav1376d602014-03-13 11:17:26 -07001440 nsecs_t undefined_time_nano = env->GetStaticLongField(frameStatsClazz, undefined_time_nano_field);
1441
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001442 jclass contFrameStatsClazz = FindClassOrDie(env, "android/view/WindowContentFrameStats");
1443 gWindowContentFrameStatsClassInfo.init = GetMethodIDOrDie(env,
1444 contFrameStatsClazz, "init", "(J[J[J[J)V");
Svetoslav1376d602014-03-13 11:17:26 -07001445 gWindowContentFrameStatsClassInfo.UNDEFINED_TIME_NANO = undefined_time_nano;
1446
Andreas Gampeed6b9df2014-11-20 22:02:20 -08001447 jclass animFrameStatsClazz = FindClassOrDie(env, "android/view/WindowAnimationFrameStats");
1448 gWindowAnimationFrameStatsClassInfo.init = GetMethodIDOrDie(env,
1449 animFrameStatsClazz, "init", "(J[J)V");
Svetoslav1376d602014-03-13 11:17:26 -07001450 gWindowAnimationFrameStatsClassInfo.UNDEFINED_TIME_NANO = undefined_time_nano;
1451
Hangyu Kuang54ac2192016-04-25 13:22:02 -07001452 jclass hdrCapabilitiesClazz = FindClassOrDie(env, "android/view/Display$HdrCapabilities");
1453 gHdrCapabilitiesClassInfo.clazz = MakeGlobalRefOrDie(env, hdrCapabilitiesClazz);
1454 gHdrCapabilitiesClassInfo.ctor = GetMethodIDOrDie(env, hdrCapabilitiesClazz, "<init>",
1455 "([IFFF)V");
1456
Robert Carr6486d312017-01-09 19:48:29 -08001457 jclass graphicsBufferClazz = FindClassOrDie(env, "android/graphics/GraphicBuffer");
1458 gGraphicBufferClassInfo.clazz = MakeGlobalRefOrDie(env, graphicsBufferClazz);
1459 gGraphicBufferClassInfo.builder = GetStaticMethodIDOrDie(env, graphicsBufferClazz,
1460 "createFromExisting", "(IIIIJ)Landroid/graphics/GraphicBuffer;");
1461
Peiyong Line3e5efd2019-03-21 20:59:47 +00001462 jclass screenshotGraphicsBufferClazz = FindClassOrDie(env,
1463 "android/view/SurfaceControl$ScreenshotGraphicBuffer");
1464 gScreenshotGraphicBufferClassInfo.clazz =
1465 MakeGlobalRefOrDie(env, screenshotGraphicsBufferClazz);
1466 gScreenshotGraphicBufferClassInfo.builder = GetStaticMethodIDOrDie(env,
1467 screenshotGraphicsBufferClazz,
Robert Carr66b5664f2019-04-02 14:18:56 -07001468 "createFromNative", "(IIIIJIZ)Landroid/view/SurfaceControl$ScreenshotGraphicBuffer;");
Peiyong Line3e5efd2019-03-21 20:59:47 +00001469
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001470 jclass displayedContentSampleClazz = FindClassOrDie(env,
1471 "android/hardware/display/DisplayedContentSample");
1472 gDisplayedContentSampleClassInfo.clazz = MakeGlobalRefOrDie(env, displayedContentSampleClazz);
1473 gDisplayedContentSampleClassInfo.ctor = GetMethodIDOrDie(env,
1474 displayedContentSampleClazz, "<init>", "(J[J[J[J[J)V");
1475
1476 jclass displayedContentSamplingAttributesClazz = FindClassOrDie(env,
1477 "android/hardware/display/DisplayedContentSamplingAttributes");
1478 gDisplayedContentSamplingAttributesClassInfo.clazz = MakeGlobalRefOrDie(env,
1479 displayedContentSamplingAttributesClazz);
1480 gDisplayedContentSamplingAttributesClassInfo.ctor = GetMethodIDOrDie(env,
1481 displayedContentSamplingAttributesClazz, "<init>", "(III)V");
Daniel Solomon10e3b332019-01-20 21:09:11 -08001482
1483 jclass cieXyzClazz = FindClassOrDie(env, "android/view/SurfaceControl$CieXyz");
1484 gCieXyzClassInfo.clazz = MakeGlobalRefOrDie(env, cieXyzClazz);
1485 gCieXyzClassInfo.ctor = GetMethodIDOrDie(env, gCieXyzClassInfo.clazz, "<init>", "()V");
1486 gCieXyzClassInfo.X = GetFieldIDOrDie(env, cieXyzClazz, "X", "F");
1487 gCieXyzClassInfo.Y = GetFieldIDOrDie(env, cieXyzClazz, "Y", "F");
1488 gCieXyzClassInfo.Z = GetFieldIDOrDie(env, cieXyzClazz, "Z", "F");
1489
1490 jclass displayPrimariesClazz = FindClassOrDie(env,
1491 "android/view/SurfaceControl$DisplayPrimaries");
1492 gDisplayPrimariesClassInfo.clazz = MakeGlobalRefOrDie(env, displayPrimariesClazz);
1493 gDisplayPrimariesClassInfo.ctor = GetMethodIDOrDie(env, gDisplayPrimariesClassInfo.clazz,
1494 "<init>", "()V");
1495 gDisplayPrimariesClassInfo.red = GetFieldIDOrDie(env, displayPrimariesClazz, "red",
1496 "Landroid/view/SurfaceControl$CieXyz;");
1497 gDisplayPrimariesClassInfo.green = GetFieldIDOrDie(env, displayPrimariesClazz, "green",
1498 "Landroid/view/SurfaceControl$CieXyz;");
1499 gDisplayPrimariesClassInfo.blue = GetFieldIDOrDie(env, displayPrimariesClazz, "blue",
1500 "Landroid/view/SurfaceControl$CieXyz;");
1501 gDisplayPrimariesClassInfo.white = GetFieldIDOrDie(env, displayPrimariesClazz, "white",
1502 "Landroid/view/SurfaceControl$CieXyz;");
1503
Mathias Agopian3866f0d2013-02-11 22:08:48 -08001504 return err;
1505}
1506
Dominik Laskowski3316a0a2019-01-25 02:56:41 -08001507} // namespace android