glGetProgramResourceName method
void
glGetProgramResourceName()
Implementation
void glGetProgramResourceName(
int program,
int programInterface,
int index,
int bufSize,
ffi.Pointer<ffi.Int32> length,
ffi.Pointer<ffi.Int8> name,
) {
return (_glGetProgramResourceName ??= _dylib.lookupFunction<
_c_glGetProgramResourceName,
_dart_glGetProgramResourceName>('glGetProgramResourceName'))(
program,
programInterface,
index,
bufSize,
length,
name,
);
}