SDL  2.0
VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreFeatures Struct Reference

#include <vulkan.hpp>

Public Member Functions

VULKAN_HPP_CONSTEXPR PhysicalDeviceTimelineSemaphoreFeatures (VULKAN_HPP_NAMESPACE::Bool32 timelineSemaphore_={}) VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_CONSTEXPR PhysicalDeviceTimelineSemaphoreFeatures (PhysicalDeviceTimelineSemaphoreFeatures const &rhs) VULKAN_HPP_NOEXCEPT=default
 
 PhysicalDeviceTimelineSemaphoreFeatures (VkPhysicalDeviceTimelineSemaphoreFeatures const &rhs) VULKAN_HPP_NOEXCEPT
 
PhysicalDeviceTimelineSemaphoreFeaturesoperator= (VkPhysicalDeviceTimelineSemaphoreFeatures const &rhs) VULKAN_HPP_NOEXCEPT
 
PhysicalDeviceTimelineSemaphoreFeaturesoperator= (PhysicalDeviceTimelineSemaphoreFeatures const &rhs) VULKAN_HPP_NOEXCEPT
 
PhysicalDeviceTimelineSemaphoreFeaturessetPNext (void *pNext_) VULKAN_HPP_NOEXCEPT
 
PhysicalDeviceTimelineSemaphoreFeaturessetTimelineSemaphore (VULKAN_HPP_NAMESPACE::Bool32 timelineSemaphore_) VULKAN_HPP_NOEXCEPT
 
 operator VkPhysicalDeviceTimelineSemaphoreFeatures const & () const VULKAN_HPP_NOEXCEPT
 
 operator VkPhysicalDeviceTimelineSemaphoreFeatures & () VULKAN_HPP_NOEXCEPT
 
bool operator== (PhysicalDeviceTimelineSemaphoreFeatures const &rhs) const VULKAN_HPP_NOEXCEPT
 
bool operator!= (PhysicalDeviceTimelineSemaphoreFeatures const &rhs) const VULKAN_HPP_NOEXCEPT
 

Data Fields

const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceTimelineSemaphoreFeatures
 
voidpNext = {}
 
VULKAN_HPP_NAMESPACE::Bool32 timelineSemaphore = {}
 

Static Public Attributes

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

Detailed Description

Definition at line 71246 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ PhysicalDeviceTimelineSemaphoreFeatures() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreFeatures::PhysicalDeviceTimelineSemaphoreFeatures ( VULKAN_HPP_NAMESPACE::Bool32  timelineSemaphore_ = {})
inline

Definition at line 71252 of file vulkan.hpp.

71253  : timelineSemaphore( timelineSemaphore_ )
71254  {}
#define VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:179

◆ PhysicalDeviceTimelineSemaphoreFeatures() [2/3]

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

◆ PhysicalDeviceTimelineSemaphoreFeatures() [3/3]

VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreFeatures::PhysicalDeviceTimelineSemaphoreFeatures ( VkPhysicalDeviceTimelineSemaphoreFeatures const &  rhs)
inline

Definition at line 71258 of file vulkan.hpp.

71259  {
71260  *this = rhs;
71261  }

Member Function Documentation

◆ operator VkPhysicalDeviceTimelineSemaphoreFeatures &()

VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreFeatures::operator VkPhysicalDeviceTimelineSemaphoreFeatures & ( )
inline

Definition at line 71294 of file vulkan.hpp.

71295  {
71296  return *reinterpret_cast<VkPhysicalDeviceTimelineSemaphoreFeatures*>( this );
71297  }

◆ operator VkPhysicalDeviceTimelineSemaphoreFeatures const &()

VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreFeatures::operator VkPhysicalDeviceTimelineSemaphoreFeatures const & ( ) const
inline

Definition at line 71289 of file vulkan.hpp.

71290  {
71291  return *reinterpret_cast<const VkPhysicalDeviceTimelineSemaphoreFeatures*>( this );
71292  }

◆ operator!=()

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

Definition at line 71310 of file vulkan.hpp.

71311  {
71312  return !operator==( rhs );
71313  }
bool operator==(PhysicalDeviceTimelineSemaphoreFeatures const &rhs) const VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:71303

References VULKAN_HPP_NAMESPACE::operator==().

◆ operator=() [1/2]

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

Definition at line 71270 of file vulkan.hpp.

71271  {
71272  memcpy( static_cast<void *>( this ), &rhs, sizeof( PhysicalDeviceTimelineSemaphoreFeatures ) );
71273  return *this;
71274  }
#define memcpy
Definition: SDL_malloc.c:630
VULKAN_HPP_CONSTEXPR PhysicalDeviceTimelineSemaphoreFeatures(VULKAN_HPP_NAMESPACE::Bool32 timelineSemaphore_={}) VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:71252

References memcpy.

◆ operator=() [2/2]

PhysicalDeviceTimelineSemaphoreFeatures& VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreFeatures::operator= ( VkPhysicalDeviceTimelineSemaphoreFeatures const &  rhs)
inline

Definition at line 71264 of file vulkan.hpp.

71265  {
71266  *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreFeatures const *>( &rhs );
71267  return *this;
71268  }

◆ operator==()

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

Definition at line 71303 of file vulkan.hpp.

71304  {
71305  return ( sType == rhs.sType )
71306  && ( pNext == rhs.pNext )
71307  && ( timelineSemaphore == rhs.timelineSemaphore );
71308  }
const VULKAN_HPP_NAMESPACE::StructureType sType
Definition: vulkan.hpp:71319

◆ setPNext()

PhysicalDeviceTimelineSemaphoreFeatures& VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreFeatures::setPNext ( void pNext_)
inline

Definition at line 71276 of file vulkan.hpp.

71277  {
71278  pNext = pNext_;
71279  return *this;
71280  }

◆ setTimelineSemaphore()

PhysicalDeviceTimelineSemaphoreFeatures& VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreFeatures::setTimelineSemaphore ( VULKAN_HPP_NAMESPACE::Bool32  timelineSemaphore_)
inline

Definition at line 71282 of file vulkan.hpp.

71283  {
71284  timelineSemaphore = timelineSemaphore_;
71285  return *this;
71286  }

Field Documentation

◆ allowDuplicate

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

Definition at line 71248 of file vulkan.hpp.

◆ pNext

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

Definition at line 71320 of file vulkan.hpp.

◆ structureType

VULKAN_HPP_CONST_OR_CONSTEXPR StructureType VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreFeatures::structureType = StructureType::ePhysicalDeviceTimelineSemaphoreFeatures
static

Definition at line 71249 of file vulkan.hpp.

◆ sType

const VULKAN_HPP_NAMESPACE::StructureType VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreFeatures::sType = StructureType::ePhysicalDeviceTimelineSemaphoreFeatures

Definition at line 71319 of file vulkan.hpp.

◆ timelineSemaphore

VULKAN_HPP_NAMESPACE::Bool32 VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreFeatures::timelineSemaphore = {}

Definition at line 71321 of file vulkan.hpp.


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