Home
last modified time | relevance | path

Searched refs:bufLength (Results 1 – 11 of 11) sorted by relevance

/frameworks/native/opengl/tests/gl2_jni/jni/
Dgl_code.cpp84 GLint bufLength = 0; in createProgram() local
85 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); in createProgram()
86 if (bufLength) { in createProgram()
87 char* buf = (char*) malloc(bufLength); in createProgram()
89 glGetProgramInfoLog(program, bufLength, NULL, buf); in createProgram()
/frameworks/native/opengl/tests/gldual/jni/
Dgl_code.cpp84 GLint bufLength = 0; in createProgram() local
85 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); in createProgram()
86 if (bufLength) { in createProgram()
87 char* buf = (char*) malloc(bufLength); in createProgram()
89 glGetProgramInfoLog(program, bufLength, NULL, buf); in createProgram()
/frameworks/av/cmds/screenrecord/
DProgram.cpp183 GLint bufLength = 0; in linkShaderProgram() local
184 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); in linkShaderProgram()
185 if (bufLength) { in linkShaderProgram()
186 char* buf = new char[bufLength]; in linkShaderProgram()
188 glGetProgramInfoLog(program, bufLength, NULL, buf); in linkShaderProgram()
/frameworks/native/opengl/tests/gl_perf/
Dfill_common.cpp91 GLint bufLength = 0; in createProgram() local
92 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); in createProgram()
93 if (bufLength) { in createProgram()
94 char* buf = (char*) malloc(bufLength); in createProgram()
96 glGetProgramInfoLog(program, bufLength, NULL, buf); in createProgram()
/frameworks/native/opengl/tests/gl2_basic/
Dgl2_basic.cpp123 GLint bufLength = 0; in createProgram() local
124 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); in createProgram()
125 if (bufLength) { in createProgram()
126 char* buf = (char*) malloc(bufLength); in createProgram()
128 glGetProgramInfoLog(program, bufLength, NULL, buf); in createProgram()
/frameworks/rs/driver/
DrsdShaderCache.cpp157 GLint bufLength = 0; in link() local
158 glGetProgramiv(pgm, GL_INFO_LOG_LENGTH, &bufLength); in link()
159 if (bufLength) { in link()
160 char* buf = (char*) malloc(bufLength); in link()
162 glGetProgramInfoLog(pgm, bufLength, NULL, buf); in link()
/frameworks/native/libs/gui/tests/
DGLTest.cpp318 GLint bufLength = 0; in createProgram() local
319 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); in createProgram()
320 if (bufLength) { in createProgram()
321 char* buf = (char*) malloc(bufLength); in createProgram()
323 glGetProgramInfoLog(program, bufLength, NULL, buf); in createProgram()
/frameworks/native/opengl/tests/gl2_copyTexImage/
Dgl2_copyTexImage.cpp123 GLint bufLength = 0; in createProgram() local
124 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); in createProgram()
125 if (bufLength) { in createProgram()
126 char* buf = (char*) malloc(bufLength); in createProgram()
128 glGetProgramInfoLog(program, bufLength, NULL, buf); in createProgram()
/frameworks/native/opengl/tests/gl2_yuvtex/
Dgl2_yuvtex.cpp139 GLint bufLength = 0; in createProgram() local
140 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); in createProgram()
141 if (bufLength) { in createProgram()
142 char* buf = (char*) malloc(bufLength); in createProgram()
144 glGetProgramInfoLog(program, bufLength, NULL, buf); in createProgram()
/frameworks/native/cmds/flatland/
DGLHelper.cpp388 GLint bufLength = 0; in linkShaderProgram() local
389 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); in linkShaderProgram()
390 if (bufLength) { in linkShaderProgram()
391 char* buf = new char[bufLength]; in linkShaderProgram()
393 glGetProgramInfoLog(program, bufLength, NULL, buf); in linkShaderProgram()
/frameworks/av/media/libstagefright/tests/
DSurfaceMediaSource_test.cpp266 GLint bufLength = 0; in createProgram() local
267 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); in createProgram()
268 if (bufLength) { in createProgram()
269 char* buf = (char*) malloc(bufLength); in createProgram()
271 glGetProgramInfoLog(program, bufLength, NULL, buf); in createProgram()