SDL  2.0
VULKAN_HPP_NAMESPACE::PhysicalDeviceTexelBufferAlignmentPropertiesEXT Struct Reference

#include <vulkan.hpp>

Public Member Functions

VULKAN_HPP_CONSTEXPR PhysicalDeviceTexelBufferAlignmentPropertiesEXT (VULKAN_HPP_NAMESPACE::DeviceSize storageTexelBufferOffsetAlignmentBytes_={}, VULKAN_HPP_NAMESPACE::Bool32 storageTexelBufferOffsetSingleTexelAlignment_={}, VULKAN_HPP_NAMESPACE::DeviceSize uniformTexelBufferOffsetAlignmentBytes_={}, VULKAN_HPP_NAMESPACE::Bool32 uniformTexelBufferOffsetSingleTexelAlignment_={}) VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_CONSTEXPR PhysicalDeviceTexelBufferAlignmentPropertiesEXT (PhysicalDeviceTexelBufferAlignmentPropertiesEXT const &rhs) VULKAN_HPP_NOEXCEPT=default
 
 PhysicalDeviceTexelBufferAlignmentPropertiesEXT (VkPhysicalDeviceTexelBufferAlignmentPropertiesEXT const &rhs) VULKAN_HPP_NOEXCEPT
 
PhysicalDeviceTexelBufferAlignmentPropertiesEXToperator= (VkPhysicalDeviceTexelBufferAlignmentPropertiesEXT const &rhs) VULKAN_HPP_NOEXCEPT
 
PhysicalDeviceTexelBufferAlignmentPropertiesEXToperator= (PhysicalDeviceTexelBufferAlignmentPropertiesEXT const &rhs) VULKAN_HPP_NOEXCEPT
 
 operator VkPhysicalDeviceTexelBufferAlignmentPropertiesEXT const & () const VULKAN_HPP_NOEXCEPT
 
 operator VkPhysicalDeviceTexelBufferAlignmentPropertiesEXT & () VULKAN_HPP_NOEXCEPT
 
bool operator== (PhysicalDeviceTexelBufferAlignmentPropertiesEXT const &rhs) const VULKAN_HPP_NOEXCEPT
 
bool operator!= (PhysicalDeviceTexelBufferAlignmentPropertiesEXT const &rhs) const VULKAN_HPP_NOEXCEPT
 

Data Fields

const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceTexelBufferAlignmentPropertiesEXT
 
voidpNext = {}
 
VULKAN_HPP_NAMESPACE::DeviceSize storageTexelBufferOffsetAlignmentBytes = {}
 
VULKAN_HPP_NAMESPACE::Bool32 storageTexelBufferOffsetSingleTexelAlignment = {}
 
VULKAN_HPP_NAMESPACE::DeviceSize uniformTexelBufferOffsetAlignmentBytes = {}
 
VULKAN_HPP_NAMESPACE::Bool32 uniformTexelBufferOffsetSingleTexelAlignment = {}
 

Static Public Attributes

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

Detailed Description

Definition at line 71078 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ PhysicalDeviceTexelBufferAlignmentPropertiesEXT() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::PhysicalDeviceTexelBufferAlignmentPropertiesEXT::PhysicalDeviceTexelBufferAlignmentPropertiesEXT ( VULKAN_HPP_NAMESPACE::DeviceSize  storageTexelBufferOffsetAlignmentBytes_ = {},
VULKAN_HPP_NAMESPACE::Bool32  storageTexelBufferOffsetSingleTexelAlignment_ = {},
VULKAN_HPP_NAMESPACE::DeviceSize  uniformTexelBufferOffsetAlignmentBytes_ = {},
VULKAN_HPP_NAMESPACE::Bool32  uniformTexelBufferOffsetSingleTexelAlignment_ = {} 
)
inline

Definition at line 71084 of file vulkan.hpp.

71084  {}, VULKAN_HPP_NAMESPACE::Bool32 storageTexelBufferOffsetSingleTexelAlignment_ = {}, VULKAN_HPP_NAMESPACE::DeviceSize uniformTexelBufferOffsetAlignmentBytes_ = {}, VULKAN_HPP_NAMESPACE::Bool32 uniformTexelBufferOffsetSingleTexelAlignment_ = {}) VULKAN_HPP_NOEXCEPT
71085  : storageTexelBufferOffsetAlignmentBytes( storageTexelBufferOffsetAlignmentBytes_ ), storageTexelBufferOffsetSingleTexelAlignment( storageTexelBufferOffsetSingleTexelAlignment_ ), uniformTexelBufferOffsetAlignmentBytes( uniformTexelBufferOffsetAlignmentBytes_ ), uniformTexelBufferOffsetSingleTexelAlignment( uniformTexelBufferOffsetSingleTexelAlignment_ )
71086  {}
#define VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:179

◆ PhysicalDeviceTexelBufferAlignmentPropertiesEXT() [2/3]

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

◆ PhysicalDeviceTexelBufferAlignmentPropertiesEXT() [3/3]

VULKAN_HPP_NAMESPACE::PhysicalDeviceTexelBufferAlignmentPropertiesEXT::PhysicalDeviceTexelBufferAlignmentPropertiesEXT ( VkPhysicalDeviceTexelBufferAlignmentPropertiesEXT const &  rhs)
inline

Definition at line 71090 of file vulkan.hpp.

71091  {
71092  *this = rhs;
71093  }

Member Function Documentation

◆ operator VkPhysicalDeviceTexelBufferAlignmentPropertiesEXT &()

VULKAN_HPP_NAMESPACE::PhysicalDeviceTexelBufferAlignmentPropertiesEXT::operator VkPhysicalDeviceTexelBufferAlignmentPropertiesEXT & ( )
inline

