glGetProgramInfoLog method
Implementation
void glGetProgramInfoLog(
int program,
int bufSize,
ffi.Pointer<ffi.Int32> length,
ffi.Pointer<ffi.Int8> infoLog,
) {
return (_glGetProgramInfoLog ??= _dylib.lookupFunction<
_c_glGetProgramInfoLog,
_dart_glGetProgramInfoLog>('glGetProgramInfoLog'))(
program,
bufSize,
length,
infoLog,
);
}