SDL  2.0
VULKAN_HPP_NAMESPACE::DisplayKHR Class Reference

#include <vulkan.hpp>

Public Member Functions

VULKAN_HPP_CONSTEXPR DisplayKHR ()
 
VULKAN_HPP_CONSTEXPR DisplayKHR (std::nullptr_t)
 
VULKAN_HPP_TYPESAFE_EXPLICIT DisplayKHR (VkDisplayKHR displayKHR)
 
DisplayKHRoperator= (std::nullptr_t)
 
bool operator== (DisplayKHR const &rhs) const
 
bool operator!= (DisplayKHR const &rhs) const
 
bool operator< (DisplayKHR const &rhs) const
 
VULKAN_HPP_TYPESAFE_EXPLICIT operator VkDisplayKHR () const
 
 operator bool () const
 
bool operator! () const
 

Private Attributes

VkDisplayKHR m_displayKHR
 

Detailed Description

Definition at line 4690 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ DisplayKHR() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::DisplayKHR::DisplayKHR ( )
inline

Definition at line 4693 of file vulkan.hpp.

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

◆ DisplayKHR() [2/3]

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

Definition at line 4697 of file vulkan.hpp.

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

◆ DisplayKHR() [3/3]

VULKAN_HPP_TYPESAFE_EXPLICIT VULKAN_HPP_NAMESPACE::DisplayKHR::DisplayKHR ( VkDisplayKHR  displayKHR)
inline

Definition at line 4701 of file vulkan.hpp.

4702  : m_displayKHR( displayKHR )
4703  {}

Member Function Documentation

◆ operator bool()

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

Definition at line 4741 of file vulkan.hpp.

References VK_NULL_HANDLE.

4742  {
4743  return m_displayKHR != VK_NULL_HANDLE;
4744  }
#define VK_NULL_HANDLE
Definition: vulkan_core.h:49

◆ operator VkDisplayKHR()

VULKAN_HPP_TYPESAFE_EXPLICIT VULKAN_HPP_NAMESPACE::DisplayKHR::operator VkDisplayKHR ( ) const
inline

Definition at line 4736 of file vulkan.hpp.

4737  {
4738  return m_displayKHR;
4739  }

◆ operator!()

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

Definition at line 4746 of file vulkan.hpp.

References VK_NULL_HANDLE.

4747  {
4748  return m_displayKHR == VK_NULL_HANDLE;
4749  }
#define VK_NULL_HANDLE
Definition: vulkan_core.h:49

◆ operator!=()

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

Definition at line 4724 of file vulkan.hpp.

References m_displayKHR.

4725  {
4726  return m_displayKHR != rhs.m_displayKHR;
4727  }

◆ operator<()

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

Definition at line 4729 of file vulkan.hpp.

References m_displayKHR.

4730  {
4731  return m_displayKHR < rhs.m_displayKHR;
4732  }

◆ operator=()

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

Definition at line 4713 of file vulkan.hpp.

References VK_NULL_HANDLE.

4714  {
4716  return *this;
4717  }
#define VK_NULL_HANDLE
Definition: vulkan_core.h:49

◆ operator==()

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

Definition at line 4719 of file vulkan.hpp.

References m_displayKHR.

4720  {
4721  return m_displayKHR == rhs.m_displayKHR;
4722  }

Field Documentation

◆ m_displayKHR

VkDisplayKHR VULKAN_HPP_NAMESPACE::DisplayKHR::m_displayKHR
private

Definition at line 4752 of file vulkan.hpp.

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


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