GLAPI void APIENTRY glGetNamedBufferPointervEXT (GLuint buffer, GLenum pname, void **params)
Implementation
void glGetNamedBufferPointervExt(
int buffer,
int pname,
Pointer<Pointer<Void>> params,
) {
final glGetNamedBufferPointervExtAsFunction = _glGetNamedBufferPointervExt
.cast<
NativeFunction<
Void Function(
Uint32 buffer,
Uint32 pname,
Pointer<Pointer<Void>> params,
)
>
>()
.asFunction<
void Function(int buffer, int pname, Pointer<Pointer<Void>> params)
>();
return glGetNamedBufferPointervExtAsFunction(buffer, pname, params);
}