(int aColors)
| 1594 | } |
| 1595 | |
| 1596 | public static short[] getRGBaArray(int aColors) { |
| 1597 | return new short[] {(short)((aColors >>> 16) & 255), (short)((aColors >>> 8) & 255), (short)(aColors & 255), (short)((aColors >>> 24) & 255)}; |
| 1598 | } |
| 1599 | |
| 1600 | public static short getR(int aColors) {return (short)((aColors >>> 16) & 255);} |
| 1601 | public static short getG(int aColors) {return (short)((aColors >>> 8) & 255);} |
no outgoing calls
no test coverage detected