SDL 2.0
VULKAN_HPP_NAMESPACE::PipelineLayout Class Reference

#include <vulkan.hpp>

Public Member Functions

VULKAN_HPP_CONSTEXPR PipelineLayout ()
 
VULKAN_HPP_CONSTEXPR PipelineLayout (std::nullptr_t)
 
VULKAN_HPP_TYPESAFE_EXPLICIT PipelineLayout (VkPipelineLayout pipelineLayout)
 
PipelineLayoutoperator= (std::nullptr_t)
 
bool operator== (PipelineLayout const &rhs) const
 
bool operator!= (PipelineLayout const &rhs) const
 
bool operator< (PipelineLayout const &rhs) const
 
VULKAN_HPP_TYPESAFE_EXPLICIT operator VkPipelineLayout () const
 
 operator bool () const
 
bool operator! () const
 

Private Attributes

VkPipelineLayout m_pipelineLayout
 

Detailed Description

Definition at line 3480 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ PipelineLayout() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::PipelineLayout::PipelineLayout ( )
inline

Definition at line 3483 of file vulkan.hpp.

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

◆ PipelineLayout() [2/3]

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

Definition at line 3487 of file vulkan.hpp.

◆ PipelineLayout() [3/3]

VULKAN_HPP_TYPESAFE_EXPLICIT VULKAN_HPP_NAMESPACE::PipelineLayout::PipelineLayout ( VkPipelineLayout  pipelineLayout)
inline

Definition at line 3491 of file vulkan.hpp.

3492 : m_pipelineLayout( pipelineLayout )
3493 {}

Member Function Documentation

◆ operator bool()

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

Definition at line 3531 of file vulkan.hpp.

3532 {
3534 }

References m_pipelineLayout, and VK_NULL_HANDLE.

◆ operator VkPipelineLayout()

VULKAN_HPP_TYPESAFE_EXPLICIT VULKAN_HPP_NAMESPACE::PipelineLayout::operator VkPipelineLayout ( ) const
inline

Definition at line 3526 of file vulkan.hpp.

3527 {
3528 return m_pipelineLayout;
3529 }

References m_pipelineLayout.

◆ operator!()

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

Definition at line 3536 of file vulkan.hpp.

3537 {
3539 }

References m_pipelineLayout, and VK_NULL_HANDLE.

◆ operator!=()

Definition at line 3514 of file vulkan.hpp.

3515 {
3516 return m_pipelineLayout != rhs.m_pipelineLayout;
3517 }

References m_pipelineLayout.

◆ operator<()

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

Definition at line 3519 of file vulkan.hpp.

3520 {
3521 return m_pipelineLayout < rhs.m_pipelineLayout;
3522 }

References m_pipelineLayout.

◆ operator=()

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

Definition at line 3503 of file vulkan.hpp.

3504 {
3506 return *this;
3507 }

References m_pipelineLayout, and VK_NULL_HANDLE.

◆ operator==()

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

Definition at line 3509 of file vulkan.hpp.

3510 {
3511 return m_pipelineLayout == rhs.m_pipelineLayout;
3512 }

References m_pipelineLayout.

Field Documentation

◆ m_pipelineLayout

VkPipelineLayout VULKAN_HPP_NAMESPACE::PipelineLayout::m_pipelineLayout
private

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