glVertexWeighthNv function opengl_glext

void glVertexWeighthNv(
  1. int weight
)
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);
}