mirror of
https://github.com/KhronosGroup/Vulkan-Headers.git
synced 2025-05-15 07:58:28 +00:00
Update for Vulkan-Docs 1.3.251
This commit is contained in:
parent
9e61870ecb
commit
3df77fb3e4
12 changed files with 2991 additions and 1755 deletions
|
@ -324,7 +324,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
VULKAN_HPP_INLINE std::string to_string( PipelineStageFlags value )
|
||||
{
|
||||
if ( !value )
|
||||
return "{}";
|
||||
return "None";
|
||||
|
||||
std::string result;
|
||||
if ( value & PipelineStageFlagBits::eTopOfPipe )
|
||||
|
@ -391,7 +391,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
VULKAN_HPP_INLINE std::string to_string( ImageAspectFlags value )
|
||||
{
|
||||
if ( !value )
|
||||
return "{}";
|
||||
return "None";
|
||||
|
||||
std::string result;
|
||||
if ( value & ImageAspectFlagBits::eColor )
|
||||
|
@ -683,7 +683,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
VULKAN_HPP_INLINE std::string to_string( CullModeFlags value )
|
||||
{
|
||||
if ( !value )
|
||||
return "{}";
|
||||
return "None";
|
||||
|
||||
std::string result;
|
||||
if ( value & CullModeFlagBits::eFront )
|
||||
|
@ -961,7 +961,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
VULKAN_HPP_INLINE std::string to_string( AccessFlags value )
|
||||
{
|
||||
if ( !value )
|
||||
return "{}";
|
||||
return "None";
|
||||
|
||||
std::string result;
|
||||
if ( value & AccessFlagBits::eIndirectCommandRead )
|
||||
|
@ -1433,7 +1433,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
VULKAN_HPP_INLINE std::string to_string( ResolveModeFlags value )
|
||||
{
|
||||
if ( !value )
|
||||
return "{}";
|
||||
return "None";
|
||||
|
||||
std::string result;
|
||||
if ( value & ResolveModeFlagBits::eSampleZero )
|
||||
|
@ -1510,7 +1510,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
VULKAN_HPP_INLINE std::string to_string( PipelineStageFlags2 value )
|
||||
{
|
||||
if ( !value )
|
||||
return "{}";
|
||||
return "None";
|
||||
|
||||
std::string result;
|
||||
if ( value & PipelineStageFlagBits2::eTopOfPipe )
|
||||
|
@ -1604,7 +1604,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
VULKAN_HPP_INLINE std::string to_string( AccessFlags2 value )
|
||||
{
|
||||
if ( !value )
|
||||
return "{}";
|
||||
return "None";
|
||||
|
||||
std::string result;
|
||||
if ( value & AccessFlagBits2::eIndirectCommandRead )
|
||||
|
@ -2011,7 +2011,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
VULKAN_HPP_INLINE std::string to_string( VideoCodecOperationFlagsKHR value )
|
||||
{
|
||||
if ( !value )
|
||||
return "{}";
|
||||
return "None";
|
||||
|
||||
std::string result;
|
||||
#if defined( VK_ENABLE_BETA_EXTENSIONS )
|
||||
|
@ -2031,7 +2031,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
VULKAN_HPP_INLINE std::string to_string( VideoChromaSubsamplingFlagsKHR value )
|
||||
{
|
||||
if ( !value )
|
||||
return "{}";
|
||||
return "Invalid";
|
||||
|
||||
std::string result;
|
||||
if ( value & VideoChromaSubsamplingFlagBitsKHR::eMonochrome )
|
||||
|
@ -2049,7 +2049,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
VULKAN_HPP_INLINE std::string to_string( VideoComponentBitDepthFlagsKHR value )
|
||||
{
|
||||
if ( !value )
|
||||
return "{}";
|
||||
return "Invalid";
|
||||
|
||||
std::string result;
|
||||
if ( value & VideoComponentBitDepthFlagBitsKHR::e8 )
|
||||
|
@ -2140,7 +2140,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
VULKAN_HPP_INLINE std::string to_string( VideoDecodeUsageFlagsKHR value )
|
||||
{
|
||||
if ( !value )
|
||||
return "{}";
|
||||
return "Default";
|
||||
|
||||
std::string result;
|
||||
if ( value & VideoDecodeUsageFlagBitsKHR::eTranscoding )
|
||||
|
@ -2338,7 +2338,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
VULKAN_HPP_INLINE std::string to_string( VideoDecodeH264PictureLayoutFlagsKHR value )
|
||||
{
|
||||
if ( !value )
|
||||
return "{}";
|
||||
return "Progressive";
|
||||
|
||||
std::string result;
|
||||
if ( value & VideoDecodeH264PictureLayoutFlagBitsKHR::eInterlacedInterleavedLines )
|
||||
|
@ -2816,7 +2816,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
VULKAN_HPP_INLINE std::string to_string( VideoEncodeUsageFlagsKHR value )
|
||||
{
|
||||
if ( !value )
|
||||
return "{}";
|
||||
return "Default";
|
||||
|
||||
std::string result;
|
||||
if ( value & VideoEncodeUsageFlagBitsKHR::eTranscoding )
|
||||
|
@ -2834,7 +2834,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
VULKAN_HPP_INLINE std::string to_string( VideoEncodeContentFlagsKHR value )
|
||||
{
|
||||
if ( !value )
|
||||
return "{}";
|
||||
return "Default";
|
||||
|
||||
std::string result;
|
||||
if ( value & VideoEncodeContentFlagBitsKHR::eCamera )
|
||||
|
@ -2855,7 +2855,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
VULKAN_HPP_INLINE std::string to_string( VideoEncodeRateControlModeFlagsKHR value )
|
||||
{
|
||||
if ( !value )
|
||||
return "{}";
|
||||
return "Default";
|
||||
|
||||
std::string result;
|
||||
if ( value & VideoEncodeRateControlModeFlagBitsKHR::eDisabled )
|
||||
|
@ -2952,7 +2952,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
VULKAN_HPP_INLINE std::string to_string( ImageCompressionFlagsEXT value )
|
||||
{
|
||||
if ( !value )
|
||||
return "{}";
|
||||
return "Default";
|
||||
|
||||
std::string result;
|
||||
if ( value & ImageCompressionFlagBitsEXT::eFixedRateDefault )
|
||||
|
@ -2968,7 +2968,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
VULKAN_HPP_INLINE std::string to_string( ImageCompressionFixedRateFlagsEXT value )
|
||||
{
|
||||
if ( !value )
|
||||
return "{}";
|
||||
return "None";
|
||||
|
||||
std::string result;
|
||||
if ( value & ImageCompressionFixedRateFlagBitsEXT::e1Bpc )
|
||||
|
@ -3140,7 +3140,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
VULKAN_HPP_INLINE std::string to_string( OpticalFlowUsageFlagsNV value )
|
||||
{
|
||||
if ( !value )
|
||||
return "{}";
|
||||
return "Unknown";
|
||||
|
||||
std::string result;
|
||||
if ( value & OpticalFlowUsageFlagBitsNV::eInput )
|
||||
|
@ -3160,7 +3160,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
VULKAN_HPP_INLINE std::string to_string( OpticalFlowGridSizeFlagsNV value )
|
||||
{
|
||||
if ( !value )
|
||||
return "{}";
|
||||
return "Unknown";
|
||||
|
||||
std::string result;
|
||||
if ( value & OpticalFlowGridSizeFlagBitsNV::e1X1 )
|
||||
|
@ -4127,6 +4127,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||
case StructureType::ePhysicalDeviceShaderCoreBuiltinsFeaturesARM: return "PhysicalDeviceShaderCoreBuiltinsFeaturesARM";
|
||||
case StructureType::ePhysicalDeviceShaderCoreBuiltinsPropertiesARM: return "PhysicalDeviceShaderCoreBuiltinsPropertiesARM";
|
||||
case StructureType::ePhysicalDevicePipelineLibraryGroupHandlesFeaturesEXT: return "PhysicalDevicePipelineLibraryGroupHandlesFeaturesEXT";
|
||||
case StructureType::ePhysicalDeviceDynamicRenderingUnusedAttachmentsFeaturesEXT: return "PhysicalDeviceDynamicRenderingUnusedAttachmentsFeaturesEXT";
|
||||
case StructureType::ePhysicalDeviceMultiviewPerViewRenderAreasFeaturesQCOM: return "PhysicalDeviceMultiviewPerViewRenderAreasFeaturesQCOM";
|
||||
case StructureType::eMultiviewPerViewRenderAreasRenderPassBeginInfoQCOM: return "MultiviewPerViewRenderAreasRenderPassBeginInfoQCOM";
|
||||
case StructureType::ePhysicalDeviceAttachmentFeedbackLoopDynamicStateFeaturesEXT: return "PhysicalDeviceAttachmentFeedbackLoopDynamicStateFeaturesEXT";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue