glBindBufferOffsetNv function opengl_glext

void glBindBufferOffsetNv(
  1. int target,
  2. int index,
  3. int buffer,
  4. Pointer<NativeType> offset,
)
GLAPI void APIENTRY glBindBufferOffsetNV (GLenum target, GLuint index, GLuint buffer, GLintptr offset)

Implementation

void glBindBufferOffsetNv(
  int target,
  int index,
  int buffer,
  Pointer<NativeType> offset,
) {
  final glBindBufferOffsetNvAsFunction = _glBindBufferOffsetNv
      .cast<
        NativeFunction<
          Void Function(
            Uint32 target,
            Uint32 index,
            Uint32 buffer,
            Pointer<NativeType> offset,
          )
        >
      >()
      .asFunction<
        void Function(
          int target,
          int index,
          int buffer,
          Pointer<NativeType> offset,
        )
      >();
  return glBindBufferOffsetNvAsFunction(target, index, buffer, offset);
}