mirror of
https://github.com/bevyengine/bevy
synced 2024-11-26 22:50:19 +00:00
fee7a26137
# Objective - Make visible how much time is spent building the Opaque3d, AlphaMask3d, and Transparent3d passes ## Solution - Add a `trace` feature to `bevy_core_pipeline` - Add tracy spans around the three passes - I didn't do this for shadows, sprites, etc as they are only one pass in the node. Perhaps it should be split into 3 nodes to allow insertion of other nodes between...?
26 lines
802 B
TOML
26 lines
802 B
TOML
[package]
|
|
name = "bevy_core_pipeline"
|
|
version = "0.7.0-dev"
|
|
edition = "2021"
|
|
authors = [
|
|
"Bevy Contributors <bevyengine@gmail.com>",
|
|
"Carter Anderson <mcanders1@gmail.com>",
|
|
]
|
|
description = "Provides a core render pipeline for Bevy Engine."
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["bevy"]
|
|
|
|
[features]
|
|
trace = []
|
|
|
|
[dependencies]
|
|
# bevy
|
|
bevy_app = { path = "../bevy_app", version = "0.7.0-dev" }
|
|
bevy_asset = { path = "../bevy_asset", version = "0.7.0-dev" }
|
|
bevy_core = { path = "../bevy_core", version = "0.7.0-dev" }
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" }
|
|
bevy_render = { path = "../bevy_render", version = "0.7.0-dev" }
|
|
bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" }
|
|
|