pub struct ImageInfo {
pub ty: ImageType,
pub usage: ImageUsageFlags,
pub flags: ImageCreateFlags,
pub fmt: Format,
pub extent: UVec3,
pub tiling: ImageTiling,
pub mip_level_count: u32,
pub array_elements: u32,
pub sample_count: SampleCount,
}Fields
ty: ImageTypeusage: ImageUsageFlagsflags: ImageCreateFlagsfmt: Formatextent: UVec3tiling: ImageTilingmip_level_count: u32array_elements: u32sample_count: SampleCountImplementations
sourceimpl ImageInfo
impl ImageInfo
pub fn new_1d(fmt: Format, extent: u32) -> ImageInfoBuilder
pub fn new_2d(fmt: Format, extent: UVec2) -> ImageInfoBuilder
pub fn new_3d(fmt: Format, extent: UVec3) -> ImageInfoBuilder
pub fn new_cube(fmt: Format, width: u32) -> ImageInfoBuilder
pub fn extent_inv_extent_2d(&self) -> Vec4
pub fn extent_2d(self) -> UVec2
pub fn fmt(self, fmt: Format) -> Self
pub fn into_builder(self) -> ImageInfoBuilder
Trait Implementations
sourceimpl From<ImageInfo> for ImageSubresource
impl From<ImageInfo> for ImageSubresource
sourceimpl From<ImageInfo> for ImageViewInfo
impl From<ImageInfo> for ImageViewInfo
sourceimpl From<ImageInfoBuilder> for ImageInfo
impl From<ImageInfoBuilder> for ImageInfo
sourcefn from(info: ImageInfoBuilder) -> Self
fn from(info: ImageInfoBuilder) -> Self
Performs the conversion.
impl Copy for ImageInfo
impl Eq for ImageInfo
impl StructuralEq for ImageInfo
impl StructuralPartialEq for ImageInfo
Auto Trait Implementations
impl RefUnwindSafe for ImageInfo
impl Send for ImageInfo
impl Sync for ImageInfo
impl Unpin for ImageInfo
impl UnwindSafe for ImageInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more