SDL  2.0
VULKAN_HPP_NAMESPACE::PhysicalDeviceScalarBlockLayoutFeatures Struct Reference

#include <vulkan.hpp>

Public Member Functions

VULKAN_HPP_CONSTEXPR PhysicalDeviceScalarBlockLayoutFeatures (VULKAN_HPP_NAMESPACE::Bool32 scalarBlockLayout_={}) VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_CONSTEXPR PhysicalDeviceScalarBlockLayoutFeatures (PhysicalDeviceScalarBlockLayoutFeatures const &rhs) VULKAN_HPP_NOEXCEPT=default
 
 PhysicalDeviceScalarBlockLayoutFeatures (VkPhysicalDeviceScalarBlockLayoutFeatures const &rhs) VULKAN_HPP_NOEXCEPT
 
PhysicalDeviceScalarBlockLayoutFeaturesoperator= (VkPhysicalDeviceScalarBlockLayoutFeatures const &rhs) VULKAN_HPP_NOEXCEPT
 
PhysicalDeviceScalarBlockLayoutFeaturesoperator= (PhysicalDeviceScalarBlockLayoutFeatures const &rhs) VULKAN_HPP_NOEXCEPT
 
PhysicalDeviceScalarBlockLayoutFeaturessetPNext (void *pNext_) VULKAN_HPP_NOEXCEPT
 
PhysicalDeviceScalarBlockLayoutFeaturessetScalarBlockLayout (VULKAN_HPP_NAMESPACE::Bool32 scalarBlockLayout_) VULKAN_HPP_NOEXCEPT
 
 operator VkPhysicalDeviceScalarBlockLayoutFeatures const & () const VULKAN_HPP_NOEXCEPT
 
 operator VkPhysicalDeviceScalarBlockLayoutFeatures & () VULKAN_HPP_NOEXCEPT
 
bool operator== (PhysicalDeviceScalarBlockLayoutFeatures const &rhs) const VULKAN_HPP_NOEXCEPT
 
bool operator!= (PhysicalDeviceScalarBlockLayoutFeatures const &rhs) const VULKAN_HPP_NOEXCEPT
 

Data Fields

const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePhysicalDeviceScalarBlockLayoutFeatures
 
voidpNext = {}
 
VULKAN_HPP_NAMESPACE::Bool32 scalarBlockLayout = {}
 

Static Public Attributes

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

Detailed Description

Definition at line 68960 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ PhysicalDeviceScalarBlockLayoutFeatures() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::PhysicalDeviceScalarBlockLayoutFeatures::PhysicalDeviceScalarBlockLayoutFeatures ( VULKAN_HPP_NAMESPACE::Bool32  scalarBlockLayout_ = {})
inline

Definition at line 68966 of file vulkan.hpp.

68967  : scalarBlockLayout( scalarBlockLayout_ )
68968  {}
#define VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:179

◆ PhysicalDeviceScalarBlockLayoutFeatures() [2/3]

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

◆ PhysicalDeviceScalarBlockLayoutFeatures() [3/3]

VULKAN_HPP_NAMESPACE::PhysicalDeviceScalarBlockLayoutFeatures::PhysicalDeviceScalarBlockLayoutFeatures ( VkPhysicalDeviceScalarBlockLayoutFeatures const &  rhs)
inline

Definition at line 68972 of file vulkan.hpp.

68973  {
68974  *this = rhs;
68975  }

Member Function Documentation

◆ operator VkPhysicalDeviceScalarBlockLayoutFeatures &()

VULKAN_HPP_NAMESPACE::PhysicalDeviceScalarBlockLayoutFeatures::operator VkPhysicalDeviceScalarBlockLayoutFeatures & ( )
inline

Definition at line 69008 of file vulkan.hpp.

69009  {
69010  return *reinterpret_cast<VkPhysicalDeviceScalarBlockLayoutFeatures*>( this );
69011  }

◆ operator VkPhysicalDeviceScalarBlockLayoutFeatures const &()

