glVertexWeighthNv function opengl_glext
GLAPI void APIENTRY glVertexWeighthNV (GLhalfNV weight)
Implementation
void glVertexWeighthNv(int weight) {
  final glVertexWeighthNvAsFunction = _glVertexWeighthNv
      .cast<NativeFunction<Void Function(Uint16 weight)>>()
      .asFunction<void Function(int weight)>();
  return glVertexWeighthNvAsFunction(weight);
}