Definition at line 71114 of file vulkan.hpp.

71115  {
71116  return *reinterpret_cast<VkPhysicalDeviceTexelBufferAlignmentPropertiesEXT*>( this );
71117  }

◆ operator VkPhysicalDeviceTexelBufferAlignmentPropertiesEXT const &()

VULKAN_HPP_NAMESPACE::PhysicalDeviceTexelBufferAlignmentPropertiesEXT::operator VkPhysicalDeviceTexelBufferAlignmentPropertiesEXT const & ( ) const
inline

Definition at line 71109 of file vulkan.hpp.

71110  {
71111  return *reinterpret_cast<const VkPhysicalDeviceTexelBufferAlignmentPropertiesEXT*>( this );
71112  }

◆ operator!=()

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

Definition at line 71133 of file vulkan.hpp.

71134  {
71135  return !operator==( rhs );
71136  }
bool operator==(PhysicalDeviceTexelBufferAlignmentPropertiesEXT const &rhs) const VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:71123

References VULKAN_HPP_NAMESPACE::operator==().

◆ operator=() [1/2]

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

Definition at line 71102 of file vulkan.hpp.

71103  {
71104  memcpy( static_cast<void *>( this ), &rhs, sizeof( PhysicalDeviceTexelBufferAlignmentPropertiesEXT ) );
71105  return *this;
71106  }
#define memcpy
Definition: SDL_malloc.c:630
VULKAN_HPP_CONSTEXPR PhysicalDeviceTexelBufferAlignmentPropertiesEXT(VULKAN_HPP_NAMESPACE::DeviceSize storageTexelBufferOffsetAlignmentBytes_={}, VULKAN_HPP_NAMESPACE::Bool32 storageTexelBufferOffsetSingleTexelAlignment_={}, VULKAN_HPP_NAMESPACE::DeviceSize uniformTexelBufferOffsetAlignmentBytes_={}, VULKAN_HPP_NAMESPACE::Bool32 uniformTexelBufferOffsetSingleTexelAlignment_={}) VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:71084

References memcpy.

◆ operator=() [2/2]

PhysicalDeviceTexelBufferAlignmentPropertiesEXT& VULKAN_HPP_NAMESPACE::PhysicalDeviceTexelBufferAlignmentPropertiesEXT::operator= ( VkPhysicalDeviceTexelBufferAlignmentPropertiesEXT const &  rhs)
inline

Definition at line 71096 of file vulkan.hpp.

71097  {
71098  *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::PhysicalDeviceTexelBufferAlignmentPropertiesEXT const *>( &rhs );
71099  return *this;
71100  }

◆ operator==()

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

Definition at line 71123 of file vulkan.hpp.

71124  {
71125  return ( sType == rhs.sType )
71126  && ( pNext == rhs.pNext )
71127  && ( storageTexelBufferOffsetAlignmentBytes == rhs.storageTexelBufferOffsetAlignmentBytes )
71128  && ( storageTexelBufferOffsetSingleTexelAlignment == rhs.storageTexelBufferOffsetSingleTexelAlignment )
71129  && ( uniformTexelBufferOffsetAlignmentBytes == rhs.uniformTexelBufferOffsetAlignmentBytes )
71130  && ( uniformTexelBufferOffsetSingleTexelAlignment == rhs.uniformTexelBufferOffsetSingleTexelAlignment );
71131  }

Field Documentation

◆ allowDuplicate

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

Definition at line 71080 of file vulkan.hpp.

◆ pNext

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

Definition at line 71143 of file vulkan.hpp.

◆ storageTexelBufferOffsetAlignmentBytes

VULKAN_HPP_NAMESPACE::DeviceSize VULKAN_HPP_NAMESPACE::PhysicalDeviceTexelBufferAlignmentPropertiesEXT::storageTexelBufferOffsetAlignmentBytes = {}

Definition at line 71144 of file vulkan.hpp.

◆ storageTexelBufferOffsetSingleTexelAlignment

VULKAN_HPP_NAMESPACE::Bool32 VULKAN_HPP_NAMESPACE::PhysicalDeviceTexelBufferAlignmentPropertiesEXT::storageTexelBufferOffsetSingleTexelAlignment = {}

Definition at line 71145 of file vulkan.hpp.

◆ structureType

VULKAN_HPP_CONST_OR_CONSTEXPR StructureType VULKAN_HPP_NAMESPACE::PhysicalDeviceTexelBufferAlignmentPropertiesEXT::structureType = StructureType::ePhysicalDeviceTexelBufferAlignmentPropertiesEXT
static

Definition at line 71081 of file vulkan.hpp.

◆ sType

const VULKAN_HPP_NAMESPACE::StructureType VULKAN_HPP_NAMESPACE::PhysicalDeviceTexelBufferAlignmentPropertiesEXT::sType = StructureType::ePhysicalDeviceTexelBufferAlignmentPropertiesEXT

Definition at line 71142 of file vulkan.hpp.

◆ uniformTexelBufferOffsetAlignmentBytes

VULKAN_HPP_NAMESPACE::DeviceSize VULKAN_HPP_NAMESPACE::PhysicalDeviceTexelBufferAlignmentPropertiesEXT::uniformTexelBufferOffsetAlignmentBytes = {}

Definition at line 71146 of file vulkan.hpp.

◆ uniformTexelBufferOffsetSingleTexelAlignment

VULKAN_HPP_NAMESPACE::Bool32 VULKAN_HPP_NAMESPACE::PhysicalDeviceTexelBufferAlignmentPropertiesEXT::uniformTexelBufferOffsetSingleTexelAlignment = {}

Definition at line 71147 of file vulkan.hpp.


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