glVertexWeighthvNv function opengl_glext

void glVertexWeighthvNv(
  1. Pointer<Uint16> weight
)
GLAPI void APIENTRY glVertexWeighthvNV (const GLhalfNV *weight)

Implementation

void glVertexWeighthvNv(Pointer<Uint16> weight) {
  final glVertexWeighthvNvAsFunction = _glVertexWeighthvNv
      .cast<NativeFunction<Void Function(Pointer<Uint16> weight)>>()
      .asFunction<void Function(Pointer<Uint16> weight)>();
  return glVertexWeighthvNvAsFunction(weight);
}