[−][src]Struct vulkano::framebuffer::EmptySinglePassRenderPassDesc
Description of an empty render pass.
Can be used to create a render pass with one subpass and no attachment.
Example
use vulkano::framebuffer::EmptySinglePassRenderPassDesc; use vulkano::framebuffer::RenderPassDesc; let rp = EmptySinglePassRenderPassDesc.build_render_pass(device.clone());
Trait Implementations
impl RenderPassDesc for EmptySinglePassRenderPassDesc
[src]
fn num_attachments(&self) -> usize
[src]
fn attachment_desc(&self, _: usize) -> Option<AttachmentDescription>
[src]
fn num_subpasses(&self) -> usize
[src]
fn subpass_desc(&self, num: usize) -> Option<PassDescription>
[src]
fn num_dependencies(&self) -> usize
[src]
fn dependency_desc(&self, _: usize) -> Option<PassDependencyDescription>
[src]
fn num_color_attachments(&self, subpass: u32) -> Option<u32>
[src]
fn num_samples(&self, _: u32) -> Option<u32>
[src]
fn has_depth_stencil_attachment(&self, subpass: u32) -> Option<(bool, bool)>
[src]
fn has_depth(&self, subpass: u32) -> Option<bool>
[src]
fn has_writable_depth(&self, subpass: u32) -> Option<bool>
[src]
fn has_stencil(&self, subpass: u32) -> Option<bool>
[src]
fn has_writable_stencil(&self, subpass: u32) -> Option<bool>
[src]
ⓘImportant traits for RenderPassDescAttachments<'a, R>fn attachment_descs(&self) -> RenderPassDescAttachments<Self> where
Self: Sized,
[src]
ⓘImportant traits for RenderPassDescAttachments<'a, R>
Self: Sized,
ⓘImportant traits for RenderPassDescSubpasses<'a, R>fn subpass_descs(&self) -> RenderPassDescSubpasses<Self> where
Self: Sized,
[src]
ⓘImportant traits for RenderPassDescSubpasses<'a, R>
Self: Sized,
ⓘImportant traits for RenderPassDescDependencies<'a, R>fn dependency_descs(&self) -> RenderPassDescDependencies<Self> where
Self: Sized,
[src]
ⓘImportant traits for RenderPassDescDependencies<'a, R>
Self: Sized,
fn is_compatible_with<T: ?Sized>(&self, other: &T) -> bool where
Self: Sized,
T: RenderPassDesc,
[src]
Self: Sized,
T: RenderPassDesc,
fn build_render_pass(
self,
device: Arc<Device>
) -> Result<RenderPass<Self>, RenderPassCreationError> where
Self: Sized,
[src]
self,
device: Arc<Device>
) -> Result<RenderPass<Self>, RenderPassCreationError> where
Self: Sized,
impl RenderPassDescClearValues<Vec<ClearValue>> for EmptySinglePassRenderPassDesc
[src]
fn convert_clear_values(
&self,
values: Vec<ClearValue>
) -> Box<dyn Iterator<Item = ClearValue>>
[src]
&self,
values: Vec<ClearValue>
) -> Box<dyn Iterator<Item = ClearValue>>
impl RenderPassDescClearValues<()> for EmptySinglePassRenderPassDesc
[src]
fn convert_clear_values(&self, _: ()) -> Box<dyn Iterator<Item = ClearValue>>
[src]
impl Clone for EmptySinglePassRenderPassDesc
[src]
fn clone(&self) -> EmptySinglePassRenderPassDesc
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for EmptySinglePassRenderPassDesc
[src]
impl Debug for EmptySinglePassRenderPassDesc
[src]
Auto Trait Implementations
impl Send for EmptySinglePassRenderPassDesc
impl Unpin for EmptySinglePassRenderPassDesc
impl Sync for EmptySinglePassRenderPassDesc
impl UnwindSafe for EmptySinglePassRenderPassDesc
impl RefUnwindSafe for EmptySinglePassRenderPassDesc
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,