SDL  2.0
VULKAN_HPP_NAMESPACE::QueueFamilyCheckpointPropertiesNV Struct Reference

#include <vulkan.hpp>

+ Collaboration diagram for VULKAN_HPP_NAMESPACE::QueueFamilyCheckpointPropertiesNV:

Public Member Functions

VULKAN_HPP_CONSTEXPR QueueFamilyCheckpointPropertiesNV (VULKAN_HPP_NAMESPACE::PipelineStageFlags checkpointExecutionStageMask_={}) VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_CONSTEXPR QueueFamilyCheckpointPropertiesNV (QueueFamilyCheckpointPropertiesNV const &rhs) VULKAN_HPP_NOEXCEPT=default
 
 QueueFamilyCheckpointPropertiesNV (VkQueueFamilyCheckpointPropertiesNV const &rhs) VULKAN_HPP_NOEXCEPT
 
QueueFamilyCheckpointPropertiesNVoperator= (VkQueueFamilyCheckpointPropertiesNV const &rhs) VULKAN_HPP_NOEXCEPT
 
QueueFamilyCheckpointPropertiesNVoperator= (QueueFamilyCheckpointPropertiesNV const &rhs) VULKAN_HPP_NOEXCEPT
 
 operator VkQueueFamilyCheckpointPropertiesNV const & () const VULKAN_HPP_NOEXCEPT
 
 operator VkQueueFamilyCheckpointPropertiesNV & () VULKAN_HPP_NOEXCEPT
 
bool operator== (QueueFamilyCheckpointPropertiesNV const &rhs) const VULKAN_HPP_NOEXCEPT
 
bool operator!= (QueueFamilyCheckpointPropertiesNV const &rhs) const VULKAN_HPP_NOEXCEPT
 

Data Fields

const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eQueueFamilyCheckpointPropertiesNV
 
voidpNext = {}
 
VULKAN_HPP_NAMESPACE::PipelineStageFlags checkpointExecutionStageMask = {}
 

Static Public Attributes

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

Detailed Description

Definition at line 76429 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ QueueFamilyCheckpointPropertiesNV() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::QueueFamilyCheckpointPropertiesNV::QueueFamilyCheckpointPropertiesNV ( VULKAN_HPP_NAMESPACE::PipelineStageFlags  checkpointExecutionStageMask_ = {})
inline

Definition at line 76435 of file vulkan.hpp.

76436  : checkpointExecutionStageMask( checkpointExecutionStageMask_ )
76437  {}
VULKAN_HPP_NAMESPACE::PipelineStageFlags checkpointExecutionStageMask
Definition: vulkan.hpp:76492
#define VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:179

◆ QueueFamilyCheckpointPropertiesNV() [2/3]

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

◆ QueueFamilyCheckpointPropertiesNV() [3/3]

VULKAN_HPP_NAMESPACE::QueueFamilyCheckpointPropertiesNV::QueueFamilyCheckpointPropertiesNV ( VkQueueFamilyCheckpointPropertiesNV const &  rhs)
inline

Definition at line 76441 of file vulkan.hpp.

76442  {
76443  *this = rhs;
76444  }

Member Function Documentation

◆ operator VkQueueFamilyCheckpointPropertiesNV &()

VULKAN_HPP_NAMESPACE::QueueFamilyCheckpointPropertiesNV::operator VkQueueFamilyCheckpointPropertiesNV & ( )
inline

Definition at line 76465 of file vulkan.hpp.

76466  {
76467  return *reinterpret_cast<VkQueueFamilyCheckpointPropertiesNV*>( this );
76468  }

◆ operator VkQueueFamilyCheckpointPropertiesNV const &()

VULKAN_HPP_NAMESPACE::QueueFamilyCheckpointPropertiesNV::operator VkQueueFamilyCheckpointPropertiesNV const & ( ) const
inline

Definition at line 76460 of file vulkan.hpp.

76461  {
76462  return *reinterpret_cast<const VkQueueFamilyCheckpointPropertiesNV*>( this );
76463  }

◆ operator!=()

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

Definition at line 76481 of file vulkan.hpp.

76482  {
76483  return !operator==( rhs );
76484  }
bool operator==(QueueFamilyCheckpointPropertiesNV const &rhs) const VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:76474

References VULKAN_HPP_NAMESPACE::operator==().

◆ operator=() [1/2]

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

Definition at line 76453 of file vulkan.hpp.

76454  {
76455  memcpy( static_cast<void *>( this ), &rhs, sizeof( QueueFamilyCheckpointPropertiesNV ) );
76456  return *this;
76457  }
#define memcpy
Definition: SDL_malloc.c:630
VULKAN_HPP_CONSTEXPR QueueFamilyCheckpointPropertiesNV(VULKAN_HPP_NAMESPACE::PipelineStageFlags checkpointExecutionStageMask_={}) VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:76435

References memcpy.

◆ operator=() [2/2]

QueueFamilyCheckpointPropertiesNV& VULKAN_HPP_NAMESPACE::QueueFamilyCheckpointPropertiesNV::operator= ( VkQueueFamilyCheckpointPropertiesNV const &  rhs)
inline

Definition at line 76447 of file vulkan.hpp.

76448  {
76449  *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::QueueFamilyCheckpointPropertiesNV const *>( &rhs );
76450  return *this;
76451  }

◆ operator==()

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

Definition at line 76474 of file vulkan.hpp.

76475  {
76476  return ( sType == rhs.sType )
76477  && ( pNext == rhs.pNext )
76478  && ( checkpointExecutionStageMask == rhs.checkpointExecutionStageMask );
76479  }
const VULKAN_HPP_NAMESPACE::StructureType sType
Definition: vulkan.hpp:76490

Field Documentation

◆ allowDuplicate

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

Definition at line 76431 of file vulkan.hpp.

◆ checkpointExecutionStageMask

VULKAN_HPP_NAMESPACE::PipelineStageFlags VULKAN_HPP_NAMESPACE::QueueFamilyCheckpointPropertiesNV::checkpointExecutionStageMask = {}

Definition at line 76492 of file vulkan.hpp.

◆ pNext

void* VULKAN_HPP_NAMESPACE::QueueFamilyCheckpointPropertiesNV::pNext = {}

Definition at line 76491 of file vulkan.hpp.

◆ structureType

VULKAN_HPP_CONST_OR_CONSTEXPR StructureType VULKAN_HPP_NAMESPACE::QueueFamilyCheckpointPropertiesNV::structureType = StructureType::eQueueFamilyCheckpointPropertiesNV
static

Definition at line 76432 of file vulkan.hpp.

◆ sType

const VULKAN_HPP_NAMESPACE::StructureType VULKAN_HPP_NAMESPACE::QueueFamilyCheckpointPropertiesNV::sType = StructureType::eQueueFamilyCheckpointPropertiesNV

Definition at line 76490 of file vulkan.hpp.


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