Struct wgpu_types::DownlevelCapabilities
source · [−]pub struct DownlevelCapabilities {
pub flags: DownlevelFlags,
pub limits: DownlevelLimits,
pub shader_model: ShaderModel,
}
Expand description
Lists various ways the underlying platform does not conform to the WebGPU standard.
Fields
flags: DownlevelFlags
Combined boolean flags.
limits: DownlevelLimits
Additional limits
shader_model: ShaderModel
Which collections of features shaders support. Defined in terms of D3D’s shader models.
Implementations
sourceimpl DownlevelCapabilities
impl DownlevelCapabilities
sourcepub fn is_webgpu_compliant(&self) -> bool
pub fn is_webgpu_compliant(&self) -> bool
Returns true if the underlying platform offers complete support of the baseline WebGPU standard.
If this returns false, some parts of the API will result in validation errors where they would not normally. These parts can be determined by the values in this structure.
Trait Implementations
sourceimpl Clone for DownlevelCapabilities
impl Clone for DownlevelCapabilities
sourcefn clone(&self) -> DownlevelCapabilities
fn clone(&self) -> DownlevelCapabilities
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DownlevelCapabilities
impl Debug for DownlevelCapabilities
sourceimpl Default for DownlevelCapabilities
impl Default for DownlevelCapabilities
sourceimpl Hash for DownlevelCapabilities
impl Hash for DownlevelCapabilities
sourceimpl Ord for DownlevelCapabilities
impl Ord for DownlevelCapabilities
sourceimpl PartialEq<DownlevelCapabilities> for DownlevelCapabilities
impl PartialEq<DownlevelCapabilities> for DownlevelCapabilities
sourcefn eq(&self, other: &DownlevelCapabilities) -> bool
fn eq(&self, other: &DownlevelCapabilities) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DownlevelCapabilities) -> bool
fn ne(&self, other: &DownlevelCapabilities) -> bool
This method tests for !=
.
sourceimpl PartialOrd<DownlevelCapabilities> for DownlevelCapabilities
impl PartialOrd<DownlevelCapabilities> for DownlevelCapabilities
sourcefn partial_cmp(&self, other: &DownlevelCapabilities) -> Option<Ordering>
fn partial_cmp(&self, other: &DownlevelCapabilities) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Eq for DownlevelCapabilities
impl StructuralEq for DownlevelCapabilities
impl StructuralPartialEq for DownlevelCapabilities
Auto Trait Implementations
impl RefUnwindSafe for DownlevelCapabilities
impl Send for DownlevelCapabilities
impl Sync for DownlevelCapabilities
impl Unpin for DownlevelCapabilities
impl UnwindSafe for DownlevelCapabilities
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more