SDL  2.0
VULKAN_HPP_NAMESPACE::QueryPool Class Reference

#include <vulkan.hpp>

Public Member Functions

VULKAN_HPP_CONSTEXPR QueryPool ()
 
VULKAN_HPP_CONSTEXPR QueryPool (std::nullptr_t)
 
VULKAN_HPP_TYPESAFE_EXPLICIT QueryPool (VkQueryPool queryPool)
 
QueryPooloperator= (std::nullptr_t)
 
bool operator== (QueryPool const &rhs) const
 
bool operator!= (QueryPool const &rhs) const
 
bool operator< (QueryPool const &rhs) const
 
VULKAN_HPP_TYPESAFE_EXPLICIT operator VkQueryPool () const
 
 operator bool () const
 
bool operator! () const
 

Private Attributes

VkQueryPool m_queryPool
 

Detailed Description

Definition at line 4016 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ QueryPool() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::QueryPool::QueryPool ( )
inline

Definition at line 4019 of file vulkan.hpp.

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

◆ QueryPool() [2/3]

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

Definition at line 4023 of file vulkan.hpp.

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

◆ QueryPool() [3/3]

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

Definition at line 4027 of file vulkan.hpp.

4028  : m_queryPool( queryPool )
4029  {}

Member Function Documentation

◆ operator bool()

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

Definition at line 4067 of file vulkan.hpp.

References VK_NULL_HANDLE.

4068  {
4069  return m_queryPool != VK_NULL_HANDLE;
4070  }
#define VK_NULL_HANDLE
Definition: vulkan_core.h:49

◆ operator VkQueryPool()

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

Definition at line 4062 of file vulkan.hpp.

4063  {
4064  return m_queryPool;
4065  }

◆ operator!()

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

Definition at line 4072 of file vulkan.hpp.

References VK_NULL_HANDLE.

4073  {
4074  return m_queryPool == VK_NULL_HANDLE;
4075  }
#define VK_NULL_HANDLE
Definition: vulkan_core.h:49

◆ operator!=()

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

Definition at line 4050 of file vulkan.hpp.

References m_queryPool.

4051  {
4052  return m_queryPool != rhs.m_queryPool;
4053  }

◆ operator<()

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

Definition at line 4055 of file vulkan.hpp.

References m_queryPool.

4056  {
4057  return m_queryPool < rhs.m_queryPool;
4058  }

◆ operator=()

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

Definition at line 4039 of file vulkan.hpp.

References VK_NULL_HANDLE.

4040  {
4042  return *this;
4043  }
#define VK_NULL_HANDLE
Definition: vulkan_core.h:49

◆ operator==()

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

Definition at line 4045 of file vulkan.hpp.

References m_queryPool.

4046  {
4047  return m_queryPool == rhs.m_queryPool;
4048  }

Field Documentation

◆ m_queryPool

VkQueryPool VULKAN_HPP_NAMESPACE::QueryPool::m_queryPool
private

Definition at line 4078 of file vulkan.hpp.

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


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