SDL  2.0
VULKAN_HPP_NAMESPACE::ImageView Class Reference

#include <vulkan.hpp>

Public Types

using CType = VkImageView
 

Public Member Functions

VULKAN_HPP_CONSTEXPR ImageView () VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_CONSTEXPR ImageView (std::nullptr_t) VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_TYPESAFE_EXPLICIT ImageView (VkImageView imageView) VULKAN_HPP_NOEXCEPT
 
ImageViewoperator= (std::nullptr_t) VULKAN_HPP_NOEXCEPT
 
bool operator== (ImageView const &rhs) const VULKAN_HPP_NOEXCEPT
 
bool operator!= (ImageView const &rhs) const VULKAN_HPP_NOEXCEPT
 
bool operator< (ImageView const &rhs) const VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_TYPESAFE_EXPLICIT operator VkImageView () 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::eImageView
 
static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eImageView
 

Private Attributes

VkImageView m_imageView
 

Detailed Description

Definition at line 28863 of file vulkan.hpp.

Member Typedef Documentation

◆ CType

Definition at line 28866 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ ImageView() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::ImageView::ImageView ( )
inline

Definition at line 28872 of file vulkan.hpp.

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

◆ ImageView() [2/3]

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

Definition at line 28876 of file vulkan.hpp.

28878  {}

◆ ImageView() [3/3]

VULKAN_HPP_TYPESAFE_EXPLICIT VULKAN_HPP_NAMESPACE::ImageView::ImageView ( VkImageView  imageView)
inline

Definition at line 28880 of file vulkan.hpp.

28881  : m_imageView( imageView )
28882  {}

Member Function Documentation

◆ operator bool()

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

Definition at line 28922 of file vulkan.hpp.

28923  {
28924  return m_imageView != VK_NULL_HANDLE;
28925  }

References VK_NULL_HANDLE.

◆ operator VkImageView()

VULKAN_HPP_TYPESAFE_EXPLICIT VULKAN_HPP_NAMESPACE::ImageView::operator VkImageView ( ) const
inline

Definition at line 28917 of file vulkan.hpp.

28918  {
28919  return m_imageView;
28920  }

◆ operator!()

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

Definition at line 28927 of file vulkan.hpp.

28928  {
28929  return m_imageView == VK_NULL_HANDLE;
28930  }

References VK_NULL_HANDLE.

◆ operator!=()

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

Definition at line 28906 of file vulkan.hpp.

28907  {
28908  return m_imageView != rhs.m_imageView;
28909  }

◆ operator<()

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

Definition at line 28911 of file vulkan.hpp.

28912  {
28913  return m_imageView < rhs.m_imageView;
28914  }

◆ operator=()

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

Definition at line 28892 of file vulkan.hpp.

28893  {
28895  return *this;
28896  }

References VK_NULL_HANDLE.

◆ operator==()

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

Definition at line 28901 of file vulkan.hpp.

28902  {
28903  return m_imageView == rhs.m_imageView;
28904  }

Field Documentation

◆ debugReportObjectType

◆ m_imageView

VkImageView VULKAN_HPP_NAMESPACE::ImageView::m_imageView
private

Definition at line 28933 of file vulkan.hpp.

◆ objectType

Definition at line 28868 of file vulkan.hpp.


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