glNamedBufferStorageMemExt function opengl_glext

void glNamedBufferStorageMemExt(
  1. int buffer,
  2. Pointer<Uint32> size,
  3. int memory,
  4. int offset,
)
GLAPI void APIENTRY glNamedBufferStorageMemEXT (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset)

Implementation

void glNamedBufferStorageMemExt(
  int buffer,
  Pointer<Uint32> size,
  int memory,
  int offset,
) {
  final glNamedBufferStorageMemExtAsFunction = _glNamedBufferStorageMemExt
      .cast<
        NativeFunction<
          Void Function(
            Uint32 buffer,
            Pointer<Uint32> size,
            Uint32 memory,
            Uint64 offset,
          )
        >
      >()
      .asFunction<
        void Function(int buffer, Pointer<Uint32> size, int memory, int offset)
      >();
  return glNamedBufferStorageMemExtAsFunction(buffer, size, memory, offset);
}