Searched defs:relativeoffset (Results 1 - 2 of 2) 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) {
3140 (GLuint)relativeoffset
3144 /* void glVertexAttribIFormat ( GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset ) */
3147 (JNIEnv *_env, jobject _this, jint attribindex, jint size, jint type, jint relativeoffset) {
3152 (GLuint)relativeoffset
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
/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
13315 // copy argument relativeoffset
13319 arg_relativeoffset->add_intvalue(relativeoffset);
13324 glContext->hooks->gl.glVertexAttribFormat(attribindex, size, type, normalized, relativeoffset);
13337 void GLTrace_glVertexAttribIFormat(GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset) { argument
13361 // copy argument relativeoffset
13365 arg_relativeoffset->add_intvalue(relativeoffset);
13370 glContext->hooks->gl.glVertexAttribIFormat(attribindex, size, type, relativeoffset);
[all...]

Completed in 1053 milliseconds