SDL  2.0
VULKAN_HPP_NAMESPACE::ShaderModule Class Reference

#include <vulkan.hpp>

Public Types

using CType = VkShaderModule
 

Public Member Functions

VULKAN_HPP_CONSTEXPR ShaderModule () VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_CONSTEXPR ShaderModule (std::nullptr_t) VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_TYPESAFE_EXPLICIT ShaderModule (VkShaderModule shaderModule) VULKAN_HPP_NOEXCEPT
 
ShaderModuleoperator= (std::nullptr_t) VULKAN_HPP_NOEXCEPT
 
bool operator== (ShaderModule const &rhs) const VULKAN_HPP_NOEXCEPT
 
bool operator!= (ShaderModule const &rhs) const VULKAN_HPP_NOEXCEPT
 
bool operator< (ShaderModule const &rhs) const VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_TYPESAFE_EXPLICIT operator VkShaderModule () 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::eShaderModule
 
static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eShaderModule
 

Private Attributes

VkShaderModule m_shaderModule
 

Detailed Description

Definition at line 24750 of file vulkan.hpp.

Member Typedef Documentation

◆ CType

Definition at line 24753 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ ShaderModule() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::ShaderModule::ShaderModule ( )
inline

Definition at line 24759 of file vulkan.hpp.

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

◆ ShaderModule() [2/3]

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

Definition at line 24763 of file vulkan.hpp.

24765  {}

◆ ShaderModule() [3/3]

VULKAN_HPP_TYPESAFE_EXPLICIT VULKAN_HPP_NAMESPACE::ShaderModule::ShaderModule ( VkShaderModule  shaderModule)
inline

Definition at line 24767 of file vulkan.hpp.

24768  : m_shaderModule( shaderModule )
24769  {}

Member Function Documentation

◆ operator bool()

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

Definition at line 24809 of file vulkan.hpp.

24810  {
24811  return m_shaderModule != VK_NULL_HANDLE;
24812  }

References VK_NULL_HANDLE.

◆ operator VkShaderModule()

VULKAN_HPP_TYPESAFE_EXPLICIT VULKAN_HPP_NAMESPACE::ShaderModule::operator VkShaderModule ( ) const
inline

Definition at line 24804 of file vulkan.hpp.

24805  {
24806  return m_shaderModule;
24807  }

◆ operator!()

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

Definition at line 24814 of file vulkan.hpp.

24815  {
24816  return m_shaderModule == VK_NULL_HANDLE;
24817  }

References VK_NULL_HANDLE.

◆ operator!=()

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

Definition at line 24793 of file vulkan.hpp.

24794  {
24795  return m_shaderModule != rhs.m_shaderModule;
24796  }

◆ operator<()

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

Definition at line 24798 of file vulkan.hpp.

24799  {
24800  return m_shaderModule < rhs.m_shaderModule;
24801  }

◆ operator=()

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

Definition at line 24779 of file vulkan.hpp.

24780  {
24782  return *this;
24783  }

References VK_NULL_HANDLE.

◆ operator==()

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

Definition at line 24788 of file vulkan.hpp.

24789  {
24790  return m_shaderModule == rhs.m_shaderModule;
24791  }

Field Documentation

◆ debugReportObjectType

Definition at line 24756 of file vulkan.hpp.

◆ m_shaderModule

VkShaderModule VULKAN_HPP_NAMESPACE::ShaderModule::m_shaderModule
private

Definition at line 24820 of file vulkan.hpp.

◆ objectType

Definition at line 24755 of file vulkan.hpp.


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