glFlushMappedNamedBufferRangeExt function opengl_glext
void
glFlushMappedNamedBufferRangeExt(
- int buffer,
- Pointer<
NativeType> offset, - Pointer<
Uint32> length
GLAPI void APIENTRY glFlushMappedNamedBufferRangeEXT (GLuint buffer, GLintptr offset, GLsizeiptr length)
Implementation
void glFlushMappedNamedBufferRangeExt(
int buffer,
Pointer<NativeType> offset,
Pointer<Uint32> length,
) {
final glFlushMappedNamedBufferRangeExtAsFunction =
_glFlushMappedNamedBufferRangeExt
.cast<
NativeFunction<
Void Function(
Uint32 buffer,
Pointer<NativeType> offset,
Pointer<Uint32> length,
)
>
>()
.asFunction<
void Function(
int buffer,
Pointer<NativeType> offset,
Pointer<Uint32> length,
)
>();
return glFlushMappedNamedBufferRangeExtAsFunction(buffer, offset, length);
}