summaryrefslogblamecommitdiffstats
path: root/core/src/font.rs
blob: 3f9ad2b5a412026161a0c2d7bd8f49324e404c5b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
           

                             



                                                                           
            

                         
              
                                         
                           

                                          


                             





                          
/// A font.
#[derive(Debug, Clone, Copy)]
pub enum Font {
    /// The default font.
    ///
    /// This is normally a font configured in a renderer or loaded from the
    /// system.
    Default,

    /// An external font.
    External {
        /// The name of the external font
        name: &'static str,

        /// The bytes of the external font
        bytes: &'static [u8],
    },
}

impl Default for Font {
    fn default() -> Font {
        Font::Default
    }
}