Struct vulkanalia_sys::SamplerCreateInfo
source · [−]#[repr(C)]pub struct SamplerCreateInfo {Show 18 fields
pub s_type: StructureType,
pub next: *const c_void,
pub flags: SamplerCreateFlags,
pub mag_filter: Filter,
pub min_filter: Filter,
pub mipmap_mode: SamplerMipmapMode,
pub address_mode_u: SamplerAddressMode,
pub address_mode_v: SamplerAddressMode,
pub address_mode_w: SamplerAddressMode,
pub mip_lod_bias: f32,
pub anisotropy_enable: Bool32,
pub max_anisotropy: f32,
pub compare_enable: Bool32,
pub compare_op: CompareOp,
pub min_lod: f32,
pub max_lod: f32,
pub border_color: BorderColor,
pub unnormalized_coordinates: Bool32,
}Expand description
Fields
s_type: StructureTypenext: *const c_voidflags: SamplerCreateFlagsmag_filter: Filtermin_filter: Filtermipmap_mode: SamplerMipmapModeaddress_mode_u: SamplerAddressModeaddress_mode_v: SamplerAddressModeaddress_mode_w: SamplerAddressModemip_lod_bias: f32anisotropy_enable: Bool32max_anisotropy: f32compare_enable: Bool32compare_op: CompareOpmin_lod: f32max_lod: f32border_color: BorderColorunnormalized_coordinates: Bool32Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for SamplerCreateInfo
impl !Send for SamplerCreateInfo
impl !Sync for SamplerCreateInfo
impl Unpin for SamplerCreateInfo
impl UnwindSafe for SamplerCreateInfo
Blanket Implementations
Mutably borrows from an owned value. Read more