Home
last modified time | relevance | path

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

/development/perftests/panorama/feature_mos/src/mosaic_renderer/
DRenderer.cpp94 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/
Dgl_code.cpp104 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()