Skip to content

Commit

Permalink
Remove wgpu-profiler from our "public" API
Browse files Browse the repository at this point in the history
The API is still there, but it is directly documented as unsupported.
  • Loading branch information
DJMcNab committed Sep 20, 2024
1 parent 620d256 commit 3483a28
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
17 changes: 15 additions & 2 deletions vello/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,24 @@ default = ["wgpu"]
# bump-allocated GPU memory.
# TODO: Turn this into a runtime option used at resolve time and remove the feature.
bump_estimate = ["vello_encoding/bump_estimate"]
hot_reload = ["vello_shaders/compile"]
# Adds labels to buffers created by Vello.
# May improve debugability at the cost of slightly higher memory usage (TODO: We should just not make these optional).
buffer_labels = []
debug_layers = []
wgpu = ["dep:wgpu"]

# Development only features

# Enables debug features when using the "async" pipeline.
# This is only intended for development of Vello itself.
debug_layers = []
# Enables an embedded wgpu-profiler profiler.
# This is only intended for development of Vello itself.
# It is currently known to not work - see https://github.com/linebender/vello/issues/678
wgpu-profiler = ["dep:wgpu-profiler"]
# Enables hot reloading of Vello shaders.
# This is only intended for development of Vello itself.
# In practise, this won't compile outside of the Vello repository.
hot_reload = ["vello_shaders/compile"]

[lints]
workspace = true
Expand Down
8 changes: 7 additions & 1 deletion vello/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,11 +229,13 @@ pub enum Error {
/// See [`wgpu_profiler::CreationError`] for more information.
#[cfg(feature = "wgpu-profiler")]
#[error("Couldn't create wgpu profiler")]
#[doc(hidden)] // End-users of Vello should not have `wgpu-profiler` enabled.
ProfilerCreationError(#[from] wgpu_profiler::CreationError),

/// Failed to compile the shaders.
#[cfg(feature = "hot_reload")]
#[error("Failed to compile shaders:\n{0}")]
#[doc(hidden)] // End-users of Vello should not have `hot_reload` enabled.
ShaderCompilation(#[from] vello_shaders::compile::ErrorVec),
}

Expand All @@ -253,8 +255,12 @@ pub struct Renderer {
debug: Option<debug::DebugRenderer>,
target: Option<TargetTexture>,
#[cfg(feature = "wgpu-profiler")]
#[doc(hidden)] // End-users of Vello should not have `wgpu-profiler` enabled.
/// The profiler used with events for this renderer. This is *not* treated as public API.
pub profiler: GpuProfiler,
#[cfg(feature = "wgpu-profiler")]
#[doc(hidden)] // End-users of Vello should not have `wgpu-profiler` enabled.
/// The results from profiling. This is *not* treated as public API.
pub profile_result: Option<Vec<wgpu_profiler::GpuTimerQueryResult>>,
}
// This is not `Send` (or `Sync`) on WebAssembly as the
Expand Down Expand Up @@ -350,7 +356,6 @@ impl Renderer {
#[cfg(feature = "debug_layers")]
debug,
target: None,
// Use 3 pending frames
#[cfg(feature = "wgpu-profiler")]
profiler: GpuProfiler::new(GpuProfilerSettings {
..Default::default()
Expand Down Expand Up @@ -486,6 +491,7 @@ impl Renderer {

/// Reload the shaders. This should only be used during `vello` development
#[cfg(feature = "hot_reload")]
#[doc(hidden)] // End-users of Vello should not have `hot_reload` enabled.
pub async fn reload_shaders(&mut self, device: &Device) -> Result<(), Error> {
device.push_error_scope(wgpu::ErrorFilter::Validation);
let mut engine = WgpuEngine::new(self.options.use_cpu);
Expand Down

0 comments on commit 3483a28

Please sign in to comment.