glBindBufferRangeExt function opengl_glext
void
glBindBufferRangeExt()
GLAPI void APIENTRY glBindBufferRangeEXT (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size)
Implementation
void glBindBufferRangeExt(
int target,
int index,
int buffer,
Pointer<NativeType> offset,
Pointer<Uint32> size,
) {
final glBindBufferRangeExtAsFunction = _glBindBufferRangeExt
.cast<
NativeFunction<
Void Function(
Uint32 target,
Uint32 index,
Uint32 buffer,
Pointer<NativeType> offset,
Pointer<Uint32> size,
)
>
>()
.asFunction<
void Function(
int target,
int index,
int buffer,
Pointer<NativeType> offset,
Pointer<Uint32> size,
)
>();
return glBindBufferRangeExtAsFunction(target, index, buffer, offset, size);
}