SDL  2.0
VULKAN_HPP_NAMESPACE::DedicatedAllocationImageCreateInfoNV Struct Reference

#include <vulkan.hpp>

Public Member Functions

VULKAN_HPP_CONSTEXPR DedicatedAllocationImageCreateInfoNV (VULKAN_HPP_NAMESPACE::Bool32 dedicatedAllocation_={}) VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_CONSTEXPR DedicatedAllocationImageCreateInfoNV (DedicatedAllocationImageCreateInfoNV const &rhs) VULKAN_HPP_NOEXCEPT=default
 
 DedicatedAllocationImageCreateInfoNV (VkDedicatedAllocationImageCreateInfoNV const &rhs) VULKAN_HPP_NOEXCEPT
 
DedicatedAllocationImageCreateInfoNVoperator= (VkDedicatedAllocationImageCreateInfoNV const &rhs) VULKAN_HPP_NOEXCEPT
 
DedicatedAllocationImageCreateInfoNVoperator= (DedicatedAllocationImageCreateInfoNV const &rhs) VULKAN_HPP_NOEXCEPT
 
DedicatedAllocationImageCreateInfoNVsetPNext (const void *pNext_) VULKAN_HPP_NOEXCEPT
 
DedicatedAllocationImageCreateInfoNVsetDedicatedAllocation (VULKAN_HPP_NAMESPACE::Bool32 dedicatedAllocation_) VULKAN_HPP_NOEXCEPT
 
 operator VkDedicatedAllocationImageCreateInfoNV const & () const VULKAN_HPP_NOEXCEPT
 
 operator VkDedicatedAllocationImageCreateInfoNV & () VULKAN_HPP_NOEXCEPT
 
bool operator== (DedicatedAllocationImageCreateInfoNV const &rhs) const VULKAN_HPP_NOEXCEPT
 
bool operator!= (DedicatedAllocationImageCreateInfoNV const &rhs) const VULKAN_HPP_NOEXCEPT
 

Data Fields

const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDedicatedAllocationImageCreateInfoNV
 
const voidpNext = {}
 
VULKAN_HPP_NAMESPACE::Bool32 dedicatedAllocation = {}
 

Static Public Attributes

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

Detailed Description

Definition at line 28310 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ DedicatedAllocationImageCreateInfoNV() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::DedicatedAllocationImageCreateInfoNV::DedicatedAllocationImageCreateInfoNV ( VULKAN_HPP_NAMESPACE::Bool32  dedicatedAllocation_ = {})
inline

Definition at line 28316 of file vulkan.hpp.

28317  : dedicatedAllocation( dedicatedAllocation_ )
28318  {}
#define VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:179

◆ DedicatedAllocationImageCreateInfoNV() [2/3]

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

◆ DedicatedAllocationImageCreateInfoNV() [3/3]

VULKAN_HPP_NAMESPACE::DedicatedAllocationImageCreateInfoNV::DedicatedAllocationImageCreateInfoNV ( VkDedicatedAllocationImageCreateInfoNV const &  rhs)
inline

Definition at line 28322 of file vulkan.hpp.

28323  {
28324  *this = rhs;
28325  }

Member Function Documentation

◆ operator VkDedicatedAllocationImageCreateInfoNV &()

VULKAN_HPP_NAMESPACE::DedicatedAllocationImageCreateInfoNV::operator VkDedicatedAllocationImageCreateInfoNV & ( )
inline

Definition at line 28358 of file vulkan.hpp.

28359  {
28360  return *reinterpret_cast<VkDedicatedAllocationImageCreateInfoNV*>( this );
28361  }

◆ operator VkDedicatedAllocationImageCreateInfoNV const &()

VULKAN_HPP_NAMESPACE::DedicatedAllocationImageCreateInfoNV::operator VkDedicatedAllocationImageCreateInfoNV const & ( ) const
inline

Definition at line 28353 of file vulkan.hpp.

28354  {
28355  return *reinterpret_cast<const VkDedicatedAllocationImageCreateInfoNV*>( this );
28356  }

◆ operator!=()

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

Definition at line 28374 of file vulkan.hpp.

28375  {
28376  return !operator==( rhs );
28377  }
bool operator==(DedicatedAllocationImageCreateInfoNV const &rhs) const VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:28367

References VULKAN_HPP_NAMESPACE::operator==().

◆ operator=() [1/2]

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

Definition at line 28334 of file vulkan.hpp.

28335  {
28336  memcpy( static_cast<void *>( this ), &rhs, sizeof( DedicatedAllocationImageCreateInfoNV ) );
28337  return *this;
28338  }
#define memcpy
Definition: SDL_malloc.c:630
VULKAN_HPP_CONSTEXPR DedicatedAllocationImageCreateInfoNV(VULKAN_HPP_NAMESPACE::Bool32 dedicatedAllocation_={}) VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:28316

References memcpy.

◆ operator=() [2/2]

DedicatedAllocationImageCreateInfoNV& VULKAN_HPP_NAMESPACE::DedicatedAllocationImageCreateInfoNV::operator= ( VkDedicatedAllocationImageCreateInfoNV const &  rhs)
inline

Definition at line 28328 of file vulkan.hpp.

28329  {
28330  *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DedicatedAllocationImageCreateInfoNV const *>( &rhs );
28331  return *this;
28332  }

◆ operator==()

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

Definition at line 28367 of file vulkan.hpp.

28368  {
28369  return ( sType == rhs.sType )
28370  && ( pNext == rhs.pNext )
28371  && ( dedicatedAllocation == rhs.dedicatedAllocation );
28372  }
const VULKAN_HPP_NAMESPACE::StructureType sType
Definition: vulkan.hpp:28383

◆ setDedicatedAllocation()

DedicatedAllocationImageCreateInfoNV& VULKAN_HPP_NAMESPACE::DedicatedAllocationImageCreateInfoNV::setDedicatedAllocation ( VULKAN_HPP_NAMESPACE::Bool32  dedicatedAllocation_)
inline

Definition at line 28346 of file vulkan.hpp.

28347  {
28348  dedicatedAllocation = dedicatedAllocation_;
28349  return *this;
28350  }

◆ setPNext()

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

Definition at line 28340 of file vulkan.hpp.

28341  {
28342  pNext = pNext_;
28343  return *this;
28344  }

Field Documentation

◆ allowDuplicate

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

Definition at line 28312 of file vulkan.hpp.

◆ dedicatedAllocation

VULKAN_HPP_NAMESPACE::Bool32 VULKAN_HPP_NAMESPACE::DedicatedAllocationImageCreateInfoNV::dedicatedAllocation = {}

Definition at line 28385 of file vulkan.hpp.

◆ pNext

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

Definition at line 28384 of file vulkan.hpp.

◆ structureType

VULKAN_HPP_CONST_OR_CONSTEXPR StructureType VULKAN_HPP_NAMESPACE::DedicatedAllocationImageCreateInfoNV::structureType = StructureType::eDedicatedAllocationImageCreateInfoNV
static

Definition at line 28313 of file vulkan.hpp.

◆ sType

const VULKAN_HPP_NAMESPACE::StructureType VULKAN_HPP_NAMESPACE::DedicatedAllocationImageCreateInfoNV::sType = StructureType::eDedicatedAllocationImageCreateInfoNV

Definition at line 28383 of file vulkan.hpp.


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