SDL  2.0
VULKAN_HPP_NAMESPACE::PhysicalDeviceRobustness2PropertiesEXT Struct Reference

#include <vulkan.hpp>

Public Member Functions

VULKAN_HPP_CONSTEXPR PhysicalDeviceRobustness2PropertiesEXT (VULKAN_HPP_NAMESPACE::DeviceSize robustStorageBufferAccessSizeAlignment_={}, VULKAN_HPP_NAMESPACE::DeviceSize robustUniformBufferAccessSizeAlignment_={}) VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_CONSTEXPR PhysicalDeviceRobustness2PropertiesEXT (PhysicalDeviceRobustness2PropertiesEXT const &rhs) VULKAN_HPP_NOEXCEPT=default
 
 PhysicalDeviceRobustness2PropertiesEXT (VkPhysicalDeviceRobustness2PropertiesEXT const &rhs) VULKAN_HPP_NOEXCEPT
 
PhysicalDeviceRobustness2PropertiesEXToperator= (VkPhysicalDeviceRobustness2PropertiesEXT const &rhs) VULKAN_HPP_NOEXCEPT
 
PhysicalDeviceRobustness2PropertiesEXToperator= (PhysicalDeviceRobustness2PropertiesEXT const &rhs) VULKAN_HPP_NOEXCEPT
 
 operator VkPhysicalDeviceRobustness2PropertiesEXT const & () const VULKAN_HPP_NOEXCEPT
 
 operator VkPhysicalDeviceRobustness2PropertiesEXT & () VULKAN_HPP_NOEXCEPT
 
bool operator== (PhysicalDeviceRobustness2PropertiesEXT const &rhs) const VULKAN_HPP_NOEXCEPT
 
bool operator!= (PhysicalDeviceRobustness2PropertiesEXT const &rhs) const VULKAN_HPP_NOEXCEPT
 

Data Fields

const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceRobustness2PropertiesEXT
 
voidpNext = {}
 
VULKAN_HPP_NAMESPACE::DeviceSize robustStorageBufferAccessSizeAlignment = {}
 
VULKAN_HPP_NAMESPACE::DeviceSize robustUniformBufferAccessSizeAlignment = {}
 

Static Public Attributes

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

Detailed Description

Definition at line 68634 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ PhysicalDeviceRobustness2PropertiesEXT() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::PhysicalDeviceRobustness2PropertiesEXT::PhysicalDeviceRobustness2PropertiesEXT ( VULKAN_HPP_NAMESPACE::DeviceSize  robustStorageBufferAccessSizeAlignment_ = {},
VULKAN_HPP_NAMESPACE::DeviceSize  robustUniformBufferAccessSizeAlignment_ = {} 
)
inline

Definition at line 68640 of file vulkan.hpp.

68640  {}, VULKAN_HPP_NAMESPACE::DeviceSize robustUniformBufferAccessSizeAlignment_ = {}) VULKAN_HPP_NOEXCEPT
68641  : robustStorageBufferAccessSizeAlignment( robustStorageBufferAccessSizeAlignment_ ), robustUniformBufferAccessSizeAlignment( robustUniformBufferAccessSizeAlignment_ )
68642  {}
VULKAN_HPP_NAMESPACE::DeviceSize robustStorageBufferAccessSizeAlignment
Definition: vulkan.hpp:68698
VULKAN_HPP_NAMESPACE::DeviceSize robustUniformBufferAccessSizeAlignment
Definition: vulkan.hpp:68699
#define VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:179

◆ PhysicalDeviceRobustness2PropertiesEXT() [2/3]

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

◆ PhysicalDeviceRobustness2PropertiesEXT() [3/3]

VULKAN_HPP_NAMESPACE::PhysicalDeviceRobustness2PropertiesEXT::PhysicalDeviceRobustness2PropertiesEXT ( VkPhysicalDeviceRobustness2PropertiesEXT const &  rhs)
inline

Definition at line 68646 of file vulkan.hpp.

68647  {
68648  *this = rhs;
68649  }

Member Function Documentation

◆ operator VkPhysicalDeviceRobustness2PropertiesEXT &()

VULKAN_HPP_NAMESPACE::PhysicalDeviceRobustness2PropertiesEXT::operator VkPhysicalDeviceRobustness2PropertiesEXT & ( )
inline

