Searched refs:bufLength (Results 1 – 2 of 2) sorted by relevance
/development/perftests/panorama/feature_mos/src/mosaic_renderer/ |
D | Renderer.cpp | 94 GLint bufLength = 0; in createProgram() local 95 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); in createProgram() 96 if (bufLength) in createProgram() 98 char* buf = (char*) malloc(bufLength); in createProgram() 101 glGetProgramInfoLog(program, bufLength, NULL, buf); in createProgram()
|
/development/ndk/platforms/android-5/samples/hello-gl2/jni/ |
D | gl_code.cpp | 104 GLint bufLength = 0; in createProgram() local 105 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); in createProgram() 106 if (bufLength) { in createProgram() 107 char* buf = (char*) malloc(bufLength); in createProgram() 109 glGetProgramInfoLog(program, bufLength, NULL, buf); in createProgram()
|