glWindowPos4fvMesa function opengl_glext

void glWindowPos4fvMesa(
  1. Pointer<Float> v
)
GLAPI void APIENTRY glWindowPos4fvMESA (const GLfloat *v)

Implementation

void glWindowPos4fvMesa(Pointer<Float> v) {
  final glWindowPos4fvMesaAsFunction = _glWindowPos4fvMesa
      .cast<NativeFunction<Void Function(Pointer<Float> v)>>()
      .asFunction<void Function(Pointer<Float> v)>();
  return glWindowPos4fvMesaAsFunction(v);
}