SDL  2.0
VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo Struct Reference

#include <vulkan.hpp>

+ Collaboration diagram for VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo:

Public Member Functions

VULKAN_HPP_CONSTEXPR RenderPassInputAttachmentAspectCreateInfo (uint32_t aspectReferenceCount_={}, const VULKAN_HPP_NAMESPACE::InputAttachmentAspectReference *pAspectReferences_={}) VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_CONSTEXPR RenderPassInputAttachmentAspectCreateInfo (RenderPassInputAttachmentAspectCreateInfo const &rhs) VULKAN_HPP_NOEXCEPT=default
 
 RenderPassInputAttachmentAspectCreateInfo (VkRenderPassInputAttachmentAspectCreateInfo const &rhs) VULKAN_HPP_NOEXCEPT
 
 RenderPassInputAttachmentAspectCreateInfo (VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< const VULKAN_HPP_NAMESPACE::InputAttachmentAspectReference > const &aspectReferences_)
 
RenderPassInputAttachmentAspectCreateInfooperator= (VkRenderPassInputAttachmentAspectCreateInfo const &rhs) VULKAN_HPP_NOEXCEPT
 
RenderPassInputAttachmentAspectCreateInfooperator= (RenderPassInputAttachmentAspectCreateInfo const &rhs) VULKAN_HPP_NOEXCEPT
 
RenderPassInputAttachmentAspectCreateInfosetPNext (const void *pNext_) VULKAN_HPP_NOEXCEPT
 
RenderPassInputAttachmentAspectCreateInfosetAspectReferenceCount (uint32_t aspectReferenceCount_) VULKAN_HPP_NOEXCEPT
 
RenderPassInputAttachmentAspectCreateInfosetPAspectReferences (const VULKAN_HPP_NAMESPACE::InputAttachmentAspectReference *pAspectReferences_) VULKAN_HPP_NOEXCEPT
 
RenderPassInputAttachmentAspectCreateInfosetAspectReferences (VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< const VULKAN_HPP_NAMESPACE::InputAttachmentAspectReference > const &aspectReferences_) VULKAN_HPP_NOEXCEPT
 
 operator VkRenderPassInputAttachmentAspectCreateInfo const & () const VULKAN_HPP_NOEXCEPT
 
 operator VkRenderPassInputAttachmentAspectCreateInfo & () VULKAN_HPP_NOEXCEPT
 
bool operator== (RenderPassInputAttachmentAspectCreateInfo const &rhs) const VULKAN_HPP_NOEXCEPT
 
bool operator!= (RenderPassInputAttachmentAspectCreateInfo const &rhs) const VULKAN_HPP_NOEXCEPT
 

Data Fields

const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eRenderPassInputAttachmentAspectCreateInfo
 
const voidpNext = {}
 
uint32_t aspectReferenceCount = {}
 
const VULKAN_HPP_NAMESPACE::InputAttachmentAspectReferencepAspectReferences = {}
 

Static Public Attributes

static const bool allowDuplicate = false
 
static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::eRenderPassInputAttachmentAspectCreateInfo
 

Detailed Description

Definition at line 76702 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ RenderPassInputAttachmentAspectCreateInfo() [1/4]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::RenderPassInputAttachmentAspectCreateInfo ( uint32_t  aspectReferenceCount_ = {},
const VULKAN_HPP_NAMESPACE::InputAttachmentAspectReference pAspectReferences_ = {} 
)
inline

Definition at line 76708 of file vulkan.hpp.

76709  : aspectReferenceCount( aspectReferenceCount_ ), pAspectReferences( pAspectReferences_ )
76710  {}
const VULKAN_HPP_NAMESPACE::InputAttachmentAspectReference * pAspectReferences
Definition: vulkan.hpp:76800
#define VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:179

◆ RenderPassInputAttachmentAspectCreateInfo() [2/4]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::RenderPassInputAttachmentAspectCreateInfo ( RenderPassInputAttachmentAspectCreateInfo const &  rhs)
default

◆ RenderPassInputAttachmentAspectCreateInfo() [3/4]

VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::RenderPassInputAttachmentAspectCreateInfo ( VkRenderPassInputAttachmentAspectCreateInfo const &  rhs)
inline

Definition at line 76714 of file vulkan.hpp.

76715  {
76716  *this = rhs;
76717  }

◆ RenderPassInputAttachmentAspectCreateInfo() [4/4]

VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::RenderPassInputAttachmentAspectCreateInfo ( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< const VULKAN_HPP_NAMESPACE::InputAttachmentAspectReference > const &  aspectReferences_)
inline

Definition at line 76720 of file vulkan.hpp.

76721  : aspectReferenceCount( static_cast<uint32_t>( aspectReferences_.size() ) ), pAspectReferences( aspectReferences_.data() )
76722  {}
unsigned int uint32_t
T * data() const VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:519
uint32_t size() const VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:514

Member Function Documentation

◆ operator VkRenderPassInputAttachmentAspectCreateInfo &()

VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::operator VkRenderPassInputAttachmentAspectCreateInfo & ( )
inline

Definition at line 76771 of file vulkan.hpp.

76772  {
76773  return *reinterpret_cast<VkRenderPassInputAttachmentAspectCreateInfo*>( this );
76774  }

