thanks, jk
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
358 B

use glium;
#[derive(Debug)]
pub enum Error {
/// Error caused during creation of a Glium GPU-resident texture.
TextureCreationError(glium::texture::TextureCreationError),
}
impl From<glium::texture::TextureCreationError> for Error {
fn from(err: glium::texture::TextureCreationError) -> Error {
Error::TextureCreationError(err)
}
}