glVertexWeightfvExt function opengl_glext

void glVertexWeightfvExt(
  1. Pointer<Float> weight
)
GLAPI void APIENTRY glVertexWeightfvEXT (const GLfloat *weight)

Implementation

void glVertexWeightfvExt(Pointer<Float> weight) {
  final glVertexWeightfvExtAsFunction = _glVertexWeightfvExt
      .cast<NativeFunction<Void Function(Pointer<Float> weight)>>()
      .asFunction<void Function(Pointer<Float> weight)>();
  return glVertexWeightfvExtAsFunction(weight);
}