Home
last modified time | relevance | path

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

/frameworks/base/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/base/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/base/libs/rs/
DrsShaderCache.cpp115 GLint bufLength = 0; in lookup() local
116 glGetProgramiv(pgm, GL_INFO_LOG_LENGTH, &bufLength); in lookup()
117 if (bufLength) { in lookup()
118 char* buf = (char*) malloc(bufLength); in lookup()
120 glGetProgramInfoLog(pgm, bufLength, NULL, buf); in lookup()
/frameworks/base/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()