glBufferStorageMemExt function opengl_glext

void glBufferStorageMemExt(
  1. int target,
  2. Pointer<Uint32> size,
  3. int memory,
  4. int offset,
)
GLAPI void APIENTRY glBufferStorageMemEXT (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset)

Implementation

void glBufferStorageMemExt(
  int target,
  Pointer<Uint32> size,
  int memory,
  int offset,
) {
  final glBufferStorageMemExtAsFunction = _glBufferStorageMemExt
      .cast<
        NativeFunction<
          Void Function(
            Uint32 target,
            Pointer<Uint32> size,
            Uint32 memory,
            Uint64 offset,
          )
        >
      >()
      .asFunction<
        void Function(int target, Pointer<Uint32> size, int memory, int offset)
      >();
  return glBufferStorageMemExtAsFunction(target, size, memory, offset);
}