logo
pub unsafe trait BufferViewAbstract: VulkanObject<Object = BufferView> + DeviceOwned + Send + Sync {
    fn buffer(&self) -> Arc<dyn BufferAccess>;
fn format(&self) -> Format;
fn format_features(&self) -> &FormatFeatures; }

Required methods

Returns the wrapped buffer that this buffer view was created from.

Returns the format of the buffer view.

Returns the features supported by the buffer view’s format.

Implementors