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.

◆ 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.

3800 {
3802 }

References m_descriptorPool, and VK_NULL_HANDLE.

◆ 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 }

References m_descriptorPool.

◆ operator!()

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

Definition at line 3804 of file vulkan.hpp.

3805 {
3807 }

References m_descriptorPool, and VK_NULL_HANDLE.

◆ operator!=()

Definition at line 3782 of file vulkan.hpp.

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

References m_descriptorPool.

◆ operator<()

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

Definition at line 3787 of file vulkan.hpp.

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

References m_descriptorPool.

◆ operator=()

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

Definition at line 3771 of file vulkan.hpp.

3772 {
3774 return *this;
3775 }

References m_descriptorPool, and VK_NULL_HANDLE.

◆ operator==()

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

Definition at line 3777 of file vulkan.hpp.

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

References m_descriptorPool.

Field Documentation

◆ m_descriptorPool

VkDescriptorPool VULKAN_HPP_NAMESPACE::DescriptorPool::m_descriptorPool
private

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