Struct bedrock::vk::VkSubpassDescription [] [src]

#[repr(C)]
pub struct VkSubpassDescription { pub flags: VkSubpassDescriptionFlags, pub pipelineBindPoint: VkPipelineBindPoint, pub inputAttachmentCount: u32, pub pInputAttachments: *const VkAttachmentReference, pub colorAttachmentCount: u32, pub pColorAttachments: *const VkAttachmentReference, pub pResolveAttachments: *const VkAttachmentReference, pub pDepthStencilAttachment: *const VkAttachmentReference, pub preserveAttachmentCount: u32, pub pPreserveAttachments: *const u32, }

Fields

A bitmask of VkSubpassDescriptionFlagBits specifying usage of the subpass.

Possible Bitmasks

  • 0: No flags

A VkPipelineBindPoint value specifying whether this is a compute or graphics subpass.

Possible Values

  • VK_PIPELINE_BIND_POINT_GRAPHICS: Binding as a graphics pipeline.
  • ~~VK_PIPELINE_BIND_POINT_COMPUTE: Binding as a compute pipeline.~~ (Currently unsupported)

Trait Implementations

impl Debug for VkSubpassDescription
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for VkSubpassDescription
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for VkSubpassDescription
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for VkSubpassDescription
[src]

impl Default for VkSubpassDescription
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations