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

/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/gl_perf/
H A Dfill_common.cpp91 GLint bufLength = 0; local
92 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
93 if (bufLength) {
94 char* buf = (char*) malloc(bufLength);
96 glGetProgramInfoLog(program, bufLength, NULL, buf);
/frameworks/base/libs/rs/driver/
H A DrsdShaderCache.cpp164 GLint bufLength = 0; local
165 glGetProgramiv(pgm, GL_INFO_LOG_LENGTH, &bufLength);
166 if (bufLength) {
167 char* buf = (char*) malloc(bufLength);
169 glGetProgramInfoLog(pgm, 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);
/frameworks/base/opengl/tests/gl2_copyTexImage/
H A Dgl2_copyTexImage.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);
/frameworks/base/opengl/tests/gl2_yuvtex/
H A Dgl2_yuvtex.cpp139 GLint bufLength = 0; local
140 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
141 if (bufLength) {
142 char* buf = (char*) malloc(bufLength);
144 glGetProgramInfoLog(program, bufLength, NULL, buf);
/frameworks/base/media/libstagefright/tests/
H A DSurfaceMediaSource_test.cpp265 GLint bufLength = 0; local
266 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
267 if (bufLength) {
268 char* buf = (char*) malloc(bufLength);
270 glGetProgramInfoLog(program, bufLength, NULL, buf);
/frameworks/base/libs/gui/tests/
H A DSurfaceTexture_test.cpp253 GLint bufLength = 0; local
254 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
255 if (bufLength) {
256 char* buf = (char*) malloc(bufLength);
258 glGetProgramInfoLog(program, bufLength, NULL, buf);

Completed in 164 milliseconds