-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch from distill to hydrate (#256)
- Implement new importers/builders for hydrate, remove distill importers/builders - Remove basic mesh rendering path, not planning to re-implemented new importers/builders for it
- Loading branch information
Showing
641 changed files
with
11,698 additions
and
13,013 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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
[package] | ||
name = "demo-editor" | ||
version = "0.0.15" | ||
authors = ["Philip Degarmo <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
# This is a demo crate, we shouldn't publish it | ||
publish = false | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
hydrate = { version = "0.0.2", features = ["editor"] } | ||
rafx = { path = "../rafx", features = ["renderer", "basis-universal", "dds"] } | ||
rafx-plugins = { path = "../rafx-plugins", features = ["legion", "egui", "egui-winit", "modern-pipeline", "meshopt"] } | ||
|
||
log = "0.4" | ||
env_logger = "0.6" | ||
|
||
profiling = "1.0.1" | ||
|
||
[features] | ||
default = [ | ||
# Profiling options | ||
#"profile-with-puffin", | ||
#"profile-with-optick", | ||
#"profile-with-tracy", | ||
#"profile-with-tracy-memory", # Cannot be enabled with "stats_alloc". | ||
#"profile-with-superluminal" | ||
] | ||
|
||
profile-with-optick = [ | ||
"profiling/profile-with-optick", | ||
] | ||
profile-with-superluminal = [ | ||
"profiling/profile-with-superluminal", | ||
] | ||
profile-with-tracy = ["profiling/profile-with-tracy"] | ||
profile-with-tracy-memory = [ | ||
"profiling/profile-with-tracy", | ||
"profile-with-tracy" | ||
] |
Oops, something went wrong.