Struct vulkan_rs::VkSamplerCreateInfo [] [src]

#[repr(C)]
pub struct VkSamplerCreateInfo { pub sType: VkStructureType, pub pNext: *const c_void, pub flags: VkSamplerCreateFlags, pub magFilter: VkFilter, pub minFilter: VkFilter, pub mipmapMode: VkSamplerMipmapMode, pub addressModeU: VkSamplerAddressMode, pub addressModeV: VkSamplerAddressMode, pub addressModeW: VkSamplerAddressMode, pub mipLodBias: f32, pub anisotropyEnable: VkBool32, pub maxAnisotropy: f32, pub compareEnable: VkBool32, pub compareOp: VkCompareOp, pub minLod: f32, pub maxLod: f32, pub borderColor: VkBorderColor, pub unnormalizedCoordinates: VkBool32, }

Structure specifying parameters of a newly created sampler

Fields

the type of this structure

NULL or a pointer to an extension-specific structure

reserved for future use

the magnification filter to apply to lookups, and is of type:

Trait Implementations

impl Default for VkSamplerCreateInfo
[src]

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