Home
last modified time | relevance | path

Searched refs:from_path (Results 1 – 6 of 6) sorted by relevance

/StarryEngine/starry_applications/src/asset_manager/code/
H A Dmod.rs158 ImageResource::from_path(DESKTOP_BG_PATH).unwrap(), in init_grid()
173 ImageResource::from_path(DESKTOP_BG_PATH).unwrap(), in init_list()
182 ImageResource::from_path(LOADING_IMG_PATH).unwrap(), in init_loading_panel()
H A Dasset_item_grid.rs66 true => ImageResource::from_path(DIR_ICON_PATH), in new()
67 false => ImageResource::from_path(FILE_ICON_PATH), in new()
/StarryEngine/starry_toolkit/src/widgets/
H A Dimage.rs61 if let Some(image) = ImageResource::from_path(path) { in new_from_path()
69 if let Some(image) = ImageResource::from_path(path) { in set_from_path()
/StarryEngine/starry_server/src/core/
H A Dmod.rs48 Image::from_path(CURSOR_NORMAL).unwrap_or(Image::new(10, 10)), in new()
/StarryEngine/starry_server/src/base/
H A Dwindow.rs61 image: Image::from_path(image_path) in new()
H A Dimage.rs268 pub fn from_path(path: &[u8]) -> Option<Self> { in from_path() method