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
266 jni_eglCreatePixmapSurface(JNIEnv *_env, jobject _this, jobject out_sur, jobject display, jobject config, jobject native_pixmap, jintArray attrib_list) argument
312 jni_eglCreateWindowSurface(JNIEnv *_env, jobject _this, jobject display, jobject config, jobject native_window, jintArray attrib_list) argument
339 jni_eglCreateWindowSurfaceTexture(JNIEnv *_env, jobject _this, jobject display, jobject config, jobject native_window, jintArray attrib_list) argument
368 jni_eglGetConfigAttrib(JNIEnv *_env, jobject _this, jobject display, jobject config, jint attribute, jintArray value) argument
386 jni_eglGetConfigs(JNIEnv *_env, jobject _this, jobject display, jobjectArray configs, jint config_size, jintArray num_config) argument
413 jni_eglGetError(JNIEnv *_env, jobject _this) argument
418 jni_eglGetCurrentContext(JNIEnv *_env, jobject _this) argument
422 jni_eglGetCurrentDisplay(JNIEnv *_env, jobject _this) argument
426 jni_eglGetCurrentSurface(JNIEnv *_env, jobject _this, jint readdraw) argument
434 jni_eglDestroyContext(JNIEnv *_env, jobject _this, jobject display, jobject context) argument
444 jni_eglDestroySurface(JNIEnv *_env, jobject _this, jobject display, jobject surface) argument
463 jni_eglGetDisplay(JNIEnv *_env, jobject _this, jobject native_display) argument
467 jni_eglMakeCurrent(JNIEnv *_env, jobject _this, jobject display, jobject draw, jobject read, jobject context) argument
479 jni_eglQueryString(JNIEnv *_env, jobject _this, jobject display, jint name) argument
489 jni_eglSwapBuffers(JNIEnv *_env, jobject _this, jobject display, jobject surface) argument
499 jni_eglTerminate(JNIEnv *_env, jobject _this, jobject display) argument
508 jni_eglCopyBuffers(JNIEnv *_env, jobject _this, jobject display, jobject surface, jobject native_pixmap) argument
518 jni_eglWaitGL(JNIEnv *_env, jobject _this) argument
522 jni_eglWaitNative(JNIEnv *_env, jobject _this, jint engine, jobject bindTarget) argument
569 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.cpp71 nativeClassInit(JNIEnv *_env, jclass glImplClass) argument
73 jclass nioAccessClassLocal = _env->FindClass("java/nio/NIOAccess");
74 nioAccessClass = (jclass) _env->NewGlobalRef(nioAccessClassLocal);
76 jclass bufferClassLocal = _env->FindClass("java/nio/Buffer");
77 bufferClass = (jclass) _env->NewGlobalRef(bufferClassLocal);
79 getBasePointerID = _env->GetStaticMethodID(nioAccessClass,
81 getBaseArrayID = _env->GetStaticMethodID(nioAccessClass,
83 getBaseArrayOffsetID = _env->GetStaticMethodID(nioAccessClass,
86 positionID = _env->GetFieldID(bufferClass, "position", "I");
87 limitID = _env
93 getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *offset) argument
120 releasePointer(JNIEnv *_env, jarray array, void *data, jboolean commit) argument
127 getDirectBufferPointer(JNIEnv *_env, jobject buffer) argument
224 get(JNIEnv *_env, jobject _this, jint pname, JTYPEARRAY params_ref, jint offset) argument
279 getarray(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
322 android_glActiveTexture__I(JNIEnv *_env, jobject _this, jint texture) argument
331 android_glAttachShader__II(JNIEnv *_env, jobject _this, jint program, jint shader) argument
341 android_glBindAttribLocation__IILjava_lang_String_2(JNIEnv *_env, jobject _this, jint program, jint index, jstring name) argument
373 android_glBindBuffer__II(JNIEnv *_env, jobject _this, jint target, jint buffer) argument
383 android_glBindFramebuffer__II(JNIEnv *_env, jobject _this, jint target, jint framebuffer) argument
393 android_glBindRenderbuffer__II(JNIEnv *_env, jobject _this, jint target, jint renderbuffer) argument
403 android_glBindTexture__II(JNIEnv *_env, jobject _this, jint target, jint texture) argument
413 android_glBlendColor__FFFF(JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) argument
425 android_glBlendEquation__I(JNIEnv *_env, jobject _this, jint mode) argument
434 android_glBlendEquationSeparate__II(JNIEnv *_env, jobject _this, jint modeRGB, jint modeAlpha) argument
444 android_glBlendFunc__II(JNIEnv *_env, jobject _this, jint sfactor, jint dfactor) argument
454 android_glBlendFuncSeparate__IIII(JNIEnv *_env, jobject _this, jint srcRGB, jint dstRGB, jint srcAlpha, jint dstAlpha) argument
466 android_glBufferData__IILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint target, jint size, jobject data_buf, jint usage) argument
507 android_glBufferSubData__IIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint target, jint offset, jint size, jobject data_buf) argument
546 android_glCheckFramebufferStatus__I(JNIEnv *_env, jobject _this, jint target) argument
557 android_glClear__I(JNIEnv *_env, jobject _this, jint mask) argument
566 android_glClearColor__FFFF(JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) argument
578 android_glClearDepthf__F(JNIEnv *_env, jobject _this, jfloat depth) argument
587 android_glClearStencil__I(JNIEnv *_env, jobject _this, jint s) argument
596 android_glColorMask__ZZZZ(JNIEnv *_env, jobject _this, jboolean red, jboolean green, jboolean blue, jboolean alpha) argument
608 android_glCompileShader__I(JNIEnv *_env, jobject _this, jint shader) argument
617 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
646 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
676 android_glCopyTexImage2D__IIIIIIII(JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint x, jint y, jint width, jint height, jint border) argument
692 android_glCopyTexSubImage2D__IIIIIIII(JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint x, jint y, jint width, jint height) argument
708 android_glCreateProgram__(JNIEnv *_env, jobject _this) argument
717 android_glCreateShader__I(JNIEnv *_env, jobject _this, jint type) argument
728 android_glCullFace__I(JNIEnv *_env, jobject _this, jint mode) argument
737 android_glDeleteBuffers__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray buffers_ref, jint offset) argument
786 android_glDeleteBuffers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject buffers_buf) argument
823 android_glDeleteFramebuffers__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray framebuffers_ref, jint offset) argument
872 android_glDeleteFramebuffers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject framebuffers_buf) argument
909 android_glDeleteProgram__I(JNIEnv *_env, jobject _this, jint program) argument
918 android_glDeleteRenderbuffers__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray renderbuffers_ref, jint offset) argument
967 android_glDeleteRenderbuffers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject renderbuffers_buf) argument
1004 android_glDeleteShader__I(JNIEnv *_env, jobject _this, jint shader) argument
1013 android_glDeleteTextures__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray textures_ref, jint offset) argument
1062 android_glDeleteTextures__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject textures_buf) argument
1099 android_glDepthFunc__I(JNIEnv *_env, jobject _this, jint func) argument
1108 android_glDepthMask__Z(JNIEnv *_env, jobject _this, jboolean flag) argument
1117 android_glDepthRangef__FF(JNIEnv *_env, jobject _this, jfloat zNear, jfloat zFar) argument
1127 android_glDetachShader__II(JNIEnv *_env, jobject _this, jint program, jint shader) argument
1137 android_glDisable__I(JNIEnv *_env, jobject _this, jint cap) argument
1146 android_glDisableVertexAttribArray__I(JNIEnv *_env, jobject _this, jint index) argument
1155 android_glDrawArrays__III(JNIEnv *_env, jobject _this, jint mode, jint first, jint count) argument
1166 android_glDrawElements__IIII(JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jint offset) argument
1184 android_glDrawElements__IIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jobject indices_buf) argument
1223 android_glEnable__I(JNIEnv *_env, jobject _this, jint cap) argument
1232 android_glEnableVertexAttribArray__I(JNIEnv *_env, jobject _this, jint index) argument
1241 android_glFinish__(JNIEnv *_env, jobject _this) argument
1248 android_glFlush__(JNIEnv *_env, jobject _this) argument
1255 android_glFramebufferRenderbuffer__IIII(JNIEnv *_env, jobject _this, jint target, jint attachment, jint renderbuffertarget, jint renderbuffer) argument
1267 android_glFramebufferTexture2D__IIIII(JNIEnv *_env, jobject _this, jint target, jint attachment, jint textarget, jint texture, jint level) argument
1280 android_glFrontFace__I(JNIEnv *_env, jobject _this, jint mode) argument
1289 android_glGenBuffers__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray buffers_ref, jint offset) argument
1338 android_glGenBuffers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject buffers_buf) argument
1375 android_glGenerateMipmap__I(JNIEnv *_env, jobject _this, jint target) argument
1384 android_glGenFramebuffers__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray framebuffers_ref, jint offset) argument
1433 android_glGenFramebuffers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject framebuffers_buf) argument
1470 android_glGenRenderbuffers__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray renderbuffers_ref, jint offset) argument
1519 android_glGenRenderbuffers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject renderbuffers_buf) argument
1556 android_glGenTextures__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray textures_ref, jint offset) argument
1605 android_glGenTextures__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject textures_buf) argument
1642 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
1762 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
1814 android_glGetActiveAttrib1(JNIEnv *_env, jobject _this, jint program, jint index, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset) argument
1909 android_glGetActiveAttrib2(JNIEnv *_env, jobject _this, jint program, jint index, jobject size_buf, jobject type_buf) argument
1970 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
2090 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
2142 android_glGetActiveUniform1(JNIEnv *_env, jobject _this, jint program, jint index, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset) argument
2240 android_glGetActiveUniform2(JNIEnv *_env, jobject _this, jint program, jint index, jobject size_buf, jobject type_buf) argument
2299 android_glGetAttachedShaders__II_3II_3II(JNIEnv *_env, jobject _this, jint program, jint maxcount, jintArray count_ref, jint countOffset, jintArray shaders_ref, jint shadersOffset) argument
2380 android_glGetAttachedShaders__IILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint program, jint maxcount, jobject count_buf, jobject shaders_buf) argument
2441 android_glGetAttribLocation__ILjava_lang_String_2(JNIEnv *_env, jobject _this, jint program, jstring name) argument
2474 android_glGetBooleanv__I_3ZI(JNIEnv *_env, jobject _this, jint pname, jbooleanArray params_ref, jint offset) argument
2481 android_glGetBooleanv__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
2487 android_glGetBufferParameteriv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
2537 android_glGetBufferParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
2575 android_glGetError__(JNIEnv *_env, jobject _this) argument
2584 android_glGetFloatv__I_3FI(JNIEnv *_env, jobject _this, jint pname, jfloatArray params_ref, jint offset) argument
2591 android_glGetFloatv__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
2597 android_glGetFramebufferAttachmentParameteriv__III_3II(JNIEnv *_env, jobject _this, jint target, jint attachment, jint pname, jintArray params_ref, jint offset) argument
2642 android_glGetFramebufferAttachmentParameteriv__IIILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint attachment, jint pname, jobject params_buf) argument
2667 android_glGetIntegerv__I_3II(JNIEnv *_env, jobject _this, jint pname, jintArray params_ref, jint offset) argument
2674 android_glGetIntegerv__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
2681 android_glGetProgramiv__II_3II(JNIEnv *_env, jobject _this, jint program, jint pname, jintArray params_ref, jint offset) argument
2731 android_glGetProgramiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint program, jint pname, jobject params_buf) argument
2770 android_glGetProgramInfoLog(JNIEnv *_env, jobject, jint shader) argument
2788 android_glGetRenderbufferParameteriv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
2838 android_glGetRenderbufferParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
2876 android_glGetShaderiv__II_3II(JNIEnv *_env, jobject _this, jint shader, jint pname, jintArray params_ref, jint offset) argument
2926 android_glGetShaderiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint shader, jint pname, jobject params_buf) argument
2965 android_glGetShaderInfoLog(JNIEnv *_env, jobject, jint shader) argument
2983 android_glGetShaderPrecisionFormat__II_3II_3II(JNIEnv *_env, jobject _this, jint shadertype, jint precisiontype, jintArray range_ref, jint rangeOffset, jintArray precision_ref, jint precisionOffset) argument
3064 android_glGetShaderPrecisionFormat__IILjava_nio_IntBuffer_2Ljava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint shadertype, jint precisiontype, jobject range_buf, jobject precision_buf) argument
3121 android_glGetShaderSource__II_3II_3BI(JNIEnv *_env, jobject _this, jint shader, jint bufsize, jintArray length_ref, jint lengthOffset, jbyteArray source_ref, jint sourceOffset) argument
3190 android_glGetShaderSource__IILjava_nio_IntBuffer_2B(JNIEnv *_env, jobject _this, jint shader, jint bufsize, jobject length_buf, jbyte source) argument
3214 android_glGetShaderSource(JNIEnv *_env, jobject, jint shader) argument
3231 android_glGetString(JNIEnv* _env, jobject, jint name) argument
3237 android_glGetTexParameterfv__II_3FI(JNIEnv *_env, jobject _this, jint target, jint pname, jfloatArray params_ref, jint offset) argument
3287 android_glGetTexParameterfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
3325 android_glGetTexParameteriv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
3375 android_glGetTexParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
3413 android_glGetUniformfv__II_3FI(JNIEnv *_env, jobject _this, jint program, jint location, jfloatArray params_ref, jint offset) argument
3463 android_glGetUniformfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jobject params_buf) argument
3501 android_glGetUniformiv__II_3II(JNIEnv *_env, jobject _this, jint program, jint location, jintArray params_ref, jint offset) argument
3551 android_glGetUniformiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jobject params_buf) argument
3589 android_glGetUniformLocation__ILjava_lang_String_2(JNIEnv *_env, jobject _this, jint program, jstring name) argument
3622 android_glGetVertexAttribfv__II_3FI(JNIEnv *_env, jobject _this, jint index, jint pname, jfloatArray params_ref, jint offset) argument
3683 android_glGetVertexAttribfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint index, jint pname, jobject params_buf) argument
3732 android_glGetVertexAttribiv__II_3II(JNIEnv *_env, jobject _this, jint index, jint pname, jintArray params_ref, jint offset) argument
3793 android_glGetVertexAttribiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint index, jint pname, jobject params_buf) argument
3842 android_glHint__II(JNIEnv *_env, jobject _this, jint target, jint mode) argument
3852 android_glIsBuffer__I(JNIEnv *_env, jobject _this, jint buffer) argument
3863 android_glIsEnabled__I(JNIEnv *_env, jobject _this, jint cap) argument
3874 android_glIsFramebuffer__I(JNIEnv *_env, jobject _this, jint framebuffer) argument
3885 android_glIsProgram__I(JNIEnv *_env, jobject _this, jint program) argument
3896 android_glIsRenderbuffer__I(JNIEnv *_env, jobject _this, jint renderbuffer) argument
3907 android_glIsShader__I(JNIEnv *_env, jobject _this, jint shader) argument
3918 android_glIsTexture__I(JNIEnv *_env, jobject _this, jint texture) argument
3929 android_glLineWidth__F(JNIEnv *_env, jobject _this, jfloat width) argument
3938 android_glLinkProgram__I(JNIEnv *_env, jobject _this, jint program) argument
3947 android_glPixelStorei__II(JNIEnv *_env, jobject _this, jint pname, jint param) argument
3957 android_glPolygonOffset__FF(JNIEnv *_env, jobject _this, jfloat factor, jfloat units) argument
3967 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
3995 android_glReleaseShaderCompiler__(JNIEnv *_env, jobject _this) argument
4002 android_glRenderbufferStorage__IIII(JNIEnv *_env, jobject _this, jint target, jint internalformat, jint width, jint height) argument
4014 android_glSampleCoverage__FZ(JNIEnv *_env, jobject _this, jfloat value, jboolean invert) argument
4024 android_glScissor__IIII(JNIEnv *_env, jobject _this, jint x, jint y, jint width, jint height) argument
4036 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
4100 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
4154 android_glShaderSource(JNIEnv *_env, jobject _this, jint shader, jstring string) argument
4169 android_glStencilFunc__III(JNIEnv *_env, jobject _this, jint func, jint ref, jint mask) argument
4180 android_glStencilFuncSeparate__IIII(JNIEnv *_env, jobject _this, jint face, jint func, jint ref, jint mask) argument
4192 android_glStencilMask__I(JNIEnv *_env, jobject _this, jint mask) argument
4201 android_glStencilMaskSeparate__II(JNIEnv *_env, jobject _this, jint face, jint mask) argument
4211 android_glStencilOp__III(JNIEnv *_env, jobject _this, jint fail, jint zfail, jint zpass) argument
4222 android_glStencilOpSeparate__IIII(JNIEnv *_env, jobject _this, jint face, jint fail, jint zfail, jint zpass) argument
4234 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
4266 android_glTexParameterf__IIF(JNIEnv *_env, jobject _this, jint target, jint pname, jfloat param) argument
4277 android_glTexParameterfv__II_3FI(JNIEnv *_env, jobject _this, jint target, jint pname, jfloatArray params_ref, jint offset) argument
4327 android_glTexParameterfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
4365 android_glTexParameteri__III(JNIEnv *_env, jobject _this, jint target, jint pname, jint param) argument
4376 android_glTexParameteriv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
4426 android_glTexParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
4464 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
4496 android_glUniform1f__IF(JNIEnv *_env, jobject _this, jint location, jfloat x) argument
4506 android_glUniform1fv__II_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jfloatArray v_ref, jint offset) argument
4556 android_glUniform1fv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject v_buf) argument
4594 android_glUniform1i__II(JNIEnv *_env, jobject _this, jint location, jint x) argument
4604 android_glUniform1iv__II_3II(JNIEnv *_env, jobject _this, jint location, jint count, jintArray v_ref, jint offset) argument
4654 android_glUniform1iv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject v_buf) argument
4692 android_glUniform2f__IFF(JNIEnv *_env, jobject _this, jint location, jfloat x, jfloat y) argument
4703 android_glUniform2fv__II_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jfloatArray v_ref, jint offset) argument
4753 android_glUniform2fv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject v_buf) argument
4791 android_glUniform2i__III(JNIEnv *_env, jobject _this, jint location, jint x, jint y) argument
4802 android_glUniform2iv__II_3II(JNIEnv *_env, jobject _this, jint location, jint count, jintArray v_ref, jint offset) argument
4852 android_glUniform2iv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject v_buf) argument
4890 android_glUniform3f__IFFF(JNIEnv *_env, jobject _this, jint location, jfloat x, jfloat y, jfloat z) argument
4902 android_glUniform3fv__II_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jfloatArray v_ref, jint offset) argument
4952 android_glUniform3fv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject v_buf) argument
4990 android_glUniform3i__IIII(JNIEnv *_env, jobject _this, jint location, jint x, jint y, jint z) argument
5002 android_glUniform3iv__II_3II(JNIEnv *_env, jobject _this, jint location, jint count, jintArray v_ref, jint offset) argument
5052 android_glUniform3iv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject v_buf) argument
5090 android_glUniform4f__IFFFF(JNIEnv *_env, jobject _this, jint location, jfloat x, jfloat y, jfloat z, jfloat w) argument
5103 android_glUniform4fv__II_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jfloatArray v_ref, jint offset) argument
5153 android_glUniform4fv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject v_buf) argument
5191 android_glUniform4i__IIIII(JNIEnv *_env, jobject _this, jint location, jint x, jint y, jint z, jint w) argument
5204 android_glUniform4iv__II_3II(JNIEnv *_env, jobject _this, jint location, jint count, jintArray v_ref, jint offset) argument
5254 android_glUniform4iv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject v_buf) argument
5292 android_glUniformMatrix2fv__IIZ_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
5343 android_glUniformMatrix2fv__IIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) argument
5382 android_glUniformMatrix3fv__IIZ_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
5433 android_glUniformMatrix3fv__IIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) argument
5472 android_glUniformMatrix4fv__IIZ_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
5523 android_glUniformMatrix4fv__IIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) argument
5562 android_glUseProgram__I(JNIEnv *_env, jobject _this, jint program) argument
5571 android_glValidateProgram__I(JNIEnv *_env, jobject _this, jint program) argument
5580 android_glVertexAttrib1f__IF(JNIEnv *_env, jobject _this, jint indx, jfloat x) argument
5590 android_glVertexAttrib1fv__I_3FI(JNIEnv *_env, jobject _this, jint indx, jfloatArray values_ref, jint offset) argument
5639 android_glVertexAttrib1fv__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint indx, jobject values_buf) argument
5676 android_glVertexAttrib2f__IFF(JNIEnv *_env, jobject _this, jint indx, jfloat x, jfloat y) argument
5687 android_glVertexAttrib2fv__I_3FI(JNIEnv *_env, jobject _this, jint indx, jfloatArray values_ref, jint offset) argument
5736 android_glVertexAttrib2fv__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint indx, jobject values_buf) argument
5773 android_glVertexAttrib3f__IFFF(JNIEnv *_env, jobject _this, jint indx, jfloat x, jfloat y, jfloat z) argument
5785 android_glVertexAttrib3fv__I_3FI(JNIEnv *_env, jobject _this, jint indx, jfloatArray values_ref, jint offset) argument
5834 android_glVertexAttrib3fv__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint indx, jobject values_buf) argument
5871 android_glVertexAttrib4f__IFFFF(JNIEnv *_env, jobject _this, jint indx, jfloat x, jfloat y, jfloat z, jfloat w) argument
5884 android_glVertexAttrib4fv__I_3FI(JNIEnv *_env, jobject _this, jint indx, jfloatArray values_ref, jint offset) argument
5933 android_glVertexAttrib4fv__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint indx, jobject values_buf) argument
5970 android_glVertexAttribPointer__IIIZII(JNIEnv *_env, jobject _this, jint indx, jint size, jint type, jboolean normalized, jint stride, jint offset) argument
5984 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
6010 android_glViewport__IIII(JNIEnv *_env, jobject _this, jint x, jint y, jint width, jint height) argument
6219 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
328 android_glReadBuffer__I(JNIEnv *_env, jobject _this, jint mode) argument
337 android_glDrawRangeElements__IIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint mode, jint start, jint end, jint count, jint type, jobject indices_buf) argument
364 android_glDrawRangeElements__IIIIII(JNIEnv *_env, jobject _this, jint mode, jint start, jint end, jint count, jint type, jint offset) argument
378 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
409 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
427 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
459 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
478 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
495 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
525 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
542 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
574 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
593 android_glGenQueries__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray ids_ref, jint offset) argument
636 android_glGenQueries__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject ids_buf) argument
659 android_glDeleteQueries__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray ids_ref, jint offset) argument
702 android_glDeleteQueries__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject ids_buf) argument
725 android_glIsQuery__I(JNIEnv *_env, jobject _this, jint id) argument
736 android_glBeginQuery__II(JNIEnv *_env, jobject _this, jint target, jint id) argument
746 android_glEndQuery__I(JNIEnv *_env, jobject _this, jint target) argument
755 android_glGetQueryiv__II_3II(JNIEnv *_env, jobject _this, jint target, jint pname, jintArray params_ref, jint offset) argument
799 android_glGetQueryiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
823 android_glGetQueryObjectuiv__II_3II(JNIEnv *_env, jobject _this, jint id, jint pname, jintArray params_ref, jint offset) argument
867 android_glGetQueryObjectuiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint id, jint pname, jobject params_buf) argument
891 android_glUnmapBuffer__I(JNIEnv *_env, jobject _this, jint target) argument
902 android_glGetBufferPointerv__II(JNIEnv *_env, jobject _this, jint target, jint pname) argument
913 android_glDrawBuffers__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray bufs_ref, jint offset) argument
956 android_glDrawBuffers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject bufs_buf) argument
979 android_glUniformMatrix2x3fv__IIZ_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
1024 android_glUniformMatrix2x3fv__IIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) argument
1049 android_glUniformMatrix3x2fv__IIZ_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
1094 android_glUniformMatrix3x2fv__IIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) argument
1119 android_glUniformMatrix2x4fv__IIZ_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
1164 android_glUniformMatrix2x4fv__IIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) argument
1189 android_glUniformMatrix4x2fv__IIZ_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
1234 android_glUniformMatrix4x2fv__IIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) argument
1259 android_glUniformMatrix3x4fv__IIZ_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
1304 android_glUniformMatrix3x4fv__IIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) argument
1329 android_glUniformMatrix4x3fv__IIZ_3FI(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jfloatArray value_ref, jint offset) argument
1374 android_glUniformMatrix4x3fv__IIZLjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jboolean transpose, jobject value_buf) argument
1399 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
1417 android_glRenderbufferStorageMultisample__IIIII(JNIEnv *_env, jobject _this, jint target, jint samples, jint internalformat, jint width, jint height) argument
1430 android_glFramebufferTextureLayer__IIIII(JNIEnv *_env, jobject _this, jint target, jint attachment, jint texture, jint level, jint layer) argument
1443 android_glMapBufferRange__IIII(JNIEnv *_env, jobject _this, jint target, jint offset, jint length, jint access) argument
1456 android_glFlushMappedBufferRange__III(JNIEnv *_env, jobject _this, jint target, jint offset, jint length) argument
1467 android_glBindVertexArray__I(JNIEnv *_env, jobject _this, jint array) argument
1476 android_glDeleteVertexArrays__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray arrays_ref, jint offset) argument
1519 android_glDeleteVertexArrays__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject arrays_buf) argument
1542 android_glGenVertexArrays__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray arrays_ref, jint offset) argument
1585 android_glGenVertexArrays__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject arrays_buf) argument
1608 android_glIsVertexArray__I(JNIEnv *_env, jobject _this, jint array) argument
1619 android_glGetIntegeri_v__II_3II(JNIEnv *_env, jobject _this, jint target, jint index, jintArray data_ref, jint offset) argument
1663 android_glGetIntegeri_v__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint index, jobject data_buf) argument
1687 android_glBeginTransformFeedback__I(JNIEnv *_env, jobject _this, jint primitiveMode) argument
1696 android_glEndTransformFeedback__(JNIEnv *_env, jobject _this) argument
1703 android_glBindBufferRange__IIIII(JNIEnv *_env, jobject _this, jint target, jint index, jint buffer, jint offset, jint size) argument
1716 android_glBindBufferBase__III(JNIEnv *_env, jobject _this, jint target, jint index, jint buffer) argument
1728 android_glTransformFeedbackVaryings(JNIEnv *_env, jobject _this, jint program, jobjectArray varyings_ref, jint bufferMode) argument
1776 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
1896 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
1948 android_glGetTransformFeedbackVarying1(JNIEnv *_env, jobject _this, jint program, jint index, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset) argument
2043 android_glGetTransformFeedbackVarying2(JNIEnv *_env, jobject _this, jint program, jint index, jobject size_buf, jobject type_buf) argument
2104 android_glVertexAttribIPointerBounds__IIIILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint index, jint size, jint type, jint stride, jobject pointer_buf, jint remaining) argument
2129 android_glVertexAttribIPointer__IIIII(JNIEnv *_env, jobject _this, jint index, jint size, jint type, jint stride, jint offset) argument
2142 android_glGetVertexAttribIiv__II_3II(JNIEnv *_env, jobject _this, jint index, jint pname, jintArray params_ref, jint offset) argument
2186 android_glGetVertexAttribIiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint index, jint pname, jobject params_buf) argument
2210 android_glGetVertexAttribIuiv__II_3II(JNIEnv *_env, jobject _this, jint index, jint pname, jintArray params_ref, jint offset) argument
2254 android_glGetVertexAttribIuiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint index, jint pname, jobject params_buf) argument
2278 android_glVertexAttribI4i__IIIII(JNIEnv *_env, jobject _this, jint index, jint x, jint y, jint z, jint w) argument
2291 android_glVertexAttribI4ui__IIIII(JNIEnv *_env, jobject _this, jint index, jint x, jint y, jint z, jint w) argument
2304 android_glVertexAttribI4iv__I_3II(JNIEnv *_env, jobject _this, jint index, jintArray v_ref, jint offset) argument
2347 android_glVertexAttribI4iv__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint index, jobject v_buf) argument
2370 android_glVertexAttribI4uiv__I_3II(JNIEnv *_env, jobject _this, jint index, jintArray v_ref, jint offset) argument
2413 android_glVertexAttribI4uiv__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint index, jobject v_buf) argument
2436 android_glGetUniformuiv__II_3II(JNIEnv *_env, jobject _this, jint program, jint location, jintArray params_ref, jint offset) argument
2480 android_glGetUniformuiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint program, jint location, jobject params_buf) argument
2504 android_glGetFragDataLocation__ILjava_lang_String_2(JNIEnv *_env, jobject _this, jint program, jstring name) argument
2537 android_glUniform1ui__II(JNIEnv *_env, jobject _this, jint location, jint v0) argument
2547 android_glUniform2ui__III(JNIEnv *_env, jobject _this, jint location, jint v0, jint v1) argument
2558 android_glUniform3ui__IIII(JNIEnv *_env, jobject _this, jint location, jint v0, jint v1, jint v2) argument
2570 android_glUniform4ui__IIIII(JNIEnv *_env, jobject _this, jint location, jint v0, jint v1, jint v2, jint v3) argument
2583 android_glUniform1uiv__II_3II(JNIEnv *_env, jobject _this, jint location, jint count, jintArray value_ref, jint offset) argument
2627 android_glUniform1uiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject value_buf) argument
2651 android_glUniform2uiv__II_3II(JNIEnv *_env, jobject _this, jint location, jint count, jintArray value_ref, jint offset) argument
2695 android_glUniform2uiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject value_buf) argument
2719 android_glUniform3uiv__II_3II(JNIEnv *_env, jobject _this, jint location, jint count, jintArray value_ref, jint offset) argument
2763 android_glUniform3uiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject value_buf) argument
2787 android_glUniform4uiv__II_3II(JNIEnv *_env, jobject _this, jint location, jint count, jintArray value_ref, jint offset) argument
2831 android_glUniform4uiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint location, jint count, jobject value_buf) argument
2855 android_glClearBufferiv__II_3II(JNIEnv *_env, jobject _this, jint buffer, jint drawbuffer, jintArray value_ref, jint offset) argument
2899 android_glClearBufferiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint buffer, jint drawbuffer, jobject value_buf) argument
2923 android_glClearBufferuiv__II_3II(JNIEnv *_env, jobject _this, jint buffer, jint drawbuffer, jintArray value_ref, jint offset) argument
2967 android_glClearBufferuiv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint buffer, jint drawbuffer, jobject value_buf) argument
2991 android_glClearBufferfv__II_3FI(JNIEnv *_env, jobject _this, jint buffer, jint drawbuffer, jfloatArray value_ref, jint offset) argument
3035 android_glClearBufferfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint buffer, jint drawbuffer, jobject value_buf) argument
3059 android_glClearBufferfi__IIFI(JNIEnv *_env, jobject _this, jint buffer, jint drawbuffer, jfloat depth, jint stencil) argument
3071 android_glGetStringi__II(JNIEnv *_env, jobject _this, jint name, jint index) argument
3079 android_glCopyBufferSubData__IIIII(JNIEnv *_env, jobject _this, jint readTarget, jint writeTarget, jint readOffset, jint writeOffset, jint size) argument
3093 android_glGetUniformIndices_array(JNIEnv *_env, jobject _this, jint program, jobjectArray uniformNames_ref, jintArray uniformIndices_ref, jint uniformIndicesOffset) argument
3169 android_glGetUniformIndices_buffer(JNIEnv *_env, jobject _this, jint program, jobjectArray uniformNames_ref, jobject uniformIndices_buf) argument
3246 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
3316 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
3354 android_glGetUniformBlockIndex__ILjava_lang_String_2(JNIEnv *_env, jobject _this, jint program, jstring uniformBlockName) argument
3387 android_glGetActiveUniformBlockiv__III_3II(JNIEnv *_env, jobject _this, jint program, jint uniformBlockIndex, jint pname, jintArray params_ref, jint offset) argument
3432 android_glGetActiveUniformBlockiv__IIILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint program, jint uniformBlockIndex, jint pname, jobject params_buf) argument
3457 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
3527 android_glGetActiveUniformBlockName_IILjava_nio_Buffer_2Ljava_nio_Buffer_2(JNIEnv* _env, jobject _this, jint program, jint uniformBlockIndex, jobject length_buf, jobject uniformBlockName_buf) argument
3569 android_glGetActiveUniformBlockName_II(JNIEnv *_env, jobject _this, jint program, jint uniformBlockIndex) argument
3584 android_glUniformBlockBinding__III(JNIEnv *_env, jobject _this, jint program, jint uniformBlockIndex, jint uniformBlockBinding) argument
3595 android_glDrawArraysInstanced__IIII(JNIEnv *_env, jobject _this, jint mode, jint first, jint count, jint instanceCount) argument
3607 android_glDrawElementsInstanced__IIILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jobject indices_buf, jint instanceCount) argument
3633 android_glDrawElementsInstanced__IIIII(JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jint indicesOffset, jint instanceCount) argument
3646 android_glFenceSync__II(JNIEnv *_env, jobject _this, jint condition, jint flags) argument
3658 android_glIsSync__J(JNIEnv *_env, jobject _this, jlong sync) argument
3669 android_glDeleteSync__J(JNIEnv *_env, jobject _this, jlong sync) argument
3678 android_glClientWaitSync__JIJ(JNIEnv *_env, jobject _this, jlong sync, jint flags, jlong timeout) argument
3691 android_glWaitSync__JIJ(JNIEnv *_env, jobject _this, jlong sync, jint flags, jlong timeout) argument
3702 android_glGetInteger64v__I_3JI(JNIEnv *_env, jobject _this, jint pname, jlongArray params_ref, jint offset) argument
3745 android_glGetInteger64v__ILjava_nio_LongBuffer_2(JNIEnv *_env, jobject _this, jint pname, jobject params_buf) argument
3768 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
3838 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
3876 android_glGetInteger64i_v__II_3JI(JNIEnv *_env, jobject _this, jint target, jint index, jlongArray data_ref, jint offset) argument
3920 android_glGetInteger64i_v__IILjava_nio_LongBuffer_2(JNIEnv *_env, jobject _this, jint target, jint index, jobject data_buf) argument
3944 android_glGetBufferParameteri64v__II_3JI(JNIEnv *_env, jobject _this, jint target, jint pname, jlongArray params_ref, jint offset) argument
3988 android_glGetBufferParameteri64v__IILjava_nio_LongBuffer_2(JNIEnv *_env, jobject _this, jint target, jint pname, jobject params_buf) argument
4012 android_glGenSamplers__I_3II(JNIEnv *_env, jobject _this, jint count, jintArray samplers_ref, jint offset) argument
4055 android_glGenSamplers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint count, jobject samplers_buf) argument
4078 android_glDeleteSamplers__I_3II(JNIEnv *_env, jobject _this, jint count, jintArray samplers_ref, jint offset) argument
4121 android_glDeleteSamplers__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint count, jobject samplers_buf) argument
4144 android_glIsSampler__I(JNIEnv *_env, jobject _this, jint sampler) argument
4155 android_glBindSampler__II(JNIEnv *_env, jobject _this, jint unit, jint sampler) argument
4165 android_glSamplerParameteri__III(JNIEnv *_env, jobject _this, jint sampler, jint pname, jint param) argument
4176 android_glSamplerParameteriv__II_3II(JNIEnv *_env, jobject _this, jint sampler, jint pname, jintArray param_ref, jint offset) argument
4220 android_glSamplerParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject param_buf) argument
4244 android_glSamplerParameterf__IIF(JNIEnv *_env, jobject _this, jint sampler, jint pname, jfloat param) argument
4255 android_glSamplerParameterfv__II_3FI(JNIEnv *_env, jobject _this, jint sampler, jint pname, jfloatArray param_ref, jint offset) argument
4299 android_glSamplerParameterfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject param_buf) argument
4323 android_glGetSamplerParameteriv__II_3II(JNIEnv *_env, jobject _this, jint sampler, jint pname, jintArray params_ref, jint offset) argument
4367 android_glGetSamplerParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject params_buf) argument
4391 android_glGetSamplerParameterfv__II_3FI(JNIEnv *_env, jobject _this, jint sampler, jint pname, jfloatArray params_ref, jint offset) argument
4435 android_glGetSamplerParameterfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject params_buf) argument
4459 android_glVertexAttribDivisor__II(JNIEnv *_env, jobject _this, jint index, jint divisor) argument
4469 android_glBindTransformFeedback__II(JNIEnv *_env, jobject _this, jint target, jint id) argument
4479 android_glDeleteTransformFeedbacks__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray ids_ref, jint offset) argument
4522 android_glDeleteTransformFeedbacks__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject ids_buf) argument
4545 android_glGenTransformFeedbacks__I_3II(JNIEnv *_env, jobject _this, jint n, jintArray ids_ref, jint offset) argument
4588 android_glGenTransformFeedbacks__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint n, jobject ids_buf) argument
4611 android_glIsTransformFeedback__I(JNIEnv *_env, jobject _this, jint id) argument
4622 android_glPauseTransformFeedback__(JNIEnv *_env, jobject _this) argument
4629 android_glResumeTransformFeedback__(JNIEnv *_env, jobject _this) argument
4636 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
4718 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
4768 android_glProgramBinary__IILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint program, jint binaryFormat, jobject binary_buf, jint length) argument
4793 android_glProgramParameteri__III(JNIEnv *_env, jobject _this, jint program, jint pname, jint value) argument
4804 android_glInvalidateFramebuffer__II_3II(JNIEnv *_env, jobject _this, jint target, jint numAttachments, jintArray attachments_ref, jint offset) argument
4848 android_glInvalidateFramebuffer__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint numAttachments, jobject attachments_buf) argument
4872 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
4920 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
4948 android_glTexStorage2D__IIIII(JNIEnv *_env, jobject _this, jint target, jint levels, jint internalformat, jint width, jint height) argument
4961 android_glTexStorage3D__IIIIII(JNIEnv *_env, jobject _this, jint target, jint levels, jint internalformat, jint width, jint height, jint depth) argument
4975 android_glGetInternalformativ__IIII_3II(JNIEnv *_env, jobject _this, jint target, jint internalformat, jint pname, jint bufSize, jintArray params_ref, jint offset) argument
5021 android_glGetInternalformativ__IIIILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint target, jint internalformat, jint pname, jint bufSize, jobject params_buf) argument
5212 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 1211 milliseconds

12