VULKAN_HPP_NAMESPACE::PhysicalDeviceScalarBlockLayoutFeatures::operator VkPhysicalDeviceScalarBlockLayoutFeatures const & ( ) const
inline

Definition at line 69003 of file vulkan.hpp.

69004  {
69005  return *reinterpret_cast<const VkPhysicalDeviceScalarBlockLayoutFeatures*>( this );
69006  }

◆ operator!=()

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

Definition at line 69024 of file vulkan.hpp.

69025  {
69026  return !operator==( rhs );
69027  }
bool operator==(PhysicalDeviceScalarBlockLayoutFeatures const &rhs) const VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:69017

References VULKAN_HPP_NAMESPACE::operator==().

◆ operator=() [1/2]

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

Definition at line 68984 of file vulkan.hpp.

68985  {
68986  memcpy( static_cast<void *>( this ), &rhs, sizeof( PhysicalDeviceScalarBlockLayoutFeatures ) );
68987  return *this;
68988  }
#define memcpy
Definition: SDL_malloc.c:630
VULKAN_HPP_CONSTEXPR PhysicalDeviceScalarBlockLayoutFeatures(VULKAN_HPP_NAMESPACE::Bool32 scalarBlockLayout_={}) VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:68966

References memcpy.

◆ operator=() [2/2]

PhysicalDeviceScalarBlockLayoutFeatures& VULKAN_HPP_NAMESPACE::PhysicalDeviceScalarBlockLayoutFeatures::operator= ( VkPhysicalDeviceScalarBlockLayoutFeatures const &  rhs)
inline

Definition at line 68978 of file vulkan.hpp.

68979  {
68980  *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::PhysicalDeviceScalarBlockLayoutFeatures const *>( &rhs );
68981  return *this;
68982  }

◆ operator==()

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

Definition at line 69017 of file vulkan.hpp.

69018  {
69019  return ( sType == rhs.sType )
69020  && ( pNext == rhs.pNext )
69021  && ( scalarBlockLayout == rhs.scalarBlockLayout );
69022  }
const VULKAN_HPP_NAMESPACE::StructureType sType
Definition: vulkan.hpp:69033

◆ setPNext()

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

Definition at line 68990 of file vulkan.hpp.

68991  {
68992  pNext = pNext_;
68993  return *this;
68994  }

◆ setScalarBlockLayout()

PhysicalDeviceScalarBlockLayoutFeatures& VULKAN_HPP_NAMESPACE::PhysicalDeviceScalarBlockLayoutFeatures::setScalarBlockLayout ( VULKAN_HPP_NAMESPACE::Bool32  scalarBlockLayout_)
inline

Definition at line 68996 of file vulkan.hpp.

68997  {
68998  scalarBlockLayout = scalarBlockLayout_;
68999  return *this;
69000  }

Field Documentation

◆ allowDuplicate

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

Definition at line 68962 of file vulkan.hpp.

◆ pNext

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

Definition at line 69034 of file vulkan.hpp.

◆ scalarBlockLayout

VULKAN_HPP_NAMESPACE::Bool32 VULKAN_HPP_NAMESPACE::PhysicalDeviceScalarBlockLayoutFeatures::scalarBlockLayout = {}

Definition at line 69035 of file vulkan.hpp.

◆ structureType

VULKAN_HPP_CONST_OR_CONSTEXPR StructureType VULKAN_HPP_NAMESPACE::PhysicalDeviceScalarBlockLayoutFeatures::structureType = StructureType::ePhysicalDeviceScalarBlockLayoutFeatures
static

Definition at line 68963 of file vulkan.hpp.

◆ sType

const VULKAN_HPP_NAMESPACE::StructureType VULKAN_HPP_NAMESPACE::PhysicalDeviceScalarBlockLayoutFeatures::sType = StructureType::ePhysicalDeviceScalarBlockLayoutFeatures

Definition at line 69033 of file vulkan.hpp.


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