/// <summary>
 /// Returns true only if all components of x are true.
 /// </summary>
 /// <param name="x"></param>
 /// <returns></returns>
 public static bool all(bvec3 x)
 {
     return(false);
 }
 /// <summary>
 /// Returns the component-wise logical complement of x.
 /// </summary>
 /// <param name="x"></param>
 /// <returns></returns>
 public static bvec3 not(bvec3 x)
 {
     return(null);
 }
 /// <summary>
 /// Returns the component-wise compare of x != y.
 /// </summary>
 /// <param name="x"></param>
 /// <param name="y"></param>
 /// <returns></returns>
 public static bvec3 notEqual(bvec3 x, bvec3 y)
 {
     return(null);
 }