Searched refs:bufLength (Results 1 - 11 of 11) 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/av/cmds/screenrecord/
H A DProgram.cpp183 GLint bufLength = 0; local
184 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
185 if (bufLength) {
186 char* buf = new char[bufLength];
188 glGetProgramInfoLog(program, bufLength, NULL, buf);
/frameworks/native/libs/gui/tests/
H A DGLTest.cpp318 GLint bufLength = 0; local
319 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
320 if (bufLength) {
321 char* buf = (char*) malloc(bufLength);
323 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.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, nullptr, buf);
/frameworks/native/cmds/flatland/
H A DGLHelper.cpp388 GLint bufLength = 0; local
389 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
390 if (bufLength) {
391 char* buf = new char[bufLength];
393 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.cpp262 GLint bufLength = 0; local
263 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
264 if (bufLength) {
265 char* buf = (char*) malloc(bufLength);
267 glGetProgramInfoLog(program, bufLength, NULL, buf);

Completed in 254 milliseconds