pub enum ViewType {
AccelerationStructure,
Image(ImageViewInfo),
Buffer(Range<DeviceSize>),
}Expand description
Describes the interpretation of a resource.
Variants
AccelerationStructure
Acceleration structures are not reinterpreted.
Image(ImageViewInfo)
Images may be interpreted as differently formatted images.
Buffer(Range<DeviceSize>)
Buffers may be interpreted as subregions of the same buffer.
Trait Implementations
sourceimpl From<BufferSubresource> for ViewType
impl From<BufferSubresource> for ViewType
sourcefn from(subresource: BufferSubresource) -> Self
fn from(subresource: BufferSubresource) -> Self
Converts to this type from the input type.
sourceimpl From<ImageViewInfo> for ViewType
impl From<ImageViewInfo> for ViewType
sourcefn from(info: ImageViewInfo) -> Self
fn from(info: ImageViewInfo) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for ViewType
impl Send for ViewType
impl Sync for ViewType
impl Unpin for ViewType
impl UnwindSafe for ViewType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more