Skip to main content

WgpuSetupCreateNew

Struct WgpuSetupCreateNew 

Source
pub struct WgpuSetupCreateNew {
    pub instance_descriptor: InstanceDescriptor,
    pub display_handle: Option<Box<dyn EguiDisplayHandle>>,
    pub power_preference: PowerPreference,
    pub native_adapter_selector: Option<NativeAdapterSelectorMethod>,
    pub device_descriptor: Arc<dyn Fn(&Adapter) -> DeviceDescriptor<'static> + Send + Sync>,
}
Expand description

Configuration for creating a new wgpu setup.

Used for WgpuSetup::CreateNew.

Prefer Self::from_display_handle when you have a display handle available. Most platforms work without one, but some (e.g. Wayland with GLES, or WebGL) require it, so providing one ensures maximum compatibility. With winit, pass EventLoop::owned_display_handle.

Note: The display handle is stored in Self::display_handle rather than in Self::instance_descriptor so the config can be cloned (wgpu::InstanceDescriptor is not Clone). It is injected at instance creation time.

Fields§

§instance_descriptor: InstanceDescriptor

Descriptor for the wgpu instance.

Leave wgpu::InstanceDescriptor::display as None — use Self::display_handle instead (injected at instance creation time).

The most important field is wgpu::InstanceDescriptor::backends, which controls which backends are supported (wgpu will pick one of these). For example, set it to wgpu::Backends::GL to use only WebGL. By default on web, WebGPU is preferred with WebGL as a fallback (requires the webgl feature of crate wgpu).

§display_handle: Option<Box<dyn EguiDisplayHandle>>

Display handle passed to wgpu at instance creation time.

Required on some platforms (e.g. Wayland with GLES, WebGL); optional elsewhere. With winit, use winit::event_loop::OwnedDisplayHandle.

eframe ’s winit & web integrations will attempt to fill the display handle automatically if it is left empty.

§power_preference: PowerPreference

Power preference for the adapter if Self::native_adapter_selector is not set or targeting web.

§native_adapter_selector: Option<NativeAdapterSelectorMethod>

Optional selector for native adapters.

This field has no effect when targeting web! Otherwise, if set Self::power_preference is ignored and the adapter is instead selected by this method. Note that Self::instance_descriptor’s wgpu::InstanceDescriptor::backends are still used to filter the adapter enumeration in the first place.

Defaults to None.

§device_descriptor: Arc<dyn Fn(&Adapter) -> DeviceDescriptor<'static> + Send + Sync>

Configuration passed on device request, given an adapter

Implementations§

Source§

impl WgpuSetupCreateNew

Source

pub fn from_display_handle(display_handle: impl EguiDisplayHandle) -> Self

Creates a new configuration with the given display handle.

This is the recommended constructor. Most platforms (Windows, macOS/iOS, Android, web) work fine without a display handle, but some (e.g. Wayland on Linux with GLES) require one. Providing it unconditionally ensures your app works everywhere.

If you don’t have a display handle available, use Self::without_display_handle instead — it will still work on the majority of platforms.

With winit, pass EventLoop::owned_display_handle.

Source

pub fn without_display_handle() -> Self

Creates a new configuration without a display handle.

A display handle is not required for headless operation (offscreen rendering, tests, compute-only workloads). It also isn’t needed on most platforms even when presenting to a window — only some configurations (e.g. Wayland on Linux with GLES) require one.

If you do have a display handle available, prefer Self::from_display_handle for maximum compatibility.

With winit you can obtain one via EventLoop::owned_display_handle.

eframe ’s winit & web integrations will attempt to fill the display handle automatically if it is left empty.

Trait Implementations§

Source§

impl Clone for WgpuSetupCreateNew

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for WgpuSetupCreateNew

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<WgpuSetupCreateNew> for WgpuSetup

Source§

fn from(create_new: WgpuSetupCreateNew) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> Downcast<T> for T

Source§

fn downcast(&self) -> &T

Source§

impl<T> Downcast for T
where T: Any,

Source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Source§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
Source§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

Source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, S> SimdFrom<T, S> for T
where S: Simd,

Source§

fn simd_from(value: T, _simd: S) -> T

Source§

impl<F, T, S> SimdInto<T, S> for F
where T: SimdFrom<F, S>, S: Simd,

Source§

fn simd_into(self, simd: S) -> T

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> Upcast<T> for T

Source§

fn upcast(&self) -> Option<&T>

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> SerializableAny for T
where T: 'static + Any + Clone + for<'a> Send + Sync,

Source§

impl<T> WasmNotSend for T
where T: Send,

Source§

impl<T> WasmNotSendSync for T

Source§

impl<T> WasmNotSync for T
where T: Sync,