SDL  2.0
VULKAN_HPP_NAMESPACE::ImageView Class Reference

#include <vulkan.hpp>

Public Member Functions

VULKAN_HPP_CONSTEXPR ImageView ()
 
VULKAN_HPP_CONSTEXPR ImageView (std::nullptr_t)
 
VULKAN_HPP_TYPESAFE_EXPLICIT ImageView (VkImageView imageView)
 
ImageViewoperator= (std::nullptr_t)
 
bool operator== (ImageView const &rhs) const
 
bool operator!= (ImageView const &rhs) const
 
bool operator< (ImageView const &rhs) const
 
VULKAN_HPP_TYPESAFE_EXPLICIT operator VkImageView () const
 
 operator bool () const
 
bool operator! () const
 

Private Attributes

VkImageView m_imageView
 

Detailed Description

Definition at line 3279 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ ImageView() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::ImageView::ImageView ( )
inline

Definition at line 3282 of file vulkan.hpp.

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

◆ ImageView() [2/3]

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

Definition at line 3286 of file vulkan.hpp.

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

◆ ImageView() [3/3]

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

Definition at line 3290 of file vulkan.hpp.

3291  : m_imageView( imageView )
3292  {}

Member Function Documentation

◆ operator bool()

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

Definition at line 3330 of file vulkan.hpp.

References VK_NULL_HANDLE.

3331  {
3332  return m_imageView != VK_NULL_HANDLE;
3333  }
#define VK_NULL_HANDLE
Definition: vulkan_core.h:49

◆ operator VkImageView()

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

Definition at line 3325 of file vulkan.hpp.

3326  {
3327  return m_imageView;
3328  }

◆ operator!()

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

Definition at line 3335 of file vulkan.hpp.

References VK_NULL_HANDLE.

3336  {
3337  return m_imageView == VK_NULL_HANDLE;
3338  }
#define VK_NULL_HANDLE
Definition: vulkan_core.h:49

◆ operator!=()

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

Definition at line 3313 of file vulkan.hpp.

References m_imageView.

3314  {
3315  return m_imageView != rhs.m_imageView;
3316  }

◆ operator<()

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

Definition at line 3318 of file vulkan.hpp.

References m_imageView.

3319  {
3320  return m_imageView < rhs.m_imageView;
3321  }

◆ operator=()

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

Definition at line 3302 of file vulkan.hpp.

References VK_NULL_HANDLE.

3303  {
3305  return *this;
3306  }
#define VK_NULL_HANDLE
Definition: vulkan_core.h:49

◆ operator==()

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

Definition at line 3308 of file vulkan.hpp.

References m_imageView.

3309  {
3310  return m_imageView == rhs.m_imageView;
3311  }

Field Documentation

◆ m_imageView

VkImageView VULKAN_HPP_NAMESPACE::ImageView::m_imageView
private

Definition at line 3341 of file vulkan.hpp.

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


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