glGetNamedBufferPointervExt function opengl_glext

void glGetNamedBufferPointervExt(
  1. int buffer,
  2. int pname,
  3. Pointer<Pointer<NativeType>> params
)
GLAPI void APIENTRY glGetNamedBufferPointervEXT (GLuint buffer, GLenum pname, void **params)

Implementation

void glGetNamedBufferPointervExt(
  int buffer,
  int pname,
  Pointer<Pointer<NativeType>> params,
) {
  final glGetNamedBufferPointervExtAsFunction = _glGetNamedBufferPointervExt
      .cast<
        NativeFunction<
          Void Function(
            Uint32 buffer,
            Uint32 pname,
            Pointer<Pointer<NativeType>> params,
          )
        >
      >()
      .asFunction<
        void Function(
          int buffer,
          int pname,
          Pointer<Pointer<NativeType>> params,
        )
      >();
  return glGetNamedBufferPointervExtAsFunction(buffer, pname, params);
}