blob: 3d63b013e9f1ec2f79538646e1e23372eadd7ec8 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2**
3** Copyright 2006, The Android Open Source Project
4**
Jack Palevich1badb712009-03-25 15:12:17 -07005** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008**
Jack Palevich1badb712009-03-25 15:12:17 -07009** http://www.apache.org/licenses/LICENSE-2.0
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010**
Jack Palevich1badb712009-03-25 15:12:17 -070011** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080015** limitations under the License.
16*/
17
Elliott Hughes8451b252011-04-07 19:17:57 -070018#include "JNIHelp.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080019#include <android_runtime/AndroidRuntime.h>
Dianne Hackborn289b9b62010-07-09 11:44:11 -070020#include <android_runtime/android_view_Surface.h>
Romain Guye5e0c502011-06-15 15:18:31 -070021#include <android_runtime/android_graphics_SurfaceTexture.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022#include <utils/misc.h>
23
Mathias Agopian8335f1c2012-02-25 18:48:35 -080024
25#include <EGL/egl_display.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026#include <EGL/egl.h>
27#include <GLES/gl.h>
28
Mathias Agopian8335f1c2012-02-25 18:48:35 -080029#include <gui/Surface.h>
Andy McFaddend47f7d82012-12-18 09:48:38 -080030#include <gui/GLConsumer.h>
Mathias Agopian52800612013-02-14 17:11:20 -080031#include <gui/Surface.h>
Romain Guy8ff6b9e2011-11-09 20:10:18 -080032
John Reckf4faeac2015-03-05 13:50:31 -080033#include <GraphicsJNI.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034#include <SkBitmap.h>
35#include <SkPixelRef.h>
36
Mathias Agopianaf01feaf2012-02-24 18:25:41 -080037#include <ui/ANativeObjectBase.h>
38
Dianne Hackborn54a181b2010-06-30 18:35:14 -070039namespace android {
Mathias Agopian8b73ae42010-06-10 17:02:51 -070040
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041static jclass gConfig_class;
42
43static jmethodID gConfig_ctorID;
44
45static jfieldID gDisplay_EGLDisplayFieldID;
46static jfieldID gContext_EGLContextFieldID;
47static jfieldID gSurface_EGLSurfaceFieldID;
48static jfieldID gSurface_NativePixelRefFieldID;
49static jfieldID gConfig_EGLConfigFieldID;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051static inline EGLDisplay getDisplay(JNIEnv* env, jobject o) {
52 if (!o) return EGL_NO_DISPLAY;
Ashok Bhat863f98b2014-01-27 16:58:46 +000053 return (EGLDisplay)env->GetLongField(o, gDisplay_EGLDisplayFieldID);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054}
55static inline EGLSurface getSurface(JNIEnv* env, jobject o) {
56 if (!o) return EGL_NO_SURFACE;
Ashok Bhat863f98b2014-01-27 16:58:46 +000057 return (EGLSurface)env->GetLongField(o, gSurface_EGLSurfaceFieldID);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058}
59static inline EGLContext getContext(JNIEnv* env, jobject o) {
60 if (!o) return EGL_NO_CONTEXT;
Ashok Bhat863f98b2014-01-27 16:58:46 +000061 return (EGLContext)env->GetLongField(o, gContext_EGLContextFieldID);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062}
63static inline EGLConfig getConfig(JNIEnv* env, jobject o) {
64 if (!o) return 0;
Ashok Bhat863f98b2014-01-27 16:58:46 +000065 return (EGLConfig)env->GetLongField(o, gConfig_EGLConfigFieldID);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066}
Ashok Bhat863f98b2014-01-27 16:58:46 +000067
68static inline jboolean EglBoolToJBool(EGLBoolean eglBool) {
69 return eglBool == EGL_TRUE ? JNI_TRUE : JNI_FALSE;
70}
71
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080072static void nativeClassInit(JNIEnv *_env, jclass eglImplClass)
73{
Elliott Hughesdd66bcb2011-04-12 11:28:59 -070074 jclass config_class = _env->FindClass("com/google/android/gles_jni/EGLConfigImpl");
75 gConfig_class = (jclass) _env->NewGlobalRef(config_class);
Ashok Bhat863f98b2014-01-27 16:58:46 +000076 gConfig_ctorID = _env->GetMethodID(gConfig_class, "<init>", "(J)V");
77 gConfig_EGLConfigFieldID = _env->GetFieldID(gConfig_class, "mEGLConfig", "J");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080078
Elliott Hughesdd66bcb2011-04-12 11:28:59 -070079 jclass display_class = _env->FindClass("com/google/android/gles_jni/EGLDisplayImpl");
Ashok Bhat863f98b2014-01-27 16:58:46 +000080 gDisplay_EGLDisplayFieldID = _env->GetFieldID(display_class, "mEGLDisplay", "J");
Jack Palevich1badb712009-03-25 15:12:17 -070081
Elliott Hughesdd66bcb2011-04-12 11:28:59 -070082 jclass context_class = _env->FindClass("com/google/android/gles_jni/EGLContextImpl");
Ashok Bhat863f98b2014-01-27 16:58:46 +000083 gContext_EGLContextFieldID = _env->GetFieldID(context_class, "mEGLContext", "J");
Elliott Hughesdd66bcb2011-04-12 11:28:59 -070084
85 jclass surface_class = _env->FindClass("com/google/android/gles_jni/EGLSurfaceImpl");
Ashok Bhat863f98b2014-01-27 16:58:46 +000086 gSurface_EGLSurfaceFieldID = _env->GetFieldID(surface_class, "mEGLSurface", "J");
87 gSurface_NativePixelRefFieldID = _env->GetFieldID(surface_class, "mNativePixelRef", "J");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088}
89
Jack Palevich1badb712009-03-25 15:12:17 -070090static const jint gNull_attrib_base[] = {EGL_NONE};
91
92static bool validAttribList(JNIEnv *_env, jintArray attrib_list) {
93 if (attrib_list == NULL) {
94 return true;
95 }
96 jsize len = _env->GetArrayLength(attrib_list);
97 if (len < 1) {
98 return false;
99 }
100 jint item = 0;
101 _env->GetIntArrayRegion(attrib_list, len-1, 1, &item);
102 return item == EGL_NONE;
103}
104
105static jint* beginNativeAttribList(JNIEnv *_env, jintArray attrib_list) {
106 if (attrib_list != NULL) {
Michael Chockb50662452013-08-06 15:21:10 -0700107 return _env->GetIntArrayElements(attrib_list, (jboolean *)0);
Jack Palevich1badb712009-03-25 15:12:17 -0700108 } else {
109 return(jint*) gNull_attrib_base;
110 }
111}
112
113static void endNativeAttributeList(JNIEnv *_env, jintArray attrib_list, jint* attrib_base) {
114 if (attrib_list != NULL) {
Mathieu Chartier6a5e6df2014-10-06 12:42:00 -0700115 _env->ReleaseIntArrayElements(attrib_list, attrib_base, 0);
Jack Palevich1badb712009-03-25 15:12:17 -0700116 }
117}
118
119static jboolean jni_eglInitialize(JNIEnv *_env, jobject _this, jobject display,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800120 jintArray major_minor) {
Jack Palevich1badb712009-03-25 15:12:17 -0700121 if (display == NULL || (major_minor != NULL &&
122 _env->GetArrayLength(major_minor) < 2)) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700123 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700124 return JNI_FALSE;
125 }
126
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127 EGLDisplay dpy = getDisplay(_env, display);
Ashok Bhat863f98b2014-01-27 16:58:46 +0000128 EGLBoolean success = eglInitialize(dpy, NULL, NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800129 if (success && major_minor) {
130 int len = _env->GetArrayLength(major_minor);
131 if (len) {
132 // we're exposing only EGL 1.0
133 jint* base = (jint *)_env->GetPrimitiveArrayCritical(major_minor, (jboolean *)0);
134 if (len >= 1) base[0] = 1;
135 if (len >= 2) base[1] = 0;
Mathieu Chartier6a5e6df2014-10-06 12:42:00 -0700136 _env->ReleasePrimitiveArrayCritical(major_minor, base, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800137 }
138 }
Ashok Bhat863f98b2014-01-27 16:58:46 +0000139 return EglBoolToJBool(success);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800140}
141
Jack Palevich1badb712009-03-25 15:12:17 -0700142static jboolean jni_eglQueryContext(JNIEnv *_env, jobject _this, jobject display,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800143 jobject context, jint attribute, jintArray value) {
Jack Palevich1badb712009-03-25 15:12:17 -0700144 if (display == NULL || context == NULL || value == NULL
145 || _env->GetArrayLength(value) < 1) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700146 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800147 return JNI_FALSE;
148 }
Jack Palevich1badb712009-03-25 15:12:17 -0700149 EGLDisplay dpy = getDisplay(_env, display);
150 EGLContext ctx = getContext(_env, context);
Ashok Bhat863f98b2014-01-27 16:58:46 +0000151 EGLBoolean success = EGL_FALSE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800152 int len = _env->GetArrayLength(value);
153 if (len) {
Michael Chockb50662452013-08-06 15:21:10 -0700154 jint* base = _env->GetIntArrayElements(value, (jboolean *)0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800155 success = eglQueryContext(dpy, ctx, attribute, base);
Mathieu Chartier6a5e6df2014-10-06 12:42:00 -0700156 _env->ReleaseIntArrayElements(value, base, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800157 }
Ashok Bhat863f98b2014-01-27 16:58:46 +0000158 return EglBoolToJBool(success);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159}
Jack Palevich1badb712009-03-25 15:12:17 -0700160
161static jboolean jni_eglQuerySurface(JNIEnv *_env, jobject _this, jobject display,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800162 jobject surface, jint attribute, jintArray value) {
Jack Palevich1badb712009-03-25 15:12:17 -0700163 if (display == NULL || surface == NULL || value == NULL
164 || _env->GetArrayLength(value) < 1) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700165 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800166 return JNI_FALSE;
167 }
Jack Palevich1badb712009-03-25 15:12:17 -0700168 EGLDisplay dpy = getDisplay(_env, display);
169 EGLContext sur = getSurface(_env, surface);
170
Ashok Bhat863f98b2014-01-27 16:58:46 +0000171 EGLBoolean success = EGL_FALSE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800172 int len = _env->GetArrayLength(value);
173 if (len) {
Michael Chockb50662452013-08-06 15:21:10 -0700174 jint* base = _env->GetIntArrayElements(value, (jboolean *)0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800175 success = eglQuerySurface(dpy, sur, attribute, base);
Mathieu Chartier6a5e6df2014-10-06 12:42:00 -0700176 _env->ReleaseIntArrayElements(value, base, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800177 }
Ashok Bhat863f98b2014-01-27 16:58:46 +0000178 return EglBoolToJBool(success);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800179}
180
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800181static jint jni_getInitCount(JNIEnv *_env, jobject _clazz, jobject display) {
182 EGLDisplay dpy = getDisplay(_env, display);
Jesse Hall9847f312012-04-05 10:37:13 -0700183 egl_display_t* eglDisplay = get_display_nowake(dpy);
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800184 return eglDisplay ? eglDisplay->getRefsCount() : 0;
185}
186
187static jboolean jni_eglReleaseThread(JNIEnv *_env, jobject _this) {
Ashok Bhat863f98b2014-01-27 16:58:46 +0000188 return EglBoolToJBool(eglReleaseThread());
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800189}
190
Jack Palevich1badb712009-03-25 15:12:17 -0700191static jboolean jni_eglChooseConfig(JNIEnv *_env, jobject _this, jobject display,
192 jintArray attrib_list, jobjectArray configs, jint config_size, jintArray num_config) {
193 if (display == NULL
194 || !validAttribList(_env, attrib_list)
195 || (configs != NULL && _env->GetArrayLength(configs) < config_size)
196 || (num_config != NULL && _env->GetArrayLength(num_config) < 1)) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700197 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800198 return JNI_FALSE;
199 }
Jack Palevich1badb712009-03-25 15:12:17 -0700200 EGLDisplay dpy = getDisplay(_env, display);
Ashok Bhat863f98b2014-01-27 16:58:46 +0000201 EGLBoolean success = EGL_FALSE;
Jack Palevich1badb712009-03-25 15:12:17 -0700202
203 if (configs == NULL) {
204 config_size = 0;
205 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800206 EGLConfig nativeConfigs[config_size];
Jack Palevich1badb712009-03-25 15:12:17 -0700207
208 int num = 0;
209 jint* attrib_base = beginNativeAttribList(_env, attrib_list);
210 success = eglChooseConfig(dpy, attrib_base, configs ? nativeConfigs : 0, config_size, &num);
211 endNativeAttributeList(_env, attrib_list, attrib_base);
212
213 if (num_config != NULL) {
214 _env->SetIntArrayRegion(num_config, 0, 1, (jint*) &num);
215 }
216
217 if (success && configs!=NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800218 for (int i=0 ; i<num ; i++) {
Ashok Bhat863f98b2014-01-27 16:58:46 +0000219 jobject obj = _env->NewObject(gConfig_class, gConfig_ctorID, reinterpret_cast<jlong>(nativeConfigs[i]));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800220 _env->SetObjectArrayElement(configs, i, obj);
221 }
222 }
Ashok Bhat863f98b2014-01-27 16:58:46 +0000223 return EglBoolToJBool(success);
Jack Palevich1badb712009-03-25 15:12:17 -0700224}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800225
Ashok Bhat863f98b2014-01-27 16:58:46 +0000226static jlong jni_eglCreateContext(JNIEnv *_env, jobject _this, jobject display,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800227 jobject config, jobject share_context, jintArray attrib_list) {
Jack Palevich1badb712009-03-25 15:12:17 -0700228 if (display == NULL || config == NULL || share_context == NULL
229 || !validAttribList(_env, attrib_list)) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700230 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700231 return JNI_FALSE;
232 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800233 EGLDisplay dpy = getDisplay(_env, display);
234 EGLConfig cnf = getConfig(_env, config);
235 EGLContext shr = getContext(_env, share_context);
Jack Palevich1badb712009-03-25 15:12:17 -0700236 jint* base = beginNativeAttribList(_env, attrib_list);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800237 EGLContext ctx = eglCreateContext(dpy, cnf, shr, base);
Jack Palevich1badb712009-03-25 15:12:17 -0700238 endNativeAttributeList(_env, attrib_list, base);
Ashok Bhat863f98b2014-01-27 16:58:46 +0000239 return reinterpret_cast<jlong>(ctx);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800240}
241
Ashok Bhat863f98b2014-01-27 16:58:46 +0000242static jlong jni_eglCreatePbufferSurface(JNIEnv *_env, jobject _this, jobject display,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800243 jobject config, jintArray attrib_list) {
Jack Palevich1badb712009-03-25 15:12:17 -0700244 if (display == NULL || config == NULL
245 || !validAttribList(_env, attrib_list)) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700246 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700247 return JNI_FALSE;
248 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800249 EGLDisplay dpy = getDisplay(_env, display);
250 EGLConfig cnf = getConfig(_env, config);
Jack Palevich1badb712009-03-25 15:12:17 -0700251 jint* base = beginNativeAttribList(_env, attrib_list);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800252 EGLSurface sur = eglCreatePbufferSurface(dpy, cnf, base);
Jack Palevich1badb712009-03-25 15:12:17 -0700253 endNativeAttributeList(_env, attrib_list, base);
Ashok Bhat863f98b2014-01-27 16:58:46 +0000254 return reinterpret_cast<jlong>(sur);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800255}
256
Mike Reed1103b322014-07-08 12:36:44 -0400257static PixelFormat convertPixelFormat(SkColorType format)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800258{
259 switch (format) {
Mike Reed1103b322014-07-08 12:36:44 -0400260 case kN32_SkColorType: return PIXEL_FORMAT_RGBA_8888;
261 case kARGB_4444_SkColorType: return PIXEL_FORMAT_RGBA_4444;
262 case kRGB_565_SkColorType: return PIXEL_FORMAT_RGB_565;
263 default: return PIXEL_FORMAT_NONE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800264 }
265}
266
Jack Palevich1badb712009-03-25 15:12:17 -0700267static void jni_eglCreatePixmapSurface(JNIEnv *_env, jobject _this, jobject out_sur,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800268 jobject display, jobject config, jobject native_pixmap,
Jack Palevich1badb712009-03-25 15:12:17 -0700269 jintArray attrib_list)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800270{
Jack Palevich1badb712009-03-25 15:12:17 -0700271 if (display == NULL || config == NULL || native_pixmap == NULL
272 || !validAttribList(_env, attrib_list)) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700273 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700274 return;
275 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800276 EGLDisplay dpy = getDisplay(_env, display);
277 EGLConfig cnf = getConfig(_env, config);
278 jint* base = 0;
279
John Recked207b92015-04-10 13:52:57 -0700280 SkBitmap nativeBitmap;
281 GraphicsJNI::getSkBitmap(_env, native_pixmap, &nativeBitmap);
282 SkPixelRef* ref = nativeBitmap.pixelRef();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800283 if (ref == NULL) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700284 jniThrowException(_env, "java/lang/IllegalArgumentException", "Bitmap has no PixelRef");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800285 return;
286 }
Jack Palevich1badb712009-03-25 15:12:17 -0700287
Derek Sollenberger6062c592011-02-22 13:55:04 -0500288 SkSafeRef(ref);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800289 ref->lockPixels();
Jack Palevich1badb712009-03-25 15:12:17 -0700290
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800291 egl_native_pixmap_t pixmap;
292 pixmap.version = sizeof(pixmap);
John Recked207b92015-04-10 13:52:57 -0700293 pixmap.width = nativeBitmap.width();
294 pixmap.height = nativeBitmap.height();
295 pixmap.stride = nativeBitmap.rowBytes() / nativeBitmap.bytesPerPixel();
296 pixmap.format = convertPixelFormat(nativeBitmap.colorType());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800297 pixmap.data = (uint8_t*)ref->pixels();
Jack Palevich1badb712009-03-25 15:12:17 -0700298
299 base = beginNativeAttribList(_env, attrib_list);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800300 EGLSurface sur = eglCreatePixmapSurface(dpy, cnf, &pixmap, base);
Jack Palevich1badb712009-03-25 15:12:17 -0700301 endNativeAttributeList(_env, attrib_list, base);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800302
303 if (sur != EGL_NO_SURFACE) {
Ashok Bhat863f98b2014-01-27 16:58:46 +0000304 _env->SetLongField(out_sur, gSurface_EGLSurfaceFieldID, reinterpret_cast<jlong>(sur));
305 _env->SetLongField(out_sur, gSurface_NativePixelRefFieldID, reinterpret_cast<jlong>(ref));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800306 } else {
307 ref->unlockPixels();
Derek Sollenberger6062c592011-02-22 13:55:04 -0500308 SkSafeUnref(ref);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800309 }
310}
311
Ashok Bhat863f98b2014-01-27 16:58:46 +0000312static jlong jni_eglCreateWindowSurface(JNIEnv *_env, jobject _this, jobject display,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800313 jobject config, jobject native_window, jintArray attrib_list) {
Jack Palevich1badb712009-03-25 15:12:17 -0700314 if (display == NULL || config == NULL
315 || !validAttribList(_env, attrib_list)) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700316 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700317 return JNI_FALSE;
318 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800319 EGLDisplay dpy = getDisplay(_env, display);
320 EGLContext cnf = getConfig(_env, config);
Dianne Hackborn54a181b2010-06-30 18:35:14 -0700321 sp<ANativeWindow> window;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800322 if (native_window == NULL) {
323not_valid_surface:
Elliott Hughes8451b252011-04-07 19:17:57 -0700324 jniThrowException(_env, "java/lang/IllegalArgumentException",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800325 "Make sure the SurfaceView or associated SurfaceHolder has a valid Surface");
326 return 0;
327 }
Mathias Agopian8b73ae42010-06-10 17:02:51 -0700328
Jeff Brown64a55af2012-08-26 02:47:39 -0700329 window = android_view_Surface_getNativeWindow(_env, native_window);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800330 if (window == NULL)
331 goto not_valid_surface;
332
Jack Palevich1badb712009-03-25 15:12:17 -0700333 jint* base = beginNativeAttribList(_env, attrib_list);
Dianne Hackborn54a181b2010-06-30 18:35:14 -0700334 EGLSurface sur = eglCreateWindowSurface(dpy, cnf, window.get(), base);
Jack Palevich1badb712009-03-25 15:12:17 -0700335 endNativeAttributeList(_env, attrib_list, base);
Ashok Bhat863f98b2014-01-27 16:58:46 +0000336 return reinterpret_cast<jlong>(sur);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800337}
338
Ashok Bhat863f98b2014-01-27 16:58:46 +0000339static jlong jni_eglCreateWindowSurfaceTexture(JNIEnv *_env, jobject _this, jobject display,
Romain Guye5e0c502011-06-15 15:18:31 -0700340 jobject config, jobject native_window, jintArray attrib_list) {
Romain Guy8f0095c2011-05-02 17:24:22 -0700341 if (display == NULL || config == NULL
342 || !validAttribList(_env, attrib_list)) {
343 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Ashok Bhat863f98b2014-01-27 16:58:46 +0000344 return 0;
Romain Guy8f0095c2011-05-02 17:24:22 -0700345 }
346 EGLDisplay dpy = getDisplay(_env, display);
347 EGLContext cnf = getConfig(_env, config);
348 sp<ANativeWindow> window;
349 if (native_window == 0) {
350not_valid_surface:
351 jniThrowException(_env, "java/lang/IllegalArgumentException",
352 "Make sure the SurfaceTexture is valid");
353 return 0;
354 }
Jesse Hall0fa257f2013-08-30 13:49:14 -0700355
Mathias Agopian52a9a102013-08-02 01:38:38 -0700356 sp<IGraphicBufferProducer> producer(SurfaceTexture_getProducer(_env, native_window));
Jesse Hall0fa257f2013-08-30 13:49:14 -0700357 window = new Surface(producer, true);
Romain Guy8f0095c2011-05-02 17:24:22 -0700358 if (window == NULL)
359 goto not_valid_surface;
360
361 jint* base = beginNativeAttribList(_env, attrib_list);
362 EGLSurface sur = eglCreateWindowSurface(dpy, cnf, window.get(), base);
363 endNativeAttributeList(_env, attrib_list, base);
Ashok Bhat863f98b2014-01-27 16:58:46 +0000364 return reinterpret_cast<jlong>(sur);
Romain Guy8f0095c2011-05-02 17:24:22 -0700365}
366
Jack Palevich1badb712009-03-25 15:12:17 -0700367static jboolean jni_eglGetConfigAttrib(JNIEnv *_env, jobject _this, jobject display,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800368 jobject config, jint attribute, jintArray value) {
Jack Palevich1badb712009-03-25 15:12:17 -0700369 if (display == NULL || config == NULL
370 || (value == NULL || _env->GetArrayLength(value) < 1)) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700371 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800372 return JNI_FALSE;
373 }
Jack Palevich1badb712009-03-25 15:12:17 -0700374 EGLDisplay dpy = getDisplay(_env, display);
375 EGLContext cnf = getConfig(_env, config);
Ashok Bhat863f98b2014-01-27 16:58:46 +0000376 EGLBoolean success = EGL_FALSE;
Jack Palevich1badb712009-03-25 15:12:17 -0700377 jint localValue;
378 success = eglGetConfigAttrib(dpy, cnf, attribute, &localValue);
379 if (success) {
380 _env->SetIntArrayRegion(value, 0, 1, &localValue);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800381 }
Ashok Bhat863f98b2014-01-27 16:58:46 +0000382 return EglBoolToJBool(success);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800383}
384
Jack Palevich1badb712009-03-25 15:12:17 -0700385static jboolean jni_eglGetConfigs(JNIEnv *_env, jobject _this, jobject display,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800386 jobjectArray configs, jint config_size, jintArray num_config) {
Jack Palevich1badb712009-03-25 15:12:17 -0700387 if (display == NULL || (configs != NULL && _env->GetArrayLength(configs) < config_size)
388 || (num_config != NULL && _env->GetArrayLength(num_config) < 1)) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700389 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800390 return JNI_FALSE;
391 }
Jack Palevich1badb712009-03-25 15:12:17 -0700392 EGLDisplay dpy = getDisplay(_env, display);
Ashok Bhat863f98b2014-01-27 16:58:46 +0000393 EGLBoolean success = EGL_FALSE;
Jack Palevich1badb712009-03-25 15:12:17 -0700394 if (configs == NULL) {
395 config_size = 0;
396 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800397 EGLConfig nativeConfigs[config_size];
Jack Palevich1badb712009-03-25 15:12:17 -0700398 int num;
399 success = eglGetConfigs(dpy, configs ? nativeConfigs : 0, config_size, &num);
400 if (num_config != NULL) {
401 _env->SetIntArrayRegion(num_config, 0, 1, (jint*) &num);
402 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800403 if (success && configs) {
404 for (int i=0 ; i<num ; i++) {
Ashok Bhat863f98b2014-01-27 16:58:46 +0000405 jobject obj = _env->NewObject(gConfig_class, gConfig_ctorID, reinterpret_cast<jlong>(nativeConfigs[i]));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800406 _env->SetObjectArrayElement(configs, i, obj);
407 }
408 }
Ashok Bhat863f98b2014-01-27 16:58:46 +0000409 return EglBoolToJBool(success);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800410}
Jack Palevich1badb712009-03-25 15:12:17 -0700411
412static jint jni_eglGetError(JNIEnv *_env, jobject _this) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800413 EGLint error = eglGetError();
414 return error;
415}
416
Ashok Bhat863f98b2014-01-27 16:58:46 +0000417static jlong jni_eglGetCurrentContext(JNIEnv *_env, jobject _this) {
418 return reinterpret_cast<jlong>(eglGetCurrentContext());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800419}
420
Ashok Bhat863f98b2014-01-27 16:58:46 +0000421static jlong jni_eglGetCurrentDisplay(JNIEnv *_env, jobject _this) {
422 return reinterpret_cast<jlong>(eglGetCurrentDisplay());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800423}
424
Ashok Bhat863f98b2014-01-27 16:58:46 +0000425static jlong jni_eglGetCurrentSurface(JNIEnv *_env, jobject _this, jint readdraw) {
Romain Guy9b7146d2011-03-07 18:05:04 -0800426 if ((readdraw != EGL_READ) && (readdraw != EGL_DRAW)) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700427 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700428 return 0;
429 }
Ashok Bhat863f98b2014-01-27 16:58:46 +0000430 return reinterpret_cast<jlong>(eglGetCurrentSurface(readdraw));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800431}
432
Jack Palevich1badb712009-03-25 15:12:17 -0700433static jboolean jni_eglDestroyContext(JNIEnv *_env, jobject _this, jobject display, jobject context) {
434 if (display == NULL || context == NULL) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700435 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700436 return JNI_FALSE;
437 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800438 EGLDisplay dpy = getDisplay(_env, display);
439 EGLContext ctx = getContext(_env, context);
Ashok Bhat863f98b2014-01-27 16:58:46 +0000440 return EglBoolToJBool(eglDestroyContext(dpy, ctx));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800441}
442
Jack Palevich1badb712009-03-25 15:12:17 -0700443static jboolean jni_eglDestroySurface(JNIEnv *_env, jobject _this, jobject display, jobject surface) {
444 if (display == NULL || surface == NULL) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700445 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700446 return JNI_FALSE;
447 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800448 EGLDisplay dpy = getDisplay(_env, display);
449 EGLSurface sur = getSurface(_env, surface);
450
451 if (sur) {
Ashok Bhat863f98b2014-01-27 16:58:46 +0000452 SkPixelRef* ref = (SkPixelRef*)(_env->GetLongField(surface,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800453 gSurface_NativePixelRefFieldID));
454 if (ref) {
455 ref->unlockPixels();
Derek Sollenberger6062c592011-02-22 13:55:04 -0500456 SkSafeUnref(ref);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800457 }
458 }
Ashok Bhat863f98b2014-01-27 16:58:46 +0000459 return EglBoolToJBool(eglDestroySurface(dpy, sur));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800460}
461
Ashok Bhat863f98b2014-01-27 16:58:46 +0000462static jlong jni_eglGetDisplay(JNIEnv *_env, jobject _this, jobject native_display) {
463 return reinterpret_cast<jlong>(eglGetDisplay(EGL_DEFAULT_DISPLAY));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800464}
465
Jack Palevich1badb712009-03-25 15:12:17 -0700466static jboolean jni_eglMakeCurrent(JNIEnv *_env, jobject _this, jobject display, jobject draw, jobject read, jobject context) {
467 if (display == NULL || draw == NULL || read == NULL || context == NULL) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700468 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700469 return JNI_FALSE;
470 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800471 EGLDisplay dpy = getDisplay(_env, display);
472 EGLSurface sdr = getSurface(_env, draw);
473 EGLSurface srd = getSurface(_env, read);
474 EGLContext ctx = getContext(_env, context);
Ashok Bhat863f98b2014-01-27 16:58:46 +0000475 return EglBoolToJBool(eglMakeCurrent(dpy, sdr, srd, ctx));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800476}
477
Jack Palevich1badb712009-03-25 15:12:17 -0700478static jstring jni_eglQueryString(JNIEnv *_env, jobject _this, jobject display, jint name) {
479 if (display == NULL) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700480 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700481 return NULL;
482 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800483 EGLDisplay dpy = getDisplay(_env, display);
484 const char* chars = eglQueryString(dpy, name);
485 return _env->NewStringUTF(chars);
486}
487
Jack Palevich1badb712009-03-25 15:12:17 -0700488static jboolean jni_eglSwapBuffers(JNIEnv *_env, jobject _this, jobject display, jobject surface) {
489 if (display == NULL || surface == NULL) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700490 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700491 return JNI_FALSE;
492 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800493 EGLDisplay dpy = getDisplay(_env, display);
494 EGLSurface sur = getSurface(_env, surface);
Ashok Bhat863f98b2014-01-27 16:58:46 +0000495 return EglBoolToJBool(eglSwapBuffers(dpy, sur));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800496}
497
Jack Palevich1badb712009-03-25 15:12:17 -0700498static jboolean jni_eglTerminate(JNIEnv *_env, jobject _this, jobject display) {
499 if (display == NULL) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700500 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700501 return JNI_FALSE;
502 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800503 EGLDisplay dpy = getDisplay(_env, display);
Ashok Bhat863f98b2014-01-27 16:58:46 +0000504 return EglBoolToJBool(eglTerminate(dpy));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800505}
506
Jack Palevich1badb712009-03-25 15:12:17 -0700507static jboolean jni_eglCopyBuffers(JNIEnv *_env, jobject _this, jobject display,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800508 jobject surface, jobject native_pixmap) {
Jack Palevich1badb712009-03-25 15:12:17 -0700509 if (display == NULL || surface == NULL || native_pixmap == NULL) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700510 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700511 return JNI_FALSE;
512 }
513 // TODO: Implement this
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800514 return JNI_FALSE;
515}
516
Jack Palevich1badb712009-03-25 15:12:17 -0700517static jboolean jni_eglWaitGL(JNIEnv *_env, jobject _this) {
Ashok Bhat863f98b2014-01-27 16:58:46 +0000518 return EglBoolToJBool(eglWaitGL());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800519}
520
Jack Palevich1badb712009-03-25 15:12:17 -0700521static jboolean jni_eglWaitNative(JNIEnv *_env, jobject _this, jint engine, jobject bindTarget) {
Ashok Bhat863f98b2014-01-27 16:58:46 +0000522 return EglBoolToJBool(eglWaitNative(engine));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800523}
524
525
526static const char *classPathName = "com/google/android/gles_jni/EGLImpl";
527
528#define DISPLAY "Ljavax/microedition/khronos/egl/EGLDisplay;"
529#define CONTEXT "Ljavax/microedition/khronos/egl/EGLContext;"
530#define CONFIG "Ljavax/microedition/khronos/egl/EGLConfig;"
531#define SURFACE "Ljavax/microedition/khronos/egl/EGLSurface;"
532#define OBJECT "Ljava/lang/Object;"
533#define STRING "Ljava/lang/String;"
534
Daniel Micay76f6a862015-09-19 17:31:01 -0400535static const JNINativeMethod methods[] = {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800536{"_nativeClassInit","()V", (void*)nativeClassInit },
537{"eglWaitGL", "()Z", (void*)jni_eglWaitGL },
538{"eglInitialize", "(" DISPLAY "[I)Z", (void*)jni_eglInitialize },
539{"eglQueryContext", "(" DISPLAY CONTEXT "I[I)Z", (void*)jni_eglQueryContext },
540{"eglQuerySurface", "(" DISPLAY SURFACE "I[I)Z", (void*)jni_eglQuerySurface },
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800541{"eglReleaseThread","()Z", (void*)jni_eglReleaseThread },
542{"getInitCount", "(" DISPLAY ")I", (void*)jni_getInitCount },
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800543{"eglChooseConfig", "(" DISPLAY "[I[" CONFIG "I[I)Z", (void*)jni_eglChooseConfig },
Ashok Bhat863f98b2014-01-27 16:58:46 +0000544{"_eglCreateContext","(" DISPLAY CONFIG CONTEXT "[I)J", (void*)jni_eglCreateContext },
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800545{"eglGetConfigs", "(" DISPLAY "[" CONFIG "I[I)Z", (void*)jni_eglGetConfigs },
546{"eglTerminate", "(" DISPLAY ")Z", (void*)jni_eglTerminate },
547{"eglCopyBuffers", "(" DISPLAY SURFACE OBJECT ")Z", (void*)jni_eglCopyBuffers },
548{"eglWaitNative", "(I" OBJECT ")Z", (void*)jni_eglWaitNative },
549{"eglGetError", "()I", (void*)jni_eglGetError },
550{"eglGetConfigAttrib", "(" DISPLAY CONFIG "I[I)Z", (void*)jni_eglGetConfigAttrib },
Ashok Bhat863f98b2014-01-27 16:58:46 +0000551{"_eglGetDisplay", "(" OBJECT ")J", (void*)jni_eglGetDisplay },
552{"_eglGetCurrentContext", "()J", (void*)jni_eglGetCurrentContext },
553{"_eglGetCurrentDisplay", "()J", (void*)jni_eglGetCurrentDisplay },
554{"_eglGetCurrentSurface", "(I)J", (void*)jni_eglGetCurrentSurface },
555{"_eglCreatePbufferSurface","(" DISPLAY CONFIG "[I)J", (void*)jni_eglCreatePbufferSurface },
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800556{"_eglCreatePixmapSurface", "(" SURFACE DISPLAY CONFIG OBJECT "[I)V", (void*)jni_eglCreatePixmapSurface },
Ashok Bhat863f98b2014-01-27 16:58:46 +0000557{"_eglCreateWindowSurface", "(" DISPLAY CONFIG OBJECT "[I)J", (void*)jni_eglCreateWindowSurface },
558{"_eglCreateWindowSurfaceTexture", "(" DISPLAY CONFIG OBJECT "[I)J", (void*)jni_eglCreateWindowSurfaceTexture },
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800559{"eglDestroyContext", "(" DISPLAY CONTEXT ")Z", (void*)jni_eglDestroyContext },
560{"eglDestroySurface", "(" DISPLAY SURFACE ")Z", (void*)jni_eglDestroySurface },
561{"eglMakeCurrent", "(" DISPLAY SURFACE SURFACE CONTEXT")Z", (void*)jni_eglMakeCurrent },
562{"eglQueryString", "(" DISPLAY "I)" STRING, (void*)jni_eglQueryString },
563{"eglSwapBuffers", "(" DISPLAY SURFACE ")Z", (void*)jni_eglSwapBuffers },
564};
565
566} // namespace android
567
568int register_com_google_android_gles_jni_EGLImpl(JNIEnv *_env)
569{
570 int err;
571 err = android::AndroidRuntime::registerNativeMethods(_env,
572 android::classPathName, android::methods, NELEM(android::methods));
573 return err;
574}