SDL  2.0
VULKAN_HPP_NAMESPACE::CommandPool Class Reference

#include <vulkan.hpp>

Public Member Functions

VULKAN_HPP_CONSTEXPR CommandPool ()
 
VULKAN_HPP_CONSTEXPR CommandPool (std::nullptr_t)
 
VULKAN_HPP_TYPESAFE_EXPLICIT CommandPool (VkCommandPool commandPool)
 
CommandPooloperator= (std::nullptr_t)
 
bool operator== (CommandPool const &rhs) const
 
bool operator!= (CommandPool const &rhs) const
 
bool operator< (CommandPool const &rhs) const
 
VULKAN_HPP_TYPESAFE_EXPLICIT operator VkCommandPool () const
 
 operator bool () const
 
bool operator! () const
 

Private Attributes

VkCommandPool m_commandPool
 

Detailed Description

Definition at line 3011 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ CommandPool() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::CommandPool::CommandPool ( )
inline

Definition at line 3014 of file vulkan.hpp.

3016  {}

◆ CommandPool() [2/3]

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

Definition at line 3018 of file vulkan.hpp.

3020  {}

◆ CommandPool() [3/3]

VULKAN_HPP_TYPESAFE_EXPLICIT VULKAN_HPP_NAMESPACE::CommandPool::CommandPool ( VkCommandPool  commandPool)
inline

Definition at line 3022 of file vulkan.hpp.

3023  : m_commandPool( commandPool )
3024  {}

Member Function Documentation

◆ operator bool()

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

Definition at line 3062 of file vulkan.hpp.

3063  {
3064  return m_commandPool != VK_NULL_HANDLE;
3065  }

References m_commandPool, and VK_NULL_HANDLE.

◆ operator VkCommandPool()

VULKAN_HPP_TYPESAFE_EXPLICIT VULKAN_HPP_NAMESPACE::CommandPool::operator VkCommandPool ( ) const
inline

Definition at line 3057 of file vulkan.hpp.

3058  {
3059  return m_commandPool;
3060  }

References m_commandPool.

◆ operator!()

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

Definition at line 3067 of file vulkan.hpp.

3068  {
3069  return m_commandPool == VK_NULL_HANDLE;
3070  }

References m_commandPool, and VK_NULL_HANDLE.

◆ operator!=()

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

Definition at line 3045 of file vulkan.hpp.

3046  {
3047  return m_commandPool != rhs.m_commandPool;
3048  }

References m_commandPool.

◆ operator<()

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

Definition at line 3050 of file vulkan.hpp.

3051  {
3052  return m_commandPool < rhs.m_commandPool;
3053  }

References m_commandPool.

◆ operator=()

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

Definition at line 3034 of file vulkan.hpp.

3035  {
3037  return *this;
3038  }

References m_commandPool, and VK_NULL_HANDLE.

◆ operator==()

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

Definition at line 3040 of file vulkan.hpp.

3041  {
3042  return m_commandPool == rhs.m_commandPool;
3043  }

References m_commandPool.

Field Documentation

◆ m_commandPool

VkCommandPool VULKAN_HPP_NAMESPACE::CommandPool::m_commandPool
private

The documentation for this class was generated from the following file:
VK_NULL_HANDLE
#define VK_NULL_HANDLE
Definition: vulkan_core.h:49
VULKAN_HPP_NAMESPACE::CommandPool::m_commandPool
VkCommandPool m_commandPool
Definition: vulkan.hpp:3073