glVertexWeightfExt function opengl_glext

void glVertexWeightfExt(
  1. double weight
)
GLAPI void APIENTRY glVertexWeightfEXT (GLfloat weight)

Implementation

void glVertexWeightfExt(double weight) {
  final glVertexWeightfExtAsFunction = _glVertexWeightfExt
      .cast<NativeFunction<Void Function(Float weight)>>()
      .asFunction<void Function(double weight)>();
  return glVertexWeightfExtAsFunction(weight);
}