Skip to content

Commit

Permalink
pipelined rendering proof of concept
Browse files Browse the repository at this point in the history
  • Loading branch information
cart committed Jul 24, 2021
1 parent e167a1d commit eb8f973
Show file tree
Hide file tree
Showing 250 changed files with 16,397 additions and 757 deletions.
13 changes: 12 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repository = "https://github.com/bevyengine/bevy"

[workspace]
exclude = ["benches"]
members = ["crates/*", "examples/ios", "tools/ci"]
members = ["crates/*", "pipelined/*", "examples/ios", "tools/ci"]

[features]
default = [
Expand All @@ -26,6 +26,9 @@ default = [
"bevy_gilrs",
"bevy_gltf",
"bevy_wgpu",
"bevy_wgpu2",
"bevy_sprite2",
"bevy_render2",
"bevy_winit",
"render",
"png",
Expand All @@ -48,6 +51,10 @@ bevy_gltf = ["bevy_internal/bevy_gltf"]
bevy_wgpu = ["bevy_internal/bevy_wgpu"]
bevy_winit = ["bevy_internal/bevy_winit"]

bevy_wgpu2 = ["bevy_internal/bevy_wgpu2"]
bevy_render2 = ["bevy_internal/bevy_render2"]
bevy_sprite2 = ["bevy_internal/bevy_sprite2"]

trace_chrome = ["bevy_internal/trace_chrome"]
trace = ["bevy_internal/trace"]
wgpu_trace = ["bevy_internal/wgpu_trace"]
Expand Down Expand Up @@ -419,6 +426,10 @@ path = "examples/shader/shader_defs.rs"
name = "bevymark"
path = "examples/tools/bevymark.rs"

[[example]]
name = "bevymark_pipelined"
path = "examples/tools/bevymark_pipelined.rs"

# UI (User Interface)
[[example]]
name = "button"
Expand Down
Loading

0 comments on commit eb8f973

Please sign in to comment.