SDL 2.0
VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNVX Struct Reference

#include <vulkan.hpp>

+ Collaboration diagram for VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNVX:

Public Member Functions

 IndirectCommandsLayoutCreateInfoNVX (PipelineBindPoint pipelineBindPoint_=PipelineBindPoint::eGraphics, IndirectCommandsLayoutUsageFlagsNVX flags_=IndirectCommandsLayoutUsageFlagsNVX(), uint32_t tokenCount_=0, const IndirectCommandsLayoutTokenNVX *pTokens_=nullptr)
 
 IndirectCommandsLayoutCreateInfoNVX (VkIndirectCommandsLayoutCreateInfoNVX const &rhs)
 
IndirectCommandsLayoutCreateInfoNVXoperator= (VkIndirectCommandsLayoutCreateInfoNVX const &rhs)
 
IndirectCommandsLayoutCreateInfoNVXsetPNext (const void *pNext_)
 
IndirectCommandsLayoutCreateInfoNVXsetPipelineBindPoint (PipelineBindPoint pipelineBindPoint_)
 
IndirectCommandsLayoutCreateInfoNVXsetFlags (IndirectCommandsLayoutUsageFlagsNVX flags_)
 
IndirectCommandsLayoutCreateInfoNVXsetTokenCount (uint32_t tokenCount_)
 
IndirectCommandsLayoutCreateInfoNVXsetPTokens (const IndirectCommandsLayoutTokenNVX *pTokens_)
 
 operator VkIndirectCommandsLayoutCreateInfoNVX const & () const
 
 operator VkIndirectCommandsLayoutCreateInfoNVX & ()
 
bool operator== (IndirectCommandsLayoutCreateInfoNVX const &rhs) const
 
bool operator!= (IndirectCommandsLayoutCreateInfoNVX const &rhs) const
 

Data Fields

const voidpNext = nullptr
 
PipelineBindPoint pipelineBindPoint
 
IndirectCommandsLayoutUsageFlagsNVX flags
 
uint32_t tokenCount
 
const IndirectCommandsLayoutTokenNVXpTokens
 

Private Attributes

StructureType sType = StructureType::eIndirectCommandsLayoutCreateInfoNVX
 

Detailed Description

Definition at line 30727 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ IndirectCommandsLayoutCreateInfoNVX() [1/2]

VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNVX::IndirectCommandsLayoutCreateInfoNVX ( PipelineBindPoint  pipelineBindPoint_ = PipelineBindPoint::eGraphics,
IndirectCommandsLayoutUsageFlagsNVX  flags_ = IndirectCommandsLayoutUsageFlagsNVX(),
uint32_t  tokenCount_ = 0,
const IndirectCommandsLayoutTokenNVX pTokens_ = nullptr 
)
inline

Definition at line 30729 of file vulkan.hpp.

30733 : pipelineBindPoint( pipelineBindPoint_ )
30734 , flags( flags_ )
30735 , tokenCount( tokenCount_ )
30736 , pTokens( pTokens_ )
30737 {
30738 }
const IndirectCommandsLayoutTokenNVX * pTokens
Definition: vulkan.hpp:30813

◆ IndirectCommandsLayoutCreateInfoNVX() [2/2]

VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNVX::IndirectCommandsLayoutCreateInfoNVX ( VkIndirectCommandsLayoutCreateInfoNVX const &  rhs)
inline

Definition at line 30740 of file vulkan.hpp.

30741 {
30742 memcpy( this, &rhs, sizeof( IndirectCommandsLayoutCreateInfoNVX ) );
30743 }
#define memcpy
Definition: SDL_malloc.c:630
IndirectCommandsLayoutCreateInfoNVX(PipelineBindPoint pipelineBindPoint_=PipelineBindPoint::eGraphics, IndirectCommandsLayoutUsageFlagsNVX flags_=IndirectCommandsLayoutUsageFlagsNVX(), uint32_t tokenCount_=0, const IndirectCommandsLayoutTokenNVX *pTokens_=nullptr)
Definition: vulkan.hpp:30729

References memcpy.

Member Function Documentation

◆ operator VkIndirectCommandsLayoutCreateInfoNVX &()

VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNVX::operator VkIndirectCommandsLayoutCreateInfoNVX & ( )
inline

Definition at line 30785 of file vulkan.hpp.

30786 {
30787 return *reinterpret_cast<VkIndirectCommandsLayoutCreateInfoNVX*>(this);
30788 }

◆ operator VkIndirectCommandsLayoutCreateInfoNVX const &()

VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNVX::operator VkIndirectCommandsLayoutCreateInfoNVX const & ( ) const
inline

Definition at line 30780 of file vulkan.hpp.

30781 {
30782 return *reinterpret_cast<const VkIndirectCommandsLayoutCreateInfoNVX*>(this);
30783 }

◆ operator!=()

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

Definition at line 30800 of file vulkan.hpp.

30801 {
30802 return !operator==( rhs );
30803 }
bool operator==(IndirectCommandsLayoutCreateInfoNVX const &rhs) const
Definition: vulkan.hpp:30790

References operator==().

◆ operator=()

IndirectCommandsLayoutCreateInfoNVX & VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNVX::operator= ( VkIndirectCommandsLayoutCreateInfoNVX const &  rhs)
inline

Definition at line 30745 of file vulkan.hpp.

30746 {
30747 memcpy( this, &rhs, sizeof( IndirectCommandsLayoutCreateInfoNVX ) );
30748 return *this;
30749 }

References memcpy.

◆ operator==()

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

Definition at line 30790 of file vulkan.hpp.

30791 {
30792 return ( sType == rhs.sType )
30793 && ( pNext == rhs.pNext )
30794 && ( pipelineBindPoint == rhs.pipelineBindPoint )
30795 && ( flags == rhs.flags )
30796 && ( tokenCount == rhs.tokenCount )
30797 && ( pTokens == rhs.pTokens );
30798 }
GLbitfield flags

References flags, pipelineBindPoint, pNext, pTokens, sType, and tokenCount.

Referenced by operator!=().

◆ setFlags()

IndirectCommandsLayoutCreateInfoNVX & VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNVX::setFlags ( IndirectCommandsLayoutUsageFlagsNVX  flags_)
inline

Definition at line 30762 of file vulkan.hpp.

30763 {
30764 flags = flags_;
30765 return *this;
30766 }

◆ setPipelineBindPoint()

IndirectCommandsLayoutCreateInfoNVX & VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNVX::setPipelineBindPoint ( PipelineBindPoint  pipelineBindPoint_)
inline

Definition at line 30756 of file vulkan.hpp.

30757 {
30758 pipelineBindPoint = pipelineBindPoint_;
30759 return *this;
30760 }

References pipelineBindPoint.

◆ setPNext()

IndirectCommandsLayoutCreateInfoNVX & VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNVX::setPNext ( const void pNext_)
inline

Definition at line 30750 of file vulkan.hpp.

30751 {
30752 pNext = pNext_;
30753 return *this;
30754 }

References pNext.

◆ setPTokens()

IndirectCommandsLayoutCreateInfoNVX & VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNVX::setPTokens ( const IndirectCommandsLayoutTokenNVX pTokens_)
inline

Definition at line 30774 of file vulkan.hpp.

30775 {
30776 pTokens = pTokens_;
30777 return *this;
30778 }

References pTokens.

◆ setTokenCount()

IndirectCommandsLayoutCreateInfoNVX & VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNVX::setTokenCount ( uint32_t  tokenCount_)
inline

Definition at line 30768 of file vulkan.hpp.

30769 {
30770 tokenCount = tokenCount_;
30771 return *this;
30772 }

References tokenCount.

Field Documentation

◆ flags

IndirectCommandsLayoutUsageFlagsNVX VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNVX::flags

Definition at line 30811 of file vulkan.hpp.

Referenced by operator==().

◆ pipelineBindPoint

PipelineBindPoint VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNVX::pipelineBindPoint

Definition at line 30810 of file vulkan.hpp.

Referenced by operator==(), and setPipelineBindPoint().

◆ pNext

const void* VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNVX::pNext = nullptr

Definition at line 30809 of file vulkan.hpp.

Referenced by operator==(), and setPNext().

◆ pTokens

const IndirectCommandsLayoutTokenNVX* VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNVX::pTokens

Definition at line 30813 of file vulkan.hpp.

Referenced by operator==(), and setPTokens().

◆ sType

StructureType VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNVX::sType = StructureType::eIndirectCommandsLayoutCreateInfoNVX
private

Definition at line 30806 of file vulkan.hpp.

Referenced by operator==().

◆ tokenCount

uint32_t VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNVX::tokenCount

Definition at line 30812 of file vulkan.hpp.

Referenced by operator==(), and setTokenCount().


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