Struct egui_wgpu::WgpuConfiguration
source · pub struct WgpuConfiguration {
pub supported_backends: Backends,
pub device_descriptor: Arc<dyn Fn(&Adapter) -> DeviceDescriptor<'static>>,
pub present_mode: PresentMode,
pub power_preference: PowerPreference,
pub on_surface_error: Arc<dyn Fn(SurfaceError) -> SurfaceErrorAction>,
}
Expand description
Configuration for using wgpu with eframe or the egui-wgpu winit feature.
Fields§
§supported_backends: Backends
Backends that should be supported (wgpu will pick one of these)
device_descriptor: Arc<dyn Fn(&Adapter) -> DeviceDescriptor<'static>>
Configuration passed on device request, given an adapter
present_mode: PresentMode
Present mode used for the primary surface.
power_preference: PowerPreference
Power preference for the adapter.
on_surface_error: Arc<dyn Fn(SurfaceError) -> SurfaceErrorAction>
Callback for surface errors.
Trait Implementations§
source§impl Clone for WgpuConfiguration
impl Clone for WgpuConfiguration
source§fn clone(&self) -> WgpuConfiguration
fn clone(&self) -> WgpuConfiguration
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl !RefUnwindSafe for WgpuConfiguration
impl !Send for WgpuConfiguration
impl !Sync for WgpuConfiguration
impl Unpin for WgpuConfiguration
impl !UnwindSafe for WgpuConfiguration
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more