/**
  * Copies every property from another ThreeDcTexture object
  *
  * @param other another ThreeDcTexture object to copy from
  */
 public void setFrom(ThreeDcTexture other) {
   super.setFrom(other);
   mThreeDcFormat = other.getThreeDcFormat();
 }
 public ThreeDcTexture(ThreeDcTexture other) {
   super(other);
   setThreeDcFormat(other.getThreeDcFormat());
 }