SDL  2.0
VULKAN_HPP_NAMESPACE::CommandPool Class Reference

#include <vulkan.hpp>

Public Types

using CType = VkCommandPool
 

Public Member Functions

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

Static Public Attributes

static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = VULKAN_HPP_NAMESPACE::ObjectType::eCommandPool
 
static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eCommandPool
 

Private Attributes

VkCommandPool m_commandPool
 

Detailed Description

Definition at line 23848 of file vulkan.hpp.

Member Typedef Documentation

◆ CType

Definition at line 23851 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ CommandPool() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::CommandPool::CommandPool ( )
inline

Definition at line 23857 of file vulkan.hpp.

23859  {}
#define VK_NULL_HANDLE
Definition: vulkan_core.h:55

◆ CommandPool() [2/3]

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

Definition at line 23861 of file vulkan.hpp.

23863  {}

◆ CommandPool() [3/3]

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

Definition at line 23865 of file vulkan.hpp.

23866  : m_commandPool( commandPool )
23867  {}

Member Function Documentation

◆ operator bool()

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

Definition at line 23907 of file vulkan.hpp.

23908  {
23909  return m_commandPool != VK_NULL_HANDLE;
23910  }

References VK_NULL_HANDLE.

◆ operator VkCommandPool()

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

Definition at line 23902 of file vulkan.hpp.

23903  {
23904  return m_commandPool;
23905  }

◆ operator!()

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

Definition at line 23912 of file vulkan.hpp.

23913  {
23914  return m_commandPool == VK_NULL_HANDLE;
23915  }

References VK_NULL_HANDLE.

◆ operator!=()

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

Definition at line 23891 of file vulkan.hpp.

23892  {
23893  return m_commandPool != rhs.m_commandPool;
23894  }

◆ operator<()

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

Definition at line 23896 of file vulkan.hpp.

23897  {
23898  return m_commandPool < rhs.m_commandPool;
23899  }

◆ operator=()

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

Definition at line 23877 of file vulkan.hpp.

23878  {
23880  return *this;
23881  }

References VK_NULL_HANDLE.

◆ operator==()

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

Definition at line 23886 of file vulkan.hpp.

23887  {
23888  return m_commandPool == rhs.m_commandPool;
23889  }

Field Documentation

◆ debugReportObjectType

Definition at line 23854 of file vulkan.hpp.

◆ m_commandPool

VkCommandPool VULKAN_HPP_NAMESPACE::CommandPool::m_commandPool
private

Definition at line 23918 of file vulkan.hpp.

◆ objectType

Definition at line 23853 of file vulkan.hpp.


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