Exemplo n.º 1
0
 /**
  * Writes RGBA color to FlashBuffer<br>
  * Alpha is 255, i.e. color is opaque
  *
  * @param fob flash buffer to write
  */
 public void writeRGBA(FlashOutput fob) {
   fob.writeByte(r);
   fob.writeByte(g);
   fob.writeByte(b);
   fob.writeByte(255);
 }