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);
}