glWindowPos2fvMesa function opengl_glext

void glWindowPos2fvMesa(
  1. Pointer<Float> v
)
GLAPI void APIENTRY glWindowPos2fvMESA (const GLfloat *v)

Implementation

void glWindowPos2fvMesa(Pointer<Float> v) {
  final glWindowPos2fvMesaAsFunction = _glWindowPos2fvMesa
      .cast<NativeFunction<Void Function(Pointer<Float> v)>>()
      .asFunction<void Function(Pointer<Float> v)>();
  return glWindowPos2fvMesaAsFunction(v);
}