glColor3usv function opengl
GLAPI void GLAPIENTRY glColor3usv( const GLushort *v )
Implementation
void glColor3usv(Pointer<Uint16> v) {
  final glColor3usvAsFunction = _glColor3usv
      .cast<NativeFunction<Void Function(Pointer<Uint16> v)>>()
      .asFunction<void Function(Pointer<Uint16> v)>();
  return glColor3usvAsFunction(v);
}