SDL  2.0
VULKAN_HPP_NAMESPACE::PipelineCache Class Reference

#include <vulkan.hpp>

Public Member Functions

VULKAN_HPP_CONSTEXPR PipelineCache ()
 
VULKAN_HPP_CONSTEXPR PipelineCache (std::nullptr_t)
 
VULKAN_HPP_TYPESAFE_EXPLICIT PipelineCache (VkPipelineCache pipelineCache)
 
PipelineCacheoperator= (std::nullptr_t)
 
bool operator== (PipelineCache const &rhs) const
 
bool operator!= (PipelineCache const &rhs) const
 
bool operator< (PipelineCache const &rhs) const
 
VULKAN_HPP_TYPESAFE_EXPLICIT operator VkPipelineCache () const
 
 operator bool () const
 
bool operator! () const
 

Private Attributes

VkPipelineCache m_pipelineCache
 

Detailed Description

Definition at line 4217 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ PipelineCache() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::PipelineCache::PipelineCache ( )
inline

Definition at line 4220 of file vulkan.hpp.

4222  {}

◆ PipelineCache() [2/3]

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

Definition at line 4224 of file vulkan.hpp.

4226  {}

◆ PipelineCache() [3/3]

VULKAN_HPP_TYPESAFE_EXPLICIT VULKAN_HPP_NAMESPACE::PipelineCache::PipelineCache ( VkPipelineCache  pipelineCache)
inline

Definition at line 4228 of file vulkan.hpp.

4229  : m_pipelineCache( pipelineCache )
4230  {}

Member Function Documentation

◆ operator bool()

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

Definition at line 4268 of file vulkan.hpp.

4269  {
4270  return m_pipelineCache != VK_NULL_HANDLE;
4271  }

References m_pipelineCache, and VK_NULL_HANDLE.

◆ operator VkPipelineCache()

VULKAN_HPP_TYPESAFE_EXPLICIT VULKAN_HPP_NAMESPACE::PipelineCache::operator VkPipelineCache ( ) const
inline

Definition at line 4263 of file vulkan.hpp.

4264  {
4265  return m_pipelineCache;
4266  }

References m_pipelineCache.

◆ operator!()

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

Definition at line 4273 of file vulkan.hpp.

4274  {
4275  return m_pipelineCache == VK_NULL_HANDLE;
4276  }

References m_pipelineCache, and VK_NULL_HANDLE.

◆ operator!=()

Definition at line 4251 of file vulkan.hpp.

4252  {
4253  return m_pipelineCache != rhs.m_pipelineCache;
4254  }

References m_pipelineCache.

◆ operator<()

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

Definition at line 4256 of file vulkan.hpp.

4257  {
4258  return m_pipelineCache < rhs.m_pipelineCache;
4259  }

References m_pipelineCache.

◆ operator=()

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

Definition at line 4240 of file vulkan.hpp.

4241  {
4243  return *this;
4244  }

References m_pipelineCache, and VK_NULL_HANDLE.

◆ operator==()

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

Definition at line 4246 of file vulkan.hpp.

4247  {
4248  return m_pipelineCache == rhs.m_pipelineCache;
4249  }

References m_pipelineCache.

Field Documentation

◆ m_pipelineCache

VkPipelineCache VULKAN_HPP_NAMESPACE::PipelineCache::m_pipelineCache
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::PipelineCache::m_pipelineCache
VkPipelineCache m_pipelineCache
Definition: vulkan.hpp:4279