SDL  2.0
VULKAN_HPP_NAMESPACE::PipelineCache Class Reference

#include <vulkan.hpp>

Public Types

using CType = VkPipelineCache
 

Public Member Functions

VULKAN_HPP_CONSTEXPR PipelineCache () VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_CONSTEXPR PipelineCache (std::nullptr_t) VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_TYPESAFE_EXPLICIT PipelineCache (VkPipelineCache pipelineCache) VULKAN_HPP_NOEXCEPT
 
PipelineCacheoperator= (std::nullptr_t) VULKAN_HPP_NOEXCEPT
 
bool operator== (PipelineCache const &rhs) const VULKAN_HPP_NOEXCEPT
 
bool operator!= (PipelineCache const &rhs) const VULKAN_HPP_NOEXCEPT
 
bool operator< (PipelineCache const &rhs) const VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_TYPESAFE_EXPLICIT operator VkPipelineCache () 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::ePipelineCache
 
static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::ePipelineCache
 

Private Attributes

VkPipelineCache m_pipelineCache
 

Detailed Description

Definition at line 35894 of file vulkan.hpp.

Member Typedef Documentation

◆ CType

Definition at line 35897 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ PipelineCache() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::PipelineCache::PipelineCache ( )
inline

Definition at line 35903 of file vulkan.hpp.

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

◆ PipelineCache() [2/3]

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

Definition at line 35907 of file vulkan.hpp.

35909  {}

◆ PipelineCache() [3/3]

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

Definition at line 35911 of file vulkan.hpp.

35912  : m_pipelineCache( pipelineCache )
35913  {}

Member Function Documentation

◆ operator bool()

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

Definition at line 35953 of file vulkan.hpp.

35954  {
35955  return m_pipelineCache != VK_NULL_HANDLE;
35956  }

References VK_NULL_HANDLE.

◆ operator VkPipelineCache()

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

Definition at line 35948 of file vulkan.hpp.

35949  {
35950  return m_pipelineCache;
35951  }

◆ operator!()

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

Definition at line 35958 of file vulkan.hpp.

35959  {
35960  return m_pipelineCache == VK_NULL_HANDLE;
35961  }

References VK_NULL_HANDLE.

◆ operator!=()

Definition at line 35937 of file vulkan.hpp.

35938  {
35939  return m_pipelineCache != rhs.m_pipelineCache;
35940  }

◆ operator<()

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

Definition at line 35942 of file vulkan.hpp.

35943  {
35944  return m_pipelineCache < rhs.m_pipelineCache;
35945  }

◆ operator=()

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

Definition at line 35923 of file vulkan.hpp.

35924  {
35926  return *this;
35927  }

References VK_NULL_HANDLE.

◆ operator==()

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

Definition at line 35932 of file vulkan.hpp.

35933  {
35934  return m_pipelineCache == rhs.m_pipelineCache;
35935  }

Field Documentation

◆ debugReportObjectType

Definition at line 35900 of file vulkan.hpp.

◆ m_pipelineCache

VkPipelineCache VULKAN_HPP_NAMESPACE::PipelineCache::m_pipelineCache
private

Definition at line 35964 of file vulkan.hpp.

◆ objectType

Definition at line 35899 of file vulkan.hpp.


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