diff options
| author | Irene Knapp <ireneista@irenes.space> | 2026-07-17 18:43:05 -0700 |
|---|---|---|
| committer | Irene Knapp <ireneista@irenes.space> | 2026-07-18 01:14:49 -0700 |
| commit | f70917c8aae0d184ed7ce5e63e6347fdc21921e3 (patch) | |
| tree | bdc7f0b8c45c8cba5a07786590053212185406c2 /Cargo.toml | |
| parent | f7e6dec079dcbbc26a9e047cf2b0acf23c091836 (diff) | |
load a texture image
also refactor buffer management a little this doesn't yet draw the texture Change-Id: Id2efa761223a588bf599041ac525c3b988f0113b Force-Push: yes
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/Cargo.toml b/Cargo.toml index 684023d..1f98cc9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,17 +10,9 @@ vulkan-validation = [ ] [dependencies] libloading = "0.8.9" +png = "0.18.1" winit = "0.30.13" [dependencies.vulkanalia] version = "0.35.0" features = [ "libloading", "window" ] -#anyhow = "1" -#log = "0.4" -#cgmath = "0.18" -#png = "0.17" -#pretty_env_logger = "0.5" -#thiserror = "1" -#tobj = { version = "3", features = ["log"] } -#vulkanalia = { version = "=0.35.0", features = ["libloading", "provisional", "window"] } -#winit = "0.29" |