GLAPI void APIENTRY glBindBufferOffsetEXT (GLenum target, GLuint index, GLuint buffer, GLintptr offset)
Implementation
void glBindBufferOffsetExt(
int target,
int index,
int buffer,
Pointer<NativeType> offset,
) {
final glBindBufferOffsetExtAsFunction = _glBindBufferOffsetExt
.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 glBindBufferOffsetExtAsFunction(target, index, buffer, offset);
}