Searched refs:bufLength (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/libs/rs/
H A DrsShaderCache.cpp115 GLint bufLength = 0; local
116 glGetProgramiv(pgm, GL_INFO_LOG_LENGTH, &bufLength);
117 if (bufLength) {
118 char* buf = (char*) malloc(bufLength);
120 glGetProgramInfoLog(pgm, bufLength, NULL, buf);
/frameworks/base/opengl/tests/gl2_jni/jni/
H A Dgl_code.cpp84 GLint bufLength = 0; local
85 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
86 if (bufLength) {
87 char* buf = (char*) malloc(bufLength);
89 glGetProgramInfoLog(program, bufLength, NULL, buf);
/frameworks/base/opengl/tests/gldual/jni/
H A Dgl_code.cpp84 GLint bufLength = 0; local
85 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
86 if (bufLength) {
87 char* buf = (char*) malloc(bufLength);
89 glGetProgramInfoLog(program, bufLength, NULL, buf);
/frameworks/base/opengl/tests/gl2_basic/
H A Dgl2_basic.cpp123 GLint bufLength = 0; local
124 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
125 if (bufLength) {
126 char* buf = (char*) malloc(bufLength);
128 glGetProgramInfoLog(program, bufLength, NULL, buf);

Completed in 248 milliseconds