glFlushMappedNamedBufferRangeExt function opengl_glext

void glFlushMappedNamedBufferRangeExt(
  1. int buffer,
  2. Pointer<NativeType> offset,
  3. 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);
}