Definition at line 68670 of file vulkan.hpp.

68671  {
68672  return *reinterpret_cast<VkPhysicalDeviceRobustness2PropertiesEXT*>( this );
68673  }

◆ operator VkPhysicalDeviceRobustness2PropertiesEXT const &()

VULKAN_HPP_NAMESPACE::PhysicalDeviceRobustness2PropertiesEXT::operator VkPhysicalDeviceRobustness2PropertiesEXT const & ( ) const
inline

Definition at line 68665 of file vulkan.hpp.

68666  {
68667  return *reinterpret_cast<const VkPhysicalDeviceRobustness2PropertiesEXT*>( this );
68668  }

◆ operator!=()

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

Definition at line 68687 of file vulkan.hpp.

68688  {
68689  return !operator==( rhs );
68690  }
bool operator==(PhysicalDeviceRobustness2PropertiesEXT const &rhs) const VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:68679

References VULKAN_HPP_NAMESPACE::operator==().

◆ operator=() [1/2]

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

Definition at line 68658 of file vulkan.hpp.

68659  {
68660  memcpy( static_cast<void *>( this ), &rhs, sizeof( PhysicalDeviceRobustness2PropertiesEXT ) );
68661  return *this;
68662  }
#define memcpy
Definition: SDL_malloc.c:630
VULKAN_HPP_CONSTEXPR PhysicalDeviceRobustness2PropertiesEXT(VULKAN_HPP_NAMESPACE::DeviceSize robustStorageBufferAccessSizeAlignment_={}, VULKAN_HPP_NAMESPACE::DeviceSize robustUniformBufferAccessSizeAlignment_={}) VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:68640

References memcpy.

◆ operator=() [2/2]

PhysicalDeviceRobustness2PropertiesEXT& VULKAN_HPP_NAMESPACE::PhysicalDeviceRobustness2PropertiesEXT::operator= ( VkPhysicalDeviceRobustness2PropertiesEXT const &  rhs)
inline

Definition at line 68652 of file vulkan.hpp.

68653  {
68654  *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::PhysicalDeviceRobustness2PropertiesEXT const *>( &rhs );
68655  return *this;
68656  }

◆ operator==()

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

Definition at line 68679 of file vulkan.hpp.

68680  {
68681  return ( sType == rhs.sType )
68682  && ( pNext == rhs.pNext )
68683  && ( robustStorageBufferAccessSizeAlignment == rhs.robustStorageBufferAccessSizeAlignment )
68684  && ( robustUniformBufferAccessSizeAlignment == rhs.robustUniformBufferAccessSizeAlignment );
68685  }
const VULKAN_HPP_NAMESPACE::StructureType sType
Definition: vulkan.hpp:68696

Field Documentation

◆ allowDuplicate

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

Definition at line 68636 of file vulkan.hpp.

◆ pNext

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

Definition at line 68697 of file vulkan.hpp.

◆ robustStorageBufferAccessSizeAlignment

VULKAN_HPP_NAMESPACE::DeviceSize VULKAN_HPP_NAMESPACE::PhysicalDeviceRobustness2PropertiesEXT::robustStorageBufferAccessSizeAlignment = {}

Definition at line 68698 of file vulkan.hpp.

◆ robustUniformBufferAccessSizeAlignment

VULKAN_HPP_NAMESPACE::DeviceSize VULKAN_HPP_NAMESPACE::PhysicalDeviceRobustness2PropertiesEXT::robustUniformBufferAccessSizeAlignment = {}

Definition at line 68699 of file vulkan.hpp.

◆ structureType

VULKAN_HPP_CONST_OR_CONSTEXPR StructureType VULKAN_HPP_NAMESPACE::PhysicalDeviceRobustness2PropertiesEXT::structureType = StructureType::ePhysicalDeviceRobustness2PropertiesEXT
static

Definition at line 68637 of file vulkan.hpp.

◆ sType

const VULKAN_HPP_NAMESPACE::StructureType VULKAN_HPP_NAMESPACE::PhysicalDeviceRobustness2PropertiesEXT::sType = StructureType::ePhysicalDeviceRobustness2PropertiesEXT

Definition at line 68696 of file vulkan.hpp.


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