Searched refs:bufLength (Results 1 – 2 of 2) sorted by relevance
178 GLint bufLength = 0; in createProgram() local179 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); in createProgram()180 if (bufLength) { in createProgram()181 char* buf = (char*) malloc(bufLength); in createProgram()183 glGetProgramInfoLog(program, bufLength, 0, buf); in createProgram()
116 int bufLength = forEncryption ? BLOCK_SIZE : (BLOCK_SIZE + macSize); in init() local117 this.bufBlock = new byte[bufLength]; in init()