glWindowPos3fvMesa function opengl_glext

void glWindowPos3fvMesa(
  1. Pointer<Float> v
)
GLAPI void APIENTRY glWindowPos3fvMESA (const GLfloat *v)

Implementation

void glWindowPos3fvMesa(Pointer<Float> v) {
  final glWindowPos3fvMesaAsFunction = _glWindowPos3fvMesa
      .cast<NativeFunction<Void Function(Pointer<Float> v)>>()
      .asFunction<void Function(Pointer<Float> v)>();
  return glWindowPos3fvMesaAsFunction(v);
}