◆ operator VkRenderPassInputAttachmentAspectCreateInfo const &()

VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::operator VkRenderPassInputAttachmentAspectCreateInfo const & ( ) const
inline

Definition at line 76766 of file vulkan.hpp.

76767  {
76768  return *reinterpret_cast<const VkRenderPassInputAttachmentAspectCreateInfo*>( this );
76769  }

◆ operator!=()

bool VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::operator!= ( RenderPassInputAttachmentAspectCreateInfo const &  rhs) const
inline

Definition at line 76788 of file vulkan.hpp.

76789  {
76790  return !operator==( rhs );
76791  }
bool operator==(RenderPassInputAttachmentAspectCreateInfo const &rhs) const VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:76780

References VULKAN_HPP_NAMESPACE::operator==().

◆ operator=() [1/2]

RenderPassInputAttachmentAspectCreateInfo& VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::operator= ( RenderPassInputAttachmentAspectCreateInfo const &  rhs)
inline

Definition at line 76732 of file vulkan.hpp.

76733  {
76734  memcpy( static_cast<void *>( this ), &rhs, sizeof( RenderPassInputAttachmentAspectCreateInfo ) );
76735  return *this;
76736  }
#define memcpy
Definition: SDL_malloc.c:630
VULKAN_HPP_CONSTEXPR RenderPassInputAttachmentAspectCreateInfo(uint32_t aspectReferenceCount_={}, const VULKAN_HPP_NAMESPACE::InputAttachmentAspectReference *pAspectReferences_={}) VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:76708

References memcpy.

◆ operator=() [2/2]

RenderPassInputAttachmentAspectCreateInfo& VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::operator= ( VkRenderPassInputAttachmentAspectCreateInfo const &  rhs)
inline

Definition at line 76726 of file vulkan.hpp.

76727  {
76728  *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo const *>( &rhs );
76729  return *this;
76730  }

◆ operator==()

bool VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::operator== ( RenderPassInputAttachmentAspectCreateInfo const &  rhs) const
inline

Definition at line 76780 of file vulkan.hpp.

76781  {
76782  return ( sType == rhs.sType )
76783  && ( pNext == rhs.pNext )
76784  && ( aspectReferenceCount == rhs.aspectReferenceCount )
76785  && ( pAspectReferences == rhs.pAspectReferences );
76786  }
const VULKAN_HPP_NAMESPACE::StructureType sType
Definition: vulkan.hpp:76797

◆ setAspectReferenceCount()

RenderPassInputAttachmentAspectCreateInfo& VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::setAspectReferenceCount ( uint32_t  aspectReferenceCount_)
inline

Definition at line 76744 of file vulkan.hpp.

76745  {
76746  aspectReferenceCount = aspectReferenceCount_;
76747  return *this;
76748  }

◆ setAspectReferences()

RenderPassInputAttachmentAspectCreateInfo& VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::setAspectReferences ( VULKAN_HPP_NAMESPACE::ArrayProxyNoTemporaries< const VULKAN_HPP_NAMESPACE::InputAttachmentAspectReference > const &  aspectReferences_)
inline

Definition at line 76757 of file vulkan.hpp.

76758  {
76759  aspectReferenceCount = static_cast<uint32_t>( aspectReferences_.size() );
76760  pAspectReferences = aspectReferences_.data();
76761  return *this;
76762  }

◆ setPAspectReferences()

RenderPassInputAttachmentAspectCreateInfo& VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::setPAspectReferences ( const VULKAN_HPP_NAMESPACE::InputAttachmentAspectReference pAspectReferences_)
inline

Definition at line 76750 of file vulkan.hpp.

76751  {
76752  pAspectReferences = pAspectReferences_;
76753  return *this;
76754  }

◆ setPNext()

RenderPassInputAttachmentAspectCreateInfo& VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::setPNext ( const void pNext_)
inline

Definition at line 76738 of file vulkan.hpp.

76739  {
76740  pNext = pNext_;
76741  return *this;
76742  }

Field Documentation

◆ allowDuplicate

const bool VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::allowDuplicate = false
static

Definition at line 76704 of file vulkan.hpp.

◆ aspectReferenceCount

uint32_t VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::aspectReferenceCount = {}

Definition at line 76799 of file vulkan.hpp.

◆ pAspectReferences

const VULKAN_HPP_NAMESPACE::InputAttachmentAspectReference* VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::pAspectReferences = {}

Definition at line 76800 of file vulkan.hpp.

◆ pNext

const void* VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::pNext = {}

Definition at line 76798 of file vulkan.hpp.

◆ structureType

VULKAN_HPP_CONST_OR_CONSTEXPR StructureType VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::structureType = StructureType::eRenderPassInputAttachmentAspectCreateInfo
static

Definition at line 76705 of file vulkan.hpp.

◆ sType

const VULKAN_HPP_NAMESPACE::StructureType VULKAN_HPP_NAMESPACE::RenderPassInputAttachmentAspectCreateInfo::sType = StructureType::eRenderPassInputAttachmentAspectCreateInfo

Definition at line 76797 of file vulkan.hpp.


The documentation for this struct was generated from the following file: