[−][src]Struct vulkano::swapchain::Capabilities
The capabilities of a surface when used by a physical device.
You have to match these capabilities when you create a swapchain.
Fields
min_image_count: u32
Minimum number of images that must be present in the swapchain.
max_image_count: Option<u32>
Maximum number of images that must be present in the swapchain, or None
if there is no
maximum value. Note that "no maximum" doesn't mean that you can set a very high value, as
you may still get out of memory errors.
current_extent: Option<[u32; 2]>
The current dimensions of the surface. None
means that the surface's dimensions will
depend on the dimensions of the swapchain that you are going to create.
min_image_extent: [u32; 2]
Minimum width and height of a swapchain that uses this surface.
max_image_extent: [u32; 2]
Maximum width and height of a swapchain that uses this surface.
max_image_array_layers: u32
Maximum number of image layers if you create an image array. The minimum is 1.
supported_transforms: SupportedSurfaceTransforms
List of transforms supported for the swapchain.
current_transform: SurfaceTransform
Current transform used by the surface.
supported_composite_alpha: SupportedCompositeAlpha
List of composite alpha modes supports for the swapchain.
supported_usage_flags: ImageUsage
List of image usages that are supported for images of the swapchain. Only
the color_attachment
usage is guaranteed to be supported.
supported_formats: Vec<(Format, ColorSpace)>
List of formats supported for the swapchain.
present_modes: SupportedPresentModes
List of present modes that are supported. Fifo
is always guaranteed to be supported.
Trait Implementations
impl Clone for Capabilities
[src]
fn clone(&self) -> Capabilities
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for Capabilities
[src]
Auto Trait Implementations
impl Send for Capabilities
impl Unpin for Capabilities
impl Sync for Capabilities
impl UnwindSafe for Capabilities
impl RefUnwindSafe for Capabilities
Blanket Implementations
impl<T> Content for T
[src]
fn ref_from_ptr(*mut c_void, usize) -> Option<*mut T>
[src]
fn is_size_suitable(usize) -> bool
[src]
fn indiv_size() -> usize
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,