SDL  2.0
VULKAN_HPP_NAMESPACE::PhysicalDeviceMaintenance3Properties Struct Reference

#include <vulkan.hpp>

Public Member Functions

VULKAN_HPP_CONSTEXPR PhysicalDeviceMaintenance3Properties (uint32_t maxPerSetDescriptors_={}, VULKAN_HPP_NAMESPACE::DeviceSize maxMemoryAllocationSize_={}) VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_CONSTEXPR PhysicalDeviceMaintenance3Properties (PhysicalDeviceMaintenance3Properties const &rhs) VULKAN_HPP_NOEXCEPT=default
 
 PhysicalDeviceMaintenance3Properties (VkPhysicalDeviceMaintenance3Properties const &rhs) VULKAN_HPP_NOEXCEPT
 
PhysicalDeviceMaintenance3Propertiesoperator= (VkPhysicalDeviceMaintenance3Properties const &rhs) VULKAN_HPP_NOEXCEPT
 
PhysicalDeviceMaintenance3Propertiesoperator= (PhysicalDeviceMaintenance3Properties const &rhs) VULKAN_HPP_NOEXCEPT
 
 operator VkPhysicalDeviceMaintenance3Properties const & () const VULKAN_HPP_NOEXCEPT
 
 operator VkPhysicalDeviceMaintenance3Properties & () VULKAN_HPP_NOEXCEPT
 
bool operator== (PhysicalDeviceMaintenance3Properties const &rhs) const VULKAN_HPP_NOEXCEPT
 
bool operator!= (PhysicalDeviceMaintenance3Properties const &rhs) const VULKAN_HPP_NOEXCEPT
 

Data Fields

const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceMaintenance3Properties
 
voidpNext = {}
 
uint32_t maxPerSetDescriptors = {}
 
VULKAN_HPP_NAMESPACE::DeviceSize maxMemoryAllocationSize = {}
 

Static Public Attributes

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

Detailed Description

Definition at line 66301 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ PhysicalDeviceMaintenance3Properties() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::PhysicalDeviceMaintenance3Properties::PhysicalDeviceMaintenance3Properties ( uint32_t  maxPerSetDescriptors_ = {},
VULKAN_HPP_NAMESPACE::DeviceSize  maxMemoryAllocationSize_ = {} 
)
inline

Definition at line 66307 of file vulkan.hpp.

66307  {}, VULKAN_HPP_NAMESPACE::DeviceSize maxMemoryAllocationSize_ = {}) VULKAN_HPP_NOEXCEPT
66308  : maxPerSetDescriptors( maxPerSetDescriptors_ ), maxMemoryAllocationSize( maxMemoryAllocationSize_ )
66309  {}
VULKAN_HPP_NAMESPACE::DeviceSize maxMemoryAllocationSize
Definition: vulkan.hpp:66366
#define VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:179

◆ PhysicalDeviceMaintenance3Properties() [2/3]

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

◆ PhysicalDeviceMaintenance3Properties() [3/3]

VULKAN_HPP_NAMESPACE::PhysicalDeviceMaintenance3Properties::PhysicalDeviceMaintenance3Properties ( VkPhysicalDeviceMaintenance3Properties const &  rhs)
inline

Definition at line 66313 of file vulkan.hpp.

66314  {
66315  *this = rhs;
66316  }

Member Function Documentation

◆ operator VkPhysicalDeviceMaintenance3Properties &()

VULKAN_HPP_NAMESPACE::PhysicalDeviceMaintenance3Properties::operator VkPhysicalDeviceMaintenance3Properties & ( )
inline

Definition at line 66337 of file vulkan.hpp.

66338  {
66339  return *reinterpret_cast<VkPhysicalDeviceMaintenance3Properties*>( this );
66340  }

◆ operator VkPhysicalDeviceMaintenance3Properties const &()

VULKAN_HPP_NAMESPACE::PhysicalDeviceMaintenance3Properties::operator VkPhysicalDeviceMaintenance3Properties const & ( ) const
inline

Definition at line 66332 of file vulkan.hpp.

66333  {
66334  return *reinterpret_cast<const VkPhysicalDeviceMaintenance3Properties*>( this );
66335  }

◆ operator!=()

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

Definition at line 66354 of file vulkan.hpp.

66355  {
66356  return !operator==( rhs );
66357  }
bool operator==(PhysicalDeviceMaintenance3Properties const &rhs) const VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:66346

References VULKAN_HPP_NAMESPACE::operator==().

◆ operator=() [1/2]

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

Definition at line 66325 of file vulkan.hpp.

66326  {
66327  memcpy( static_cast<void *>( this ), &rhs, sizeof( PhysicalDeviceMaintenance3Properties ) );
66328  return *this;
66329  }
#define memcpy
Definition: SDL_malloc.c:630
VULKAN_HPP_CONSTEXPR PhysicalDeviceMaintenance3Properties(uint32_t maxPerSetDescriptors_={}, VULKAN_HPP_NAMESPACE::DeviceSize maxMemoryAllocationSize_={}) VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:66307

References memcpy.

◆ operator=() [2/2]

PhysicalDeviceMaintenance3Properties& VULKAN_HPP_NAMESPACE::PhysicalDeviceMaintenance3Properties::operator= ( VkPhysicalDeviceMaintenance3Properties const &  rhs)
inline

Definition at line 66319 of file vulkan.hpp.

66320  {
66321  *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::PhysicalDeviceMaintenance3Properties const *>( &rhs );
66322  return *this;
66323  }

◆ operator==()

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

Definition at line 66346 of file vulkan.hpp.

66347  {
66348  return ( sType == rhs.sType )
66349  && ( pNext == rhs.pNext )
66350  && ( maxPerSetDescriptors == rhs.maxPerSetDescriptors )
66351  && ( maxMemoryAllocationSize == rhs.maxMemoryAllocationSize );
66352  }
const VULKAN_HPP_NAMESPACE::StructureType sType
Definition: vulkan.hpp:66363

Field Documentation

◆ allowDuplicate

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

Definition at line 66303 of file vulkan.hpp.

◆ maxMemoryAllocationSize

VULKAN_HPP_NAMESPACE::DeviceSize VULKAN_HPP_NAMESPACE::PhysicalDeviceMaintenance3Properties::maxMemoryAllocationSize = {}

Definition at line 66366 of file vulkan.hpp.

◆ maxPerSetDescriptors

uint32_t VULKAN_HPP_NAMESPACE::PhysicalDeviceMaintenance3Properties::maxPerSetDescriptors = {}

Definition at line 66365 of file vulkan.hpp.

◆ pNext

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

Definition at line 66364 of file vulkan.hpp.

◆ structureType

VULKAN_HPP_CONST_OR_CONSTEXPR StructureType VULKAN_HPP_NAMESPACE::PhysicalDeviceMaintenance3Properties::structureType = StructureType::ePhysicalDeviceMaintenance3Properties
static

Definition at line 66304 of file vulkan.hpp.

◆ sType

const VULKAN_HPP_NAMESPACE::StructureType VULKAN_HPP_NAMESPACE::PhysicalDeviceMaintenance3Properties::sType = StructureType::ePhysicalDeviceMaintenance3Properties

Definition at line 66363 of file vulkan.hpp.


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