Struct lava::VkSamplerCreateInfo[][src]

pub struct VkSamplerCreateInfo {
    pub flags: VkSamplerCreateFlags,
    pub mag_filter: VkFilter,
    pub min_filter: VkFilter,
    pub mipmap_mode: VkSamplerMipmapMode,
    pub address_mode_u: VkSamplerAddressMode,
    pub address_mode_v: VkSamplerAddressMode,
    pub address_mode_w: VkSamplerAddressMode,
    pub mip_lod_bias: f32,
    pub anisotropy_enable: bool,
    pub max_anisotropy: f32,
    pub compare_enable: bool,
    pub compare_op: VkCompareOp,
    pub min_lod: f32,
    pub max_lod: f32,
    pub border_color: VkBorderColor,
    pub unnormalized_coordinates: bool,
}

Fields

Trait Implementations

impl Debug for VkSamplerCreateInfo
[src]

Formats the value using the given formatter. Read more

impl Clone for VkSamplerCreateInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for VkSamplerCreateInfo
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations