SDL  2.0
VULKAN_HPP_NAMESPACE::DescriptorPool Class Reference

#include <vulkan.hpp>

Public Member Functions

VULKAN_HPP_CONSTEXPR DescriptorPool ()
 
VULKAN_HPP_CONSTEXPR DescriptorPool (std::nullptr_t)
 
VULKAN_HPP_TYPESAFE_EXPLICIT DescriptorPool (VkDescriptorPool descriptorPool)
 
DescriptorPooloperator= (std::nullptr_t)
 
bool operator== (DescriptorPool const &rhs) const
 
bool operator!= (DescriptorPool const &rhs) const
 
bool operator< (DescriptorPool const &rhs) const
 
VULKAN_HPP_TYPESAFE_EXPLICIT operator VkDescriptorPool () const
 
 operator bool () const
 
bool operator! () const
 

Private Attributes

VkDescriptorPool m_descriptorPool
 

Detailed Description

Definition at line 3748 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ DescriptorPool() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::DescriptorPool::DescriptorPool ( )
inline

Definition at line 3751 of file vulkan.hpp.

3753  {}
#define VK_NULL_HANDLE
Definition: vulkan_core.h:49

◆ DescriptorPool() [2/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::DescriptorPool::DescriptorPool ( std::nullptr_t  )
inline

Definition at line 3755 of file vulkan.hpp.

3757  {}
#define VK_NULL_HANDLE
Definition: vulkan_core.h:49

◆ DescriptorPool() [3/3]

VULKAN_HPP_TYPESAFE_EXPLICIT VULKAN_HPP_NAMESPACE::DescriptorPool::DescriptorPool ( VkDescriptorPool  descriptorPool)
inline

Definition at line 3759 of file vulkan.hpp.

3760  : m_descriptorPool( descriptorPool )
3761  {}

Member Function Documentation

◆ operator bool()

VULKAN_HPP_NAMESPACE::DescriptorPool::operator bool ( ) const
inlineexplicit

Definition at line 3799 of file vulkan.hpp.

References VK_NULL_HANDLE.

3800  {
3801  return m_descriptorPool != VK_NULL_HANDLE;
3802  }
#define VK_NULL_HANDLE
Definition: vulkan_core.h:49

◆ operator VkDescriptorPool()

VULKAN_HPP_TYPESAFE_EXPLICIT VULKAN_HPP_NAMESPACE::DescriptorPool::operator VkDescriptorPool ( ) const
inline

Definition at line 3794 of file vulkan.hpp.

3795  {
3796  return m_descriptorPool;
3797  }

◆ operator!()

bool VULKAN_HPP_NAMESPACE::DescriptorPool::operator! ( ) const
inline

Definition at line 3804 of file vulkan.hpp.

References VK_NULL_HANDLE.

3805  {
3806  return m_descriptorPool == VK_NULL_HANDLE;
3807  }
#define VK_NULL_HANDLE
Definition: vulkan_core.h:49

◆ operator!=()

Definition at line 3782 of file vulkan.hpp.

References m_descriptorPool.

3783  {
3784  return m_descriptorPool != rhs.m_descriptorPool;
3785  }

◆ operator<()

bool VULKAN_HPP_NAMESPACE::DescriptorPool::operator< ( DescriptorPool const &  rhs) const
inline

Definition at line 3787 of file vulkan.hpp.

References m_descriptorPool.

3788  {
3789  return m_descriptorPool < rhs.m_descriptorPool;
3790  }

◆ operator=()

DescriptorPool& VULKAN_HPP_NAMESPACE::DescriptorPool::operator= ( std::nullptr_t  )
inline

Definition at line 3771 of file vulkan.hpp.

References VK_NULL_HANDLE.

3772  {
3774  return *this;
3775  }
#define VK_NULL_HANDLE
Definition: vulkan_core.h:49

◆ operator==()

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

Definition at line 3777 of file vulkan.hpp.

References m_descriptorPool.

3778  {
3779  return m_descriptorPool == rhs.m_descriptorPool;
3780  }

Field Documentation

◆ m_descriptorPool

VkDescriptorPool VULKAN_HPP_NAMESPACE::DescriptorPool::m_descriptorPool
private

Definition at line 3810 of file vulkan.hpp.

Referenced by operator!=(), operator<(), and operator==().


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