pub struct Options {
pub lang_version: (u8, u8),
pub per_entry_point_map: EntryPointResourceMap,
pub inline_samplers: Vec<InlineSampler>,
pub spirv_cross_compatibility: bool,
pub fake_missing_bindings: bool,
pub bounds_check_policies: BoundsCheckPolicies,
pub zero_initialize_workgroup_memory: bool,
}
Fields§
§lang_version: (u8, u8)
(Major, Minor) target version of the Metal Shading Language.
per_entry_point_map: EntryPointResourceMap
Map of entry-point resources, indexed by entry point function name, to slots.
inline_samplers: Vec<InlineSampler>
Samplers to be inlined into the code.
spirv_cross_compatibility: bool
Make it possible to link different stages via SPIRV-Cross.
fake_missing_bindings: bool
Don’t panic on missing bindings, instead generate invalid MSL.
bounds_check_policies: BoundsCheckPolicies
Bounds checking policies.
zero_initialize_workgroup_memory: bool
Should workgroup variables be zero initialized (by polyfilling)?
Trait Implementations§
source§impl PartialEq for Options
impl PartialEq for Options
impl Eq for Options
impl StructuralPartialEq for Options
Auto Trait Implementations§
impl Freeze for Options
impl RefUnwindSafe for Options
impl Send for Options
impl Sync for Options
impl Unpin for Options
impl UnwindSafe for Options
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.