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

◆ QueryPool() [2/3]

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

Definition at line 4023 of file vulkan.hpp.

4025  {}

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

4068  {
4069  return m_queryPool != VK_NULL_HANDLE;
4070  }

References m_queryPool, and VK_NULL_HANDLE.

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

References m_queryPool.

◆ operator!()

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

Definition at line 4072 of file vulkan.hpp.

4073  {
4074  return m_queryPool == VK_NULL_HANDLE;
4075  }

References m_queryPool, and VK_NULL_HANDLE.

◆ operator!=()

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

Definition at line 4050 of file vulkan.hpp.

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

References m_queryPool.

◆ operator<()

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

Definition at line 4055 of file vulkan.hpp.

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

References m_queryPool.

◆ operator=()

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

Definition at line 4039 of file vulkan.hpp.

4040  {
4042  return *this;
4043  }

References m_queryPool, and VK_NULL_HANDLE.

◆ operator==()

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

Definition at line 4045 of file vulkan.hpp.

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

References m_queryPool.

Field Documentation

◆ m_queryPool

VkQueryPool VULKAN_HPP_NAMESPACE::QueryPool::m_queryPool
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::QueryPool::m_queryPool
VkQueryPool m_queryPool
Definition: vulkan.hpp:4078