SDL  2.0
VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreProperties Struct Reference

#include <vulkan.hpp>

Public Member Functions

VULKAN_HPP_CONSTEXPR PhysicalDeviceTimelineSemaphoreProperties (uint64_t maxTimelineSemaphoreValueDifference_={}) VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_CONSTEXPR PhysicalDeviceTimelineSemaphoreProperties (PhysicalDeviceTimelineSemaphoreProperties const &rhs) VULKAN_HPP_NOEXCEPT=default
 
 PhysicalDeviceTimelineSemaphoreProperties (VkPhysicalDeviceTimelineSemaphoreProperties const &rhs) VULKAN_HPP_NOEXCEPT
 
PhysicalDeviceTimelineSemaphorePropertiesoperator= (VkPhysicalDeviceTimelineSemaphoreProperties const &rhs) VULKAN_HPP_NOEXCEPT
 
PhysicalDeviceTimelineSemaphorePropertiesoperator= (PhysicalDeviceTimelineSemaphoreProperties const &rhs) VULKAN_HPP_NOEXCEPT
 
 operator VkPhysicalDeviceTimelineSemaphoreProperties const & () const VULKAN_HPP_NOEXCEPT
 
 operator VkPhysicalDeviceTimelineSemaphoreProperties & () VULKAN_HPP_NOEXCEPT
 
bool operator== (PhysicalDeviceTimelineSemaphoreProperties const &rhs) const VULKAN_HPP_NOEXCEPT
 
bool operator!= (PhysicalDeviceTimelineSemaphoreProperties const &rhs) const VULKAN_HPP_NOEXCEPT
 

Data Fields

const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceTimelineSemaphoreProperties
 
voidpNext = {}
 
uint64_t maxTimelineSemaphoreValueDifference = {}
 

Static Public Attributes

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

Detailed Description

Definition at line 71334 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ PhysicalDeviceTimelineSemaphoreProperties() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreProperties::PhysicalDeviceTimelineSemaphoreProperties ( uint64_t  maxTimelineSemaphoreValueDifference_ = {})
inline

Definition at line 71340 of file vulkan.hpp.

71341  : maxTimelineSemaphoreValueDifference( maxTimelineSemaphoreValueDifference_ )
71342  {}
#define VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:179

◆ PhysicalDeviceTimelineSemaphoreProperties() [2/3]

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

◆ PhysicalDeviceTimelineSemaphoreProperties() [3/3]

VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreProperties::PhysicalDeviceTimelineSemaphoreProperties ( VkPhysicalDeviceTimelineSemaphoreProperties const &  rhs)
inline

Definition at line 71346 of file vulkan.hpp.

71347  {
71348  *this = rhs;
71349  }

Member Function Documentation

◆ operator VkPhysicalDeviceTimelineSemaphoreProperties &()

VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreProperties::operator VkPhysicalDeviceTimelineSemaphoreProperties & ( )
inline

Definition at line 71370 of file vulkan.hpp.

71371  {
71372  return *reinterpret_cast<VkPhysicalDeviceTimelineSemaphoreProperties*>( this );
71373  }

◆ operator VkPhysicalDeviceTimelineSemaphoreProperties const &()

VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreProperties::operator VkPhysicalDeviceTimelineSemaphoreProperties const & ( ) const
inline

Definition at line 71365 of file vulkan.hpp.

71366  {
71367  return *reinterpret_cast<const VkPhysicalDeviceTimelineSemaphoreProperties*>( this );
71368  }

◆ operator!=()

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

Definition at line 71386 of file vulkan.hpp.

71387  {
71388  return !operator==( rhs );
71389  }
bool operator==(PhysicalDeviceTimelineSemaphoreProperties const &rhs) const VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:71379

References VULKAN_HPP_NAMESPACE::operator==().

◆ operator=() [1/2]

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

Definition at line 71358 of file vulkan.hpp.

71359  {
71360  memcpy( static_cast<void *>( this ), &rhs, sizeof( PhysicalDeviceTimelineSemaphoreProperties ) );
71361  return *this;
71362  }
#define memcpy
Definition: SDL_malloc.c:630
VULKAN_HPP_CONSTEXPR PhysicalDeviceTimelineSemaphoreProperties(uint64_t maxTimelineSemaphoreValueDifference_={}) VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:71340

References memcpy.

◆ operator=() [2/2]

PhysicalDeviceTimelineSemaphoreProperties& VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreProperties::operator= ( VkPhysicalDeviceTimelineSemaphoreProperties const &  rhs)
inline

Definition at line 71352 of file vulkan.hpp.

71353  {
71354  *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreProperties const *>( &rhs );
71355  return *this;
71356  }

◆ operator==()

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

Definition at line 71379 of file vulkan.hpp.

71380  {
71381  return ( sType == rhs.sType )
71382  && ( pNext == rhs.pNext )
71383  && ( maxTimelineSemaphoreValueDifference == rhs.maxTimelineSemaphoreValueDifference );
71384  }
const VULKAN_HPP_NAMESPACE::StructureType sType
Definition: vulkan.hpp:71395

Field Documentation

◆ allowDuplicate

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

Definition at line 71336 of file vulkan.hpp.

◆ maxTimelineSemaphoreValueDifference

uint64_t VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreProperties::maxTimelineSemaphoreValueDifference = {}

Definition at line 71397 of file vulkan.hpp.

◆ pNext

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

Definition at line 71396 of file vulkan.hpp.

◆ structureType

VULKAN_HPP_CONST_OR_CONSTEXPR StructureType VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreProperties::structureType = StructureType::ePhysicalDeviceTimelineSemaphoreProperties
static

Definition at line 71337 of file vulkan.hpp.

◆ sType

const VULKAN_HPP_NAMESPACE::StructureType VULKAN_HPP_NAMESPACE::PhysicalDeviceTimelineSemaphoreProperties::sType = StructureType::ePhysicalDeviceTimelineSemaphoreProperties

Definition at line 71395 of file vulkan.hpp.


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