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

/frameworks/base/core/jni/
H A Dandroid_opengl_GLES31.cpp3013 /* void glVertexAttribFormat ( GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset ) */
3016 (JNIEnv *_env, jobject _this, jint attribindex, jint size, jint type, jboolean normalized, jint relativeoffset) {
3018 (GLuint)attribindex,
3026 /* void glVertexAttribIFormat ( GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset ) */
3029 (JNIEnv *_env, jobject _this, jint attribindex, jint size, jint type, jint relativeoffset) {
3031 (GLuint)attribindex,
3038 /* void glVertexAttribBinding ( GLuint attribindex, GLuint bindingindex ) */
3041 (JNIEnv *_env, jobject _this, jint attribindex, jint bindingindex) {
3043 (GLuint)attribindex,
3015 android_glVertexAttribFormat__IIIZI(JNIEnv *_env, jobject _this, jint attribindex, jint size, jint type, jboolean normalized, jint relativeoffset) argument
3028 android_glVertexAttribIFormat__IIII(JNIEnv *_env, jobject _this, jint attribindex, jint size, jint type, jint relativeoffset) argument
3040 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 153 milliseconds