glRectfv function

void glRectfv(
  1. Pointer<Float> v1,
  2. Pointer<Float> v2
)
GLAPI void GLAPIENTRY glRectfv (const GLfloat *v1, const GLfloat *v2)

Implementation

void glRectfv(Pointer<Float> v1, Pointer<Float> v2) {
  final glRectfvLookupFunction = libGL.lookupFunction<
      Void Function(Pointer<Float> v1, Pointer<Float> v2),
      void Function(Pointer<Float> v1, Pointer<Float> v2)>('glRectfv');
  return glRectfvLookupFunction(v1, v2);
}