Home
last modified time | relevance | path

Searched defs:CommandBufferInheritanceInfo (Results 1 – 9 of 9) sorted by relevance

/external/rust/crates/vulkano/src/command_buffer/
Dmod.rs229 pub struct CommandBufferInheritanceInfo { struct
236 pub render_pass: Option<CommandBufferInheritanceRenderPassType>,
263 impl Default for CommandBufferInheritanceInfo { argument
Dtraits.rs169 fn inheritance_info(&self) -> &CommandBufferInheritanceInfo; in inheritance_info()
197 fn inheritance_info(&self) -> &CommandBufferInheritanceInfo { in inheritance_info()
Dauto.rs166 inheritance_info: CommandBufferInheritanceInfo, in secondary()
795 fn inheritance_info(&self) -> &CommandBufferInheritanceInfo { in inheritance_info()
/external/rust/crates/vulkano/src/command_buffer/standard/
Dmod.rs114 pub fn inheritance_info(&self) -> &CommandBufferInheritanceInfo { in inheritance_info()
/external/rust/crates/vulkano/src/command_buffer/standard/builder/
Dmod.rs159 inheritance_info: CommandBufferInheritanceInfo, in secondary()
/external/swiftshader/include/vulkan/
Dvulkan_structs.hpp14152 struct CommandBufferInheritanceInfo struct
14154 using NativeType = VkCommandBufferInheritanceInfo;
14156 static const bool allowDuplicate = false;
14157 …HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCommandBufferInheritanceInfo;
14160 …VULKAN_HPP_CONSTEXPR CommandBufferInheritanceInfo( VULKAN_HPP_NAMESPACE::RenderPass … in CommandBufferInheritanceInfo() argument
14179 CommandBufferInheritanceInfo( VkCommandBufferInheritanceInfo const & rhs ) VULKAN_HPP_NOEXCEPT in CommandBufferInheritanceInfo() function
14189 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::CommandBufferInheritanceInfo const *>( &rhs ); in operator =()
14194 …HPP_CONSTEXPR_14 CommandBufferInheritanceInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
14200 …InheritanceInfo & setRenderPass( VULKAN_HPP_NAMESPACE::RenderPass renderPass_ ) VULKAN_HPP_NOEXCEPT in setRenderPass()
14206 …HPP_CONSTEXPR_14 CommandBufferInheritanceInfo & setSubpass( uint32_t subpass_ ) VULKAN_HPP_NOEXCEPT in setSubpass()
[all …]
/external/vulkan-headers/include/vulkan/
Dvulkan_structs.hpp14590 struct CommandBufferInheritanceInfo struct
14592 using NativeType = VkCommandBufferInheritanceInfo;
14594 static const bool allowDuplicate = false;
14595 …HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCommandBufferInheritanceInfo;
14598 …VULKAN_HPP_CONSTEXPR CommandBufferInheritanceInfo( VULKAN_HPP_NAMESPACE::RenderPass … in CommandBufferInheritanceInfo() function
14617 CommandBufferInheritanceInfo( VkCommandBufferInheritanceInfo const & rhs ) VULKAN_HPP_NOEXCEPT in CommandBufferInheritanceInfo() function
14627 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::CommandBufferInheritanceInfo const *>( &rhs ); in operator =()
14632 …HPP_CONSTEXPR_14 CommandBufferInheritanceInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
14638 …InheritanceInfo & setRenderPass( VULKAN_HPP_NAMESPACE::RenderPass renderPass_ ) VULKAN_HPP_NOEXCEPT in setRenderPass()
14644 …HPP_CONSTEXPR_14 CommandBufferInheritanceInfo & setSubpass( uint32_t subpass_ ) VULKAN_HPP_NOEXCEPT in setSubpass()
[all …]
/external/angle/third_party/vulkan-headers/src/include/vulkan/
Dvulkan_structs.hpp14480 struct CommandBufferInheritanceInfo struct
14482 using NativeType = VkCommandBufferInheritanceInfo;
14484 static const bool allowDuplicate = false;
14485 …HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eCommandBufferInheritanceInfo;
14488 …VULKAN_HPP_CONSTEXPR CommandBufferInheritanceInfo( VULKAN_HPP_NAMESPACE::RenderPass … in CommandBufferInheritanceInfo() argument
14507 CommandBufferInheritanceInfo( VkCommandBufferInheritanceInfo const & rhs ) VULKAN_HPP_NOEXCEPT in CommandBufferInheritanceInfo() function
14517 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::CommandBufferInheritanceInfo const *>( &rhs ); in operator =()
14522 …HPP_CONSTEXPR_14 CommandBufferInheritanceInfo & setPNext( const void * pNext_ ) VULKAN_HPP_NOEXCEPT in setPNext()
14528 …InheritanceInfo & setRenderPass( VULKAN_HPP_NAMESPACE::RenderPass renderPass_ ) VULKAN_HPP_NOEXCEPT in setRenderPass()
14534 …HPP_CONSTEXPR_14 CommandBufferInheritanceInfo & setSubpass( uint32_t subpass_ ) VULKAN_HPP_NOEXCEPT in setSubpass()
[all …]
/external/rust/crates/ash/src/vk/
Ddefinitions.rs7615 pub struct CommandBufferInheritanceInfo { struct
7625 impl ::std::default::Default for CommandBufferInheritanceInfo { argument
7640 unsafe impl TaggedStructure for CommandBufferInheritanceInfo { implementation
7643 impl CommandBufferInheritanceInfo { implementation
7716 pub fn build(self) -> CommandBufferInheritanceInfo { in build()