Searched refs:bufLength (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/opengl/tests/gldual/jni/ |
D | gl_code.cpp | 84 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/ |
D | gl_code.cpp | 84 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/ |
D | rsShaderCache.cpp | 115 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/ |
D | gl2_basic.cpp | 123 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()
|