glGetNamedBufferPointervExt function opengl_glext

void glGetNamedBufferPointervExt(
  1. int buffer,
  2. int pname,
  3. Pointer<Pointer<Void>> params
)
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);
}