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

/frameworks/native/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/native/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/native/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/native/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/rs/driver/
H A DrsdShaderCache.cpp157 GLint bufLength = 0; local
158 glGetProgramiv(pgm, GL_INFO_LOG_LENGTH, &bufLength);
159 if (bufLength) {
160 char* buf = (char*) malloc(bufLength);
162 glGetProgramInfoLog(pgm, bufLength, NULL, buf);
/frameworks/native/cmds/flatland/
H A DGLHelper.cpp386 GLint bufLength = 0; local
387 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
388 if (bufLength) {
389 char* buf = new char[bufLength];
391 glGetProgramInfoLog(program, bufLength, NULL, buf);
/frameworks/native/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/native/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/av/media/libstagefright/tests/
H A DSurfaceMediaSource_test.cpp267 GLint bufLength = 0; local
268 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
269 if (bufLength) {
270 char* buf = (char*) malloc(bufLength);
272 glGetProgramInfoLog(program, bufLength, NULL, buf);
/frameworks/native/libs/gui/tests/
H A DSurfaceTexture_test.cpp354 GLint bufLength = 0; local
355 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
356 if (bufLength) {
357 char* buf = (char*) malloc(bufLength);
359 glGetProgramInfoLog(program, bufLength, NULL, buf);

Completed in 178 milliseconds