glRectfv function opengl
GLAPI void GLAPIENTRY glRectfv( const GLfloat *v1, const GLfloat *v2 )
Implementation
void glRectfv(Pointer<Float> v1, Pointer<Float> v2) {
final glRectfvAsFunction = _glRectfv
.cast<
NativeFunction<Void Function(Pointer<Float> v1, Pointer<Float> v2)>
>()
.asFunction<void Function(Pointer<Float> v1, Pointer<Float> v2)>();
return glRectfvAsFunction(v1, v2);
}