| 8 | |
| 9 | #[derive(Clone)] |
| 10 | pub struct Texture { |
| 11 | pub(crate) raw: Rc<RawTexture>, |
| 12 | } |
| 13 | |
| 14 | impl Texture { |
| 15 | pub fn from_file(gfx: &Graphics, path: &str, premultiply: bool) -> Texture { |
nothing calls this directly
no outgoing calls
no test coverage detected