glBindBufferOffsetExt function

void glBindBufferOffsetExt(
  1. int target,
  2. int index,
  3. int buffer,
  4. int offset,
)
define glBindBufferOffsetEXT GLEW_GET_FUN(__glewBindBufferOffsetEXT)
GLEW_FUN_EXPORT PFNGLBINDBUFFEROFFSETEXTPROC __glewBindBufferOffsetEXT
typedef void (GLAPIENTRY * PFNGLBINDBUFFEROFFSETEXTPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset)

Implementation

void glBindBufferOffsetExt(int target, int index, int buffer, int offset) {
  final glBindBufferOffsetExtAsFunction = _glBindBufferOffsetExt
      .cast<
          NativeFunction<
              Void Function(
                  Uint32 target, Uint32 index, Uint32 buffer, Uint64 offset)>>()
      .asFunction<
          void Function(int target, int index, int buffer, int offset)>();
  return glBindBufferOffsetExtAsFunction(target, index, buffer, offset);
}