summary refs log tree commit diff
path: root/rs
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-02-28 00:19:42 -0500
committerJune McEnroe <june@causal.agency>2018-02-28 00:19:42 -0500
commitf8da8964643fc5c891e08b2db69c5ba86f449e58 (patch)
tree85778592efdf7759962d527e94e6d05e07db6e37 /rs
parentPrint message in gfx/none (diff)
downloadsrc-f8da8964643fc5c891e08b2db69c5ba86f449e58.tar.gz
src-f8da8964643fc5c891e08b2db69c5ba86f449e58.zip
Clean up gfxx and add default palette
The palette was generated in Rust:

    extern crate hsl;
    fn main() {
        for i in 0..256 {
            let h = i as f64 * 360.0 / 256.0;
            let hsl = hsl::HSL { h, s: 1.0, l: 0.5 };
            let (r, g, b) = hsl.to_rgb();
            println!("0x{:02X}{:02X}{:02X},", r, g, b);
        }
    }
Diffstat (limited to 'rs')
0 files changed, 0 insertions, 0 deletions
6bed64c5b439571b28244c828ba46f7b706f&follow=1'>Add gzread.3June McEnroe 2018-11-12Add gzsetparams.3June McEnroe 2018-11-12Add gzbuffer.3June McEnroe 2018-11-12Add gzdopen to gzopen.3June McEnroe 2018-11-12Add gzopen.3June McEnroe 2018-11-12Add inflateBackEnd.3June McEnroe 2018-11-12Add inflateBack.3June McEnroe 2018-11-12Add inflateBackInit.3June McEnroe 2018-11-11Add inflateGetHeader.3June McEnroe 2018-11-11Add inflateMark.3June McEnroe 2018-11-11Add inflatePrime.3June McEnroe 2018-11-11Add inflateReset.3June McEnroe 2018-11-11Add inflateCopy.3June McEnroe 2018-11-11Add inflateSync.3June McEnroe 2018-11-11Add inflateGetDictionary.3June McEnroe 2018-11-11Add inflateSetDictionary.3June McEnroe 2018-11-11Add inflateInit2.3June McEnroe