blob: 5483867cc70b22357d813e7de065f86ef765838b [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>
30#include <gui/SurfaceTexture.h>
31#include <gui/SurfaceTextureClient.h>
Romain Guy8ff6b9e2011-11-09 20:10:18 -080032
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033#include <SkBitmap.h>
34#include <SkPixelRef.h>
35
Mathias Agopianaf01feaf2012-02-24 18:25:41 -080036#include <ui/ANativeObjectBase.h>
37
Dianne Hackborn54a181b2010-06-30 18:35:14 -070038namespace android {
Mathias Agopian8b73ae42010-06-10 17:02:51 -070039
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040static jclass gConfig_class;
41
42static jmethodID gConfig_ctorID;
43
44static jfieldID gDisplay_EGLDisplayFieldID;
45static jfieldID gContext_EGLContextFieldID;
46static jfieldID gSurface_EGLSurfaceFieldID;
47static jfieldID gSurface_NativePixelRefFieldID;
48static jfieldID gConfig_EGLConfigFieldID;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049static jfieldID gBitmap_NativeBitmapFieldID;
50
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;
53 return (EGLDisplay)env->GetIntField(o, gDisplay_EGLDisplayFieldID);
54}
55static inline EGLSurface getSurface(JNIEnv* env, jobject o) {
56 if (!o) return EGL_NO_SURFACE;
57 return (EGLSurface)env->GetIntField(o, gSurface_EGLSurfaceFieldID);
58}
59static inline EGLContext getContext(JNIEnv* env, jobject o) {
60 if (!o) return EGL_NO_CONTEXT;
61 return (EGLContext)env->GetIntField(o, gContext_EGLContextFieldID);
62}
63static inline EGLConfig getConfig(JNIEnv* env, jobject o) {
64 if (!o) return 0;
65 return (EGLConfig)env->GetIntField(o, gConfig_EGLConfigFieldID);
66}
67static void nativeClassInit(JNIEnv *_env, jclass eglImplClass)
68{
Elliott Hughesdd66bcb2011-04-12 11:28:59 -070069 jclass config_class = _env->FindClass("com/google/android/gles_jni/EGLConfigImpl");
70 gConfig_class = (jclass) _env->NewGlobalRef(config_class);
71 gConfig_ctorID = _env->GetMethodID(gConfig_class, "<init>", "(I)V");
72 gConfig_EGLConfigFieldID = _env->GetFieldID(gConfig_class, "mEGLConfig", "I");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080073
Elliott Hughesdd66bcb2011-04-12 11:28:59 -070074 jclass display_class = _env->FindClass("com/google/android/gles_jni/EGLDisplayImpl");
75 gDisplay_EGLDisplayFieldID = _env->GetFieldID(display_class, "mEGLDisplay", "I");
Jack Palevich1badb712009-03-25 15:12:17 -070076
Elliott Hughesdd66bcb2011-04-12 11:28:59 -070077 jclass context_class = _env->FindClass("com/google/android/gles_jni/EGLContextImpl");
78 gContext_EGLContextFieldID = _env->GetFieldID(context_class, "mEGLContext", "I");
79
80 jclass surface_class = _env->FindClass("com/google/android/gles_jni/EGLSurfaceImpl");
81 gSurface_EGLSurfaceFieldID = _env->GetFieldID(surface_class, "mEGLSurface", "I");
82 gSurface_NativePixelRefFieldID = _env->GetFieldID(surface_class, "mNativePixelRef", "I");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080083
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084 jclass bitmap_class = _env->FindClass("android/graphics/Bitmap");
Jack Palevich1badb712009-03-25 15:12:17 -070085 gBitmap_NativeBitmapFieldID = _env->GetFieldID(bitmap_class, "mNativeBitmap", "I");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086}
87
Jack Palevich1badb712009-03-25 15:12:17 -070088static const jint gNull_attrib_base[] = {EGL_NONE};
89
90static bool validAttribList(JNIEnv *_env, jintArray attrib_list) {
91 if (attrib_list == NULL) {
92 return true;
93 }
94 jsize len = _env->GetArrayLength(attrib_list);
95 if (len < 1) {
96 return false;
97 }
98 jint item = 0;
99 _env->GetIntArrayRegion(attrib_list, len-1, 1, &item);
100 return item == EGL_NONE;
101}
102
103static jint* beginNativeAttribList(JNIEnv *_env, jintArray attrib_list) {
104 if (attrib_list != NULL) {
105 return (jint *)_env->GetPrimitiveArrayCritical(attrib_list, (jboolean *)0);
106 } else {
107 return(jint*) gNull_attrib_base;
108 }
109}
110
111static void endNativeAttributeList(JNIEnv *_env, jintArray attrib_list, jint* attrib_base) {
112 if (attrib_list != NULL) {
113 _env->ReleasePrimitiveArrayCritical(attrib_list, attrib_base, JNI_ABORT);
114 }
115}
116
117static jboolean jni_eglInitialize(JNIEnv *_env, jobject _this, jobject display,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 jintArray major_minor) {
Jack Palevich1badb712009-03-25 15:12:17 -0700119 if (display == NULL || (major_minor != NULL &&
120 _env->GetArrayLength(major_minor) < 2)) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700121 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700122 return JNI_FALSE;
123 }
124
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800125 EGLDisplay dpy = getDisplay(_env, display);
126 jboolean success = eglInitialize(dpy, NULL, NULL);
127 if (success && major_minor) {
128 int len = _env->GetArrayLength(major_minor);
129 if (len) {
130 // we're exposing only EGL 1.0
131 jint* base = (jint *)_env->GetPrimitiveArrayCritical(major_minor, (jboolean *)0);
132 if (len >= 1) base[0] = 1;
133 if (len >= 2) base[1] = 0;
134 _env->ReleasePrimitiveArrayCritical(major_minor, base, JNI_ABORT);
135 }
136 }
137 return success;
138}
139
Jack Palevich1badb712009-03-25 15:12:17 -0700140static jboolean jni_eglQueryContext(JNIEnv *_env, jobject _this, jobject display,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800141 jobject context, jint attribute, jintArray value) {
Jack Palevich1badb712009-03-25 15:12:17 -0700142 if (display == NULL || context == NULL || value == NULL
143 || _env->GetArrayLength(value) < 1) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700144 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800145 return JNI_FALSE;
146 }
Jack Palevich1badb712009-03-25 15:12:17 -0700147 EGLDisplay dpy = getDisplay(_env, display);
148 EGLContext ctx = getContext(_env, context);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149 jboolean success = JNI_FALSE;
150 int len = _env->GetArrayLength(value);
151 if (len) {
152 jint* base = (jint *)_env->GetPrimitiveArrayCritical(value, (jboolean *)0);
153 success = eglQueryContext(dpy, ctx, attribute, base);
154 _env->ReleasePrimitiveArrayCritical(value, base, JNI_ABORT);
155 }
156 return success;
157}
Jack Palevich1badb712009-03-25 15:12:17 -0700158
159static jboolean jni_eglQuerySurface(JNIEnv *_env, jobject _this, jobject display,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800160 jobject surface, jint attribute, jintArray value) {
Jack Palevich1badb712009-03-25 15:12:17 -0700161 if (display == NULL || surface == NULL || value == NULL
162 || _env->GetArrayLength(value) < 1) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700163 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800164 return JNI_FALSE;
165 }
Jack Palevich1badb712009-03-25 15:12:17 -0700166 EGLDisplay dpy = getDisplay(_env, display);
167 EGLContext sur = getSurface(_env, surface);
168
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800169 jboolean success = JNI_FALSE;
170 int len = _env->GetArrayLength(value);
171 if (len) {
172 jint* base = (jint *)_env->GetPrimitiveArrayCritical(value, (jboolean *)0);
173 success = eglQuerySurface(dpy, sur, attribute, base);
174 _env->ReleasePrimitiveArrayCritical(value, base, JNI_ABORT);
175 }
176 return success;
177}
178
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800179static jint jni_getInitCount(JNIEnv *_env, jobject _clazz, jobject display) {
180 EGLDisplay dpy = getDisplay(_env, display);
181 egl_display_t* eglDisplay = get_display(dpy);
182 return eglDisplay ? eglDisplay->getRefsCount() : 0;
183}
184
185static jboolean jni_eglReleaseThread(JNIEnv *_env, jobject _this) {
186 return eglReleaseThread();
187}
188
Jack Palevich1badb712009-03-25 15:12:17 -0700189static jboolean jni_eglChooseConfig(JNIEnv *_env, jobject _this, jobject display,
190 jintArray attrib_list, jobjectArray configs, jint config_size, jintArray num_config) {
191 if (display == NULL
192 || !validAttribList(_env, attrib_list)
193 || (configs != NULL && _env->GetArrayLength(configs) < config_size)
194 || (num_config != NULL && _env->GetArrayLength(num_config) < 1)) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700195 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800196 return JNI_FALSE;
197 }
Jack Palevich1badb712009-03-25 15:12:17 -0700198 EGLDisplay dpy = getDisplay(_env, display);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800199 jboolean success = JNI_FALSE;
Jack Palevich1badb712009-03-25 15:12:17 -0700200
201 if (configs == NULL) {
202 config_size = 0;
203 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800204 EGLConfig nativeConfigs[config_size];
Jack Palevich1badb712009-03-25 15:12:17 -0700205
206 int num = 0;
207 jint* attrib_base = beginNativeAttribList(_env, attrib_list);
208 success = eglChooseConfig(dpy, attrib_base, configs ? nativeConfigs : 0, config_size, &num);
209 endNativeAttributeList(_env, attrib_list, attrib_base);
210
211 if (num_config != NULL) {
212 _env->SetIntArrayRegion(num_config, 0, 1, (jint*) &num);
213 }
214
215 if (success && configs!=NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800216 for (int i=0 ; i<num ; i++) {
217 jobject obj = _env->NewObject(gConfig_class, gConfig_ctorID, (jint)nativeConfigs[i]);
218 _env->SetObjectArrayElement(configs, i, obj);
219 }
220 }
221 return success;
Jack Palevich1badb712009-03-25 15:12:17 -0700222}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800223
Jack Palevich1badb712009-03-25 15:12:17 -0700224static jint jni_eglCreateContext(JNIEnv *_env, jobject _this, jobject display,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800225 jobject config, jobject share_context, jintArray attrib_list) {
Jack Palevich1badb712009-03-25 15:12:17 -0700226 if (display == NULL || config == NULL || share_context == NULL
227 || !validAttribList(_env, attrib_list)) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700228 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700229 return JNI_FALSE;
230 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800231 EGLDisplay dpy = getDisplay(_env, display);
232 EGLConfig cnf = getConfig(_env, config);
233 EGLContext shr = getContext(_env, share_context);
Jack Palevich1badb712009-03-25 15:12:17 -0700234 jint* base = beginNativeAttribList(_env, attrib_list);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800235 EGLContext ctx = eglCreateContext(dpy, cnf, shr, base);
Jack Palevich1badb712009-03-25 15:12:17 -0700236 endNativeAttributeList(_env, attrib_list, base);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800237 return (jint)ctx;
238}
239
Jack Palevich1badb712009-03-25 15:12:17 -0700240static jint jni_eglCreatePbufferSurface(JNIEnv *_env, jobject _this, jobject display,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800241 jobject config, jintArray attrib_list) {
Jack Palevich1badb712009-03-25 15:12:17 -0700242 if (display == NULL || config == NULL
243 || !validAttribList(_env, attrib_list)) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700244 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700245 return JNI_FALSE;
246 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800247 EGLDisplay dpy = getDisplay(_env, display);
248 EGLConfig cnf = getConfig(_env, config);
Jack Palevich1badb712009-03-25 15:12:17 -0700249 jint* base = beginNativeAttribList(_env, attrib_list);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800250 EGLSurface sur = eglCreatePbufferSurface(dpy, cnf, base);
Jack Palevich1badb712009-03-25 15:12:17 -0700251 endNativeAttributeList(_env, attrib_list, base);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800252 return (jint)sur;
253}
254
255static PixelFormat convertPixelFormat(SkBitmap::Config format)
256{
257 switch (format) {
258 case SkBitmap::kARGB_8888_Config: return PIXEL_FORMAT_RGBA_8888;
259 case SkBitmap::kARGB_4444_Config: return PIXEL_FORMAT_RGBA_4444;
260 case SkBitmap::kRGB_565_Config: return PIXEL_FORMAT_RGB_565;
261 case SkBitmap::kA8_Config: return PIXEL_FORMAT_A_8;
262 default: return PIXEL_FORMAT_NONE;
263 }
264}
265
Jack Palevich1badb712009-03-25 15:12:17 -0700266static void jni_eglCreatePixmapSurface(JNIEnv *_env, jobject _this, jobject out_sur,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800267 jobject display, jobject config, jobject native_pixmap,
Jack Palevich1badb712009-03-25 15:12:17 -0700268 jintArray attrib_list)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800269{
Jack Palevich1badb712009-03-25 15:12:17 -0700270 if (display == NULL || config == NULL || native_pixmap == NULL
271 || !validAttribList(_env, attrib_list)) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700272 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700273 return;
274 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800275 EGLDisplay dpy = getDisplay(_env, display);
276 EGLConfig cnf = getConfig(_env, config);
277 jint* base = 0;
278
279 SkBitmap const * nativeBitmap =
280 (SkBitmap const *)_env->GetIntField(native_pixmap,
281 gBitmap_NativeBitmapFieldID);
282 SkPixelRef* ref = nativeBitmap ? nativeBitmap->pixelRef() : 0;
283 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);
293 pixmap.width = nativeBitmap->width();
294 pixmap.height = nativeBitmap->height();
295 pixmap.stride = nativeBitmap->rowBytes() / nativeBitmap->bytesPerPixel();
296 pixmap.format = convertPixelFormat(nativeBitmap->config());
297 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) {
304 _env->SetIntField(out_sur, gSurface_EGLSurfaceFieldID, (int)sur);
305 _env->SetIntField(out_sur, gSurface_NativePixelRefFieldID, (int)ref);
306 } 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
Jack Palevich1badb712009-03-25 15:12:17 -0700312static jint 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
Dianne Hackborn54a181b2010-06-30 18:35:14 -0700329 window = android_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);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800336 return (jint)sur;
337}
338
Romain Guy8f0095c2011-05-02 17:24:22 -0700339static jint 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);
344 return JNI_FALSE;
345 }
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 }
355
Romain Guye5e0c502011-06-15 15:18:31 -0700356 sp<SurfaceTexture> surfaceTexture(SurfaceTexture_getSurfaceTexture(_env, native_window));
Romain Guy8f0095c2011-05-02 17:24:22 -0700357
358 window = new SurfaceTextureClient(surfaceTexture);
359 if (window == NULL)
360 goto not_valid_surface;
361
362 jint* base = beginNativeAttribList(_env, attrib_list);
363 EGLSurface sur = eglCreateWindowSurface(dpy, cnf, window.get(), base);
364 endNativeAttributeList(_env, attrib_list, base);
365 return (jint)sur;
366}
367
Jack Palevich1badb712009-03-25 15:12:17 -0700368static jboolean jni_eglGetConfigAttrib(JNIEnv *_env, jobject _this, jobject display,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800369 jobject config, jint attribute, jintArray value) {
Jack Palevich1badb712009-03-25 15:12:17 -0700370 if (display == NULL || config == NULL
371 || (value == NULL || _env->GetArrayLength(value) < 1)) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700372 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800373 return JNI_FALSE;
374 }
Jack Palevich1badb712009-03-25 15:12:17 -0700375 EGLDisplay dpy = getDisplay(_env, display);
376 EGLContext cnf = getConfig(_env, config);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800377 jboolean success = JNI_FALSE;
Jack Palevich1badb712009-03-25 15:12:17 -0700378 jint localValue;
379 success = eglGetConfigAttrib(dpy, cnf, attribute, &localValue);
380 if (success) {
381 _env->SetIntArrayRegion(value, 0, 1, &localValue);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800382 }
383 return success;
384}
385
Jack Palevich1badb712009-03-25 15:12:17 -0700386static jboolean jni_eglGetConfigs(JNIEnv *_env, jobject _this, jobject display,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800387 jobjectArray configs, jint config_size, jintArray num_config) {
Jack Palevich1badb712009-03-25 15:12:17 -0700388 if (display == NULL || (configs != NULL && _env->GetArrayLength(configs) < config_size)
389 || (num_config != NULL && _env->GetArrayLength(num_config) < 1)) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700390 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800391 return JNI_FALSE;
392 }
Jack Palevich1badb712009-03-25 15:12:17 -0700393 EGLDisplay dpy = getDisplay(_env, display);
394 jboolean success = JNI_FALSE;
395 if (configs == NULL) {
396 config_size = 0;
397 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800398 EGLConfig nativeConfigs[config_size];
Jack Palevich1badb712009-03-25 15:12:17 -0700399 int num;
400 success = eglGetConfigs(dpy, configs ? nativeConfigs : 0, config_size, &num);
401 if (num_config != NULL) {
402 _env->SetIntArrayRegion(num_config, 0, 1, (jint*) &num);
403 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800404 if (success && configs) {
405 for (int i=0 ; i<num ; i++) {
406 jobject obj = _env->NewObject(gConfig_class, gConfig_ctorID, (jint)nativeConfigs[i]);
407 _env->SetObjectArrayElement(configs, i, obj);
408 }
409 }
410 return success;
411}
Jack Palevich1badb712009-03-25 15:12:17 -0700412
413static jint jni_eglGetError(JNIEnv *_env, jobject _this) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800414 EGLint error = eglGetError();
415 return error;
416}
417
Jack Palevich1badb712009-03-25 15:12:17 -0700418static jint jni_eglGetCurrentContext(JNIEnv *_env, jobject _this) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800419 return (jint)eglGetCurrentContext();
420}
421
Jack Palevich1badb712009-03-25 15:12:17 -0700422static jint jni_eglGetCurrentDisplay(JNIEnv *_env, jobject _this) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800423 return (jint)eglGetCurrentDisplay();
424}
425
Jack Palevich1badb712009-03-25 15:12:17 -0700426static jint jni_eglGetCurrentSurface(JNIEnv *_env, jobject _this, jint readdraw) {
Romain Guy9b7146d2011-03-07 18:05:04 -0800427 if ((readdraw != EGL_READ) && (readdraw != EGL_DRAW)) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700428 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700429 return 0;
430 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800431 return (jint)eglGetCurrentSurface(readdraw);
432}
433
Jack Palevich1badb712009-03-25 15:12:17 -0700434static jboolean jni_eglDestroyContext(JNIEnv *_env, jobject _this, jobject display, jobject context) {
435 if (display == NULL || context == NULL) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700436 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700437 return JNI_FALSE;
438 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800439 EGLDisplay dpy = getDisplay(_env, display);
440 EGLContext ctx = getContext(_env, context);
441 return eglDestroyContext(dpy, ctx);
442}
443
Jack Palevich1badb712009-03-25 15:12:17 -0700444static jboolean jni_eglDestroySurface(JNIEnv *_env, jobject _this, jobject display, jobject surface) {
445 if (display == NULL || surface == NULL) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700446 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700447 return JNI_FALSE;
448 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800449 EGLDisplay dpy = getDisplay(_env, display);
450 EGLSurface sur = getSurface(_env, surface);
451
452 if (sur) {
453 SkPixelRef* ref = (SkPixelRef*)(_env->GetIntField(surface,
454 gSurface_NativePixelRefFieldID));
455 if (ref) {
456 ref->unlockPixels();
Derek Sollenberger6062c592011-02-22 13:55:04 -0500457 SkSafeUnref(ref);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800458 }
459 }
460 return eglDestroySurface(dpy, sur);
461}
462
Jack Palevich1badb712009-03-25 15:12:17 -0700463static jint jni_eglGetDisplay(JNIEnv *_env, jobject _this, jobject native_display) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800464 return (jint)eglGetDisplay(EGL_DEFAULT_DISPLAY);
465}
466
Jack Palevich1badb712009-03-25 15:12:17 -0700467static jboolean jni_eglMakeCurrent(JNIEnv *_env, jobject _this, jobject display, jobject draw, jobject read, jobject context) {
468 if (display == NULL || draw == NULL || read == NULL || context == NULL) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700469 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700470 return JNI_FALSE;
471 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800472 EGLDisplay dpy = getDisplay(_env, display);
473 EGLSurface sdr = getSurface(_env, draw);
474 EGLSurface srd = getSurface(_env, read);
475 EGLContext ctx = getContext(_env, context);
476 return eglMakeCurrent(dpy, sdr, srd, ctx);
477}
478
Jack Palevich1badb712009-03-25 15:12:17 -0700479static jstring jni_eglQueryString(JNIEnv *_env, jobject _this, jobject display, jint name) {
480 if (display == NULL) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700481 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700482 return NULL;
483 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800484 EGLDisplay dpy = getDisplay(_env, display);
485 const char* chars = eglQueryString(dpy, name);
486 return _env->NewStringUTF(chars);
487}
488
Jack Palevich1badb712009-03-25 15:12:17 -0700489static jboolean jni_eglSwapBuffers(JNIEnv *_env, jobject _this, jobject display, jobject surface) {
490 if (display == NULL || surface == NULL) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700491 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700492 return JNI_FALSE;
493 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800494 EGLDisplay dpy = getDisplay(_env, display);
495 EGLSurface sur = getSurface(_env, surface);
496 return eglSwapBuffers(dpy, sur);
497}
498
Jack Palevich1badb712009-03-25 15:12:17 -0700499static jboolean jni_eglTerminate(JNIEnv *_env, jobject _this, jobject display) {
500 if (display == NULL) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700501 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700502 return JNI_FALSE;
503 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800504 EGLDisplay dpy = getDisplay(_env, display);
505 return eglTerminate(dpy);
506}
507
Jack Palevich1badb712009-03-25 15:12:17 -0700508static jboolean jni_eglCopyBuffers(JNIEnv *_env, jobject _this, jobject display,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800509 jobject surface, jobject native_pixmap) {
Jack Palevich1badb712009-03-25 15:12:17 -0700510 if (display == NULL || surface == NULL || native_pixmap == NULL) {
Elliott Hughes8451b252011-04-07 19:17:57 -0700511 jniThrowException(_env, "java/lang/IllegalArgumentException", NULL);
Jack Palevich1badb712009-03-25 15:12:17 -0700512 return JNI_FALSE;
513 }
514 // TODO: Implement this
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800515 return JNI_FALSE;
516}
517
Jack Palevich1badb712009-03-25 15:12:17 -0700518static jboolean jni_eglWaitGL(JNIEnv *_env, jobject _this) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800519 return eglWaitGL();
520}
521
Jack Palevich1badb712009-03-25 15:12:17 -0700522static jboolean jni_eglWaitNative(JNIEnv *_env, jobject _this, jint engine, jobject bindTarget) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800523 return eglWaitNative(engine);
524}
525
526
527static const char *classPathName = "com/google/android/gles_jni/EGLImpl";
528
529#define DISPLAY "Ljavax/microedition/khronos/egl/EGLDisplay;"
530#define CONTEXT "Ljavax/microedition/khronos/egl/EGLContext;"
531#define CONFIG "Ljavax/microedition/khronos/egl/EGLConfig;"
532#define SURFACE "Ljavax/microedition/khronos/egl/EGLSurface;"
533#define OBJECT "Ljava/lang/Object;"
534#define STRING "Ljava/lang/String;"
535
536static JNINativeMethod methods[] = {
537{"_nativeClassInit","()V", (void*)nativeClassInit },
538{"eglWaitGL", "()Z", (void*)jni_eglWaitGL },
539{"eglInitialize", "(" DISPLAY "[I)Z", (void*)jni_eglInitialize },
540{"eglQueryContext", "(" DISPLAY CONTEXT "I[I)Z", (void*)jni_eglQueryContext },
541{"eglQuerySurface", "(" DISPLAY SURFACE "I[I)Z", (void*)jni_eglQuerySurface },
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800542{"eglReleaseThread","()Z", (void*)jni_eglReleaseThread },
543{"getInitCount", "(" DISPLAY ")I", (void*)jni_getInitCount },
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800544{"eglChooseConfig", "(" DISPLAY "[I[" CONFIG "I[I)Z", (void*)jni_eglChooseConfig },
545{"_eglCreateContext","(" DISPLAY CONFIG CONTEXT "[I)I", (void*)jni_eglCreateContext },
546{"eglGetConfigs", "(" DISPLAY "[" CONFIG "I[I)Z", (void*)jni_eglGetConfigs },
547{"eglTerminate", "(" DISPLAY ")Z", (void*)jni_eglTerminate },
548{"eglCopyBuffers", "(" DISPLAY SURFACE OBJECT ")Z", (void*)jni_eglCopyBuffers },
549{"eglWaitNative", "(I" OBJECT ")Z", (void*)jni_eglWaitNative },
550{"eglGetError", "()I", (void*)jni_eglGetError },
551{"eglGetConfigAttrib", "(" DISPLAY CONFIG "I[I)Z", (void*)jni_eglGetConfigAttrib },
552{"_eglGetDisplay", "(" OBJECT ")I", (void*)jni_eglGetDisplay },
553{"_eglGetCurrentContext", "()I", (void*)jni_eglGetCurrentContext },
554{"_eglGetCurrentDisplay", "()I", (void*)jni_eglGetCurrentDisplay },
555{"_eglGetCurrentSurface", "(I)I", (void*)jni_eglGetCurrentSurface },
556{"_eglCreatePbufferSurface","(" DISPLAY CONFIG "[I)I", (void*)jni_eglCreatePbufferSurface },
557{"_eglCreatePixmapSurface", "(" SURFACE DISPLAY CONFIG OBJECT "[I)V", (void*)jni_eglCreatePixmapSurface },
558{"_eglCreateWindowSurface", "(" DISPLAY CONFIG OBJECT "[I)I", (void*)jni_eglCreateWindowSurface },
Romain Guyb38484c2011-06-15 17:43:08 -0700559{"_eglCreateWindowSurfaceTexture", "(" DISPLAY CONFIG OBJECT "[I)I", (void*)jni_eglCreateWindowSurfaceTexture },
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800560{"eglDestroyContext", "(" DISPLAY CONTEXT ")Z", (void*)jni_eglDestroyContext },
561{"eglDestroySurface", "(" DISPLAY SURFACE ")Z", (void*)jni_eglDestroySurface },
562{"eglMakeCurrent", "(" DISPLAY SURFACE SURFACE CONTEXT")Z", (void*)jni_eglMakeCurrent },
563{"eglQueryString", "(" DISPLAY "I)" STRING, (void*)jni_eglQueryString },
564{"eglSwapBuffers", "(" DISPLAY SURFACE ")Z", (void*)jni_eglSwapBuffers },
565};
566
567} // namespace android
568
569int register_com_google_android_gles_jni_EGLImpl(JNIEnv *_env)
570{
571 int err;
572 err = android::AndroidRuntime::registerNativeMethods(_env,
573 android::classPathName, android::methods, NELEM(android::methods));
574 return err;
575}