X-Git-Url: https://codewiz.org/gitweb?p=mandelwow.git;a=blobdiff_plain;f=text.rs;h=14b2633b8a6712910bb49b7abcb46f57bb8d0f59;hp=abcd9b40f17b3235fcf230883f1e57f8c686b28e;hb=2b40ae7b37cf23dcce1561c33e254e6d60d03ad5;hpb=5466a1137a9a4b27a99b83c45c0b337775bacf7c diff --git a/text.rs b/text.rs index abcd9b4..14b2633 100644 --- a/text.rs +++ b/text.rs @@ -2,7 +2,6 @@ use cgmath::conv::array4x4; use cgmath::{Matrix4, Vector3}; use glium; use glium::{Surface, texture}; -use image; use std; fn gamma(x: T) -> f32 @@ -21,6 +20,23 @@ where [gamma(c[0]), gamma(c[1]), gamma(c[2]), 0.0] } +#[cfg(feature = "image")] +fn c64_font() -> (u32, u32, Vec) { + use image; + let image = + image::load_from_memory_with_format(&include_bytes!("c64-font.png")[..], image::PNG) + .unwrap() + .to_luma(); + let (w, h) = image.dimensions(); + (w, h, image.into_raw()) +} + +#[cfg(not(feature = "image"))] +fn c64_font() -> (u32, u32, Vec) { + let pixels = &include_bytes!("c64-font.gray")[..]; + (128, 128, Vec::from(pixels)) +} + #[derive(Copy, Clone)] struct Vertex { position: [f32; 2], @@ -39,13 +55,9 @@ pub struct Text<'a> { impl<'a> Text<'a> { pub fn new(display: &glium::Display) -> Text { - let image = - image::load_from_memory_with_format(&include_bytes!("c64-font.png")[..], image::PNG) - .unwrap() - .to_luma(); - let (w, h) = image.dimensions(); + let (w, h, pixels) = c64_font(); let image = glium::texture::RawImage2d { - data: std::borrow::Cow::from(image.into_raw()), + data: std::borrow::Cow::from(pixels), width: w, height: h, format: glium::texture::ClientFormat::U8,