Trait vulkano::image::traits::ImageView [] [src]

pub unsafe trait ImageView {
    type Access: ImageViewAccess;
    fn access(self) -> Self::Access;
}

Trait for types that represent image views.

Associated Types

Object that represents a GPU access to the image view.

Required Methods

Builds an object that represents a GPU access to the image view.

Implementors