pub trait GraphicsContextExt {
// Required methods
fn device(&self) -> &Device;
fn queue(&self) -> &Queue;
fn adapter(&self) -> &Adapter;
fn instance(&self) -> &Instance;
}Expand description
Extended access to GraphicsContext internals.
This trait provides direct access to the underlying wgpu components for advanced use cases that require raw wgpu operations.