SDL  2.0
VULKAN_HPP_NAMESPACE::QueryPool Class Reference

#include <vulkan.hpp>

Public Types

using CType = VkQueryPool
 

Public Member Functions

VULKAN_HPP_CONSTEXPR QueryPool () VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_CONSTEXPR QueryPool (std::nullptr_t) VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_TYPESAFE_EXPLICIT QueryPool (VkQueryPool queryPool) VULKAN_HPP_NOEXCEPT
 
QueryPooloperator= (std::nullptr_t) VULKAN_HPP_NOEXCEPT
 
bool operator== (QueryPool const &rhs) const VULKAN_HPP_NOEXCEPT
 
bool operator!= (QueryPool const &rhs) const VULKAN_HPP_NOEXCEPT
 
bool operator< (QueryPool const &rhs) const VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_TYPESAFE_EXPLICIT operator VkQueryPool () 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::eQueryPool
 
static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eQueryPool
 

Private Attributes

VkQueryPool m_queryPool
 

Detailed Description

Definition at line 32083 of file vulkan.hpp.

Member Typedef Documentation

◆ CType

Definition at line 32086 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ QueryPool() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::QueryPool::QueryPool ( )
inline

Definition at line 32092 of file vulkan.hpp.

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

◆ QueryPool() [2/3]

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

Definition at line 32096 of file vulkan.hpp.

32098  {}

◆ QueryPool() [3/3]

VULKAN_HPP_TYPESAFE_EXPLICIT VULKAN_HPP_NAMESPACE::QueryPool::QueryPool ( VkQueryPool  queryPool)
inline

Definition at line 32100 of file vulkan.hpp.

32101  : m_queryPool( queryPool )
32102  {}

Member Function Documentation

◆ operator bool()

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

Definition at line 32142 of file vulkan.hpp.

32143  {
32144  return m_queryPool != VK_NULL_HANDLE;
32145  }

References VK_NULL_HANDLE.

◆ operator VkQueryPool()

VULKAN_HPP_TYPESAFE_EXPLICIT VULKAN_HPP_NAMESPACE::QueryPool::operator VkQueryPool ( ) const
inline

Definition at line 32137 of file vulkan.hpp.

32138  {
32139  return m_queryPool;
32140  }

◆ operator!()

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

Definition at line 32147 of file vulkan.hpp.

32148  {
32149  return m_queryPool == VK_NULL_HANDLE;
32150  }

References VK_NULL_HANDLE.

◆ operator!=()

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

Definition at line 32126 of file vulkan.hpp.

32127  {
32128  return m_queryPool != rhs.m_queryPool;
32129  }

◆ operator<()

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

Definition at line 32131 of file vulkan.hpp.

32132  {
32133  return m_queryPool < rhs.m_queryPool;
32134  }

◆ operator=()

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

Definition at line 32112 of file vulkan.hpp.

32113  {
32115  return *this;
32116  }

References VK_NULL_HANDLE.

◆ operator==()

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

Definition at line 32121 of file vulkan.hpp.

32122  {
32123  return m_queryPool == rhs.m_queryPool;
32124  }

Field Documentation

◆ debugReportObjectType

◆ m_queryPool

VkQueryPool VULKAN_HPP_NAMESPACE::QueryPool::m_queryPool
private

Definition at line 32153 of file vulkan.hpp.

◆ objectType

Definition at line 32088 of file vulkan.hpp.


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