-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: added xtask, don't track wgsl as text, remove wgsl files (#148)
* don't track wgsl as text, remove wgsl files use linguist-generated=true in gitattributes * added xtask, added renderling-build, updated deps, use GrayImage for depth reading, regenerate linkage * fix cargo gpu show cache * use xtask to compile shaders on CI * regenerate shaders * don't assert the shader dirs existence when creating paths * update rust-gpu build values, don't err if shader dir is missing * Trigger linguist re-evaluation * bump workflow caches * show cargo gpu commitsh * bump ci cargo cache, again * ensure cargo cache keys match
- Loading branch information
Showing
73 changed files
with
2,504 additions
and
2,000 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
[alias] | ||
shaders = "gpu toml crates/renderling" | ||
xtask = "run --package xtask --" | ||
|
||
[build] | ||
rustflags = ["--cfg=web_sys_unstable_apis"] | ||
rustdocflags = ["--cfg=web_sys_unstable_apis"] | ||
|
||
[env] | ||
CARGO_WORKSPACE_DIR = { value = "", relative = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
* text=auto | ||
*.txt text | ||
*.rs text | ||
*.md text | ||
*.yaml text | ||
*.spv binary | ||
*.wgsl binary | ||
**/*.wgsl linguist-generated=true binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.