SDL  2.0
VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL Struct Reference

#include <vulkan.hpp>

Public Member Functions

VULKAN_HPP_CONSTEXPR PerformanceStreamMarkerInfoINTEL (uint32_t marker_={}) VULKAN_HPP_NOEXCEPT
 
VULKAN_HPP_CONSTEXPR PerformanceStreamMarkerInfoINTEL (PerformanceStreamMarkerInfoINTEL const &rhs) VULKAN_HPP_NOEXCEPT=default
 
 PerformanceStreamMarkerInfoINTEL (VkPerformanceStreamMarkerInfoINTEL const &rhs) VULKAN_HPP_NOEXCEPT
 
PerformanceStreamMarkerInfoINTELoperator= (VkPerformanceStreamMarkerInfoINTEL const &rhs) VULKAN_HPP_NOEXCEPT
 
PerformanceStreamMarkerInfoINTELoperator= (PerformanceStreamMarkerInfoINTEL const &rhs) VULKAN_HPP_NOEXCEPT
 
PerformanceStreamMarkerInfoINTELsetPNext (const void *pNext_) VULKAN_HPP_NOEXCEPT
 
PerformanceStreamMarkerInfoINTELsetMarker (uint32_t marker_) VULKAN_HPP_NOEXCEPT
 
 operator VkPerformanceStreamMarkerInfoINTEL const & () const VULKAN_HPP_NOEXCEPT
 
 operator VkPerformanceStreamMarkerInfoINTEL & () VULKAN_HPP_NOEXCEPT
 
bool operator== (PerformanceStreamMarkerInfoINTEL const &rhs) const VULKAN_HPP_NOEXCEPT
 
bool operator!= (PerformanceStreamMarkerInfoINTEL const &rhs) const VULKAN_HPP_NOEXCEPT
 

Data Fields

const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePerformanceStreamMarkerInfoINTEL
 
const voidpNext = {}
 
uint32_t marker = {}
 

Static Public Attributes

static const bool allowDuplicate = false
 
static VULKAN_HPP_CONST_OR_CONSTEXPR StructureType structureType = StructureType::ePerformanceStreamMarkerInfoINTEL
 

Detailed Description

Definition at line 34430 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ PerformanceStreamMarkerInfoINTEL() [1/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL::PerformanceStreamMarkerInfoINTEL ( uint32_t  marker_ = {})
inline

Definition at line 34436 of file vulkan.hpp.

34437  : marker( marker_ )
34438  {}
#define VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:179

◆ PerformanceStreamMarkerInfoINTEL() [2/3]

VULKAN_HPP_CONSTEXPR VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL::PerformanceStreamMarkerInfoINTEL ( PerformanceStreamMarkerInfoINTEL const &  rhs)
default

◆ PerformanceStreamMarkerInfoINTEL() [3/3]

VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL::PerformanceStreamMarkerInfoINTEL ( VkPerformanceStreamMarkerInfoINTEL const &  rhs)
inline

Definition at line 34442 of file vulkan.hpp.

34443  {
34444  *this = rhs;
34445  }

Member Function Documentation

◆ operator VkPerformanceStreamMarkerInfoINTEL &()

VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL::operator VkPerformanceStreamMarkerInfoINTEL & ( )
inline

Definition at line 34478 of file vulkan.hpp.

34479  {
34480  return *reinterpret_cast<VkPerformanceStreamMarkerInfoINTEL*>( this );
34481  }

◆ operator VkPerformanceStreamMarkerInfoINTEL const &()

VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL::operator VkPerformanceStreamMarkerInfoINTEL const & ( ) const
inline

Definition at line 34473 of file vulkan.hpp.

34474  {
34475  return *reinterpret_cast<const VkPerformanceStreamMarkerInfoINTEL*>( this );
34476  }

◆ operator!=()

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

Definition at line 34494 of file vulkan.hpp.

34495  {
34496  return !operator==( rhs );
34497  }
bool operator==(PerformanceStreamMarkerInfoINTEL const &rhs) const VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:34487

References VULKAN_HPP_NAMESPACE::operator==().

◆ operator=() [1/2]

PerformanceStreamMarkerInfoINTEL& VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL::operator= ( PerformanceStreamMarkerInfoINTEL const &  rhs)
inline

Definition at line 34454 of file vulkan.hpp.

34455  {
34456  memcpy( static_cast<void *>( this ), &rhs, sizeof( PerformanceStreamMarkerInfoINTEL ) );
34457  return *this;
34458  }
#define memcpy
Definition: SDL_malloc.c:630
VULKAN_HPP_CONSTEXPR PerformanceStreamMarkerInfoINTEL(uint32_t marker_={}) VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:34436

References memcpy.

◆ operator=() [2/2]

PerformanceStreamMarkerInfoINTEL& VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL::operator= ( VkPerformanceStreamMarkerInfoINTEL const &  rhs)
inline

Definition at line 34448 of file vulkan.hpp.

34449  {
34450  *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL const *>( &rhs );
34451  return *this;
34452  }

◆ operator==()

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

Definition at line 34487 of file vulkan.hpp.

34488  {
34489  return ( sType == rhs.sType )
34490  && ( pNext == rhs.pNext )
34491  && ( marker == rhs.marker );
34492  }
const GLchar * marker
const VULKAN_HPP_NAMESPACE::StructureType sType
Definition: vulkan.hpp:34503

◆ setMarker()

PerformanceStreamMarkerInfoINTEL& VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL::setMarker ( uint32_t  marker_)
inline

Definition at line 34466 of file vulkan.hpp.

34467  {
34468  marker = marker_;
34469  return *this;
34470  }

◆ setPNext()

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

Definition at line 34460 of file vulkan.hpp.

34461  {
34462  pNext = pNext_;
34463  return *this;
34464  }

Field Documentation

◆ allowDuplicate

const bool VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL::allowDuplicate = false
static

Definition at line 34432 of file vulkan.hpp.

◆ marker

uint32_t VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL::marker = {}

Definition at line 34505 of file vulkan.hpp.

◆ pNext

const void* VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL::pNext = {}

Definition at line 34504 of file vulkan.hpp.

◆ structureType

VULKAN_HPP_CONST_OR_CONSTEXPR StructureType VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL::structureType = StructureType::ePerformanceStreamMarkerInfoINTEL
static

Definition at line 34433 of file vulkan.hpp.

◆ sType

const VULKAN_HPP_NAMESPACE::StructureType VULKAN_HPP_NAMESPACE::PerformanceStreamMarkerInfoINTEL::sType = StructureType::ePerformanceStreamMarkerInfoINTEL

Definition at line 34503 of file vulkan.hpp.


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