glVertexWeightfExt function opengl_glext
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);
}