[][src]Function mandalas::util::prgb1555_to_rgb

pub fn prgb1555_to_rgb(prgb1555: [f64; 4]) -> [f64; 3]

Translate a PRGB1555 colour point into an RGB colour point.

The P bit is the lowest bit.

Examples

assert_eq!(prgb1555_to_rgb([0f64, 0f64, 0f64, 0f64]), [0f64, 0f64, 0f64]);