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

/frameworks/native/opengl/tests/gl2_jni/jni/
H A Dgl_code.cpp89 GLint bufLength = 0; local
90 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
91 if (bufLength) {
92 char* buf = (char*) malloc(bufLength);
94 glGetProgramInfoLog(program, bufLength, NULL, buf);
/frameworks/native/opengl/tests/gldual/jni/
H A Dgl_code.cpp89 GLint bufLength = 0; local
90 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
91 if (bufLength) {
92 char* buf = (char*) malloc(bufLength);
94 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.cpp320 GLint bufLength = 0; local
321 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
322 if (bufLength) {
323 char* buf = (char*) malloc(bufLength);
325 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.cpp160 GLint bufLength = 0; local
161 glGetProgramiv(pgm, GL_INFO_LOG_LENGTH, &bufLength);
162 if (bufLength) {
163 char* buf = (char*) malloc(bufLength);
165 glGetProgramInfoLog(pgm, bufLength, nullptr, buf);
/frameworks/native/cmds/flatland/
H A DGLHelper.cpp374 GLint bufLength = 0; local
375 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
376 if (bufLength) {
377 char* buf = new char[bufLength];
379 glGetProgramInfoLog(program, bufLength, NULL, buf);
/frameworks/native/opengl/tests/gl2_basic/
H A Dgl2_basic.cpp132 GLint bufLength = 0; local
133 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
134 if (bufLength) {
135 char* buf = (char*) malloc(bufLength);
137 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);

Completed in 424 milliseconds