Searched refs:_env (Results 1 - 25 of 41) sorted by relevance

12

/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetString.cpp2 static jstring android_glGetString(JNIEnv* _env, jobject, jint name) { argument
4 return _env->NewStringUTF(chars);
H A DglShaderSource.cpp6 (JNIEnv *_env, jobject _this, jint shader, jstring string) {
9 jniThrowException(_env, "java/lang/IllegalArgumentException", "string == null");
13 const char* nativeString = _env->GetStringUTFChars(string, 0);
16 _env->ReleaseStringUTFChars(string, nativeString);
5 android_glShaderSource(JNIEnv *_env, jobject _this, jint shader, jstring string) argument
H A DglGetStringi.cpp4 (JNIEnv *_env, jobject _this, jint name, jint index) {
6 return _env->NewStringUTF((const char*)_chars);
3 android_glGetStringi__II(JNIEnv *_env, jobject _this, jint name, jint index) argument
H A DglGetBooleanv.cpp4 (JNIEnv *_env, jobject _this, jint pname, jbooleanArray params_ref, jint offset) {
5 get<jbooleanArray, GLboolean, glGetBooleanv>(_env, _this, pname, params_ref, offset);
11 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) {
12 getarray<GLboolean, glGetBooleanv>(_env, _this, pname, params_buf);
3 android_glGetBooleanv__I_3ZI(JNIEnv *_env, jobject _this, jint pname, jbooleanArray params_ref, jint offset) argument
10 android_glGetBooleanv__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
H A DglGetFloatv.cpp4 (JNIEnv *_env, jobject _this, jint pname, jfloatArray params_ref, jint offset) {
5 get<jfloatArray, GLfloat, glGetFloatv>(_env, _this, pname, params_ref, offset);
11 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) {
12 getarray<GLfloat, glGetFloatv>(_env, _this, pname, params_buf);
3 android_glGetFloatv__I_3FI(JNIEnv *_env, jobject _this, jint pname, jfloatArray params_ref, jint offset) argument
10 android_glGetFloatv__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
H A DglGetIntegerv.cpp4 (JNIEnv *_env, jobject _this, jint pname, jintArray params_ref, jint offset) {
5 get<jintArray, GLint, glGetIntegerv>(_env, _this, pname, params_ref, offset);
11 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) {
12 getarray<GLint, glGetIntegerv>(_env, _this, pname, params_buf);
3 android_glGetIntegerv__I_3II(JNIEnv *_env, jobject _this, jint pname, jintArray params_ref, jint offset) argument
10 android_glGetIntegerv__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
H A DglGetProgramInfoLog.cpp4 static jstring android_glGetProgramInfoLog(JNIEnv *_env, jobject, jint shader) { argument
8 return _env->NewStringUTF("");
12 jniThrowException(_env, "java/lang/IllegalArgumentException", "out of memory");
16 jstring result = _env->NewStringUTF(buf);
H A DglGetShaderInfoLog.cpp4 static jstring android_glGetShaderInfoLog(JNIEnv *_env, jobject, jint shader) { argument
8 return _env->NewStringUTF("");
12 jniThrowException(_env, "java/lang/IllegalArgumentException", "out of memory");
16 jstring result = _env->NewStringUTF(buf);
H A DglGetShaderSource.cpp4 (JNIEnv *_env, jobject _this, jint shader, jint bufsize, jintArray length_ref, jint lengthOffset, jbyteArray source_ref, jint sourceOffset) {
27 _lengthRemaining = _env->GetArrayLength(length_ref) - lengthOffset;
29 _env->GetPrimitiveArrayCritical(length_ref, (jboolean *)0);
44 _sourceRemaining = _env->GetArrayLength(source_ref) - sourceOffset;
46 _env->GetPrimitiveArrayCritical(source_ref, (jboolean *)0);
58 _env->ReleasePrimitiveArrayCritical(source_ref, source_base,
62 _env->ReleasePrimitiveArrayCritical(length_ref, length_base,
66 jniThrowException(_env, _exceptionType, _exceptionMessage);
73 (JNIEnv *_env, jobject _this, jint shader, jint bufsize, jobject length_buf, jbyte source) {
79 length = (GLsizei *)getPointer(_env, length_bu
3 android_glGetShaderSource__II_3II_3BI(JNIEnv *_env, jobject _this, jint shader, jint bufsize, jintArray length_ref, jint lengthOffset, jbyteArray source_ref, jint sourceOffset) argument
72 android_glGetShaderSource__IILjava_nio_IntBuffer_2B(JNIEnv *_env, jobject _this, jint shader, jint bufsize, jobject length_buf, jbyte source) argument
96 android_glGetShaderSource(JNIEnv *_env, jobject, jint shader) argument
[all...]
H A DglGetActiveAttrib.cpp4 (JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jintArray length_ref, jint lengthOffset, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset, jbyteArray name_ref, jint nameOffset) {
33 _lengthRemaining = _env->GetArrayLength(length_ref) - lengthOffset;
35 _env->GetPrimitiveArrayCritical(length_ref, (jboolean *)0);
50 _sizeRemaining = _env->GetArrayLength(size_ref) - sizeOffset;
52 _env->GetPrimitiveArrayCritical(size_ref, (jboolean *)0);
67 _typeRemaining = _env->GetArrayLength(type_ref) - typeOffset;
69 _env->GetPrimitiveArrayCritical(type_ref, (jboolean *)0);
84 _nameRemaining = _env->GetArrayLength(name_ref) - nameOffset;
86 _env->GetPrimitiveArrayCritical(name_ref, (jboolean *)0);
101 _env
3 android_glGetActiveAttrib__III_3II_3II_3II_3BI(JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jintArray length_ref, jint lengthOffset, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset, jbyteArray name_ref, jint nameOffset) argument
123 android_glGetActiveAttrib__IIILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2B(JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jobject length_buf, jobject size_buf, jobject type_buf, jbyte name) argument
175 android_glGetActiveAttrib1(JNIEnv *_env, jobject _this, jint program, jint index, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset) argument
270 android_glGetActiveAttrib2(JNIEnv *_env, jobject _this, jint program, jint index, jobject size_buf, jobject type_buf) argument
[all...]
H A DglGetActiveUniform.cpp4 (JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jintArray length_ref, jint lengthOffset, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset, jbyteArray name_ref, jint nameOffset) {
33 _lengthRemaining = _env->GetArrayLength(length_ref) - lengthOffset;
35 _env->GetPrimitiveArrayCritical(length_ref, (jboolean *)0);
50 _sizeRemaining = _env->GetArrayLength(size_ref) - sizeOffset;
52 _env->GetPrimitiveArrayCritical(size_ref, (jboolean *)0);
67 _typeRemaining = _env->GetArrayLength(type_ref) - typeOffset;
69 _env->GetPrimitiveArrayCritical(type_ref, (jboolean *)0);
84 _nameRemaining = _env->GetArrayLength(name_ref) - nameOffset;
86 _env->GetPrimitiveArrayCritical(name_ref, (jboolean *)0);
101 _env
3 android_glGetActiveUniform__III_3II_3II_3II_3BI(JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jintArray length_ref, jint lengthOffset, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset, jbyteArray name_ref, jint nameOffset) argument
123 android_glGetActiveUniform__IIILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2B(JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jobject length_buf, jobject size_buf, jobject type_buf, jbyte name) argument
175 android_glGetActiveUniform1(JNIEnv *_env, jobject _this, jint program, jint index, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset) argument
273 android_glGetActiveUniform2(JNIEnv *_env, jobject _this, jint program, jint index, jobject size_buf, jobject type_buf) argument
[all...]
H A DglGetTransformFeedbackVarying.cpp4 (JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jintArray length_ref, jint lengthOffset, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset, jbyteArray name_ref, jint nameOffset) {
33 _lengthRemaining = _env->GetArrayLength(length_ref) - lengthOffset;
35 _env->GetPrimitiveArrayCritical(length_ref, (jboolean *)0);
50 _sizeRemaining = _env->GetArrayLength(size_ref) - sizeOffset;
52 _env->GetPrimitiveArrayCritical(size_ref, (jboolean *)0);
67 _typeRemaining = _env->GetArrayLength(type_ref) - typeOffset;
69 _env->GetPrimitiveArrayCritical(type_ref, (jboolean *)0);
84 _nameRemaining = _env->GetArrayLength(name_ref) - nameOffset;
86 _env->GetPrimitiveArrayCritical(name_ref, (jboolean *)0);
101 _env
3 android_glGetTransformFeedbackVarying__III_3II_3II_3II_3BI(JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jintArray length_ref, jint lengthOffset, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset, jbyteArray name_ref, jint nameOffset) argument
123 android_glGetTransformFeedbackVarying__IIILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2B(JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jobject length_buf, jobject size_buf, jobject type_buf, jbyte name) argument
175 android_glGetTransformFeedbackVarying1(JNIEnv *_env, jobject _this, jint program, jint index, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset) argument
270 android_glGetTransformFeedbackVarying2(JNIEnv *_env, jobject _this, jint program, jint index, jobject size_buf, jobject type_buf) argument
[all...]
H A DglGetBufferPointerv.cpp4 (JNIEnv *_env, jobject _this, jint target, jint pname) {
9 return _env->NewDirectByteBuffer(_p, _mapLength);
3 android_glGetBufferPointerv__II(JNIEnv *_env, jobject _this, jint target, jint pname) argument
H A DglGetUniformIndices.cpp5 (JNIEnv *_env, jobject _this, jint program, jobjectArray uniformNames_ref, jintArray uniformIndices_ref, jint uniformIndicesOffset) {
21 _count = _env->GetArrayLength(uniformNames_ref);
24 jstring _name = (jstring)_env->GetObjectArrayElement(uniformNames_ref, _i);
31 _names[_i] = _env->GetStringUTFChars(_name, 0);
46 if (_env->GetArrayLength(uniformIndices_ref) - uniformIndicesOffset < _count) {
52 _indices_base = (GLuint*)_env->GetPrimitiveArrayCritical(
60 _env->ReleasePrimitiveArrayCritical(uniformIndices_ref, _indices_base,
65 jstring _name = (jstring)_env->GetObjectArrayElement(uniformNames_ref, _i);
67 _env->ReleaseStringUTFChars(_name, _names[_i]);
73 jniThrowException(_env, _exceptionTyp
4 android_glGetUniformIndices_array(JNIEnv *_env, jobject _this, jint program, jobjectArray uniformNames_ref, jintArray uniformIndices_ref, jint uniformIndicesOffset) argument
80 android_glGetUniformIndices_buffer(JNIEnv *_env, jobject _this, jint program, jobjectArray uniformNames_ref, jobject uniformIndices_buf) argument
[all...]
/frameworks/native/opengl/tools/glgen/stubs/jsr239/
H A DglGetString.cpp2 static jstring android_glGetString(JNIEnv *_env, jobject, jint name) { argument
4 return _env->NewStringUTF(chars);
H A DGLCHeader.cpp85 nativeClassInit(JNIEnv *_env, jclass glImplClass) argument
87 jclass nioAccessClassLocal = _env->FindClass("java/nio/NIOAccess");
88 nioAccessClass = (jclass) _env->NewGlobalRef(nioAccessClassLocal);
90 jclass bufferClassLocal = _env->FindClass("java/nio/Buffer");
91 bufferClass = (jclass) _env->NewGlobalRef(bufferClassLocal);
93 jclass g11impClassLocal = _env->FindClass("com/google/android/gles_jni/GLImpl");
94 G11ImplClass = (jclass) _env->NewGlobalRef(g11impClassLocal);
95 haveCheckedExtensionsID = _env->GetFieldID(G11ImplClass, "haveCheckedExtensions", "Z");
96 have_OES_blend_equation_separateID = _env->GetFieldID(G11ImplClass, "have_OES_blend_equation_separate", "Z");
97 have_OES_blend_subtractID = _env
116 getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *offset) argument
146 releasePointer(JNIEnv *_env, jarray array, void *data, jboolean commit) argument
157 allowIndirectBuffers(JNIEnv *_env) argument
167 getDirectBufferPointer(JNIEnv *_env, jobject buffer) argument
243 supportsExtension(JNIEnv *_env, jobject impl, jfieldID fieldId) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_opengl_EGLExt.cpp62 nativeClassInit(JNIEnv *_env, jclass glImplClass) argument
64 jclass egldisplayClassLocal = _env->FindClass("android/opengl/EGLDisplay");
65 egldisplayClass = (jclass) _env->NewGlobalRef(egldisplayClassLocal);
66 jclass eglcontextClassLocal = _env->FindClass("android/opengl/EGLContext");
67 eglcontextClass = (jclass) _env->NewGlobalRef(eglcontextClassLocal);
68 jclass eglsurfaceClassLocal = _env->FindClass("android/opengl/EGLSurface");
69 eglsurfaceClass = (jclass) _env->NewGlobalRef(eglsurfaceClassLocal);
70 jclass eglconfigClassLocal = _env->FindClass("android/opengl/EGLConfig");
71 eglconfigClass = (jclass) _env->NewGlobalRef(eglconfigClassLocal);
73 egldisplayGetHandleID = _env
104 fromEGLHandle(JNIEnv *_env, jmethodID mid, jobject obj) argument
114 toEGLHandle(JNIEnv *_env, jclass cls, jmethodID con, void * handle) argument
136 android_eglPresentationTimeANDROID(JNIEnv *_env, jobject _this, jobject dpy, jobject sur, jlong time) argument
157 register_android_opengl_jni_EGLExt(JNIEnv *_env) argument
[all...]
H A Dcom_google_android_gles_jni_EGLImpl.cpp67 static void nativeClassInit(JNIEnv *_env, jclass eglImplClass) argument
69 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");
74 jclass display_class = _env->FindClass("com/google/android/gles_jni/EGLDisplayImpl");
75 gDisplay_EGLDisplayFieldID = _env->GetFieldID(display_class, "mEGLDisplay", "I");
77 jclass context_class = _env->FindClass("com/google/android/gles_jni/EGLContextImpl");
78 gContext_EGLContextFieldID = _env->GetFieldID(context_class, "mEGLContext", "I");
80 jclass surface_class = _env
90 validAttribList(JNIEnv *_env, jintArray attrib_list) argument
103 beginNativeAttribList(JNIEnv *_env, jintArray attrib_list) argument
111 endNativeAttributeList(JNIEnv *_env, jintArray attrib_list, jint* attrib_base) argument
117 jni_eglInitialize(JNIEnv *_env, jobject _this, jobject display, jintArray major_minor) argument
140 jni_eglQueryContext(JNIEnv *_env, jobject _this, jobject display, jobject context, jint attribute, jintArray value) argument
159 jni_eglQuerySurface(JNIEnv *_env, jobject _this, jobject display, jobject surface, jint attribute, jintArray value) argument
179 jni_getInitCount(JNIEnv *_env, jobject _clazz, jobject display) argument
185 jni_eglReleaseThread(JNIEnv *_env, jobject _this) argument
189 jni_eglChooseConfig(JNIEnv *_env, jobject _this, jobject display, jintArray attrib_list, jobjectArray configs, jint config_size, jintArray num_config) argument
224 jni_eglCreateContext(JNIEnv *_env, jobject _this, jobject display, jobject config, jobject share_context, jintArray attrib_list) argument
240 jni_eglCreatePbufferSurface(JNIEnv *_env, jobject _this, jobject display, jobject config, jintArray attrib_list) argument
265 jni_eglCreatePixmapSurface(JNIEnv *_env, jobject _this, jobject out_sur, jobject display, jobject config, jobject native_pixmap, jintArray attrib_list) argument
311 jni_eglCreateWindowSurface(JNIEnv *_env, jobject _this, jobject display, jobject config, jobject native_window, jintArray attrib_list) argument
338 jni_eglCreateWindowSurfaceTexture(JNIEnv *_env, jobject _this, jobject display, jobject config, jobject native_window, jintArray attrib_list) argument
366 jni_eglGetConfigAttrib(JNIEnv *_env, jobject _this, jobject display, jobject config, jint attribute, jintArray value) argument
384 jni_eglGetConfigs(JNIEnv *_env, jobject _this, jobject display, jobjectArray configs, jint config_size, jintArray num_config) argument
411 jni_eglGetError(JNIEnv *_env, jobject _this) argument
416 jni_eglGetCurrentContext(JNIEnv *_env, jobject _this) argument
420 jni_eglGetCurrentDisplay(JNIEnv *_env, jobject _this) argument
424 jni_eglGetCurrentSurface(JNIEnv *_env, jobject _this, jint readdraw) argument
432 jni_eglDestroyContext(JNIEnv *_env, jobject _this, jobject display, jobject context) argument
442 jni_eglDestroySurface(JNIEnv *_env, jobject _this, jobject display, jobject surface) argument
461 jni_eglGetDisplay(JNIEnv *_env, jobject _this, jobject native_display) argument
465 jni_eglMakeCurrent(JNIEnv *_env, jobject _this, jobject display, jobject draw, jobject read, jobject context) argument
477 jni_eglQueryString(JNIEnv *_env, jobject _this, jobject display, jint name) argument
487 jni_eglSwapBuffers(JNIEnv *_env, jobject _this, jobject display, jobject surface) argument
497 jni_eglTerminate(JNIEnv *_env, jobject _this, jobject display) argument
506 jni_eglCopyBuffers(JNIEnv *_env, jobject _this, jobject display, jobject surface, jobject native_pixmap) argument
516 jni_eglWaitGL(JNIEnv *_env, jobject _this) argument
520 jni_eglWaitNative(JNIEnv *_env, jobject _this, jint engine, jobject bindTarget) argument
567 register_com_google_android_gles_jni_EGLImpl(JNIEnv *_env) argument
[all...]
H A Dandroid_opengl_EGL14.cpp61 nativeClassInit(JNIEnv *_env, jclass glImplClass) argument
63 jclass egldisplayClassLocal = _env->FindClass("android/opengl/EGLDisplay");
64 egldisplayClass = (jclass) _env->NewGlobalRef(egldisplayClassLocal);
65 jclass eglcontextClassLocal = _env->FindClass("android/opengl/EGLContext");
66 eglcontextClass = (jclass) _env->NewGlobalRef(eglcontextClassLocal);
67 jclass eglsurfaceClassLocal = _env->FindClass("android/opengl/EGLSurface");
68 eglsurfaceClass = (jclass) _env->NewGlobalRef(eglsurfaceClassLocal);
69 jclass eglconfigClassLocal = _env->FindClass("android/opengl/EGLConfig");
70 eglconfigClass = (jclass) _env->NewGlobalRef(eglconfigClassLocal);
72 egldisplayGetHandleID = _env
103 fromEGLHandle(JNIEnv *_env, jmethodID mid, jobject obj) argument
113 toEGLHandle(JNIEnv *_env, jclass cls, jmethodID con, void * handle) argument
135 android_eglGetError(JNIEnv *_env, jobject _this) argument
144 android_eglGetDisplay(JNIEnv *_env, jobject _this, jint display_id) argument
155 android_eglInitialize(JNIEnv *_env, jobject _this, jobject dpy, jintArray major_ref, jint majorOffset, jintArray minor_ref, jint minorOffset) argument
238 android_eglTerminate(JNIEnv *_env, jobject _this, jobject dpy) argument
251 android_eglQueryString__Landroind_opengl_EGLDisplay_2I(JNIEnv *_env, jobject _this, jobject dpy, jint name) argument
261 android_eglGetConfigs(JNIEnv *_env, jobject _this, jobject dpy, jobjectArray configs_ref, jint configsOffset, jint config_size, jintArray num_config_ref, jint num_configOffset) argument
339 android_eglChooseConfig(JNIEnv *_env, jobject _this, jobject dpy, jintArray attrib_list_ref, jint attrib_listOffset, jobjectArray configs_ref, jint configsOffset, jint config_size, jintArray num_config_ref, jint num_configOffset) argument
462 android_eglGetConfigAttrib(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jint attribute, jintArray value_ref, jint offset) argument
517 android_eglCreateWindowSurface(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) argument
594 android_eglCreateWindowSurfaceTexture(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) argument
675 android_eglCreatePbufferSurface(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jintArray attrib_list_ref, jint offset) argument
737 android_eglCreatePixmapSurface(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jint pixmap, jintArray attrib_list_ref, jint offset) argument
746 android_eglDestroySurface(JNIEnv *_env, jobject _this, jobject dpy, jobject surface) argument
761 android_eglQuerySurface(JNIEnv *_env, jobject _this, jobject dpy, jobject surface, jint attribute, jintArray value_ref, jint offset) argument
816 android_eglBindAPI(JNIEnv *_env, jobject _this, jint api) argument
827 android_eglQueryAPI(JNIEnv *_env, jobject _this) argument
836 android_eglWaitClient(JNIEnv *_env, jobject _this) argument
845 android_eglReleaseThread(JNIEnv *_env, jobject _this) argument
854 android_eglCreatePbufferFromClientBuffer(JNIEnv *_env, jobject _this, jobject dpy, jint buftype, jint buffer, jobject config, jintArray attrib_list_ref, jint offset) argument
918 android_eglSurfaceAttrib(JNIEnv *_env, jobject _this, jobject dpy, jobject surface, jint attribute, jint value) argument
935 android_eglBindTexImage(JNIEnv *_env, jobject _this, jobject dpy, jobject surface, jint buffer) argument
951 android_eglReleaseTexImage(JNIEnv *_env, jobject _this, jobject dpy, jobject surface, jint buffer) argument
967 android_eglSwapInterval(JNIEnv *_env, jobject _this, jobject dpy, jint interval) argument
981 android_eglCreateContext(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject share_context, jintArray attrib_list_ref, jint offset) argument
1045 android_eglDestroyContext(JNIEnv *_env, jobject _this, jobject dpy, jobject ctx) argument
1060 android_eglMakeCurrent(JNIEnv *_env, jobject _this, jobject dpy, jobject draw, jobject read, jobject ctx) argument
1079 android_eglGetCurrentContext(JNIEnv *_env, jobject _this) argument
1088 android_eglGetCurrentSurface(JNIEnv *_env, jobject _this, jint readdraw) argument
1099 android_eglGetCurrentDisplay(JNIEnv *_env, jobject _this) argument
1108 android_eglQueryContext(JNIEnv *_env, jobject _this, jobject dpy, jobject ctx, jint attribute, jintArray value_ref, jint offset) argument
1163 android_eglWaitGL(JNIEnv *_env, jobject _this) argument
1172 android_eglWaitNative(JNIEnv *_env, jobject _this, jint engine) argument
1183 android_eglSwapBuffers(JNIEnv *_env, jobject _this, jobject dpy, jobject surface) argument
1198 android_eglCopyBuffers(JNIEnv *_env, jobject _this, jobject dpy, jobject surface, jint target) argument
1245 register_android_opengl_jni_EGL14(JNIEnv *_env) argument
[all...]
H A Dandroid_opengl_GLES20.cpp77 nativeClassInit(JNIEnv *_env, jclass glImplClass) argument
79 jclass nioAccessClassLocal = _env->FindClass("java/nio/NIOAccess");
80 nioAccessClass = (jclass) _env->NewGlobalRef(nioAccessClassLocal);
82 jclass bufferClassLocal = _env->FindClass("java/nio/Buffer");
83 bufferClass = (jclass) _env->NewGlobalRef(bufferClassLocal);
85 getBasePointerID = _env->GetStaticMethodID(nioAccessClass,
87 getBaseArrayID = _env->GetStaticMethodID(nioAccessClass,
89 getBaseArrayOffsetID = _env->GetStaticMethodID(nioAccessClass,
92 positionID = _env->GetFieldID(bufferClass, "position", "I");
93 limitID = _env
99 getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *offset) argument
126 releasePointer(JNIEnv *_env, jarray array, void *data, jboolean commit) argument
133 getDirectBufferPointer(JNIEnv *_env, jobject buffer) argument
230 get(JNIEnv *_env, jobject _this, jint pname, JTYPEARRAY params_ref, jint offset) argument
285 getarray(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
329 android_glActiveTexture__I(JNIEnv *_env, jobject _this, jint texture) argument
338 android_glAttachShader__II(JNIEnv *_env, jobject _this, jint program, jint shader) argument
348 android_glBindAttribLocation__IILjava_lang_String_2(JNIEnv *_env, jobject _this, jint program, jint index, jstring name) argument
380 android_glBindBuffer__II(JNIEnv *_env, jobject _this, jint target, jint buffer) argument
390 android_glBindFramebuffer__II(JNIEnv *_env, jobject _this, jint target, jint framebuffer) argument
400 android_glBindRenderbuffer__II(JNIEnv *_env, jobject _this, jint target, jint renderbuffer) argument
410 android_glBindTexture__II(JNIEnv *_env, jobject _this, jint target, jint texture) argument
420 android_glBlendColor__FFFF(JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) argument
432 android_glBlendEquation__I(JNIEnv *_env, jobject _this, jint mode) argument
441 android_glBlendEquationSeparate__II(JNIEnv *_env, jobject _this, jint modeRGB, jint modeAlpha) argument
451 android_glBlendFunc__II(JNIEnv *_env, jobject _this, jint sfactor, jint dfactor) argument
461 android_glBlendFuncSeparate__IIII(JNIEnv *_env, jobject _this, jint srcRGB, jint dstRGB, jint srcAlpha, jint dstAlpha) argument
473 android_glBufferData__IILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint target, jint size, jobject data_buf, jint usage) argument
514 android_glBufferSubData__IIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint offset, jint size, jobject data_buf) argument
553 android_glCheckFramebufferStatus__I(JNIEnv *_env, jobject _this, jint target) argument
564 android_glClear__I(JNIEnv *_env, jobject _this, jint mask) argument
573 android_glClearColor__FFFF(JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) argument
585 android_glClearDepthf__F(JNIEnv *_env, jobject _this, jfloat depth) argument
594 android_glClearStencil__I(JNIEnv *_env, jobject _this, jint s) argument
603 android_glColorMask__ZZZZ(JNIEnv *_env, jobject _this, jboolean red, jboolean green, jboolean blue, jboolean alpha) argument
615 android_glCompileShader__I(JNIEnv *_env, jobject _this, jint shader) argument
624 android_glCompressedTexImage2D__IIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint width, jint height, jint border, jint imageSize, jobject data_buf) argument
653 android_glCompressedTexSubImage2D__IIIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint width, jint height, jint format, jint imageSize, jobject data_buf) argument
683 android_glCopyTexImage2D__IIIIIIII(JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint x, jint y, jint width, jint height, jint border) argument
699 android_glCopyTexSubImage2D__IIIIIIII(JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint x, jint y, jint width, jint height) argument
715 android_glCreateProgram__(JNIEnv *_env, jobject _this) argument
724 android_glCreateShader__I(JNIEnv *_env, jobject _this, jint type) argument
735 android_glCullFace__I(JNIEnv *_env, jobject _this, jint mode) argument
744 android_glDeleteBuffers__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray buffers_ref, jint offset) argument
793 android_glDeleteBuffers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject buffers_buf) argument
830 android_glDeleteFramebuffers__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray framebuffers_ref, jint offset) argument
879 android_glDeleteFramebuffers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject framebuffers_buf) argument
916 android_glDeleteProgram__I(JNIEnv *_env, jobject _this, jint program) argument
925 android_glDeleteRenderbuffers__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray renderbuffers_ref, jint offset) argument
974 android_glDeleteRenderbuffers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject renderbuffers_buf) argument
1011 android_glDeleteShader__I(JNIEnv *_env, jobject _this, jint shader) argument
1020 android_glDeleteTextures__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray textures_ref, jint offset) argument
1069 android_glDeleteTextures__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject textures_buf) argument
1106 android_glDepthFunc__I(JNIEnv *_env, jobject _this, jint func) argument
1115 android_glDepthMask__Z(JNIEnv *_env, jobject _this, jboolean flag) argument
1124 android_glDepthRangef__FF(JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) argument
1134 android_glDetachShader__II(JNIEnv *_env, jobject _this, jint program, jint shader) argument
1144 android_glDisable__I(JNIEnv *_env, jobject _this, jint cap) argument
1153 android_glDisableVertexAttribArray__I(JNIEnv *_env, jobject _this, jint index) argument
1162 android_glDrawArrays__III(JNIEnv *_env, jobject _this, jint mode, jint first, jint count) argument
1173 android_glDrawElements__IIII(JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jint offset) argument
1191 android_glDrawElements__IIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jobject indices_buf) argument
1230 android_glEnable__I(JNIEnv *_env, jobject _this, jint cap) argument
1239 android_glEnableVertexAttribArray__I(JNIEnv *_env, jobject _this, jint index) argument
1248 android_glFinish__(JNIEnv *_env, jobject _this) argument
1255 android_glFlush__(JNIEnv *_env, jobject _this) argument
1262 android_glFramebufferRenderbuffer__IIII(JNIEnv *_env, jobject _this, jint target, jint attachment, jint renderbuffertarget, jint renderbuffer) argument
1274 android_glFramebufferTexture2D__IIIII(JNIEnv *_env, jobject _this, jint target, jint attachment, jint textarget, jint texture, jint level) argument
1287 android_glFrontFace__I(JNIEnv *_env, jobject _this, jint mode) argument
1296 android_glGenBuffers__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray buffers_ref, jint offset) argument
1345 android_glGenBuffers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject buffers_buf) argument
1382 android_glGenerateMipmap__I(JNIEnv *_env, jobject _this, jint target) argument
1391 android_glGenFramebuffers__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray framebuffers_ref, jint offset) argument
1440 android_glGenFramebuffers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject framebuffers_buf) argument
1477 android_glGenRenderbuffers__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray renderbuffers_ref, jint offset) argument
1526 android_glGenRenderbuffers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject renderbuffers_buf) argument
1563 android_glGenTextures__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray textures_ref, jint offset) argument
1612 android_glGenTextures__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject textures_buf) argument
1649 android_glGetActiveAttrib__III_3II_3II_3II_3BI(JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jintArray length_ref, jint lengthOffset, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset, jbyteArray name_ref, jint nameOffset) argument
1769 android_glGetActiveAttrib__IIILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2B(JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jobject length_buf, jobject size_buf, jobject type_buf, jbyte name) argument
1821 android_glGetActiveAttrib1(JNIEnv *_env, jobject _this, jint program, jint index, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset) argument
1916 android_glGetActiveAttrib2(JNIEnv *_env, jobject _this, jint program, jint index, jobject size_buf, jobject type_buf) argument
1977 android_glGetActiveUniform__III_3II_3II_3II_3BI(JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jintArray length_ref, jint lengthOffset, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset, jbyteArray name_ref, jint nameOffset) argument
2097 android_glGetActiveUniform__IIILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2B(JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jobject length_buf, jobject size_buf, jobject type_buf, jbyte name) argument
2149 android_glGetActiveUniform1(JNIEnv *_env, jobject _this, jint program, jint index, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset) argument
2247 android_glGetActiveUniform2(JNIEnv *_env, jobject _this, jint program, jint index, jobject size_buf, jobject type_buf) argument
2306 android_glGetAttachedShaders__II_3II_3II(JNIEnv *_env, jobject _this, jint program, jint maxcount, jintArray count_ref, jint countOffset, jintArray shaders_ref, jint shadersOffset) argument
2387 android_glGetAttachedShaders__IILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint program, jint maxcount, jobject count_buf, jobject shaders_buf) argument
2448 android_glGetAttribLocation__ILjava_lang_String_2(JNIEnv *_env, jobject _this, jint program, jstring name) argument
2481 android_glGetBooleanv__I_3ZI(JNIEnv *_env, jobject _this, jint pname, jbooleanArray params_ref, jint offset) argument
2488 android_glGetBooleanv__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
2494 android_glGetBufferParameteriv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
2544 android_glGetBufferParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
2582 android_glGetError__(JNIEnv *_env, jobject _this) argument
2591 android_glGetFloatv__I_3FI(JNIEnv *_env, jobject _this, jint pname, jfloatArray params_ref, jint offset) argument
2598 android_glGetFloatv__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
2604 android_glGetFramebufferAttachmentParameteriv__III_3II(JNIEnv *_env, jobject _this, jint target, jint attachment, jint pname, jintArray params_ref, jint offset) argument
2649 android_glGetFramebufferAttachmentParameteriv__IIILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint attachment, jint pname, jobject params_buf) argument
2674 android_glGetIntegerv__I_3II(JNIEnv *_env, jobject _this, jint pname, jintArray params_ref, jint offset) argument
2681 android_glGetIntegerv__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
2688 android_glGetProgramiv__II_3II(JNIEnv *_env, jobject _this, jint program, jint pname, jintArray params_ref, jint offset) argument
2738 android_glGetProgramiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint program, jint pname, jobject params_buf) argument
2777 android_glGetProgramInfoLog(JNIEnv *_env, jobject, jint shader) argument
2795 android_glGetRenderbufferParameteriv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
2845 android_glGetRenderbufferParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
2883 android_glGetShaderiv__II_3II(JNIEnv *_env, jobject _this, jint shader, jint pname, jintArray params_ref, jint offset) argument
2933 android_glGetShaderiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint shader, jint pname, jobject params_buf) argument
2972 android_glGetShaderInfoLog(JNIEnv *_env, jobject, jint shader) argument
2990 android_glGetShaderPrecisionFormat__II_3II_3II(JNIEnv *_env, jobject _this, jint shadertype, jint precisiontype, jintArray range_ref, jint rangeOffset, jintArray precision_ref, jint precisionOffset) argument
3071 android_glGetShaderPrecisionFormat__IILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint shadertype, jint precisiontype, jobject range_buf, jobject precision_buf) argument
3128 android_glGetShaderSource__II_3II_3BI(JNIEnv *_env, jobject _this, jint shader, jint bufsize, jintArray length_ref, jint lengthOffset, jbyteArray source_ref, jint sourceOffset) argument
3197 android_glGetShaderSource__IILjava_nio_IntBuffer_2B(JNIEnv *_env, jobject _this, jint shader, jint bufsize, jobject length_buf, jbyte source) argument
3221 android_glGetShaderSource(JNIEnv *_env, jobject, jint shader) argument
3238 android_glGetString(JNIEnv* _env, jobject, jint name) argument
3244 android_glGetTexParameterfv__II_3FI(JNIEnv *_env, jobject _this, jint target, jint pname, jfloatArray params_ref, jint offset) argument
3294 android_glGetTexParameterfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
3332 android_glGetTexParameteriv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
3382 android_glGetTexParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
3420 android_glGetUniformfv__II_3FI(JNIEnv *_env, jobject _this, jint program, jint location, jfloatArray params_ref, jint offset) argument
3470 android_glGetUniformfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jobject params_buf) argument
3508 android_glGetUniformiv__II_3II(JNIEnv *_env, jobject _this, jint program, jint location, jintArray params_ref, jint offset) argument
3558 android_glGetUniformiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jobject params_buf) argument
3596 android_glGetUniformLocation__ILjava_lang_String_2(JNIEnv *_env, jobject _this, jint program, jstring name) argument
3629 android_glGetVertexAttribfv__II_3FI(JNIEnv *_env, jobject _this, jint index, jint pname, jfloatArray params_ref, jint offset) argument
3690 android_glGetVertexAttribfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint index, jint pname, jobject params_buf) argument
3739 android_glGetVertexAttribiv__II_3II(JNIEnv *_env, jobject _this, jint index, jint pname, jintArray params_ref, jint offset) argument
3800 android_glGetVertexAttribiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint index, jint pname, jobject params_buf) argument
3849 android_glHint__II(JNIEnv *_env, jobject _this, jint target, jint mode) argument
3859 android_glIsBuffer__I(JNIEnv *_env, jobject _this, jint buffer) argument
3870 android_glIsEnabled__I(JNIEnv *_env, jobject _this, jint cap) argument
3881 android_glIsFramebuffer__I(JNIEnv *_env, jobject _this, jint framebuffer) argument
3892 android_glIsProgram__I(JNIEnv *_env, jobject _this, jint program) argument
3903 android_glIsRenderbuffer__I(JNIEnv *_env, jobject _this, jint renderbuffer) argument
3914 android_glIsShader__I(JNIEnv *_env, jobject _this, jint shader) argument
3925 android_glIsTexture__I(JNIEnv *_env, jobject _this, jint texture) argument
3936 android_glLineWidth__F(JNIEnv *_env, jobject _this, jfloat width) argument
3945 android_glLinkProgram__I(JNIEnv *_env, jobject _this, jint program) argument
3954 android_glPixelStorei__II(JNIEnv *_env, jobject _this, jint pname, jint param) argument
3964 android_glPolygonOffset__FF(JNIEnv *_env, jobject _this, jfloat factor, jfloat units) argument
3974 android_glReadPixels__IIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint x, jint y, jint width, jint height, jint format, jint type, jobject pixels_buf) argument
4002 android_glReleaseShaderCompiler__(JNIEnv *_env, jobject _this) argument
4009 android_glRenderbufferStorage__IIII(JNIEnv *_env, jobject _this, jint target, jint internalformat, jint width, jint height) argument
4021 android_glSampleCoverage__FZ(JNIEnv *_env, jobject _this, jfloat value, jboolean invert) argument
4031 android_glScissor__IIII(JNIEnv *_env, jobject _this, jint x, jint y, jint width, jint height) argument
4043 android_glShaderBinary__I_3IIILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint n, jintArray shaders_ref, jint offset, jint binaryformat, jobject binary_buf, jint length) argument
4107 android_glShaderBinary__ILjava_nio_IntBuffer_2ILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint n, jobject shaders_buf, jint binaryformat, jobject binary_buf, jint length) argument
4161 android_glShaderSource(JNIEnv *_env, jobject _this, jint shader, jstring string) argument
4176 android_glStencilFunc__III(JNIEnv *_env, jobject _this, jint func, jint ref, jint mask) argument
4187 android_glStencilFuncSeparate__IIII(JNIEnv *_env, jobject _this, jint face, jint func, jint ref, jint mask) argument
4199 android_glStencilMask__I(JNIEnv *_env, jobject _this, jint mask) argument
4208 android_glStencilMaskSeparate__II(JNIEnv *_env, jobject _this, jint face, jint mask) argument
4218 android_glStencilOp__III(JNIEnv *_env, jobject _this, jint fail, jint zfail, jint zpass) argument
4229 android_glStencilOpSeparate__IIII(JNIEnv *_env, jobject _this, jint face, jint fail, jint zfail, jint zpass) argument
4241 android_glTexImage2D__IIIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint width, jint height, jint border, jint format, jint type, jobject pixels_buf) argument
4273 android_glTexParameterf__IIF(JNIEnv *_env, jobject _this, jint target, jint pname, jfloat param) argument
4284 android_glTexParameterfv__II_3FI(JNIEnv *_env, jobject _this, jint target, jint pname, jfloatArray params_ref, jint offset) argument
4334 android_glTexParameterfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
4372 android_glTexParameteri__III(JNIEnv *_env, jobject _this, jint target, jint pname, jint param) argument
4383 android_glTexParameteriv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
4433 android_glTexParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
4471 android_glTexSubImage2D__IIIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint width, jint height, jint format, jint type, jobject pixels_buf) argument
4503 android_glUniform1f__IF(JNIEnv *_env, jobject _this, jint location, jfloat x) argument
4513 android_glUniform1fv__II_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jfloatArray v_ref, jint offset) argument
4563 android_glUniform1fv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject v_buf) argument
4601 android_glUniform1i__II(JNIEnv *_env, jobject _this, jint location, jint x) argument
4611 android_glUniform1iv__II_3II(JNIEnv *_env, jobject _this, jint location, jint count, jintArray v_ref, jint offset) argument
4661 android_glUniform1iv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject v_buf) argument
4699 android_glUniform2f__IFF(JNIEnv *_env, jobject _this, jint location, jfloat x, jfloat y) argument
4710 android_glUniform2fv__II_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jfloatArray v_ref, jint offset) argument
4760 android_glUniform2fv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject v_buf) argument
4798 android_glUniform2i__III(JNIEnv *_env, jobject _this, jint location, jint x, jint y) argument
4809 android_glUniform2iv__II_3II(JNIEnv *_env, jobject _this, jint location, jint count, jintArray v_ref, jint offset) argument
4859 android_glUniform2iv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject v_buf) argument
4897 android_glUniform3f__IFFF(JNIEnv *_env, jobject _this, jint location, jfloat x, jfloat y, jfloat z) argument
4909 android_glUniform3fv__II_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jfloatArray v_ref, jint offset) argument
4959 android_glUniform3fv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject v_buf) argument
4997 android_glUniform3i__IIII(JNIEnv *_env, jobject _this, jint location, jint x, jint y, jint z) argument
5009 android_glUniform3iv__II_3II(JNIEnv *_env, jobject _this, jint location, jint count, jintArray v_ref, jint offset) argument
5059 android_glUniform3iv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject v_buf) argument
5097 android_glUniform4f__IFFFF(JNIEnv *_env, jobject _this, jint location, jfloat x, jfloat y, jfloat z, jfloat w) argument
5110 android_glUniform4fv__II_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jfloatArray v_ref, jint offset) argument
5160 android_glUniform4fv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject v_buf) argument
5198 android_glUniform4i__IIIII(JNIEnv *_env, jobject _this, jint location, jint x, jint y, jint z, jint w) argument
5211 android_glUniform4iv__II_3II(JNIEnv *_env, jobject _this, jint location, jint count, jintArray v_ref, jint offset) argument
5261 android_glUniform4iv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject v_buf) argument
5299 android_glUniformMatrix2fv__IIZ_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
5350 android_glUniformMatrix2fv__IIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) argument
5389 android_glUniformMatrix3fv__IIZ_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
5440 android_glUniformMatrix3fv__IIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) argument
5479 android_glUniformMatrix4fv__IIZ_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
5530 android_glUniformMatrix4fv__IIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) argument
5569 android_glUseProgram__I(JNIEnv *_env, jobject _this, jint program) argument
5578 android_glValidateProgram__I(JNIEnv *_env, jobject _this, jint program) argument
5587 android_glVertexAttrib1f__IF(JNIEnv *_env, jobject _this, jint indx, jfloat x) argument
5597 android_glVertexAttrib1fv__I_3FI(JNIEnv *_env, jobject _this, jint indx, jfloatArray values_ref, jint offset) argument
5646 android_glVertexAttrib1fv__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint indx, jobject values_buf) argument
5683 android_glVertexAttrib2f__IFF(JNIEnv *_env, jobject _this, jint indx, jfloat x, jfloat y) argument
5694 android_glVertexAttrib2fv__I_3FI(JNIEnv *_env, jobject _this, jint indx, jfloatArray values_ref, jint offset) argument
5743 android_glVertexAttrib2fv__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint indx, jobject values_buf) argument
5780 android_glVertexAttrib3f__IFFF(JNIEnv *_env, jobject _this, jint indx, jfloat x, jfloat y, jfloat z) argument
5792 android_glVertexAttrib3fv__I_3FI(JNIEnv *_env, jobject _this, jint indx, jfloatArray values_ref, jint offset) argument
5841 android_glVertexAttrib3fv__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint indx, jobject values_buf) argument
5878 android_glVertexAttrib4f__IFFFF(JNIEnv *_env, jobject _this, jint indx, jfloat x, jfloat y, jfloat z, jfloat w) argument
5891 android_glVertexAttrib4fv__I_3FI(JNIEnv *_env, jobject _this, jint indx, jfloatArray values_ref, jint offset) argument
5940 android_glVertexAttrib4fv__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint indx, jobject values_buf) argument
5977 android_glVertexAttribPointer__IIIZII(JNIEnv *_env, jobject _this, jint indx, jint size, jint type, jboolean normalized, jint stride, jint offset) argument
5991 android_glVertexAttribPointerBounds__IIIZILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint indx, jint size, jint type, jboolean normalized, jint stride, jobject ptr_buf, jint remaining) argument
6017 android_glViewport__IIII(JNIEnv *_env, jobject _this, jint x, jint y, jint width, jint height) argument
6226 register_android_opengl_jni_GLES20(JNIEnv *_env) argument
[all...]
H A Dandroid_opengl_GLES30.cpp77 nativeClassInit(JNIEnv *_env, jclass glImplClass) argument
79 jclass nioAccessClassLocal = _env->FindClass("java/nio/NIOAccess");
80 nioAccessClass = (jclass) _env->NewGlobalRef(nioAccessClassLocal);
82 jclass bufferClassLocal = _env->FindClass("java/nio/Buffer");
83 bufferClass = (jclass) _env->NewGlobalRef(bufferClassLocal);
85 getBasePointerID = _env->GetStaticMethodID(nioAccessClass,
87 getBaseArrayID = _env->GetStaticMethodID(nioAccessClass,
89 getBaseArrayOffsetID = _env->GetStaticMethodID(nioAccessClass,
92 positionID = _env->GetFieldID(bufferClass, "position", "I");
93 limitID = _env
99 getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *offset) argument
126 releasePointer(JNIEnv *_env, jarray array, void *data, jboolean commit) argument
133 getDirectBufferPointer(JNIEnv *_env, jobject buffer) argument
230 get(JNIEnv *_env, jobject _this, jint pname, JTYPEARRAY params_ref, jint offset) argument
285 getarray(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
329 android_glReadBuffer__I(JNIEnv *_env, jobject _this, jint mode) argument
338 android_glDrawRangeElements__IIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint mode, jint start, jint end, jint count, jint type, jobject indices_buf) argument
365 android_glDrawRangeElements__IIIIII(JNIEnv *_env, jobject _this, jint mode, jint start, jint end, jint count, jint type, jint offset) argument
379 android_glTexImage3D__IIIIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint width, jint height, jint depth, jint border, jint format, jint type, jobject pixels_buf) argument
410 android_glTexImage3D__IIIIIIIIII(JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint width, jint height, jint depth, jint border, jint format, jint type, jint offset) argument
428 android_glTexSubImage3D__IIIIIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint zoffset, jint width, jint height, jint depth, jint format, jint type, jobject pixels_buf) argument
460 android_glTexSubImage3D__IIIIIIIIIII(JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint zoffset, jint width, jint height, jint depth, jint format, jint type, jint offset) argument
479 android_glCopyTexSubImage3D__IIIIIIIII(JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint zoffset, jint x, jint y, jint width, jint height) argument
496 android_glCompressedTexImage3D__IIIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint width, jint height, jint depth, jint border, jint imageSize, jobject data_buf) argument
526 android_glCompressedTexImage3D__IIIIIIIII(JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint width, jint height, jint depth, jint border, jint imageSize, jint offset) argument
543 android_glCompressedTexSubImage3D__IIIIIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint zoffset, jint width, jint height, jint depth, jint format, jint imageSize, jobject data_buf) argument
575 android_glCompressedTexSubImage3D__IIIIIIIIIII(JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint zoffset, jint width, jint height, jint depth, jint format, jint imageSize, jint offset) argument
594 android_glGenQueries__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray ids_ref, jint offset) argument
637 android_glGenQueries__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject ids_buf) argument
660 android_glDeleteQueries__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray ids_ref, jint offset) argument
703 android_glDeleteQueries__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject ids_buf) argument
726 android_glIsQuery__I(JNIEnv *_env, jobject _this, jint id) argument
737 android_glBeginQuery__II(JNIEnv *_env, jobject _this, jint target, jint id) argument
747 android_glEndQuery__I(JNIEnv *_env, jobject _this, jint target) argument
756 android_glGetQueryiv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
800 android_glGetQueryiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
824 android_glGetQueryObjectuiv__II_3II(JNIEnv *_env, jobject _this, jint id, jint pname, jintArray params_ref, jint offset) argument
868 android_glGetQueryObjectuiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint id, jint pname, jobject params_buf) argument
892 android_glUnmapBuffer__I(JNIEnv *_env, jobject _this, jint target) argument
903 android_glGetBufferPointerv__II(JNIEnv *_env, jobject _this, jint target, jint pname) argument
914 android_glDrawBuffers__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray bufs_ref, jint offset) argument
957 android_glDrawBuffers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject bufs_buf) argument
980 android_glUniformMatrix2x3fv__IIZ_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
1025 android_glUniformMatrix2x3fv__IIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) argument
1050 android_glUniformMatrix3x2fv__IIZ_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
1095 android_glUniformMatrix3x2fv__IIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) argument
1120 android_glUniformMatrix2x4fv__IIZ_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
1165 android_glUniformMatrix2x4fv__IIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) argument
1190 android_glUniformMatrix4x2fv__IIZ_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
1235 android_glUniformMatrix4x2fv__IIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) argument
1260 android_glUniformMatrix3x4fv__IIZ_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
1305 android_glUniformMatrix3x4fv__IIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) argument
1330 android_glUniformMatrix4x3fv__IIZ_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
1375 android_glUniformMatrix4x3fv__IIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) argument
1400 android_glBlitFramebuffer__IIIIIIIIII(JNIEnv *_env, jobject _this, jint srcX0, jint srcY0, jint srcX1, jint srcY1, jint dstX0, jint dstY0, jint dstX1, jint dstY1, jint mask, jint filter) argument
1418 android_glRenderbufferStorageMultisample__IIIII(JNIEnv *_env, jobject _this, jint target, jint samples, jint internalformat, jint width, jint height) argument
1431 android_glFramebufferTextureLayer__IIIII(JNIEnv *_env, jobject _this, jint target, jint attachment, jint texture, jint level, jint layer) argument
1444 android_glMapBufferRange__IIII(JNIEnv *_env, jobject _this, jint target, jint offset, jint length, jint access) argument
1457 android_glFlushMappedBufferRange__III(JNIEnv *_env, jobject _this, jint target, jint offset, jint length) argument
1468 android_glBindVertexArray__I(JNIEnv *_env, jobject _this, jint array) argument
1477 android_glDeleteVertexArrays__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray arrays_ref, jint offset) argument
1520 android_glDeleteVertexArrays__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject arrays_buf) argument
1543 android_glGenVertexArrays__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray arrays_ref, jint offset) argument
1586 android_glGenVertexArrays__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject arrays_buf) argument
1609 android_glIsVertexArray__I(JNIEnv *_env, jobject _this, jint array) argument
1620 android_glGetIntegeri_v__II_3II(JNIEnv *_env, jobject _this, jint target, jint index, jintArray data_ref, jint offset) argument
1664 android_glGetIntegeri_v__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint index, jobject data_buf) argument
1688 android_glBeginTransformFeedback__I(JNIEnv *_env, jobject _this, jint primitiveMode) argument
1697 android_glEndTransformFeedback__(JNIEnv *_env, jobject _this) argument
1704 android_glBindBufferRange__IIIII(JNIEnv *_env, jobject _this, jint target, jint index, jint buffer, jint offset, jint size) argument
1717 android_glBindBufferBase__III(JNIEnv *_env, jobject _this, jint target, jint index, jint buffer) argument
1729 android_glTransformFeedbackVaryings(JNIEnv *_env, jobject _this, jint program, jobjectArray varyings_ref, jint bufferMode) argument
1777 android_glGetTransformFeedbackVarying__III_3II_3II_3II_3BI(JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jintArray length_ref, jint lengthOffset, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset, jbyteArray name_ref, jint nameOffset) argument
1897 android_glGetTransformFeedbackVarying__IIILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2B(JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jobject length_buf, jobject size_buf, jobject type_buf, jbyte name) argument
1949 android_glGetTransformFeedbackVarying1(JNIEnv *_env, jobject _this, jint program, jint index, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset) argument
2044 android_glGetTransformFeedbackVarying2(JNIEnv *_env, jobject _this, jint program, jint index, jobject size_buf, jobject type_buf) argument
2105 android_glVertexAttribIPointerBounds__IIIILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint index, jint size, jint type, jint stride, jobject pointer_buf, jint remaining) argument
2130 android_glVertexAttribIPointer__IIIII(JNIEnv *_env, jobject _this, jint index, jint size, jint type, jint stride, jint offset) argument
2143 android_glGetVertexAttribIiv__II_3II(JNIEnv *_env, jobject _this, jint index, jint pname, jintArray params_ref, jint offset) argument
2187 android_glGetVertexAttribIiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint index, jint pname, jobject params_buf) argument
2211 android_glGetVertexAttribIuiv__II_3II(JNIEnv *_env, jobject _this, jint index, jint pname, jintArray params_ref, jint offset) argument
2255 android_glGetVertexAttribIuiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint index, jint pname, jobject params_buf) argument
2279 android_glVertexAttribI4i__IIIII(JNIEnv *_env, jobject _this, jint index, jint x, jint y, jint z, jint w) argument
2292 android_glVertexAttribI4ui__IIIII(JNIEnv *_env, jobject _this, jint index, jint x, jint y, jint z, jint w) argument
2305 android_glVertexAttribI4iv__I_3II(JNIEnv *_env, jobject _this, jint index, jintArray v_ref, jint offset) argument
2348 android_glVertexAttribI4iv__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint index, jobject v_buf) argument
2371 android_glVertexAttribI4uiv__I_3II(JNIEnv *_env, jobject _this, jint index, jintArray v_ref, jint offset) argument
2414 android_glVertexAttribI4uiv__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint index, jobject v_buf) argument
2437 android_glGetUniformuiv__II_3II(JNIEnv *_env, jobject _this, jint program, jint location, jintArray params_ref, jint offset) argument
2481 android_glGetUniformuiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jobject params_buf) argument
2505 android_glGetFragDataLocation__ILjava_lang_String_2(JNIEnv *_env, jobject _this, jint program, jstring name) argument
2538 android_glUniform1ui__II(JNIEnv *_env, jobject _this, jint location, jint v0) argument
2548 android_glUniform2ui__III(JNIEnv *_env, jobject _this, jint location, jint v0, jint v1) argument
2559 android_glUniform3ui__IIII(JNIEnv *_env, jobject _this, jint location, jint v0, jint v1, jint v2) argument
2571 android_glUniform4ui__IIIII(JNIEnv *_env, jobject _this, jint location, jint v0, jint v1, jint v2, jint v3) argument
2584 android_glUniform1uiv__II_3II(JNIEnv *_env, jobject _this, jint location, jint count, jintArray value_ref, jint offset) argument
2628 android_glUniform1uiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject value_buf) argument
2652 android_glUniform2uiv__II_3II(JNIEnv *_env, jobject _this, jint location, jint count, jintArray value_ref, jint offset) argument
2696 android_glUniform2uiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject value_buf) argument
2720 android_glUniform3uiv__II_3II(JNIEnv *_env, jobject _this, jint location, jint count, jintArray value_ref, jint offset) argument
2764 android_glUniform3uiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject value_buf) argument
2788 android_glUniform4uiv__II_3II(JNIEnv *_env, jobject _this, jint location, jint count, jintArray value_ref, jint offset) argument
2832 android_glUniform4uiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject value_buf) argument
2856 android_glClearBufferiv__II_3II(JNIEnv *_env, jobject _this, jint buffer, jint drawbuffer, jintArray value_ref, jint offset) argument
2900 android_glClearBufferiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint buffer, jint drawbuffer, jobject value_buf) argument
2924 android_glClearBufferuiv__II_3II(JNIEnv *_env, jobject _this, jint buffer, jint drawbuffer, jintArray value_ref, jint offset) argument
2968 android_glClearBufferuiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint buffer, jint drawbuffer, jobject value_buf) argument
2992 android_glClearBufferfv__II_3FI(JNIEnv *_env, jobject _this, jint buffer, jint drawbuffer, jfloatArray value_ref, jint offset) argument
3036 android_glClearBufferfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint buffer, jint drawbuffer, jobject value_buf) argument
3060 android_glClearBufferfi__IIFI(JNIEnv *_env, jobject _this, jint buffer, jint drawbuffer, jfloat depth, jint stencil) argument
3072 android_glGetStringi__II(JNIEnv *_env, jobject _this, jint name, jint index) argument
3080 android_glCopyBufferSubData__IIIII(JNIEnv *_env, jobject _this, jint readTarget, jint writeTarget, jint readOffset, jint writeOffset, jint size) argument
3094 android_glGetUniformIndices_array(JNIEnv *_env, jobject _this, jint program, jobjectArray uniformNames_ref, jintArray uniformIndices_ref, jint uniformIndicesOffset) argument
3170 android_glGetUniformIndices_buffer(JNIEnv *_env, jobject _this, jint program, jobjectArray uniformNames_ref, jobject uniformIndices_buf) argument
3247 android_glGetActiveUniformsiv__II_3III_3II(JNIEnv *_env, jobject _this, jint program, jint uniformCount, jintArray uniformIndices_ref, jint uniformIndicesOffset, jint pname, jintArray params_ref, jint paramsOffset) argument
3317 android_glGetActiveUniformsiv__IILjava_nio_IntBuffer_2ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint program, jint uniformCount, jobject uniformIndices_buf, jint pname, jobject params_buf) argument
3355 android_glGetUniformBlockIndex__ILjava_lang_String_2(JNIEnv *_env, jobject _this, jint program, jstring uniformBlockName) argument
3388 android_glGetActiveUniformBlockiv__III_3II(JNIEnv *_env, jobject _this, jint program, jint uniformBlockIndex, jint pname, jintArray params_ref, jint offset) argument
3433 android_glGetActiveUniformBlockiv__IIILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint program, jint uniformBlockIndex, jint pname, jobject params_buf) argument
3458 android_glGetActiveUniformBlockName_III_3II_3BI(JNIEnv* _env, jobject _this, jint program, jint uniformBlockIndex, int bufSize, jintArray length_ref, jint lengthOffset, jbyteArray name_ref, jint nameOffset) argument
3528 android_glGetActiveUniformBlockName_IILjava_nio_Buffer_2Ljava_nio_Buffer_2(JNIEnv* _env, jobject _this, jint program, jint uniformBlockIndex, jobject length_buf, jobject uniformBlockName_buf) argument
3570 android_glGetActiveUniformBlockName_II(JNIEnv *_env, jobject _this, jint program, jint uniformBlockIndex) argument
3585 android_glUniformBlockBinding__III(JNIEnv *_env, jobject _this, jint program, jint uniformBlockIndex, jint uniformBlockBinding) argument
3596 android_glDrawArraysInstanced__IIII(JNIEnv *_env, jobject _this, jint mode, jint first, jint count, jint instanceCount) argument
3608 android_glDrawElementsInstanced__IIILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jobject indices_buf, jint instanceCount) argument
3634 android_glDrawElementsInstanced__IIIII(JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jint indicesOffset, jint instanceCount) argument
3647 android_glFenceSync__II(JNIEnv *_env, jobject _this, jint condition, jint flags) argument
3659 android_glIsSync__J(JNIEnv *_env, jobject _this, jlong sync) argument
3670 android_glDeleteSync__J(JNIEnv *_env, jobject _this, jlong sync) argument
3679 android_glClientWaitSync__JIJ(JNIEnv *_env, jobject _this, jlong sync, jint flags, jlong timeout) argument
3692 android_glWaitSync__JIJ(JNIEnv *_env, jobject _this, jlong sync, jint flags, jlong timeout) argument
3703 android_glGetInteger64v__I_3JI(JNIEnv *_env, jobject _this, jint pname, jlongArray params_ref, jint offset) argument
3746 android_glGetInteger64v__ILjava_nio_LongBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
3769 android_glGetSynciv__JII_3II_3II(JNIEnv *_env, jobject _this, jlong sync, jint pname, jint bufSize, jintArray length_ref, jint lengthOffset, jintArray values_ref, jint valuesOffset) argument
3839 android_glGetSynciv__JIILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jlong sync, jint pname, jint bufSize, jobject length_buf, jobject values_buf) argument
3877 android_glGetInteger64i_v__II_3JI(JNIEnv *_env, jobject _this, jint target, jint index, jlongArray data_ref, jint offset) argument
3921 android_glGetInteger64i_v__IILjava_nio_LongBuffer_2(JNIEnv *_env, jobject _this, jint target, jint index, jobject data_buf) argument
3945 android_glGetBufferParameteri64v__II_3JI(JNIEnv *_env, jobject _this, jint target, jint pname, jlongArray params_ref, jint offset) argument
3989 android_glGetBufferParameteri64v__IILjava_nio_LongBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
4013 android_glGenSamplers__I_3II(JNIEnv *_env, jobject _this, jint count, jintArray samplers_ref, jint offset) argument
4056 android_glGenSamplers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint count, jobject samplers_buf) argument
4079 android_glDeleteSamplers__I_3II(JNIEnv *_env, jobject _this, jint count, jintArray samplers_ref, jint offset) argument
4122 android_glDeleteSamplers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint count, jobject samplers_buf) argument
4145 android_glIsSampler__I(JNIEnv *_env, jobject _this, jint sampler) argument
4156 android_glBindSampler__II(JNIEnv *_env, jobject _this, jint unit, jint sampler) argument
4166 android_glSamplerParameteri__III(JNIEnv *_env, jobject _this, jint sampler, jint pname, jint param) argument
4177 android_glSamplerParameteriv__II_3II(JNIEnv *_env, jobject _this, jint sampler, jint pname, jintArray param_ref, jint offset) argument
4221 android_glSamplerParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject param_buf) argument
4245 android_glSamplerParameterf__IIF(JNIEnv *_env, jobject _this, jint sampler, jint pname, jfloat param) argument
4256 android_glSamplerParameterfv__II_3FI(JNIEnv *_env, jobject _this, jint sampler, jint pname, jfloatArray param_ref, jint offset) argument
4300 android_glSamplerParameterfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject param_buf) argument
4324 android_glGetSamplerParameteriv__II_3II(JNIEnv *_env, jobject _this, jint sampler, jint pname, jintArray params_ref, jint offset) argument
4368 android_glGetSamplerParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject params_buf) argument
4392 android_glGetSamplerParameterfv__II_3FI(JNIEnv *_env, jobject _this, jint sampler, jint pname, jfloatArray params_ref, jint offset) argument
4436 android_glGetSamplerParameterfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject params_buf) argument
4460 android_glVertexAttribDivisor__II(JNIEnv *_env, jobject _this, jint index, jint divisor) argument
4470 android_glBindTransformFeedback__II(JNIEnv *_env, jobject _this, jint target, jint id) argument
4480 android_glDeleteTransformFeedbacks__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray ids_ref, jint offset) argument
4523 android_glDeleteTransformFeedbacks__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject ids_buf) argument
4546 android_glGenTransformFeedbacks__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray ids_ref, jint offset) argument
4589 android_glGenTransformFeedbacks__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject ids_buf) argument
4612 android_glIsTransformFeedback__I(JNIEnv *_env, jobject _this, jint id) argument
4623 android_glPauseTransformFeedback__(JNIEnv *_env, jobject _this) argument
4630 android_glResumeTransformFeedback__(JNIEnv *_env, jobject _this) argument
4637 android_glGetProgramBinary__II_3II_3IILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint program, jint bufSize, jintArray length_ref, jint lengthOffset, jintArray binaryFormat_ref, jint binaryFormatOffset, jobject binary_buf) argument
4719 android_glGetProgramBinary__IILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2Ljava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint program, jint bufSize, jobject length_buf, jobject binaryFormat_buf, jobject binary_buf) argument
4769 android_glProgramBinary__IILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint program, jint binaryFormat, jobject binary_buf, jint length) argument
4794 android_glProgramParameteri__III(JNIEnv *_env, jobject _this, jint program, jint pname, jint value) argument
4805 android_glInvalidateFramebuffer__II_3II(JNIEnv *_env, jobject _this, jint target, jint numAttachments, jintArray attachments_ref, jint offset) argument
4849 android_glInvalidateFramebuffer__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint numAttachments, jobject attachments_buf) argument
4873 android_glInvalidateSubFramebuffer__II_3IIIIII(JNIEnv *_env, jobject _this, jint target, jint numAttachments, jintArray attachments_ref, jint offset, jint x, jint y, jint width, jint height) argument
4921 android_glInvalidateSubFramebuffer__IILjava_nio_IntBuffer_2IIII(JNIEnv *_env, jobject _this, jint target, jint numAttachments, jobject attachments_buf, jint x, jint y, jint width, jint height) argument
4949 android_glTexStorage2D__IIIII(JNIEnv *_env, jobject _this, jint target, jint levels, jint internalformat, jint width, jint height) argument
4962 android_glTexStorage3D__IIIIII(JNIEnv *_env, jobject _this, jint target, jint levels, jint internalformat, jint width, jint height, jint depth) argument
4976 android_glGetInternalformativ__IIII_3II(JNIEnv *_env, jobject _this, jint target, jint internalformat, jint pname, jint bufSize, jintArray params_ref, jint offset) argument
5022 android_glGetInternalformativ__IIIILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint internalformat, jint pname, jint bufSize, jobject params_buf) argument
5213 register_android_opengl_jni_GLES30(JNIEnv *_env) argument
[all...]
H A Dcom_google_android_gles_jni_GLImpl.cpp86 nativeClassInit(JNIEnv *_env, jclass glImplClass) argument
88 jclass nioAccessClassLocal = _env->FindClass("java/nio/NIOAccess");
89 nioAccessClass = (jclass) _env->NewGlobalRef(nioAccessClassLocal);
91 jclass bufferClassLocal = _env->FindClass("java/nio/Buffer");
92 bufferClass = (jclass) _env->NewGlobalRef(bufferClassLocal);
94 jclass g11impClassLocal = _env->FindClass("com/google/android/gles_jni/GLImpl");
95 G11ImplClass = (jclass) _env->NewGlobalRef(g11impClassLocal);
96 haveCheckedExtensionsID = _env->GetFieldID(G11ImplClass, "haveCheckedExtensions", "Z");
97 have_OES_blend_equation_separateID = _env->GetFieldID(G11ImplClass, "have_OES_blend_equation_separate", "Z");
98 have_OES_blend_subtractID = _env
117 getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *offset) argument
147 releasePointer(JNIEnv *_env, jarray array, void *data, jboolean commit) argument
158 allowIndirectBuffers(JNIEnv *_env) argument
168 getDirectBufferPointer(JNIEnv *_env, jobject buffer) argument
244 supportsExtension(JNIEnv *_env, jobject impl, jfieldID fieldId) argument
263 android_glActiveTexture__I(JNIEnv *_env, jobject _this, jint texture) argument
272 android_glAlphaFunc__IF(JNIEnv *_env, jobject _this, jint func, jfloat ref) argument
282 android_glAlphaFuncx__II(JNIEnv *_env, jobject _this, jint func, jint ref) argument
292 android_glBindTexture__II(JNIEnv *_env, jobject _this, jint target, jint texture) argument
302 android_glBlendFunc__II(JNIEnv *_env, jobject _this, jint sfactor, jint dfactor) argument
312 android_glClear__I(JNIEnv *_env, jobject _this, jint mask) argument
321 android_glClearColor__FFFF(JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) argument
333 android_glClearColorx__IIII(JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) argument
345 android_glClearDepthf__F(JNIEnv *_env, jobject _this, jfloat depth) argument
354 android_glClearDepthx__I(JNIEnv *_env, jobject _this, jint depth) argument
363 android_glClearStencil__I(JNIEnv *_env, jobject _this, jint s) argument
372 android_glClientActiveTexture__I(JNIEnv *_env, jobject _this, jint texture) argument
381 android_glColor4f__FFFF(JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) argument
393 android_glColor4x__IIII(JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) argument
405 android_glColorMask__ZZZZ(JNIEnv *_env, jobject _this, jboolean red, jboolean green, jboolean blue, jboolean alpha) argument
417 android_glColorPointerBounds__IIILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint size, jint type, jint stride, jobject pointer_buf, jint remaining) argument
441 android_glCompressedTexImage2D__IIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint width, jint height, jint border, jint imageSize, jobject data_buf) argument
470 android_glCompressedTexSubImage2D__IIIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint width, jint height, jint format, jint imageSize, jobject data_buf) argument
500 android_glCopyTexImage2D__IIIIIIII(JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint x, jint y, jint width, jint height, jint border) argument
516 android_glCopyTexSubImage2D__IIIIIIII(JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint x, jint y, jint width, jint height) argument
532 android_glCullFace__I(JNIEnv *_env, jobject _this, jint mode) argument
541 android_glDeleteTextures__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray textures_ref, jint offset) argument
590 android_glDeleteTextures__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject textures_buf) argument
627 android_glDepthFunc__I(JNIEnv *_env, jobject _this, jint func) argument
636 android_glDepthMask__Z(JNIEnv *_env, jobject _this, jboolean flag) argument
645 android_glDepthRangef__FF(JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) argument
655 android_glDepthRangex__II(JNIEnv *_env, jobject _this, jint zNear, jint zFar) argument
665 android_glDisable__I(JNIEnv *_env, jobject _this, jint cap) argument
674 android_glDisableClientState__I(JNIEnv *_env, jobject _this, jint array) argument
683 android_glDrawArrays__III(JNIEnv *_env, jobject _this, jint mode, jint first, jint count) argument
694 android_glDrawElements__IIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jobject indices_buf) argument
733 android_glEnable__I(JNIEnv *_env, jobject _this, jint cap) argument
742 android_glEnableClientState__I(JNIEnv *_env, jobject _this, jint array) argument
751 android_glFinish__(JNIEnv *_env, jobject _this) argument
758 android_glFlush__(JNIEnv *_env, jobject _this) argument
765 android_glFogf__IF(JNIEnv *_env, jobject _this, jint pname, jfloat param) argument
775 android_glFogfv__I_3FI(JNIEnv *_env, jobject _this, jint pname, jfloatArray params_ref, jint offset) argument
849 android_glFogfv__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
911 android_glFogx__II(JNIEnv *_env, jobject _this, jint pname, jint param) argument
921 android_glFogxv__I_3II(JNIEnv *_env, jobject _this, jint pname, jintArray params_ref, jint offset) argument
995 android_glFogxv__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
1057 android_glFrontFace__I(JNIEnv *_env, jobject _this, jint mode) argument
1066 android_glFrustumf__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
1080 android_glFrustumx__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
1094 android_glGenTextures__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray textures_ref, jint offset) argument
1143 android_glGenTextures__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject textures_buf) argument
1180 android_glGetError__(JNIEnv *_env, jobject _this) argument
1189 android_glGetIntegerv__I_3II(JNIEnv *_env, jobject _this, jint pname, jintArray params_ref, jint offset) argument
1569 android_glGetIntegerv__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
1936 android_glGetString(JNIEnv *_env, jobject, jint name) argument
1942 android_glHint__II(JNIEnv *_env, jobject _this, jint target, jint mode) argument
1952 android_glLightModelf__IF(JNIEnv *_env, jobject _this, jint pname, jfloat param) argument
1962 android_glLightModelfv__I_3FI(JNIEnv *_env, jobject _this, jint pname, jfloatArray params_ref, jint offset) argument
2027 android_glLightModelfv__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
2080 android_glLightModelx__II(JNIEnv *_env, jobject _this, jint pname, jint param) argument
2090 android_glLightModelxv__I_3II(JNIEnv *_env, jobject _this, jint pname, jintArray params_ref, jint offset) argument
2155 android_glLightModelxv__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
2208 android_glLightf__IIF(JNIEnv *_env, jobject _this, jint light, jint pname, jfloat param) argument
2219 android_glLightfv__II_3FI(JNIEnv *_env, jobject _this, jint light, jint pname, jfloatArray params_ref, jint offset) argument
2311 android_glLightfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint light, jint pname, jobject params_buf) argument
2391 android_glLightx__III(JNIEnv *_env, jobject _this, jint light, jint pname, jint param) argument
2402 android_glLightxv__II_3II(JNIEnv *_env, jobject _this, jint light, jint pname, jintArray params_ref, jint offset) argument
2494 android_glLightxv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint light, jint pname, jobject params_buf) argument
2574 android_glLineWidth__F(JNIEnv *_env, jobject _this, jfloat width) argument
2583 android_glLineWidthx__I(JNIEnv *_env, jobject _this, jint width) argument
2592 android_glLoadIdentity__(JNIEnv *_env, jobject _this) argument
2599 android_glLoadMatrixf___3FI(JNIEnv *_env, jobject _this, jfloatArray m_ref, jint offset) argument
2641 android_glLoadMatrixf__Ljava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jobject m_buf) argument
2663 android_glLoadMatrixx___3II(JNIEnv *_env, jobject _this, jintArray m_ref, jint offset) argument
2705 android_glLoadMatrixx__Ljava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jobject m_buf) argument
2727 android_glLogicOp__I(JNIEnv *_env, jobject _this, jint opcode) argument
2736 android_glMaterialf__IIF(JNIEnv *_env, jobject _this, jint face, jint pname, jfloat param) argument
2747 android_glMaterialfv__II_3FI(JNIEnv *_env, jobject _this, jint face, jint pname, jfloatArray params_ref, jint offset) argument
2825 android_glMaterialfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint face, jint pname, jobject params_buf) argument
2891 android_glMaterialx__III(JNIEnv *_env, jobject _this, jint face, jint pname, jint param) argument
2902 android_glMaterialxv__II_3II(JNIEnv *_env, jobject _this, jint face, jint pname, jintArray params_ref, jint offset) argument
2980 android_glMaterialxv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint face, jint pname, jobject params_buf) argument
3046 android_glMatrixMode__I(JNIEnv *_env, jobject _this, jint mode) argument
3055 android_glMultMatrixf___3FI(JNIEnv *_env, jobject _this, jfloatArray m_ref, jint offset) argument
3097 android_glMultMatrixf__Ljava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jobject m_buf) argument
3119 android_glMultMatrixx___3II(JNIEnv *_env, jobject _this, jintArray m_ref, jint offset) argument
3161 android_glMultMatrixx__Ljava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jobject m_buf) argument
3183 android_glMultiTexCoord4f__IFFFF(JNIEnv *_env, jobject _this, jint target, jfloat s, jfloat t, jfloat r, jfloat q) argument
3196 android_glMultiTexCoord4x__IIIII(JNIEnv *_env, jobject _this, jint target, jint s, jint t, jint r, jint q) argument
3209 android_glNormal3f__FFF(JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) argument
3220 android_glNormal3x__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
3231 android_glNormalPointerBounds__IILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint type, jint stride, jobject pointer_buf, jint remaining) argument
3254 android_glOrthof__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
3268 android_glOrthox__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
3282 android_glPixelStorei__II(JNIEnv *_env, jobject _this, jint pname, jint param) argument
3292 android_glPointSize__F(JNIEnv *_env, jobject _this, jfloat size) argument
3301 android_glPointSizex__I(JNIEnv *_env, jobject _this, jint size) argument
3310 android_glPolygonOffset__FF(JNIEnv *_env, jobject _this, jfloat factor, jfloat units) argument
3320 android_glPolygonOffsetx__II(JNIEnv *_env, jobject _this, jint factor, jint units) argument
3330 android_glPopMatrix__(JNIEnv *_env, jobject _this) argument
3337 android_glPushMatrix__(JNIEnv *_env, jobject _this) argument
3344 android_glReadPixels__IIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint x, jint y, jint width, jint height, jint format, jint type, jobject pixels_buf) argument
3372 android_glRotatef__FFFF(JNIEnv *_env, jobject _this, jfloat angle, jfloat x, jfloat y, jfloat z) argument
3384 android_glRotatex__IIII(JNIEnv *_env, jobject _this, jint angle, jint x, jint y, jint z) argument
3396 android_glSampleCoverage__FZ(JNIEnv *_env, jobject _this, jfloat value, jboolean invert) argument
3406 android_glSampleCoveragex__IZ(JNIEnv *_env, jobject _this, jint value, jboolean invert) argument
3416 android_glScalef__FFF(JNIEnv *_env, jobject _this, jfloat x, jfloat y, jfloat z) argument
3427 android_glScalex__III(JNIEnv *_env, jobject _this, jint x, jint y, jint z) argument
3438 android_glScissor__IIII(JNIEnv *_env, jobject _this, jint x, jint y, jint width, jint height) argument
3450 android_glShadeModel__I(JNIEnv *_env, jobject _this, jint mode) argument
3459 android_glStencilFunc__III(JNIEnv *_env, jobject _this, jint func, jint ref, jint mask) argument
3470 android_glStencilMask__I(JNIEnv *_env, jobject _this, jint mask) argument
3479 android_glStencilOp__III(JNIEnv *_env, jobject _this, jint fail, jint zfail, jint zpass) argument
3490 android_glTexCoordPointerBounds__IIILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint size, jint type, jint stride, jobject pointer_buf, jint remaining) argument
3514 android_glTexEnvf__IIF(JNIEnv *_env, jobject _this, jint target, jint pname, jfloat param) argument
3525 android_glTexEnvfv__II_3FI(JNIEnv *_env, jobject _this, jint target, jint pname, jfloatArray params_ref, jint offset) argument
3597 android_glTexEnvfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
3657 android_glTexEnvx__III(JNIEnv *_env, jobject _this, jint target, jint pname, jint param) argument
3668 android_glTexEnvxv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
3740 android_glTexEnvxv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
3800 android_glTexImage2D__IIIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint width, jint height, jint border, jint format, jint type, jobject pixels_buf) argument
3832 android_glTexParameterf__IIF(JNIEnv *_env, jobject _this, jint target, jint pname, jfloat param) argument
3843 android_glTexParameterx__III(JNIEnv *_env, jobject _this, jint target, jint pname, jint param) argument
3854 android_glTexSubImage2D__IIIIIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint width, jint height, jint format, jint type, jobject pixels_buf) argument
3886 android_glTranslatef__FFF(JNIEnv *_env, jobject _this, jfloat x, jfloat y, jfloat z) argument
3897 android_glTranslatex__III(JNIEnv *_env, jobject _this, jint x, jint y, jint z) argument
3908 android_glVertexPointerBounds__IIILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint size, jint type, jint stride, jobject pointer_buf, jint remaining) argument
3932 android_glViewport__IIII(JNIEnv *_env, jobject _this, jint x, jint y, jint width, jint height) argument
3944 android_glQueryMatrixxOES___3II_3II(JNIEnv *_env, jobject _this, jintArray mantissa_ref, jint mantissaOffset, jintArray exponent_ref, jint exponentOffset) argument
4025 android_glQueryMatrixxOES__Ljava_nio_IntBuffer_2Ljava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jobject mantissa_buf, jobject exponent_buf) argument
4082 android_glBindBuffer__II(JNIEnv *_env, jobject _this, jint target, jint buffer) argument
4092 android_glBufferData__IILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint target, jint size, jobject data_buf, jint usage) argument
4133 android_glBufferSubData__IIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint offset, jint size, jobject data_buf) argument
4172 android_glClipPlanef__I_3FI(JNIEnv *_env, jobject _this, jint plane, jfloatArray equation_ref, jint offset) argument
4221 android_glClipPlanef__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) argument
4258 android_glClipPlanex__I_3II(JNIEnv *_env, jobject _this, jint plane, jintArray equation_ref, jint offset) argument
4307 android_glClipPlanex__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) argument
4344 android_glColor4ub__BBBB(JNIEnv *_env, jobject _this, jbyte red, jbyte green, jbyte blue, jbyte alpha) argument
4356 android_glColorPointer__IIII(JNIEnv *_env, jobject _this, jint size, jint type, jint stride, jint offset) argument
4368 android_glDeleteBuffers__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray buffers_ref, jint offset) argument
4417 android_glDeleteBuffers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject buffers_buf) argument
4454 android_glDrawElements__IIII(JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jint offset) argument
4472 android_glGenBuffers__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray buffers_ref, jint offset) argument
4521 android_glGenBuffers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject buffers_buf) argument
4558 android_glGetBooleanv__I_3ZI(JNIEnv *_env, jobject _this, jint pname, jbooleanArray params_ref, jint offset) argument
4601 android_glGetBooleanv__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
4624 android_glGetBufferParameteriv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
4632 android_glGetBufferParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
4640 android_glGetClipPlanef__I_3FI(JNIEnv *_env, jobject _this, jint pname, jfloatArray eqn_ref, jint offset) argument
4683 android_glGetClipPlanef__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject eqn_buf) argument
4706 android_glGetClipPlanex__I_3II(JNIEnv *_env, jobject _this, jint pname, jintArray eqn_ref, jint offset) argument
4749 android_glGetClipPlanex__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject eqn_buf) argument
4772 android_glGetFixedv__I_3II(JNIEnv *_env, jobject _this, jint pname, jintArray params_ref, jint offset) argument
4815 android_glGetFixedv__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
4838 android_glGetFloatv__I_3FI(JNIEnv *_env, jobject _this, jint pname, jfloatArray params_ref, jint offset) argument
4881 android_glGetFloatv__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
4904 android_glGetLightfv__II_3FI(JNIEnv *_env, jobject _this, jint light, jint pname, jfloatArray params_ref, jint offset) argument
4996 android_glGetLightfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint light, jint pname, jobject params_buf) argument
5076 android_glGetLightxv__II_3II(JNIEnv *_env, jobject _this, jint light, jint pname, jintArray params_ref, jint offset) argument
5168 android_glGetLightxv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint light, jint pname, jobject params_buf) argument
5248 android_glGetMaterialfv__II_3FI(JNIEnv *_env, jobject _this, jint face, jint pname, jfloatArray params_ref, jint offset) argument
5326 android_glGetMaterialfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint face, jint pname, jobject params_buf) argument
5392 android_glGetMaterialxv__II_3II(JNIEnv *_env, jobject _this, jint face, jint pname, jintArray params_ref, jint offset) argument
5470 android_glGetMaterialxv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint face, jint pname, jobject params_buf) argument
5536 android_glGetTexEnviv__II_3II(JNIEnv *_env, jobject _this, jint env, jint pname, jintArray params_ref, jint offset) argument
5608 android_glGetTexEnviv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint env, jint pname, jobject params_buf) argument
5668 android_glGetTexEnvxv__II_3II(JNIEnv *_env, jobject _this, jint env, jint pname, jintArray params_ref, jint offset) argument
5740 android_glGetTexEnvxv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint env, jint pname, jobject params_buf) argument
5800 android_glGetTexParameterfv__II_3FI(JNIEnv *_env, jobject _this, jint target, jint pname, jfloatArray params_ref, jint offset) argument
5850 android_glGetTexParameterfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
5888 android_glGetTexParameteriv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
5938 android_glGetTexParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
5976 android_glGetTexParameterxv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
6026 android_glGetTexParameterxv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
6064 android_glIsBuffer__I(JNIEnv *_env, jobject _this, jint buffer) argument
6075 android_glIsEnabled__I(JNIEnv *_env, jobject _this, jint cap) argument
6086 android_glIsTexture__I(JNIEnv *_env, jobject _this, jint texture) argument
6097 android_glNormalPointer__III(JNIEnv *_env, jobject _this, jint type, jint stride, jint offset) argument
6108 android_glPointParameterf__IF(JNIEnv *_env, jobject _this, jint pname, jfloat param) argument
6118 android_glPointParameterfv__I_3FI(JNIEnv *_env, jobject _this, jint pname, jfloatArray params_ref, jint offset) argument
6167 android_glPointParameterfv__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
6204 android_glPointParameterx__II(JNIEnv *_env, jobject _this, jint pname, jint param) argument
6214 android_glPointParameterxv__I_3II(JNIEnv *_env, jobject _this, jint pname, jintArray params_ref, jint offset) argument
6263 android_glPointParameterxv__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
6300 android_glPointSizePointerOESBounds__IILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint type, jint stride, jobject pointer_buf, jint remaining) argument
6323 android_glTexCoordPointer__IIII(JNIEnv *_env, jobject _this, jint size, jint type, jint stride, jint offset) argument
6335 android_glTexEnvi__III(JNIEnv *_env, jobject _this, jint target, jint pname, jint param) argument
6346 android_glTexEnviv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
6418 android_glTexEnviv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
6478 android_glTexParameterfv__II_3FI(JNIEnv *_env, jobject _this, jint target, jint pname, jfloatArray params_ref, jint offset) argument
6528 android_glTexParameterfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
6566 android_glTexParameteri__III(JNIEnv *_env, jobject _this, jint target, jint pname, jint param) argument
6577 android_glTexParameteriv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
6627 android_glTexParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
6665 android_glTexParameterxv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
6715 android_glTexParameterxv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
6753 android_glVertexPointer__IIII(JNIEnv *_env, jobject _this, jint size, jint type, jint stride, jint offset) argument
6765 android_glCurrentPaletteMatrixOES__I(JNIEnv *_env, jobject _this, jint matrixpaletteindex) argument
6774 android_glDrawTexfOES__FFFFF(JNIEnv *_env, jobject _this, jfloat x, jfloat y, jfloat z, jfloat width, jfloat height) argument
6787 android_glDrawTexfvOES___3FI(JNIEnv *_env, jobject _this, jfloatArray coords_ref, jint offset) argument
6835 android_glDrawTexfvOES__Ljava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jobject coords_buf) argument
6871 android_glDrawTexiOES__IIIII(JNIEnv *_env, jobject _this, jint x, jint y, jint z, jint width, jint height) argument
6884 android_glDrawTexivOES___3II(JNIEnv *_env, jobject _this, jintArray coords_ref, jint offset) argument
6932 android_glDrawTexivOES__Ljava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jobject coords_buf) argument
6968 android_glDrawTexsOES__SSSSS(JNIEnv *_env, jobject _this, jshort x, jshort y, jshort z, jshort width, jshort height) argument
6981 android_glDrawTexsvOES___3SI(JNIEnv *_env, jobject _this, jshortArray coords_ref, jint offset) argument
7029 android_glDrawTexsvOES__Ljava_nio_ShortBuffer_2(JNIEnv *_env, jobject _this, jobject coords_buf) argument
7065 android_glDrawTexxOES__IIIII(JNIEnv *_env, jobject _this, jint x, jint y, jint z, jint width, jint height) argument
7078 android_glDrawTexxvOES___3II(JNIEnv *_env, jobject _this, jintArray coords_ref, jint offset) argument
7126 android_glDrawTexxvOES__Ljava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jobject coords_buf) argument
7162 android_glLoadPaletteFromModelViewMatrixOES__(JNIEnv *_env, jobject _this) argument
7169 android_glMatrixIndexPointerOESBounds__IIILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint size, jint type, jint stride, jobject pointer_buf, jint remaining) argument
7193 android_glMatrixIndexPointerOES__IIII(JNIEnv *_env, jobject _this, jint size, jint type, jint stride, jint offset) argument
7205 android_glWeightPointerOESBounds__IIILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint size, jint type, jint stride, jobject pointer_buf, jint remaining) argument
7229 android_glWeightPointerOES__IIII(JNIEnv *_env, jobject _this, jint size, jint type, jint stride, jint offset) argument
7241 android_glBindFramebufferOES__II(JNIEnv *_env, jobject _this, jint target, jint framebuffer) argument
7256 android_glBindRenderbufferOES__II(JNIEnv *_env, jobject _this, jint target, jint renderbuffer) argument
7271 android_glBlendEquation__I(JNIEnv *_env, jobject _this, jint mode) argument
7285 android_glBlendEquationSeparate__II(JNIEnv *_env, jobject _this, jint modeRGB, jint modeAlpha) argument
7300 android_glBlendFuncSeparate__IIII(JNIEnv *_env, jobject _this, jint srcRGB, jint dstRGB, jint srcAlpha, jint dstAlpha) argument
7317 android_glCheckFramebufferStatusOES__I(JNIEnv *_env, jobject _this, jint target) argument
7333 android_glDeleteFramebuffersOES__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray framebuffers_ref, jint offset) argument
7387 android_glDeleteFramebuffersOES__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject framebuffers_buf) argument
7429 android_glDeleteRenderbuffersOES__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray renderbuffers_ref, jint offset) argument
7483 android_glDeleteRenderbuffersOES__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject renderbuffers_buf) argument
7525 android_glFramebufferRenderbufferOES__IIII(JNIEnv *_env, jobject _this, jint target, jint attachment, jint renderbuffertarget, jint renderbuffer) argument
7542 android_glFramebufferTexture2DOES__IIIII(JNIEnv *_env, jobject _this, jint target, jint attachment, jint textarget, jint texture, jint level) argument
7560 android_glGenerateMipmapOES__I(JNIEnv *_env, jobject _this, jint target) argument
7574 android_glGenFramebuffersOES__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray framebuffers_ref, jint offset) argument
7628 android_glGenFramebuffersOES__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject framebuffers_buf) argument
7670 android_glGenRenderbuffersOES__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray renderbuffers_ref, jint offset) argument
7724 android_glGenRenderbuffersOES__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject renderbuffers_buf) argument
7766 android_glGetFramebufferAttachmentParameterivOES__III_3II(JNIEnv *_env, jobject _this, jint target, jint attachment, jint pname, jintArray params_ref, jint offset) argument
7816 android_glGetFramebufferAttachmentParameterivOES__IIILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint attachment, jint pname, jobject params_buf) argument
7846 android_glGetRenderbufferParameterivOES__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
7895 android_glGetRenderbufferParameterivOES__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
7924 android_glGetTexGenfv__II_3FI(JNIEnv *_env, jobject _this, jint coord, jint pname, jfloatArray params_ref, jint offset) argument
7973 android_glGetTexGenfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint coord, jint pname, jobject params_buf) argument
8002 android_glGetTexGeniv__II_3II(JNIEnv *_env, jobject _this, jint coord, jint pname, jintArray params_ref, jint offset) argument
8051 android_glGetTexGeniv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint coord, jint pname, jobject params_buf) argument
8080 android_glGetTexGenxv__II_3II(JNIEnv *_env, jobject _this, jint coord, jint pname, jintArray params_ref, jint offset) argument
8129 android_glGetTexGenxv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint coord, jint pname, jobject params_buf) argument
8158 android_glIsFramebufferOES__I(JNIEnv *_env, jobject _this, jint framebuffer) argument
8174 android_glIsRenderbufferOES__I(JNIEnv *_env, jobject _this, jint renderbuffer) argument
8190 android_glRenderbufferStorageOES__IIII(JNIEnv *_env, jobject _this, jint target, jint internalformat, jint width, jint height) argument
8207 android_glTexGenf__IIF(JNIEnv *_env, jobject _this, jint coord, jint pname, jfloat param) argument
8223 android_glTexGenfv__II_3FI(JNIEnv *_env, jobject _this, jint coord, jint pname, jfloatArray params_ref, jint offset) argument
8272 android_glTexGenfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint coord, jint pname, jobject params_buf) argument
8301 android_glTexGeni__III(JNIEnv *_env, jobject _this, jint coord, jint pname, jint param) argument
8317 android_glTexGeniv__II_3II(JNIEnv *_env, jobject _this, jint coord, jint pname, jintArray params_ref, jint offset) argument
8366 android_glTexGeniv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint coord, jint pname, jobject params_buf) argument
8395 android_glTexGenx__III(JNIEnv *_env, jobject _this, jint coord, jint pname, jint param) argument
8411 android_glTexGenxv__II_3II(JNIEnv *_env, jobject _this, jint coord, jint pname, jintArray params_ref, jint offset) argument
8460 android_glTexGenxv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint coord, jint pname, jobject params_buf) argument
8742 register_com_google_android_gles_jni_GLImpl(JNIEnv *_env) argument
[all...]
/frameworks/native/opengl/tools/glgen/stubs/egl/
H A DEGL14cHeader.cpp61 nativeClassInit(JNIEnv *_env, jclass glImplClass) argument
63 jclass egldisplayClassLocal = _env->FindClass("android/opengl/EGLDisplay");
64 egldisplayClass = (jclass) _env->NewGlobalRef(egldisplayClassLocal);
65 jclass eglcontextClassLocal = _env->FindClass("android/opengl/EGLContext");
66 eglcontextClass = (jclass) _env->NewGlobalRef(eglcontextClassLocal);
67 jclass eglsurfaceClassLocal = _env->FindClass("android/opengl/EGLSurface");
68 eglsurfaceClass = (jclass) _env->NewGlobalRef(eglsurfaceClassLocal);
69 jclass eglconfigClassLocal = _env->FindClass("android/opengl/EGLConfig");
70 eglconfigClass = (jclass) _env->NewGlobalRef(eglconfigClassLocal);
72 egldisplayGetHandleID = _env
103 fromEGLHandle(JNIEnv *_env, jmethodID mid, jobject obj) argument
113 toEGLHandle(JNIEnv *_env, jclass cls, jmethodID con, void * handle) argument
[all...]
H A DEGLExtcHeader.cpp62 nativeClassInit(JNIEnv *_env, jclass glImplClass) argument
64 jclass egldisplayClassLocal = _env->FindClass("android/opengl/EGLDisplay");
65 egldisplayClass = (jclass) _env->NewGlobalRef(egldisplayClassLocal);
66 jclass eglcontextClassLocal = _env->FindClass("android/opengl/EGLContext");
67 eglcontextClass = (jclass) _env->NewGlobalRef(eglcontextClassLocal);
68 jclass eglsurfaceClassLocal = _env->FindClass("android/opengl/EGLSurface");
69 eglsurfaceClass = (jclass) _env->NewGlobalRef(eglsurfaceClassLocal);
70 jclass eglconfigClassLocal = _env->FindClass("android/opengl/EGLConfig");
71 eglconfigClass = (jclass) _env->NewGlobalRef(eglconfigClassLocal);
73 egldisplayGetHandleID = _env
104 fromEGLHandle(JNIEnv *_env, jmethodID mid, jobject obj) argument
114 toEGLHandle(JNIEnv *_env, jclass cls, jmethodID con, void * handle) argument
[all...]
H A DeglQueryString.cpp4 (JNIEnv *_env, jobject _this, jobject dpy, jint name) {
6 (EGLDisplay)fromEGLHandle(_env, egldisplayGetHandleID, dpy),
9 return _env->NewStringUTF(chars);
3 android_eglQueryString__Landroind_opengl_EGLDisplay_2I(JNIEnv *_env, jobject _this, jobject dpy, jint name) argument

Completed in 1010 milliseconds

12