glGetProgramResourceLocation method
Implementation
int glGetProgramResourceLocation(
  int program,
  int programInterface,
  ffi.Pointer<ffi.Int8> name,
) {
  return (_glGetProgramResourceLocation ??= _dylib.lookupFunction<
      _c_glGetProgramResourceLocation,
      _dart_glGetProgramResourceLocation>('glGetProgramResourceLocation'))(
    program,
    programInterface,
    name,
  );
}