SDL  2.0
VULKAN_HPP_NAMESPACE::QueueFamilyProperties Struct Reference

#include <vulkan.hpp>

+ Collaboration diagram for VULKAN_HPP_NAMESPACE::QueueFamilyProperties:

Public Member Functions

 operator VkQueueFamilyProperties const & () const
 
 operator VkQueueFamilyProperties & ()
 
bool operator== (QueueFamilyProperties const &rhs) const
 
bool operator!= (QueueFamilyProperties const &rhs) const
 

Data Fields

QueueFlags queueFlags
 
uint32_t queueCount
 
uint32_t timestampValidBits
 
Extent3D minImageTransferGranularity
 

Detailed Description

Definition at line 21933 of file vulkan.hpp.

Member Function Documentation

◆ operator VkQueueFamilyProperties &()

VULKAN_HPP_NAMESPACE::QueueFamilyProperties::operator VkQueueFamilyProperties & ( )
inline

Definition at line 21940 of file vulkan.hpp.

21941  {
21942  return *reinterpret_cast<VkQueueFamilyProperties*>(this);
21943  }

◆ operator VkQueueFamilyProperties const &()

VULKAN_HPP_NAMESPACE::QueueFamilyProperties::operator VkQueueFamilyProperties const & ( ) const
inline

Definition at line 21935 of file vulkan.hpp.

21936  {
21937  return *reinterpret_cast<const VkQueueFamilyProperties*>(this);
21938  }

◆ operator!=()

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

Definition at line 21953 of file vulkan.hpp.

21954  {
21955  return !operator==( rhs );
21956  }

References operator==().

◆ operator==()

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

Definition at line 21945 of file vulkan.hpp.

21946  {
21947  return ( queueFlags == rhs.queueFlags )
21948  && ( queueCount == rhs.queueCount )
21949  && ( timestampValidBits == rhs.timestampValidBits )
21950  && ( minImageTransferGranularity == rhs.minImageTransferGranularity );
21951  }

References minImageTransferGranularity, queueCount, queueFlags, and timestampValidBits.

Referenced by operator!=().

Field Documentation

◆ minImageTransferGranularity

Extent3D VULKAN_HPP_NAMESPACE::QueueFamilyProperties::minImageTransferGranularity

Definition at line 21961 of file vulkan.hpp.

Referenced by operator==().

◆ queueCount

uint32_t VULKAN_HPP_NAMESPACE::QueueFamilyProperties::queueCount

Definition at line 21959 of file vulkan.hpp.

Referenced by operator==().

◆ queueFlags

QueueFlags VULKAN_HPP_NAMESPACE::QueueFamilyProperties::queueFlags

Definition at line 21958 of file vulkan.hpp.

Referenced by operator==().

◆ timestampValidBits

uint32_t VULKAN_HPP_NAMESPACE::QueueFamilyProperties::timestampValidBits

Definition at line 21960 of file vulkan.hpp.

Referenced by operator==().


The documentation for this struct was generated from the following file:
VULKAN_HPP_NAMESPACE::QueueFamilyProperties::operator==
bool operator==(QueueFamilyProperties const &rhs) const
Definition: vulkan.hpp:21945
VULKAN_HPP_NAMESPACE::QueueFamilyProperties::queueCount
uint32_t queueCount
Definition: vulkan.hpp:21959
VkQueueFamilyProperties
Definition: vulkan_core.h:2000
VULKAN_HPP_NAMESPACE::QueueFamilyProperties::minImageTransferGranularity
Extent3D minImageTransferGranularity
Definition: vulkan.hpp:21961
VULKAN_HPP_NAMESPACE::QueueFamilyProperties::timestampValidBits
uint32_t timestampValidBits
Definition: vulkan.hpp:21960
VULKAN_HPP_NAMESPACE::QueueFamilyProperties::queueFlags
QueueFlags queueFlags
Definition: vulkan.hpp:21958