Searched defs:attribindex (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_opengl_GLES31.cpp3131 /* void glVertexAttribFormat ( GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset ) */
3134 (JNIEnv *_env, jobject _this, jint attribindex, jint size, jint type, jboolean normalized, jint relativeoffset) {
3136 (GLuint)attribindex,
3144 /* void glVertexAttribIFormat ( GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset ) */
3147 (JNIEnv *_env, jobject _this, jint attribindex, jint size, jint type, jint relativeoffset) {
3149 (GLuint)attribindex,
3156 /* void glVertexAttribBinding ( GLuint attribindex, GLuint bindingindex ) */
3159 (JNIEnv *_env, jobject _this, jint attribindex, jint bindingindex) {
3161 (GLuint)attribindex,
3133 android_glVertexAttribFormat__IIIZI(JNIEnv *_env, jobject _this, jint attribindex, jint size, jint type, jboolean normalized, jint relativeoffset) argument
3146 android_glVertexAttribIFormat__IIII(JNIEnv *_env, jobject _this, jint attribindex, jint size, jint type, jint relativeoffset) argument
3158 android_glVertexAttribBinding__II(JNIEnv *_env, jobject _this, jint attribindex, jint bindingindex) argument
/frameworks/base/opengl/java/android/opengl/
H A DGLES31.java1066 // C function void glVertexAttribFormat ( GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset )
1069 int attribindex,
1076 // C function void glVertexAttribIFormat ( GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset )
1079 int attribindex,
1085 // C function void glVertexAttribBinding ( GLuint attribindex, GLuint bindingindex )
1088 int attribindex,
1068 glVertexAttribFormat( int attribindex, int size, int type, boolean normalized, int relativeoffset ) argument
1078 glVertexAttribIFormat( int attribindex, int size, int type, int relativeoffset ) argument
1087 glVertexAttribBinding( int attribindex, int bindingindex ) argument
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp13285 void GLTrace_glVertexAttribFormat(GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset) { argument
13291 // copy argument attribindex
13295 arg_attribindex->add_intvalue(attribindex);
13324 glContext->hooks->gl.glVertexAttribFormat(attribindex, size, type, normalized, relativeoffset);
13337 void GLTrace_glVertexAttribIFormat(GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset) { argument
13343 // copy argument attribindex
13347 arg_attribindex->add_intvalue(attribindex);
13370 glContext->hooks->gl.glVertexAttribIFormat(attribindex, size, type, relativeoffset);
13383 void GLTrace_glVertexAttribBinding(GLuint attribindex, GLuint bindingindex) { argument
13389 // copy argument attribindex
[all...]

Completed in 523 milliseconds