feat(jupyter): make GPUTexture and GPUBuffer displayable (#28117)

This commit is contained in:
Leo Kettmeir 2025-02-18 09:29:45 +01:00 committed by GitHub
parent 1f169f4b09
commit 17a51c401a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 528 additions and 9 deletions

View file

@ -18,14 +18,14 @@ use wgpu_types::PowerPreference;
mod adapter;
mod bind_group;
mod bind_group_layout;
mod buffer;
pub mod buffer;
mod byow;
mod command_buffer;
mod command_encoder;
mod compute_pass;
mod compute_pipeline;
mod device;
mod error;
pub mod error;
mod pipeline_layout;
mod query_set;
mod queue;
@ -35,7 +35,7 @@ mod render_pipeline;
mod sampler;
mod shader;
mod surface;
mod texture;
pub mod texture;
mod webidl;
pub const UNSTABLE_FEATURE_NAME: &str = "webgpu";