headers: Update to Vulkan header version 1.1.101
Updated: - `include/vulkan/vulkan.hpp` - `include/vulkan/vulkan_core.h` - `registry/validusage.json` - `registry/vk.xml`
This commit is contained in:
parent
15e5c4db75
commit
8e2c4cd554
@ -56,7 +56,7 @@
|
|||||||
# define VULKAN_HPP_ASSERT assert
|
# define VULKAN_HPP_ASSERT assert
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static_assert( VK_HEADER_VERSION == 100 , "Wrong VK_HEADER_VERSION!" );
|
static_assert( VK_HEADER_VERSION == 101 , "Wrong VK_HEADER_VERSION!" );
|
||||||
|
|
||||||
// 32-bit vulkan is not typesafe for handles, so don't allow copy constructors on this platform by default.
|
// 32-bit vulkan is not typesafe for handles, so don't allow copy constructors on this platform by default.
|
||||||
// To enable this feature on 32-bit platforms please define VULKAN_HPP_TYPESAFE_CONVERSION
|
// To enable this feature on 32-bit platforms please define VULKAN_HPP_TYPESAFE_CONVERSION
|
||||||
@ -2065,6 +2065,11 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
return ::vkGetPhysicalDeviceCalibrateableTimeDomainsEXT( physicalDevice, pTimeDomainCount, pTimeDomains );
|
return ::vkGetPhysicalDeviceCalibrateableTimeDomainsEXT( physicalDevice, pTimeDomainCount, pTimeDomains );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
VkResult vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkCooperativeMatrixPropertiesNV* pProperties ) const
|
||||||
|
{
|
||||||
|
return ::vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( physicalDevice, pPropertyCount, pProperties );
|
||||||
|
}
|
||||||
|
|
||||||
VkResult vkGetPhysicalDeviceDisplayPlaneProperties2KHR( VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkDisplayPlaneProperties2KHR* pProperties ) const
|
VkResult vkGetPhysicalDeviceDisplayPlaneProperties2KHR( VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkDisplayPlaneProperties2KHR* pProperties ) const
|
||||||
{
|
{
|
||||||
return ::vkGetPhysicalDeviceDisplayPlaneProperties2KHR( physicalDevice, pPropertyCount, pProperties );
|
return ::vkGetPhysicalDeviceDisplayPlaneProperties2KHR( physicalDevice, pPropertyCount, pProperties );
|
||||||
@ -2891,6 +2896,40 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum class ComponentTypeNV
|
||||||
|
{
|
||||||
|
eFloat16 = VK_COMPONENT_TYPE_FLOAT16_NV,
|
||||||
|
eFloat32 = VK_COMPONENT_TYPE_FLOAT32_NV,
|
||||||
|
eFloat64 = VK_COMPONENT_TYPE_FLOAT64_NV,
|
||||||
|
eSint8 = VK_COMPONENT_TYPE_SINT8_NV,
|
||||||
|
eSint16 = VK_COMPONENT_TYPE_SINT16_NV,
|
||||||
|
eSint32 = VK_COMPONENT_TYPE_SINT32_NV,
|
||||||
|
eSint64 = VK_COMPONENT_TYPE_SINT64_NV,
|
||||||
|
eUint8 = VK_COMPONENT_TYPE_UINT8_NV,
|
||||||
|
eUint16 = VK_COMPONENT_TYPE_UINT16_NV,
|
||||||
|
eUint32 = VK_COMPONENT_TYPE_UINT32_NV,
|
||||||
|
eUint64 = VK_COMPONENT_TYPE_UINT64_NV
|
||||||
|
};
|
||||||
|
|
||||||
|
VULKAN_HPP_INLINE std::string to_string( ComponentTypeNV value )
|
||||||
|
{
|
||||||
|
switch ( value )
|
||||||
|
{
|
||||||
|
case ComponentTypeNV::eFloat16 : return "Float16";
|
||||||
|
case ComponentTypeNV::eFloat32 : return "Float32";
|
||||||
|
case ComponentTypeNV::eFloat64 : return "Float64";
|
||||||
|
case ComponentTypeNV::eSint8 : return "Sint8";
|
||||||
|
case ComponentTypeNV::eSint16 : return "Sint16";
|
||||||
|
case ComponentTypeNV::eSint32 : return "Sint32";
|
||||||
|
case ComponentTypeNV::eSint64 : return "Sint64";
|
||||||
|
case ComponentTypeNV::eUint8 : return "Uint8";
|
||||||
|
case ComponentTypeNV::eUint16 : return "Uint16";
|
||||||
|
case ComponentTypeNV::eUint32 : return "Uint32";
|
||||||
|
case ComponentTypeNV::eUint64 : return "Uint64";
|
||||||
|
default: return "invalid";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
enum class ConservativeRasterizationModeEXT
|
enum class ConservativeRasterizationModeEXT
|
||||||
{
|
{
|
||||||
eDisabled = VK_CONSERVATIVE_RASTERIZATION_MODE_DISABLED_EXT,
|
eDisabled = VK_CONSERVATIVE_RASTERIZATION_MODE_DISABLED_EXT,
|
||||||
@ -4520,6 +4559,26 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum class ScopeNV
|
||||||
|
{
|
||||||
|
eDevice = VK_SCOPE_DEVICE_NV,
|
||||||
|
eWorkgroup = VK_SCOPE_WORKGROUP_NV,
|
||||||
|
eSubgroup = VK_SCOPE_SUBGROUP_NV,
|
||||||
|
eQueueFamily = VK_SCOPE_QUEUE_FAMILY_NV
|
||||||
|
};
|
||||||
|
|
||||||
|
VULKAN_HPP_INLINE std::string to_string( ScopeNV value )
|
||||||
|
{
|
||||||
|
switch ( value )
|
||||||
|
{
|
||||||
|
case ScopeNV::eDevice : return "Device";
|
||||||
|
case ScopeNV::eWorkgroup : return "Workgroup";
|
||||||
|
case ScopeNV::eSubgroup : return "Subgroup";
|
||||||
|
case ScopeNV::eQueueFamily : return "QueueFamily";
|
||||||
|
default: return "invalid";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
enum class ShaderInfoTypeAMD
|
enum class ShaderInfoTypeAMD
|
||||||
{
|
{
|
||||||
eStatistics = VK_SHADER_INFO_TYPE_STATISTICS_AMD,
|
eStatistics = VK_SHADER_INFO_TYPE_STATISTICS_AMD,
|
||||||
@ -4811,6 +4870,8 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
ePipelineDiscardRectangleStateCreateInfoEXT = VK_STRUCTURE_TYPE_PIPELINE_DISCARD_RECTANGLE_STATE_CREATE_INFO_EXT,
|
ePipelineDiscardRectangleStateCreateInfoEXT = VK_STRUCTURE_TYPE_PIPELINE_DISCARD_RECTANGLE_STATE_CREATE_INFO_EXT,
|
||||||
ePhysicalDeviceConservativeRasterizationPropertiesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CONSERVATIVE_RASTERIZATION_PROPERTIES_EXT,
|
ePhysicalDeviceConservativeRasterizationPropertiesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CONSERVATIVE_RASTERIZATION_PROPERTIES_EXT,
|
||||||
ePipelineRasterizationConservativeStateCreateInfoEXT = VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_CONSERVATIVE_STATE_CREATE_INFO_EXT,
|
ePipelineRasterizationConservativeStateCreateInfoEXT = VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_CONSERVATIVE_STATE_CREATE_INFO_EXT,
|
||||||
|
ePhysicalDeviceDepthClipEnableFeaturesEXT = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_CLIP_ENABLE_FEATURES_EXT,
|
||||||
|
ePipelineRasterizationDepthClipStateCreateInfoEXT = VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_DEPTH_CLIP_STATE_CREATE_INFO_EXT,
|
||||||
eHdrMetadataEXT = VK_STRUCTURE_TYPE_HDR_METADATA_EXT,
|
eHdrMetadataEXT = VK_STRUCTURE_TYPE_HDR_METADATA_EXT,
|
||||||
eAttachmentDescription2KHR = VK_STRUCTURE_TYPE_ATTACHMENT_DESCRIPTION_2_KHR,
|
eAttachmentDescription2KHR = VK_STRUCTURE_TYPE_ATTACHMENT_DESCRIPTION_2_KHR,
|
||||||
eAttachmentReference2KHR = VK_STRUCTURE_TYPE_ATTACHMENT_REFERENCE_2_KHR,
|
eAttachmentReference2KHR = VK_STRUCTURE_TYPE_ATTACHMENT_REFERENCE_2_KHR,
|
||||||
@ -4936,6 +4997,9 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
eBufferDeviceAddressCreateInfoEXT = VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_CREATE_INFO_EXT,
|
eBufferDeviceAddressCreateInfoEXT = VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_CREATE_INFO_EXT,
|
||||||
eImageStencilUsageCreateInfoEXT = VK_STRUCTURE_TYPE_IMAGE_STENCIL_USAGE_CREATE_INFO_EXT,
|
eImageStencilUsageCreateInfoEXT = VK_STRUCTURE_TYPE_IMAGE_STENCIL_USAGE_CREATE_INFO_EXT,
|
||||||
eValidationFeaturesEXT = VK_STRUCTURE_TYPE_VALIDATION_FEATURES_EXT,
|
eValidationFeaturesEXT = VK_STRUCTURE_TYPE_VALIDATION_FEATURES_EXT,
|
||||||
|
ePhysicalDeviceCooperativeMatrixFeaturesNV = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COOPERATIVE_MATRIX_FEATURES_NV,
|
||||||
|
eCooperativeMatrixPropertiesNV = VK_STRUCTURE_TYPE_COOPERATIVE_MATRIX_PROPERTIES_NV,
|
||||||
|
ePhysicalDeviceCooperativeMatrixPropertiesNV = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COOPERATIVE_MATRIX_PROPERTIES_NV,
|
||||||
eDebugReportCreateInfoEXT = VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT,
|
eDebugReportCreateInfoEXT = VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT,
|
||||||
eRenderPassMultiviewCreateInfoKHR = VK_STRUCTURE_TYPE_RENDER_PASS_MULTIVIEW_CREATE_INFO_KHR,
|
eRenderPassMultiviewCreateInfoKHR = VK_STRUCTURE_TYPE_RENDER_PASS_MULTIVIEW_CREATE_INFO_KHR,
|
||||||
ePhysicalDeviceMultiviewFeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES_KHR,
|
ePhysicalDeviceMultiviewFeaturesKHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES_KHR,
|
||||||
@ -5193,6 +5257,8 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
case StructureType::ePipelineDiscardRectangleStateCreateInfoEXT : return "PipelineDiscardRectangleStateCreateInfoEXT";
|
case StructureType::ePipelineDiscardRectangleStateCreateInfoEXT : return "PipelineDiscardRectangleStateCreateInfoEXT";
|
||||||
case StructureType::ePhysicalDeviceConservativeRasterizationPropertiesEXT : return "PhysicalDeviceConservativeRasterizationPropertiesEXT";
|
case StructureType::ePhysicalDeviceConservativeRasterizationPropertiesEXT : return "PhysicalDeviceConservativeRasterizationPropertiesEXT";
|
||||||
case StructureType::ePipelineRasterizationConservativeStateCreateInfoEXT : return "PipelineRasterizationConservativeStateCreateInfoEXT";
|
case StructureType::ePipelineRasterizationConservativeStateCreateInfoEXT : return "PipelineRasterizationConservativeStateCreateInfoEXT";
|
||||||
|
case StructureType::ePhysicalDeviceDepthClipEnableFeaturesEXT : return "PhysicalDeviceDepthClipEnableFeaturesEXT";
|
||||||
|
case StructureType::ePipelineRasterizationDepthClipStateCreateInfoEXT : return "PipelineRasterizationDepthClipStateCreateInfoEXT";
|
||||||
case StructureType::eHdrMetadataEXT : return "HdrMetadataEXT";
|
case StructureType::eHdrMetadataEXT : return "HdrMetadataEXT";
|
||||||
case StructureType::eAttachmentDescription2KHR : return "AttachmentDescription2KHR";
|
case StructureType::eAttachmentDescription2KHR : return "AttachmentDescription2KHR";
|
||||||
case StructureType::eAttachmentReference2KHR : return "AttachmentReference2KHR";
|
case StructureType::eAttachmentReference2KHR : return "AttachmentReference2KHR";
|
||||||
@ -5318,6 +5384,9 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
case StructureType::eBufferDeviceAddressCreateInfoEXT : return "BufferDeviceAddressCreateInfoEXT";
|
case StructureType::eBufferDeviceAddressCreateInfoEXT : return "BufferDeviceAddressCreateInfoEXT";
|
||||||
case StructureType::eImageStencilUsageCreateInfoEXT : return "ImageStencilUsageCreateInfoEXT";
|
case StructureType::eImageStencilUsageCreateInfoEXT : return "ImageStencilUsageCreateInfoEXT";
|
||||||
case StructureType::eValidationFeaturesEXT : return "ValidationFeaturesEXT";
|
case StructureType::eValidationFeaturesEXT : return "ValidationFeaturesEXT";
|
||||||
|
case StructureType::ePhysicalDeviceCooperativeMatrixFeaturesNV : return "PhysicalDeviceCooperativeMatrixFeaturesNV";
|
||||||
|
case StructureType::eCooperativeMatrixPropertiesNV : return "CooperativeMatrixPropertiesNV";
|
||||||
|
case StructureType::ePhysicalDeviceCooperativeMatrixPropertiesNV : return "PhysicalDeviceCooperativeMatrixPropertiesNV";
|
||||||
default: return "invalid";
|
default: return "invalid";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -8620,6 +8689,21 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
return "{}";
|
return "{}";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum class PipelineRasterizationDepthClipStateCreateFlagBitsEXT
|
||||||
|
{};
|
||||||
|
|
||||||
|
VULKAN_HPP_INLINE std::string to_string( PipelineRasterizationDepthClipStateCreateFlagBitsEXT )
|
||||||
|
{
|
||||||
|
return "(void)";
|
||||||
|
}
|
||||||
|
|
||||||
|
using PipelineRasterizationDepthClipStateCreateFlagsEXT = Flags<PipelineRasterizationDepthClipStateCreateFlagBitsEXT, VkPipelineRasterizationDepthClipStateCreateFlagsEXT>;
|
||||||
|
|
||||||
|
VULKAN_HPP_INLINE std::string to_string( PipelineRasterizationDepthClipStateCreateFlagsEXT )
|
||||||
|
{
|
||||||
|
return "{}";
|
||||||
|
}
|
||||||
|
|
||||||
enum class PipelineRasterizationStateCreateFlagBits
|
enum class PipelineRasterizationStateCreateFlagBits
|
||||||
{};
|
{};
|
||||||
|
|
||||||
@ -10424,6 +10508,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
struct CommandPoolCreateInfo;
|
struct CommandPoolCreateInfo;
|
||||||
struct ComputePipelineCreateInfo;
|
struct ComputePipelineCreateInfo;
|
||||||
struct ConditionalRenderingBeginInfoEXT;
|
struct ConditionalRenderingBeginInfoEXT;
|
||||||
|
struct CooperativeMatrixPropertiesNV;
|
||||||
struct CopyDescriptorSet;
|
struct CopyDescriptorSet;
|
||||||
struct DebugMarkerMarkerInfoEXT;
|
struct DebugMarkerMarkerInfoEXT;
|
||||||
struct DebugMarkerObjectNameInfoEXT;
|
struct DebugMarkerObjectNameInfoEXT;
|
||||||
@ -15073,6 +15158,15 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
typename ResultValueType<std::vector<TimeDomainEXT,Allocator>>::type getCalibrateableTimeDomainsEXT(Allocator const& vectorAllocator, Dispatch const &d ) const;
|
typename ResultValueType<std::vector<TimeDomainEXT,Allocator>>::type getCalibrateableTimeDomainsEXT(Allocator const& vectorAllocator, Dispatch const &d ) const;
|
||||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||||
|
|
||||||
|
template<typename Dispatch = DispatchLoaderStatic>
|
||||||
|
Result getCooperativeMatrixPropertiesNV( uint32_t* pPropertyCount, CooperativeMatrixPropertiesNV* pProperties, Dispatch const &d = Dispatch() ) const;
|
||||||
|
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||||
|
template<typename Allocator = std::allocator<CooperativeMatrixPropertiesNV>, typename Dispatch = DispatchLoaderStatic>
|
||||||
|
typename ResultValueType<std::vector<CooperativeMatrixPropertiesNV,Allocator>>::type getCooperativeMatrixPropertiesNV(Dispatch const &d = Dispatch() ) const;
|
||||||
|
template<typename Allocator = std::allocator<CooperativeMatrixPropertiesNV>, typename Dispatch = DispatchLoaderStatic>
|
||||||
|
typename ResultValueType<std::vector<CooperativeMatrixPropertiesNV,Allocator>>::type getCooperativeMatrixPropertiesNV(Allocator const& vectorAllocator, Dispatch const &d ) const;
|
||||||
|
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||||
|
|
||||||
template<typename Dispatch = DispatchLoaderStatic>
|
template<typename Dispatch = DispatchLoaderStatic>
|
||||||
Result getDisplayPlaneProperties2KHR( uint32_t* pPropertyCount, DisplayPlaneProperties2KHR* pProperties, Dispatch const &d = Dispatch() ) const;
|
Result getDisplayPlaneProperties2KHR( uint32_t* pPropertyCount, DisplayPlaneProperties2KHR* pProperties, Dispatch const &d = Dispatch() ) const;
|
||||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||||
@ -21675,6 +21769,136 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
};
|
};
|
||||||
static_assert( sizeof( ConformanceVersionKHR ) == sizeof( VkConformanceVersionKHR ), "struct and wrapper have different size!" );
|
static_assert( sizeof( ConformanceVersionKHR ) == sizeof( VkConformanceVersionKHR ), "struct and wrapper have different size!" );
|
||||||
|
|
||||||
|
struct CooperativeMatrixPropertiesNV
|
||||||
|
{
|
||||||
|
CooperativeMatrixPropertiesNV( uint32_t MSize_ = 0,
|
||||||
|
uint32_t NSize_ = 0,
|
||||||
|
uint32_t KSize_ = 0,
|
||||||
|
ComponentTypeNV AType_ = ComponentTypeNV::eFloat16,
|
||||||
|
ComponentTypeNV BType_ = ComponentTypeNV::eFloat16,
|
||||||
|
ComponentTypeNV CType_ = ComponentTypeNV::eFloat16,
|
||||||
|
ComponentTypeNV DType_ = ComponentTypeNV::eFloat16,
|
||||||
|
ScopeNV scope_ = ScopeNV::eDevice )
|
||||||
|
: MSize( MSize_ )
|
||||||
|
, NSize( NSize_ )
|
||||||
|
, KSize( KSize_ )
|
||||||
|
, AType( AType_ )
|
||||||
|
, BType( BType_ )
|
||||||
|
, CType( CType_ )
|
||||||
|
, DType( DType_ )
|
||||||
|
, scope( scope_ )
|
||||||
|
{}
|
||||||
|
|
||||||
|
CooperativeMatrixPropertiesNV( VkCooperativeMatrixPropertiesNV const & rhs )
|
||||||
|
{
|
||||||
|
memcpy( this, &rhs, sizeof( CooperativeMatrixPropertiesNV ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
CooperativeMatrixPropertiesNV& operator=( VkCooperativeMatrixPropertiesNV const & rhs )
|
||||||
|
{
|
||||||
|
memcpy( this, &rhs, sizeof( CooperativeMatrixPropertiesNV ) );
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
CooperativeMatrixPropertiesNV & setPNext( void* pNext_ )
|
||||||
|
{
|
||||||
|
pNext = pNext_;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
CooperativeMatrixPropertiesNV & setMSize( uint32_t MSize_ )
|
||||||
|
{
|
||||||
|
MSize = MSize_;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
CooperativeMatrixPropertiesNV & setNSize( uint32_t NSize_ )
|
||||||
|
{
|
||||||
|
NSize = NSize_;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
CooperativeMatrixPropertiesNV & setKSize( uint32_t KSize_ )
|
||||||
|
{
|
||||||
|
KSize = KSize_;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
CooperativeMatrixPropertiesNV & setAType( ComponentTypeNV AType_ )
|
||||||
|
{
|
||||||
|
AType = AType_;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
CooperativeMatrixPropertiesNV & setBType( ComponentTypeNV BType_ )
|
||||||
|
{
|
||||||
|
BType = BType_;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
CooperativeMatrixPropertiesNV & setCType( ComponentTypeNV CType_ )
|
||||||
|
{
|
||||||
|
CType = CType_;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
CooperativeMatrixPropertiesNV & setDType( ComponentTypeNV DType_ )
|
||||||
|
{
|
||||||
|
DType = DType_;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
CooperativeMatrixPropertiesNV & setScope( ScopeNV scope_ )
|
||||||
|
{
|
||||||
|
scope = scope_;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
operator VkCooperativeMatrixPropertiesNV const&() const
|
||||||
|
{
|
||||||
|
return *reinterpret_cast<const VkCooperativeMatrixPropertiesNV*>( this );
|
||||||
|
}
|
||||||
|
|
||||||
|
operator VkCooperativeMatrixPropertiesNV &()
|
||||||
|
{
|
||||||
|
return *reinterpret_cast<VkCooperativeMatrixPropertiesNV*>( this );
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator==( CooperativeMatrixPropertiesNV const& rhs ) const
|
||||||
|
{
|
||||||
|
return ( sType == rhs.sType )
|
||||||
|
&& ( pNext == rhs.pNext )
|
||||||
|
&& ( MSize == rhs.MSize )
|
||||||
|
&& ( NSize == rhs.NSize )
|
||||||
|
&& ( KSize == rhs.KSize )
|
||||||
|
&& ( AType == rhs.AType )
|
||||||
|
&& ( BType == rhs.BType )
|
||||||
|
&& ( CType == rhs.CType )
|
||||||
|
&& ( DType == rhs.DType )
|
||||||
|
&& ( scope == rhs.scope );
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator!=( CooperativeMatrixPropertiesNV const& rhs ) const
|
||||||
|
{
|
||||||
|
return !operator==( rhs );
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
StructureType sType = StructureType::eCooperativeMatrixPropertiesNV;
|
||||||
|
|
||||||
|
public:
|
||||||
|
void* pNext = nullptr;
|
||||||
|
uint32_t MSize;
|
||||||
|
uint32_t NSize;
|
||||||
|
uint32_t KSize;
|
||||||
|
ComponentTypeNV AType;
|
||||||
|
ComponentTypeNV BType;
|
||||||
|
ComponentTypeNV CType;
|
||||||
|
ComponentTypeNV DType;
|
||||||
|
ScopeNV scope;
|
||||||
|
};
|
||||||
|
static_assert( sizeof( CooperativeMatrixPropertiesNV ) == sizeof( VkCooperativeMatrixPropertiesNV ), "struct and wrapper have different size!" );
|
||||||
|
|
||||||
struct CopyDescriptorSet
|
struct CopyDescriptorSet
|
||||||
{
|
{
|
||||||
CopyDescriptorSet( DescriptorSet srcSet_ = DescriptorSet(),
|
CopyDescriptorSet( DescriptorSet srcSet_ = DescriptorSet(),
|
||||||
@ -35239,6 +35463,109 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
};
|
};
|
||||||
static_assert( sizeof( PhysicalDeviceConservativeRasterizationPropertiesEXT ) == sizeof( VkPhysicalDeviceConservativeRasterizationPropertiesEXT ), "struct and wrapper have different size!" );
|
static_assert( sizeof( PhysicalDeviceConservativeRasterizationPropertiesEXT ) == sizeof( VkPhysicalDeviceConservativeRasterizationPropertiesEXT ), "struct and wrapper have different size!" );
|
||||||
|
|
||||||
|
struct PhysicalDeviceCooperativeMatrixFeaturesNV
|
||||||
|
{
|
||||||
|
PhysicalDeviceCooperativeMatrixFeaturesNV( Bool32 cooperativeMatrix_ = 0,
|
||||||
|
Bool32 cooperativeMatrixRobustBufferAccess_ = 0 )
|
||||||
|
: cooperativeMatrix( cooperativeMatrix_ )
|
||||||
|
, cooperativeMatrixRobustBufferAccess( cooperativeMatrixRobustBufferAccess_ )
|
||||||
|
{}
|
||||||
|
|
||||||
|
PhysicalDeviceCooperativeMatrixFeaturesNV( VkPhysicalDeviceCooperativeMatrixFeaturesNV const & rhs )
|
||||||
|
{
|
||||||
|
memcpy( this, &rhs, sizeof( PhysicalDeviceCooperativeMatrixFeaturesNV ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
PhysicalDeviceCooperativeMatrixFeaturesNV& operator=( VkPhysicalDeviceCooperativeMatrixFeaturesNV const & rhs )
|
||||||
|
{
|
||||||
|
memcpy( this, &rhs, sizeof( PhysicalDeviceCooperativeMatrixFeaturesNV ) );
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
PhysicalDeviceCooperativeMatrixFeaturesNV & setPNext( void* pNext_ )
|
||||||
|
{
|
||||||
|
pNext = pNext_;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
PhysicalDeviceCooperativeMatrixFeaturesNV & setCooperativeMatrix( Bool32 cooperativeMatrix_ )
|
||||||
|
{
|
||||||
|
cooperativeMatrix = cooperativeMatrix_;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
PhysicalDeviceCooperativeMatrixFeaturesNV & setCooperativeMatrixRobustBufferAccess( Bool32 cooperativeMatrixRobustBufferAccess_ )
|
||||||
|
{
|
||||||
|
cooperativeMatrixRobustBufferAccess = cooperativeMatrixRobustBufferAccess_;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
operator VkPhysicalDeviceCooperativeMatrixFeaturesNV const&() const
|
||||||
|
{
|
||||||
|
return *reinterpret_cast<const VkPhysicalDeviceCooperativeMatrixFeaturesNV*>( this );
|
||||||
|
}
|
||||||
|
|
||||||
|
operator VkPhysicalDeviceCooperativeMatrixFeaturesNV &()
|
||||||
|
{
|
||||||
|
return *reinterpret_cast<VkPhysicalDeviceCooperativeMatrixFeaturesNV*>( this );
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator==( PhysicalDeviceCooperativeMatrixFeaturesNV const& rhs ) const
|
||||||
|
{
|
||||||
|
return ( sType == rhs.sType )
|
||||||
|
&& ( pNext == rhs.pNext )
|
||||||
|
&& ( cooperativeMatrix == rhs.cooperativeMatrix )
|
||||||
|
&& ( cooperativeMatrixRobustBufferAccess == rhs.cooperativeMatrixRobustBufferAccess );
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator!=( PhysicalDeviceCooperativeMatrixFeaturesNV const& rhs ) const
|
||||||
|
{
|
||||||
|
return !operator==( rhs );
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
StructureType sType = StructureType::ePhysicalDeviceCooperativeMatrixFeaturesNV;
|
||||||
|
|
||||||
|
public:
|
||||||
|
void* pNext = nullptr;
|
||||||
|
Bool32 cooperativeMatrix;
|
||||||
|
Bool32 cooperativeMatrixRobustBufferAccess;
|
||||||
|
};
|
||||||
|
static_assert( sizeof( PhysicalDeviceCooperativeMatrixFeaturesNV ) == sizeof( VkPhysicalDeviceCooperativeMatrixFeaturesNV ), "struct and wrapper have different size!" );
|
||||||
|
|
||||||
|
struct PhysicalDeviceCooperativeMatrixPropertiesNV
|
||||||
|
{
|
||||||
|
operator VkPhysicalDeviceCooperativeMatrixPropertiesNV const&() const
|
||||||
|
{
|
||||||
|
return *reinterpret_cast<const VkPhysicalDeviceCooperativeMatrixPropertiesNV*>( this );
|
||||||
|
}
|
||||||
|
|
||||||
|
operator VkPhysicalDeviceCooperativeMatrixPropertiesNV &()
|
||||||
|
{
|
||||||
|
return *reinterpret_cast<VkPhysicalDeviceCooperativeMatrixPropertiesNV*>( this );
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator==( PhysicalDeviceCooperativeMatrixPropertiesNV const& rhs ) const
|
||||||
|
{
|
||||||
|
return ( sType == rhs.sType )
|
||||||
|
&& ( pNext == rhs.pNext )
|
||||||
|
&& ( cooperativeMatrixSupportedStages == rhs.cooperativeMatrixSupportedStages );
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator!=( PhysicalDeviceCooperativeMatrixPropertiesNV const& rhs ) const
|
||||||
|
{
|
||||||
|
return !operator==( rhs );
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
StructureType sType = StructureType::ePhysicalDeviceCooperativeMatrixPropertiesNV;
|
||||||
|
|
||||||
|
public:
|
||||||
|
void* pNext = nullptr;
|
||||||
|
ShaderStageFlags cooperativeMatrixSupportedStages;
|
||||||
|
};
|
||||||
|
static_assert( sizeof( PhysicalDeviceCooperativeMatrixPropertiesNV ) == sizeof( VkPhysicalDeviceCooperativeMatrixPropertiesNV ), "struct and wrapper have different size!" );
|
||||||
|
|
||||||
struct PhysicalDeviceCornerSampledImageFeaturesNV
|
struct PhysicalDeviceCornerSampledImageFeaturesNV
|
||||||
{
|
{
|
||||||
PhysicalDeviceCornerSampledImageFeaturesNV( Bool32 cornerSampledImage_ = 0 )
|
PhysicalDeviceCornerSampledImageFeaturesNV( Bool32 cornerSampledImage_ = 0 )
|
||||||
@ -35359,6 +35686,66 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
};
|
};
|
||||||
static_assert( sizeof( PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV ) == sizeof( VkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV ), "struct and wrapper have different size!" );
|
static_assert( sizeof( PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV ) == sizeof( VkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV ), "struct and wrapper have different size!" );
|
||||||
|
|
||||||
|
struct PhysicalDeviceDepthClipEnableFeaturesEXT
|
||||||
|
{
|
||||||
|
PhysicalDeviceDepthClipEnableFeaturesEXT( Bool32 depthClipEnable_ = 0 )
|
||||||
|
: depthClipEnable( depthClipEnable_ )
|
||||||
|
{}
|
||||||
|
|
||||||
|
PhysicalDeviceDepthClipEnableFeaturesEXT( VkPhysicalDeviceDepthClipEnableFeaturesEXT const & rhs )
|
||||||
|
{
|
||||||
|
memcpy( this, &rhs, sizeof( PhysicalDeviceDepthClipEnableFeaturesEXT ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
PhysicalDeviceDepthClipEnableFeaturesEXT& operator=( VkPhysicalDeviceDepthClipEnableFeaturesEXT const & rhs )
|
||||||
|
{
|
||||||
|
memcpy( this, &rhs, sizeof( PhysicalDeviceDepthClipEnableFeaturesEXT ) );
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
PhysicalDeviceDepthClipEnableFeaturesEXT & setPNext( void* pNext_ )
|
||||||
|
{
|
||||||
|
pNext = pNext_;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
PhysicalDeviceDepthClipEnableFeaturesEXT & setDepthClipEnable( Bool32 depthClipEnable_ )
|
||||||
|
{
|
||||||
|
depthClipEnable = depthClipEnable_;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
operator VkPhysicalDeviceDepthClipEnableFeaturesEXT const&() const
|
||||||
|
{
|
||||||
|
return *reinterpret_cast<const VkPhysicalDeviceDepthClipEnableFeaturesEXT*>( this );
|
||||||
|
}
|
||||||
|
|
||||||
|
operator VkPhysicalDeviceDepthClipEnableFeaturesEXT &()
|
||||||
|
{
|
||||||
|
return *reinterpret_cast<VkPhysicalDeviceDepthClipEnableFeaturesEXT*>( this );
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator==( PhysicalDeviceDepthClipEnableFeaturesEXT const& rhs ) const
|
||||||
|
{
|
||||||
|
return ( sType == rhs.sType )
|
||||||
|
&& ( pNext == rhs.pNext )
|
||||||
|
&& ( depthClipEnable == rhs.depthClipEnable );
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator!=( PhysicalDeviceDepthClipEnableFeaturesEXT const& rhs ) const
|
||||||
|
{
|
||||||
|
return !operator==( rhs );
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
StructureType sType = StructureType::ePhysicalDeviceDepthClipEnableFeaturesEXT;
|
||||||
|
|
||||||
|
public:
|
||||||
|
void* pNext = nullptr;
|
||||||
|
Bool32 depthClipEnable;
|
||||||
|
};
|
||||||
|
static_assert( sizeof( PhysicalDeviceDepthClipEnableFeaturesEXT ) == sizeof( VkPhysicalDeviceDepthClipEnableFeaturesEXT ), "struct and wrapper have different size!" );
|
||||||
|
|
||||||
struct PhysicalDeviceDepthStencilResolvePropertiesKHR
|
struct PhysicalDeviceDepthStencilResolvePropertiesKHR
|
||||||
{
|
{
|
||||||
operator VkPhysicalDeviceDepthStencilResolvePropertiesKHR const&() const
|
operator VkPhysicalDeviceDepthStencilResolvePropertiesKHR const&() const
|
||||||
@ -39840,6 +40227,76 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
};
|
};
|
||||||
static_assert( sizeof( PipelineRasterizationConservativeStateCreateInfoEXT ) == sizeof( VkPipelineRasterizationConservativeStateCreateInfoEXT ), "struct and wrapper have different size!" );
|
static_assert( sizeof( PipelineRasterizationConservativeStateCreateInfoEXT ) == sizeof( VkPipelineRasterizationConservativeStateCreateInfoEXT ), "struct and wrapper have different size!" );
|
||||||
|
|
||||||
|
struct PipelineRasterizationDepthClipStateCreateInfoEXT
|
||||||
|
{
|
||||||
|
PipelineRasterizationDepthClipStateCreateInfoEXT( PipelineRasterizationDepthClipStateCreateFlagsEXT flags_ = PipelineRasterizationDepthClipStateCreateFlagsEXT(),
|
||||||
|
Bool32 depthClipEnable_ = 0 )
|
||||||
|
: flags( flags_ )
|
||||||
|
, depthClipEnable( depthClipEnable_ )
|
||||||
|
{}
|
||||||
|
|
||||||
|
PipelineRasterizationDepthClipStateCreateInfoEXT( VkPipelineRasterizationDepthClipStateCreateInfoEXT const & rhs )
|
||||||
|
{
|
||||||
|
memcpy( this, &rhs, sizeof( PipelineRasterizationDepthClipStateCreateInfoEXT ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
PipelineRasterizationDepthClipStateCreateInfoEXT& operator=( VkPipelineRasterizationDepthClipStateCreateInfoEXT const & rhs )
|
||||||
|
{
|
||||||
|
memcpy( this, &rhs, sizeof( PipelineRasterizationDepthClipStateCreateInfoEXT ) );
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
PipelineRasterizationDepthClipStateCreateInfoEXT & setPNext( const void* pNext_ )
|
||||||
|
{
|
||||||
|
pNext = pNext_;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
PipelineRasterizationDepthClipStateCreateInfoEXT & setFlags( PipelineRasterizationDepthClipStateCreateFlagsEXT flags_ )
|
||||||
|
{
|
||||||
|
flags = flags_;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
PipelineRasterizationDepthClipStateCreateInfoEXT & setDepthClipEnable( Bool32 depthClipEnable_ )
|
||||||
|
{
|
||||||
|
depthClipEnable = depthClipEnable_;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
operator VkPipelineRasterizationDepthClipStateCreateInfoEXT const&() const
|
||||||
|
{
|
||||||
|
return *reinterpret_cast<const VkPipelineRasterizationDepthClipStateCreateInfoEXT*>( this );
|
||||||
|
}
|
||||||
|
|
||||||
|
operator VkPipelineRasterizationDepthClipStateCreateInfoEXT &()
|
||||||
|
{
|
||||||
|
return *reinterpret_cast<VkPipelineRasterizationDepthClipStateCreateInfoEXT*>( this );
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator==( PipelineRasterizationDepthClipStateCreateInfoEXT const& rhs ) const
|
||||||
|
{
|
||||||
|
return ( sType == rhs.sType )
|
||||||
|
&& ( pNext == rhs.pNext )
|
||||||
|
&& ( flags == rhs.flags )
|
||||||
|
&& ( depthClipEnable == rhs.depthClipEnable );
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator!=( PipelineRasterizationDepthClipStateCreateInfoEXT const& rhs ) const
|
||||||
|
{
|
||||||
|
return !operator==( rhs );
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
StructureType sType = StructureType::ePipelineRasterizationDepthClipStateCreateInfoEXT;
|
||||||
|
|
||||||
|
public:
|
||||||
|
const void* pNext = nullptr;
|
||||||
|
PipelineRasterizationDepthClipStateCreateFlagsEXT flags;
|
||||||
|
Bool32 depthClipEnable;
|
||||||
|
};
|
||||||
|
static_assert( sizeof( PipelineRasterizationDepthClipStateCreateInfoEXT ) == sizeof( VkPipelineRasterizationDepthClipStateCreateInfoEXT ), "struct and wrapper have different size!" );
|
||||||
|
|
||||||
struct PipelineRasterizationStateRasterizationOrderAMD
|
struct PipelineRasterizationStateRasterizationOrderAMD
|
||||||
{
|
{
|
||||||
PipelineRasterizationStateRasterizationOrderAMD( RasterizationOrderAMD rasterizationOrder_ = RasterizationOrderAMD::eStrict )
|
PipelineRasterizationStateRasterizationOrderAMD( RasterizationOrderAMD rasterizationOrder_ = RasterizationOrderAMD::eStrict )
|
||||||
@ -52185,6 +52642,58 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
}
|
}
|
||||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||||
|
|
||||||
|
template<typename Dispatch>
|
||||||
|
VULKAN_HPP_INLINE Result PhysicalDevice::getCooperativeMatrixPropertiesNV( uint32_t* pPropertyCount, CooperativeMatrixPropertiesNV* pProperties, Dispatch const &d) const
|
||||||
|
{
|
||||||
|
return static_cast<Result>( d.vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( m_physicalDevice, pPropertyCount, reinterpret_cast<VkCooperativeMatrixPropertiesNV*>( pProperties ) ) );
|
||||||
|
}
|
||||||
|
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||||
|
template<typename Allocator, typename Dispatch>
|
||||||
|
VULKAN_HPP_INLINE typename ResultValueType<std::vector<CooperativeMatrixPropertiesNV,Allocator>>::type PhysicalDevice::getCooperativeMatrixPropertiesNV(Dispatch const &d ) const
|
||||||
|
{
|
||||||
|
std::vector<CooperativeMatrixPropertiesNV,Allocator> properties;
|
||||||
|
uint32_t propertyCount;
|
||||||
|
Result result;
|
||||||
|
do
|
||||||
|
{
|
||||||
|
result = static_cast<Result>( d.vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( m_physicalDevice, &propertyCount, nullptr ) );
|
||||||
|
if ( ( result == Result::eSuccess ) && propertyCount )
|
||||||
|
{
|
||||||
|
properties.resize( propertyCount );
|
||||||
|
result = static_cast<Result>( d.vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( m_physicalDevice, &propertyCount, reinterpret_cast<VkCooperativeMatrixPropertiesNV*>( properties.data() ) ) );
|
||||||
|
}
|
||||||
|
} while ( result == Result::eIncomplete );
|
||||||
|
if ( result == Result::eSuccess )
|
||||||
|
{
|
||||||
|
VULKAN_HPP_ASSERT( propertyCount <= properties.size() );
|
||||||
|
properties.resize( propertyCount );
|
||||||
|
}
|
||||||
|
return createResultValue( result, properties, VULKAN_HPP_NAMESPACE_STRING"::PhysicalDevice::getCooperativeMatrixPropertiesNV" );
|
||||||
|
}
|
||||||
|
template<typename Allocator, typename Dispatch>
|
||||||
|
VULKAN_HPP_INLINE typename ResultValueType<std::vector<CooperativeMatrixPropertiesNV,Allocator>>::type PhysicalDevice::getCooperativeMatrixPropertiesNV(Allocator const& vectorAllocator, Dispatch const &d ) const
|
||||||
|
{
|
||||||
|
std::vector<CooperativeMatrixPropertiesNV,Allocator> properties( vectorAllocator );
|
||||||
|
uint32_t propertyCount;
|
||||||
|
Result result;
|
||||||
|
do
|
||||||
|
{
|
||||||
|
result = static_cast<Result>( d.vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( m_physicalDevice, &propertyCount, nullptr ) );
|
||||||
|
if ( ( result == Result::eSuccess ) && propertyCount )
|
||||||
|
{
|
||||||
|
properties.resize( propertyCount );
|
||||||
|
result = static_cast<Result>( d.vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( m_physicalDevice, &propertyCount, reinterpret_cast<VkCooperativeMatrixPropertiesNV*>( properties.data() ) ) );
|
||||||
|
}
|
||||||
|
} while ( result == Result::eIncomplete );
|
||||||
|
if ( result == Result::eSuccess )
|
||||||
|
{
|
||||||
|
VULKAN_HPP_ASSERT( propertyCount <= properties.size() );
|
||||||
|
properties.resize( propertyCount );
|
||||||
|
}
|
||||||
|
return createResultValue( result, properties, VULKAN_HPP_NAMESPACE_STRING"::PhysicalDevice::getCooperativeMatrixPropertiesNV" );
|
||||||
|
}
|
||||||
|
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||||
|
|
||||||
template<typename Dispatch>
|
template<typename Dispatch>
|
||||||
VULKAN_HPP_INLINE Result PhysicalDevice::getDisplayPlaneProperties2KHR( uint32_t* pPropertyCount, DisplayPlaneProperties2KHR* pProperties, Dispatch const &d) const
|
VULKAN_HPP_INLINE Result PhysicalDevice::getDisplayPlaneProperties2KHR( uint32_t* pPropertyCount, DisplayPlaneProperties2KHR* pProperties, Dispatch const &d) const
|
||||||
{
|
{
|
||||||
@ -53637,10 +54146,15 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
template <> struct isStructureChainValid<PhysicalDeviceFeatures2, PhysicalDeviceConditionalRenderingFeaturesEXT>{ enum { value = true }; };
|
template <> struct isStructureChainValid<PhysicalDeviceFeatures2, PhysicalDeviceConditionalRenderingFeaturesEXT>{ enum { value = true }; };
|
||||||
template <> struct isStructureChainValid<DeviceCreateInfo, PhysicalDeviceConditionalRenderingFeaturesEXT>{ enum { value = true }; };
|
template <> struct isStructureChainValid<DeviceCreateInfo, PhysicalDeviceConditionalRenderingFeaturesEXT>{ enum { value = true }; };
|
||||||
template <> struct isStructureChainValid<PhysicalDeviceProperties2, PhysicalDeviceConservativeRasterizationPropertiesEXT>{ enum { value = true }; };
|
template <> struct isStructureChainValid<PhysicalDeviceProperties2, PhysicalDeviceConservativeRasterizationPropertiesEXT>{ enum { value = true }; };
|
||||||
|
template <> struct isStructureChainValid<PhysicalDeviceFeatures2, PhysicalDeviceCooperativeMatrixFeaturesNV>{ enum { value = true }; };
|
||||||
|
template <> struct isStructureChainValid<DeviceCreateInfo, PhysicalDeviceCooperativeMatrixFeaturesNV>{ enum { value = true }; };
|
||||||
|
template <> struct isStructureChainValid<PhysicalDeviceProperties2, PhysicalDeviceCooperativeMatrixPropertiesNV>{ enum { value = true }; };
|
||||||
template <> struct isStructureChainValid<PhysicalDeviceFeatures2, PhysicalDeviceCornerSampledImageFeaturesNV>{ enum { value = true }; };
|
template <> struct isStructureChainValid<PhysicalDeviceFeatures2, PhysicalDeviceCornerSampledImageFeaturesNV>{ enum { value = true }; };
|
||||||
template <> struct isStructureChainValid<DeviceCreateInfo, PhysicalDeviceCornerSampledImageFeaturesNV>{ enum { value = true }; };
|
template <> struct isStructureChainValid<DeviceCreateInfo, PhysicalDeviceCornerSampledImageFeaturesNV>{ enum { value = true }; };
|
||||||
template <> struct isStructureChainValid<PhysicalDeviceFeatures2, PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV>{ enum { value = true }; };
|
template <> struct isStructureChainValid<PhysicalDeviceFeatures2, PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV>{ enum { value = true }; };
|
||||||
template <> struct isStructureChainValid<DeviceCreateInfo, PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV>{ enum { value = true }; };
|
template <> struct isStructureChainValid<DeviceCreateInfo, PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV>{ enum { value = true }; };
|
||||||
|
template <> struct isStructureChainValid<PhysicalDeviceFeatures2, PhysicalDeviceDepthClipEnableFeaturesEXT>{ enum { value = true }; };
|
||||||
|
template <> struct isStructureChainValid<DeviceCreateInfo, PhysicalDeviceDepthClipEnableFeaturesEXT>{ enum { value = true }; };
|
||||||
template <> struct isStructureChainValid<PhysicalDeviceProperties2, PhysicalDeviceDepthStencilResolvePropertiesKHR>{ enum { value = true }; };
|
template <> struct isStructureChainValid<PhysicalDeviceProperties2, PhysicalDeviceDepthStencilResolvePropertiesKHR>{ enum { value = true }; };
|
||||||
template <> struct isStructureChainValid<PhysicalDeviceFeatures2, PhysicalDeviceDescriptorIndexingFeaturesEXT>{ enum { value = true }; };
|
template <> struct isStructureChainValid<PhysicalDeviceFeatures2, PhysicalDeviceDescriptorIndexingFeaturesEXT>{ enum { value = true }; };
|
||||||
template <> struct isStructureChainValid<DeviceCreateInfo, PhysicalDeviceDescriptorIndexingFeaturesEXT>{ enum { value = true }; };
|
template <> struct isStructureChainValid<DeviceCreateInfo, PhysicalDeviceDescriptorIndexingFeaturesEXT>{ enum { value = true }; };
|
||||||
@ -53718,6 +54232,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
template <> struct isStructureChainValid<PipelineMultisampleStateCreateInfo, PipelineCoverageToColorStateCreateInfoNV>{ enum { value = true }; };
|
template <> struct isStructureChainValid<PipelineMultisampleStateCreateInfo, PipelineCoverageToColorStateCreateInfoNV>{ enum { value = true }; };
|
||||||
template <> struct isStructureChainValid<GraphicsPipelineCreateInfo, PipelineDiscardRectangleStateCreateInfoEXT>{ enum { value = true }; };
|
template <> struct isStructureChainValid<GraphicsPipelineCreateInfo, PipelineDiscardRectangleStateCreateInfoEXT>{ enum { value = true }; };
|
||||||
template <> struct isStructureChainValid<PipelineRasterizationStateCreateInfo, PipelineRasterizationConservativeStateCreateInfoEXT>{ enum { value = true }; };
|
template <> struct isStructureChainValid<PipelineRasterizationStateCreateInfo, PipelineRasterizationConservativeStateCreateInfoEXT>{ enum { value = true }; };
|
||||||
|
template <> struct isStructureChainValid<PipelineRasterizationStateCreateInfo, PipelineRasterizationDepthClipStateCreateInfoEXT>{ enum { value = true }; };
|
||||||
template <> struct isStructureChainValid<PipelineRasterizationStateCreateInfo, PipelineRasterizationStateRasterizationOrderAMD>{ enum { value = true }; };
|
template <> struct isStructureChainValid<PipelineRasterizationStateCreateInfo, PipelineRasterizationStateRasterizationOrderAMD>{ enum { value = true }; };
|
||||||
template <> struct isStructureChainValid<PipelineRasterizationStateCreateInfo, PipelineRasterizationStateStreamCreateInfoEXT>{ enum { value = true }; };
|
template <> struct isStructureChainValid<PipelineRasterizationStateCreateInfo, PipelineRasterizationStateStreamCreateInfoEXT>{ enum { value = true }; };
|
||||||
template <> struct isStructureChainValid<GraphicsPipelineCreateInfo, PipelineRepresentativeFragmentTestStateCreateInfoNV>{ enum { value = true }; };
|
template <> struct isStructureChainValid<GraphicsPipelineCreateInfo, PipelineRepresentativeFragmentTestStateCreateInfoNV>{ enum { value = true }; };
|
||||||
@ -54085,6 +54600,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
PFN_vkGetDisplayPlaneCapabilitiesKHR vkGetDisplayPlaneCapabilitiesKHR = 0;
|
PFN_vkGetDisplayPlaneCapabilitiesKHR vkGetDisplayPlaneCapabilitiesKHR = 0;
|
||||||
PFN_vkGetDisplayPlaneSupportedDisplaysKHR vkGetDisplayPlaneSupportedDisplaysKHR = 0;
|
PFN_vkGetDisplayPlaneSupportedDisplaysKHR vkGetDisplayPlaneSupportedDisplaysKHR = 0;
|
||||||
PFN_vkGetPhysicalDeviceCalibrateableTimeDomainsEXT vkGetPhysicalDeviceCalibrateableTimeDomainsEXT = 0;
|
PFN_vkGetPhysicalDeviceCalibrateableTimeDomainsEXT vkGetPhysicalDeviceCalibrateableTimeDomainsEXT = 0;
|
||||||
|
PFN_vkGetPhysicalDeviceCooperativeMatrixPropertiesNV vkGetPhysicalDeviceCooperativeMatrixPropertiesNV = 0;
|
||||||
PFN_vkGetPhysicalDeviceDisplayPlaneProperties2KHR vkGetPhysicalDeviceDisplayPlaneProperties2KHR = 0;
|
PFN_vkGetPhysicalDeviceDisplayPlaneProperties2KHR vkGetPhysicalDeviceDisplayPlaneProperties2KHR = 0;
|
||||||
PFN_vkGetPhysicalDeviceDisplayPlanePropertiesKHR vkGetPhysicalDeviceDisplayPlanePropertiesKHR = 0;
|
PFN_vkGetPhysicalDeviceDisplayPlanePropertiesKHR vkGetPhysicalDeviceDisplayPlanePropertiesKHR = 0;
|
||||||
PFN_vkGetPhysicalDeviceDisplayProperties2KHR vkGetPhysicalDeviceDisplayProperties2KHR = 0;
|
PFN_vkGetPhysicalDeviceDisplayProperties2KHR vkGetPhysicalDeviceDisplayProperties2KHR = 0;
|
||||||
@ -54488,6 +55004,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
vkGetDisplayPlaneCapabilitiesKHR = PFN_vkGetDisplayPlaneCapabilitiesKHR( vkGetInstanceProcAddr( instance, "vkGetDisplayPlaneCapabilitiesKHR" ) );
|
vkGetDisplayPlaneCapabilitiesKHR = PFN_vkGetDisplayPlaneCapabilitiesKHR( vkGetInstanceProcAddr( instance, "vkGetDisplayPlaneCapabilitiesKHR" ) );
|
||||||
vkGetDisplayPlaneSupportedDisplaysKHR = PFN_vkGetDisplayPlaneSupportedDisplaysKHR( vkGetInstanceProcAddr( instance, "vkGetDisplayPlaneSupportedDisplaysKHR" ) );
|
vkGetDisplayPlaneSupportedDisplaysKHR = PFN_vkGetDisplayPlaneSupportedDisplaysKHR( vkGetInstanceProcAddr( instance, "vkGetDisplayPlaneSupportedDisplaysKHR" ) );
|
||||||
vkGetPhysicalDeviceCalibrateableTimeDomainsEXT = PFN_vkGetPhysicalDeviceCalibrateableTimeDomainsEXT( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceCalibrateableTimeDomainsEXT" ) );
|
vkGetPhysicalDeviceCalibrateableTimeDomainsEXT = PFN_vkGetPhysicalDeviceCalibrateableTimeDomainsEXT( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceCalibrateableTimeDomainsEXT" ) );
|
||||||
|
vkGetPhysicalDeviceCooperativeMatrixPropertiesNV = PFN_vkGetPhysicalDeviceCooperativeMatrixPropertiesNV( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceCooperativeMatrixPropertiesNV" ) );
|
||||||
vkGetPhysicalDeviceDisplayPlaneProperties2KHR = PFN_vkGetPhysicalDeviceDisplayPlaneProperties2KHR( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceDisplayPlaneProperties2KHR" ) );
|
vkGetPhysicalDeviceDisplayPlaneProperties2KHR = PFN_vkGetPhysicalDeviceDisplayPlaneProperties2KHR( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceDisplayPlaneProperties2KHR" ) );
|
||||||
vkGetPhysicalDeviceDisplayPlanePropertiesKHR = PFN_vkGetPhysicalDeviceDisplayPlanePropertiesKHR( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceDisplayPlanePropertiesKHR" ) );
|
vkGetPhysicalDeviceDisplayPlanePropertiesKHR = PFN_vkGetPhysicalDeviceDisplayPlanePropertiesKHR( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceDisplayPlanePropertiesKHR" ) );
|
||||||
vkGetPhysicalDeviceDisplayProperties2KHR = PFN_vkGetPhysicalDeviceDisplayProperties2KHR( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceDisplayProperties2KHR" ) );
|
vkGetPhysicalDeviceDisplayProperties2KHR = PFN_vkGetPhysicalDeviceDisplayProperties2KHR( vkGetInstanceProcAddr( instance, "vkGetPhysicalDeviceDisplayProperties2KHR" ) );
|
||||||
|
@ -43,7 +43,7 @@ extern "C" {
|
|||||||
#define VK_VERSION_MINOR(version) (((uint32_t)(version) >> 12) & 0x3ff)
|
#define VK_VERSION_MINOR(version) (((uint32_t)(version) >> 12) & 0x3ff)
|
||||||
#define VK_VERSION_PATCH(version) ((uint32_t)(version) & 0xfff)
|
#define VK_VERSION_PATCH(version) ((uint32_t)(version) & 0xfff)
|
||||||
// Version of this file
|
// Version of this file
|
||||||
#define VK_HEADER_VERSION 100
|
#define VK_HEADER_VERSION 101
|
||||||
|
|
||||||
|
|
||||||
#define VK_NULL_HANDLE 0
|
#define VK_NULL_HANDLE 0
|
||||||
@ -349,6 +349,8 @@ typedef enum VkStructureType {
|
|||||||
VK_STRUCTURE_TYPE_PIPELINE_DISCARD_RECTANGLE_STATE_CREATE_INFO_EXT = 1000099001,
|
VK_STRUCTURE_TYPE_PIPELINE_DISCARD_RECTANGLE_STATE_CREATE_INFO_EXT = 1000099001,
|
||||||
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CONSERVATIVE_RASTERIZATION_PROPERTIES_EXT = 1000101000,
|
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CONSERVATIVE_RASTERIZATION_PROPERTIES_EXT = 1000101000,
|
||||||
VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_CONSERVATIVE_STATE_CREATE_INFO_EXT = 1000101001,
|
VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_CONSERVATIVE_STATE_CREATE_INFO_EXT = 1000101001,
|
||||||
|
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_CLIP_ENABLE_FEATURES_EXT = 1000102000,
|
||||||
|
VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_DEPTH_CLIP_STATE_CREATE_INFO_EXT = 1000102001,
|
||||||
VK_STRUCTURE_TYPE_HDR_METADATA_EXT = 1000105000,
|
VK_STRUCTURE_TYPE_HDR_METADATA_EXT = 1000105000,
|
||||||
VK_STRUCTURE_TYPE_ATTACHMENT_DESCRIPTION_2_KHR = 1000109000,
|
VK_STRUCTURE_TYPE_ATTACHMENT_DESCRIPTION_2_KHR = 1000109000,
|
||||||
VK_STRUCTURE_TYPE_ATTACHMENT_REFERENCE_2_KHR = 1000109001,
|
VK_STRUCTURE_TYPE_ATTACHMENT_REFERENCE_2_KHR = 1000109001,
|
||||||
@ -474,6 +476,9 @@ typedef enum VkStructureType {
|
|||||||
VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_CREATE_INFO_EXT = 1000244002,
|
VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_CREATE_INFO_EXT = 1000244002,
|
||||||
VK_STRUCTURE_TYPE_IMAGE_STENCIL_USAGE_CREATE_INFO_EXT = 1000246000,
|
VK_STRUCTURE_TYPE_IMAGE_STENCIL_USAGE_CREATE_INFO_EXT = 1000246000,
|
||||||
VK_STRUCTURE_TYPE_VALIDATION_FEATURES_EXT = 1000247000,
|
VK_STRUCTURE_TYPE_VALIDATION_FEATURES_EXT = 1000247000,
|
||||||
|
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COOPERATIVE_MATRIX_FEATURES_NV = 1000249000,
|
||||||
|
VK_STRUCTURE_TYPE_COOPERATIVE_MATRIX_PROPERTIES_NV = 1000249001,
|
||||||
|
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COOPERATIVE_MATRIX_PROPERTIES_NV = 1000249002,
|
||||||
VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT = VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT,
|
VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT = VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT,
|
||||||
VK_STRUCTURE_TYPE_RENDER_PASS_MULTIVIEW_CREATE_INFO_KHR = VK_STRUCTURE_TYPE_RENDER_PASS_MULTIVIEW_CREATE_INFO,
|
VK_STRUCTURE_TYPE_RENDER_PASS_MULTIVIEW_CREATE_INFO_KHR = VK_STRUCTURE_TYPE_RENDER_PASS_MULTIVIEW_CREATE_INFO,
|
||||||
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES,
|
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES_KHR = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES,
|
||||||
@ -7462,6 +7467,27 @@ typedef struct VkPipelineRasterizationConservativeStateCreateInfoEXT {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#define VK_EXT_depth_clip_enable 1
|
||||||
|
#define VK_EXT_DEPTH_CLIP_ENABLE_SPEC_VERSION 1
|
||||||
|
#define VK_EXT_DEPTH_CLIP_ENABLE_EXTENSION_NAME "VK_EXT_depth_clip_enable"
|
||||||
|
|
||||||
|
typedef VkFlags VkPipelineRasterizationDepthClipStateCreateFlagsEXT;
|
||||||
|
|
||||||
|
typedef struct VkPhysicalDeviceDepthClipEnableFeaturesEXT {
|
||||||
|
VkStructureType sType;
|
||||||
|
void* pNext;
|
||||||
|
VkBool32 depthClipEnable;
|
||||||
|
} VkPhysicalDeviceDepthClipEnableFeaturesEXT;
|
||||||
|
|
||||||
|
typedef struct VkPipelineRasterizationDepthClipStateCreateInfoEXT {
|
||||||
|
VkStructureType sType;
|
||||||
|
const void* pNext;
|
||||||
|
VkPipelineRasterizationDepthClipStateCreateFlagsEXT flags;
|
||||||
|
VkBool32 depthClipEnable;
|
||||||
|
} VkPipelineRasterizationDepthClipStateCreateInfoEXT;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#define VK_EXT_swapchain_colorspace 1
|
#define VK_EXT_swapchain_colorspace 1
|
||||||
#define VK_EXT_SWAPCHAIN_COLOR_SPACE_SPEC_VERSION 3
|
#define VK_EXT_SWAPCHAIN_COLOR_SPACE_SPEC_VERSION 3
|
||||||
#define VK_EXT_SWAPCHAIN_COLOR_SPACE_EXTENSION_NAME "VK_EXT_swapchain_colorspace"
|
#define VK_EXT_SWAPCHAIN_COLOR_SPACE_EXTENSION_NAME "VK_EXT_swapchain_colorspace"
|
||||||
@ -9126,6 +9152,76 @@ typedef struct VkValidationFeaturesEXT {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#define VK_NV_cooperative_matrix 1
|
||||||
|
#define VK_NV_COOPERATIVE_MATRIX_SPEC_VERSION 1
|
||||||
|
#define VK_NV_COOPERATIVE_MATRIX_EXTENSION_NAME "VK_NV_cooperative_matrix"
|
||||||
|
|
||||||
|
|
||||||
|
typedef enum VkComponentTypeNV {
|
||||||
|
VK_COMPONENT_TYPE_FLOAT16_NV = 0,
|
||||||
|
VK_COMPONENT_TYPE_FLOAT32_NV = 1,
|
||||||
|
VK_COMPONENT_TYPE_FLOAT64_NV = 2,
|
||||||
|
VK_COMPONENT_TYPE_SINT8_NV = 3,
|
||||||
|
VK_COMPONENT_TYPE_SINT16_NV = 4,
|
||||||
|
VK_COMPONENT_TYPE_SINT32_NV = 5,
|
||||||
|
VK_COMPONENT_TYPE_SINT64_NV = 6,
|
||||||
|
VK_COMPONENT_TYPE_UINT8_NV = 7,
|
||||||
|
VK_COMPONENT_TYPE_UINT16_NV = 8,
|
||||||
|
VK_COMPONENT_TYPE_UINT32_NV = 9,
|
||||||
|
VK_COMPONENT_TYPE_UINT64_NV = 10,
|
||||||
|
VK_COMPONENT_TYPE_BEGIN_RANGE_NV = VK_COMPONENT_TYPE_FLOAT16_NV,
|
||||||
|
VK_COMPONENT_TYPE_END_RANGE_NV = VK_COMPONENT_TYPE_UINT64_NV,
|
||||||
|
VK_COMPONENT_TYPE_RANGE_SIZE_NV = (VK_COMPONENT_TYPE_UINT64_NV - VK_COMPONENT_TYPE_FLOAT16_NV + 1),
|
||||||
|
VK_COMPONENT_TYPE_MAX_ENUM_NV = 0x7FFFFFFF
|
||||||
|
} VkComponentTypeNV;
|
||||||
|
|
||||||
|
typedef enum VkScopeNV {
|
||||||
|
VK_SCOPE_DEVICE_NV = 1,
|
||||||
|
VK_SCOPE_WORKGROUP_NV = 2,
|
||||||
|
VK_SCOPE_SUBGROUP_NV = 3,
|
||||||
|
VK_SCOPE_QUEUE_FAMILY_NV = 5,
|
||||||
|
VK_SCOPE_BEGIN_RANGE_NV = VK_SCOPE_DEVICE_NV,
|
||||||
|
VK_SCOPE_END_RANGE_NV = VK_SCOPE_QUEUE_FAMILY_NV,
|
||||||
|
VK_SCOPE_RANGE_SIZE_NV = (VK_SCOPE_QUEUE_FAMILY_NV - VK_SCOPE_DEVICE_NV + 1),
|
||||||
|
VK_SCOPE_MAX_ENUM_NV = 0x7FFFFFFF
|
||||||
|
} VkScopeNV;
|
||||||
|
|
||||||
|
typedef struct VkCooperativeMatrixPropertiesNV {
|
||||||
|
VkStructureType sType;
|
||||||
|
void* pNext;
|
||||||
|
uint32_t MSize;
|
||||||
|
uint32_t NSize;
|
||||||
|
uint32_t KSize;
|
||||||
|
VkComponentTypeNV AType;
|
||||||
|
VkComponentTypeNV BType;
|
||||||
|
VkComponentTypeNV CType;
|
||||||
|
VkComponentTypeNV DType;
|
||||||
|
VkScopeNV scope;
|
||||||
|
} VkCooperativeMatrixPropertiesNV;
|
||||||
|
|
||||||
|
typedef struct VkPhysicalDeviceCooperativeMatrixFeaturesNV {
|
||||||
|
VkStructureType sType;
|
||||||
|
void* pNext;
|
||||||
|
VkBool32 cooperativeMatrix;
|
||||||
|
VkBool32 cooperativeMatrixRobustBufferAccess;
|
||||||
|
} VkPhysicalDeviceCooperativeMatrixFeaturesNV;
|
||||||
|
|
||||||
|
typedef struct VkPhysicalDeviceCooperativeMatrixPropertiesNV {
|
||||||
|
VkStructureType sType;
|
||||||
|
void* pNext;
|
||||||
|
VkShaderStageFlags cooperativeMatrixSupportedStages;
|
||||||
|
} VkPhysicalDeviceCooperativeMatrixPropertiesNV;
|
||||||
|
|
||||||
|
|
||||||
|
typedef VkResult (VKAPI_PTR *PFN_vkGetPhysicalDeviceCooperativeMatrixPropertiesNV)(VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkCooperativeMatrixPropertiesNV* pProperties);
|
||||||
|
|
||||||
|
#ifndef VK_NO_PROTOTYPES
|
||||||
|
VKAPI_ATTR VkResult VKAPI_CALL vkGetPhysicalDeviceCooperativeMatrixPropertiesNV(
|
||||||
|
VkPhysicalDevice physicalDevice,
|
||||||
|
uint32_t* pPropertyCount,
|
||||||
|
VkCooperativeMatrixPropertiesNV* pProperties);
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
{
|
{
|
||||||
"version info": {
|
"version info": {
|
||||||
"schema version": 2,
|
"schema version": 2,
|
||||||
"api version": "1.1.100",
|
"api version": "1.1.101",
|
||||||
"comment": "from git branch: master commit: fcf5980cf6acc620334f55b0cf2d162b05e0487a",
|
"comment": "from git branch: master commit: 55220784e078fe3dad80e9520ca1d264f9b12b72",
|
||||||
"date": "2019-02-14 21:15:17Z"
|
"date": "2019-02-20 00:56:19Z"
|
||||||
},
|
},
|
||||||
"validation": {
|
"validation": {
|
||||||
"vkGetInstanceProcAddr": {
|
"vkGetInstanceProcAddr": {
|
||||||
@ -42,7 +42,7 @@
|
|||||||
"core": [
|
"core": [
|
||||||
{
|
{
|
||||||
"vuid": "VUID-vkCreateInstance-ppEnabledExtensionNames-01388",
|
"vuid": "VUID-vkCreateInstance-ppEnabledExtensionNames-01388",
|
||||||
"text": " All <a href=\"#extended-functionality-extensions-dependencies\">required extensions</a> for each extension in the <a href=\"#VkInstanceCreateInfo\">VkInstanceCreateInfo</a>::<code>ppEnabledExtensionNames</code> list <strong class=\"purple\">must</strong> also be present in that list."
|
"text": " All <a href=\"#extendingvulkan-extensions-extensiondependencies\">required extensions</a> for each extension in the <a href=\"#VkInstanceCreateInfo\">VkInstanceCreateInfo</a>::<code>ppEnabledExtensionNames</code> list <strong class=\"purple\">must</strong> also be present in that list."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-vkCreateInstance-pCreateInfo-parameter",
|
"vuid": "VUID-vkCreateInstance-pCreateInfo-parameter",
|
||||||
@ -214,7 +214,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkPhysicalDeviceProperties2-pNext-pNext",
|
"vuid": "VUID-VkPhysicalDeviceProperties2-pNext-pNext",
|
||||||
"text": " Each <code>pNext</code> member of any structure (including this one) in the <code>pNext</code> chain <strong class=\"purple\">must</strong> be either <code>NULL</code> or a pointer to a valid instance of <a href=\"#VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT\">VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT</a>, <a href=\"#VkPhysicalDeviceConservativeRasterizationPropertiesEXT\">VkPhysicalDeviceConservativeRasterizationPropertiesEXT</a>, <a href=\"#VkPhysicalDeviceDepthStencilResolvePropertiesKHR\">VkPhysicalDeviceDepthStencilResolvePropertiesKHR</a>, <a href=\"#VkPhysicalDeviceDescriptorIndexingPropertiesEXT\">VkPhysicalDeviceDescriptorIndexingPropertiesEXT</a>, <a href=\"#VkPhysicalDeviceDiscardRectanglePropertiesEXT\">VkPhysicalDeviceDiscardRectanglePropertiesEXT</a>, <a href=\"#VkPhysicalDeviceDriverPropertiesKHR\">VkPhysicalDeviceDriverPropertiesKHR</a>, <a href=\"#VkPhysicalDeviceExternalMemoryHostPropertiesEXT\">VkPhysicalDeviceExternalMemoryHostPropertiesEXT</a>, <a href=\"#VkPhysicalDeviceFloatControlsPropertiesKHR\">VkPhysicalDeviceFloatControlsPropertiesKHR</a>, <a href=\"#VkPhysicalDeviceFragmentDensityMapPropertiesEXT\">VkPhysicalDeviceFragmentDensityMapPropertiesEXT</a>, <a href=\"#VkPhysicalDeviceIDProperties\">VkPhysicalDeviceIDProperties</a>, <a href=\"#VkPhysicalDeviceInlineUniformBlockPropertiesEXT\">VkPhysicalDeviceInlineUniformBlockPropertiesEXT</a>, <a href=\"#VkPhysicalDeviceMaintenance3Properties\">VkPhysicalDeviceMaintenance3Properties</a>, <a href=\"#VkPhysicalDeviceMeshShaderPropertiesNV\">VkPhysicalDeviceMeshShaderPropertiesNV</a>, <a href=\"#VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX\">VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX</a>, <a href=\"#VkPhysicalDeviceMultiviewProperties\">VkPhysicalDeviceMultiviewProperties</a>, <a href=\"#VkPhysicalDevicePCIBusInfoPropertiesEXT\">VkPhysicalDevicePCIBusInfoPropertiesEXT</a>, <a href=\"#VkPhysicalDevicePointClippingProperties\">VkPhysicalDevicePointClippingProperties</a>, <a href=\"#VkPhysicalDeviceProtectedMemoryProperties\">VkPhysicalDeviceProtectedMemoryProperties</a>, <a href=\"#VkPhysicalDevicePushDescriptorPropertiesKHR\">VkPhysicalDevicePushDescriptorPropertiesKHR</a>, <a href=\"#VkPhysicalDeviceRayTracingPropertiesNV\">VkPhysicalDeviceRayTracingPropertiesNV</a>, <a href=\"#VkPhysicalDeviceSampleLocationsPropertiesEXT\">VkPhysicalDeviceSampleLocationsPropertiesEXT</a>, <a href=\"#VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT\">VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT</a>, <a href=\"#VkPhysicalDeviceShaderCorePropertiesAMD\">VkPhysicalDeviceShaderCorePropertiesAMD</a>, <a href=\"#VkPhysicalDeviceShadingRateImagePropertiesNV\">VkPhysicalDeviceShadingRateImagePropertiesNV</a>, <a href=\"#VkPhysicalDeviceSubgroupProperties\">VkPhysicalDeviceSubgroupProperties</a>, <a href=\"#VkPhysicalDeviceTransformFeedbackPropertiesEXT\">VkPhysicalDeviceTransformFeedbackPropertiesEXT</a>, or <a href=\"#VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT\">VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT</a>"
|
"text": " Each <code>pNext</code> member of any structure (including this one) in the <code>pNext</code> chain <strong class=\"purple\">must</strong> be either <code>NULL</code> or a pointer to a valid instance of <a href=\"#VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT\">VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT</a>, <a href=\"#VkPhysicalDeviceConservativeRasterizationPropertiesEXT\">VkPhysicalDeviceConservativeRasterizationPropertiesEXT</a>, <a href=\"#VkPhysicalDeviceCooperativeMatrixPropertiesNV\">VkPhysicalDeviceCooperativeMatrixPropertiesNV</a>, <a href=\"#VkPhysicalDeviceDepthStencilResolvePropertiesKHR\">VkPhysicalDeviceDepthStencilResolvePropertiesKHR</a>, <a href=\"#VkPhysicalDeviceDescriptorIndexingPropertiesEXT\">VkPhysicalDeviceDescriptorIndexingPropertiesEXT</a>, <a href=\"#VkPhysicalDeviceDiscardRectanglePropertiesEXT\">VkPhysicalDeviceDiscardRectanglePropertiesEXT</a>, <a href=\"#VkPhysicalDeviceDriverPropertiesKHR\">VkPhysicalDeviceDriverPropertiesKHR</a>, <a href=\"#VkPhysicalDeviceExternalMemoryHostPropertiesEXT\">VkPhysicalDeviceExternalMemoryHostPropertiesEXT</a>, <a href=\"#VkPhysicalDeviceFloatControlsPropertiesKHR\">VkPhysicalDeviceFloatControlsPropertiesKHR</a>, <a href=\"#VkPhysicalDeviceFragmentDensityMapPropertiesEXT\">VkPhysicalDeviceFragmentDensityMapPropertiesEXT</a>, <a href=\"#VkPhysicalDeviceIDProperties\">VkPhysicalDeviceIDProperties</a>, <a href=\"#VkPhysicalDeviceInlineUniformBlockPropertiesEXT\">VkPhysicalDeviceInlineUniformBlockPropertiesEXT</a>, <a href=\"#VkPhysicalDeviceMaintenance3Properties\">VkPhysicalDeviceMaintenance3Properties</a>, <a href=\"#VkPhysicalDeviceMeshShaderPropertiesNV\">VkPhysicalDeviceMeshShaderPropertiesNV</a>, <a href=\"#VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX\">VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX</a>, <a href=\"#VkPhysicalDeviceMultiviewProperties\">VkPhysicalDeviceMultiviewProperties</a>, <a href=\"#VkPhysicalDevicePCIBusInfoPropertiesEXT\">VkPhysicalDevicePCIBusInfoPropertiesEXT</a>, <a href=\"#VkPhysicalDevicePointClippingProperties\">VkPhysicalDevicePointClippingProperties</a>, <a href=\"#VkPhysicalDeviceProtectedMemoryProperties\">VkPhysicalDeviceProtectedMemoryProperties</a>, <a href=\"#VkPhysicalDevicePushDescriptorPropertiesKHR\">VkPhysicalDevicePushDescriptorPropertiesKHR</a>, <a href=\"#VkPhysicalDeviceRayTracingPropertiesNV\">VkPhysicalDeviceRayTracingPropertiesNV</a>, <a href=\"#VkPhysicalDeviceSampleLocationsPropertiesEXT\">VkPhysicalDeviceSampleLocationsPropertiesEXT</a>, <a href=\"#VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT\">VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT</a>, <a href=\"#VkPhysicalDeviceShaderCorePropertiesAMD\">VkPhysicalDeviceShaderCorePropertiesAMD</a>, <a href=\"#VkPhysicalDeviceShadingRateImagePropertiesNV\">VkPhysicalDeviceShadingRateImagePropertiesNV</a>, <a href=\"#VkPhysicalDeviceSubgroupProperties\">VkPhysicalDeviceSubgroupProperties</a>, <a href=\"#VkPhysicalDeviceTransformFeedbackPropertiesEXT\">VkPhysicalDeviceTransformFeedbackPropertiesEXT</a>, or <a href=\"#VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT\">VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT</a>"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkPhysicalDeviceProperties2-sType-unique",
|
"vuid": "VUID-VkPhysicalDeviceProperties2-sType-unique",
|
||||||
@ -330,7 +330,7 @@
|
|||||||
"core": [
|
"core": [
|
||||||
{
|
{
|
||||||
"vuid": "VUID-vkCreateDevice-ppEnabledExtensionNames-01387",
|
"vuid": "VUID-vkCreateDevice-ppEnabledExtensionNames-01387",
|
||||||
"text": " All <a href=\"#extended-functionality-extensions-dependencies\">required extensions</a> for each extension in the <a href=\"#VkDeviceCreateInfo\">VkDeviceCreateInfo</a>::<code>ppEnabledExtensionNames</code> list <strong class=\"purple\">must</strong> also be present in that list."
|
"text": " All <a href=\"#extendingvulkan-extensions-extensiondependencies\">required extensions</a> for each extension in the <a href=\"#VkDeviceCreateInfo\">VkDeviceCreateInfo</a>::<code>ppEnabledExtensionNames</code> list <strong class=\"purple\">must</strong> also be present in that list."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-vkCreateDevice-physicalDevice-parameter",
|
"vuid": "VUID-vkCreateDevice-physicalDevice-parameter",
|
||||||
@ -362,7 +362,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkDeviceCreateInfo-pNext-pNext",
|
"vuid": "VUID-VkDeviceCreateInfo-pNext-pNext",
|
||||||
"text": " Each <code>pNext</code> member of any structure (including this one) in the <code>pNext</code> chain <strong class=\"purple\">must</strong> be either <code>NULL</code> or a pointer to a valid instance of <a href=\"#VkDeviceGroupDeviceCreateInfo\">VkDeviceGroupDeviceCreateInfo</a>, <a href=\"#VkDeviceMemoryOverallocationCreateInfoAMD\">VkDeviceMemoryOverallocationCreateInfoAMD</a>, <a href=\"#VkPhysicalDevice16BitStorageFeatures\">VkPhysicalDevice16BitStorageFeatures</a>, <a href=\"#VkPhysicalDevice8BitStorageFeaturesKHR\">VkPhysicalDevice8BitStorageFeaturesKHR</a>, <a href=\"#VkPhysicalDeviceASTCDecodeFeaturesEXT\">VkPhysicalDeviceASTCDecodeFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT\">VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceBufferAddressFeaturesEXT\">VkPhysicalDeviceBufferAddressFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceComputeShaderDerivativesFeaturesNV\">VkPhysicalDeviceComputeShaderDerivativesFeaturesNV</a>, <a href=\"#VkPhysicalDeviceConditionalRenderingFeaturesEXT\">VkPhysicalDeviceConditionalRenderingFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceCornerSampledImageFeaturesNV\">VkPhysicalDeviceCornerSampledImageFeaturesNV</a>, <a href=\"#VkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV\">VkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV</a>, <a href=\"#VkPhysicalDeviceDescriptorIndexingFeaturesEXT\">VkPhysicalDeviceDescriptorIndexingFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceExclusiveScissorFeaturesNV\">VkPhysicalDeviceExclusiveScissorFeaturesNV</a>, <a href=\"#VkPhysicalDeviceFeatures2\">VkPhysicalDeviceFeatures2</a>, <a href=\"#VkPhysicalDeviceFloat16Int8FeaturesKHR\">VkPhysicalDeviceFloat16Int8FeaturesKHR</a>, <a href=\"#VkPhysicalDeviceFragmentDensityMapFeaturesEXT\">VkPhysicalDeviceFragmentDensityMapFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceFragmentShaderBarycentricFeaturesNV\">VkPhysicalDeviceFragmentShaderBarycentricFeaturesNV</a>, <a href=\"#VkPhysicalDeviceInlineUniformBlockFeaturesEXT\">VkPhysicalDeviceInlineUniformBlockFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceMemoryPriorityFeaturesEXT\">VkPhysicalDeviceMemoryPriorityFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceMeshShaderFeaturesNV\">VkPhysicalDeviceMeshShaderFeaturesNV</a>, <a href=\"#VkPhysicalDeviceMultiviewFeatures\">VkPhysicalDeviceMultiviewFeatures</a>, <a href=\"#VkPhysicalDeviceProtectedMemoryFeatures\">VkPhysicalDeviceProtectedMemoryFeatures</a>, <a href=\"#VkPhysicalDeviceRepresentativeFragmentTestFeaturesNV\">VkPhysicalDeviceRepresentativeFragmentTestFeaturesNV</a>, <a href=\"#VkPhysicalDeviceSamplerYcbcrConversionFeatures\">VkPhysicalDeviceSamplerYcbcrConversionFeatures</a>, <a href=\"#VkPhysicalDeviceScalarBlockLayoutFeaturesEXT\">VkPhysicalDeviceScalarBlockLayoutFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceShaderAtomicInt64FeaturesKHR\">VkPhysicalDeviceShaderAtomicInt64FeaturesKHR</a>, <a href=\"#VkPhysicalDeviceShaderDrawParameterFeatures\">VkPhysicalDeviceShaderDrawParameterFeatures</a>, <a href=\"#VkPhysicalDeviceShaderImageFootprintFeaturesNV\">VkPhysicalDeviceShaderImageFootprintFeaturesNV</a>, <a href=\"#VkPhysicalDeviceShadingRateImageFeaturesNV\">VkPhysicalDeviceShadingRateImageFeaturesNV</a>, <a href=\"#VkPhysicalDeviceTransformFeedbackFeaturesEXT\">VkPhysicalDeviceTransformFeedbackFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceVariablePointerFeatures\">VkPhysicalDeviceVariablePointerFeatures</a>, <a href=\"#VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT\">VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT</a>, or <a href=\"#VkPhysicalDeviceVulkanMemoryModelFeaturesKHR\">VkPhysicalDeviceVulkanMemoryModelFeaturesKHR</a>"
|
"text": " Each <code>pNext</code> member of any structure (including this one) in the <code>pNext</code> chain <strong class=\"purple\">must</strong> be either <code>NULL</code> or a pointer to a valid instance of <a href=\"#VkDeviceGroupDeviceCreateInfo\">VkDeviceGroupDeviceCreateInfo</a>, <a href=\"#VkDeviceMemoryOverallocationCreateInfoAMD\">VkDeviceMemoryOverallocationCreateInfoAMD</a>, <a href=\"#VkPhysicalDevice16BitStorageFeatures\">VkPhysicalDevice16BitStorageFeatures</a>, <a href=\"#VkPhysicalDevice8BitStorageFeaturesKHR\">VkPhysicalDevice8BitStorageFeaturesKHR</a>, <a href=\"#VkPhysicalDeviceASTCDecodeFeaturesEXT\">VkPhysicalDeviceASTCDecodeFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT\">VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceBufferAddressFeaturesEXT\">VkPhysicalDeviceBufferAddressFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceComputeShaderDerivativesFeaturesNV\">VkPhysicalDeviceComputeShaderDerivativesFeaturesNV</a>, <a href=\"#VkPhysicalDeviceConditionalRenderingFeaturesEXT\">VkPhysicalDeviceConditionalRenderingFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceCooperativeMatrixFeaturesNV\">VkPhysicalDeviceCooperativeMatrixFeaturesNV</a>, <a href=\"#VkPhysicalDeviceCornerSampledImageFeaturesNV\">VkPhysicalDeviceCornerSampledImageFeaturesNV</a>, <a href=\"#VkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV\">VkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV</a>, <a href=\"#VkPhysicalDeviceDepthClipEnableFeaturesEXT\">VkPhysicalDeviceDepthClipEnableFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceDescriptorIndexingFeaturesEXT\">VkPhysicalDeviceDescriptorIndexingFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceExclusiveScissorFeaturesNV\">VkPhysicalDeviceExclusiveScissorFeaturesNV</a>, <a href=\"#VkPhysicalDeviceFeatures2\">VkPhysicalDeviceFeatures2</a>, <a href=\"#VkPhysicalDeviceFloat16Int8FeaturesKHR\">VkPhysicalDeviceFloat16Int8FeaturesKHR</a>, <a href=\"#VkPhysicalDeviceFragmentDensityMapFeaturesEXT\">VkPhysicalDeviceFragmentDensityMapFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceFragmentShaderBarycentricFeaturesNV\">VkPhysicalDeviceFragmentShaderBarycentricFeaturesNV</a>, <a href=\"#VkPhysicalDeviceInlineUniformBlockFeaturesEXT\">VkPhysicalDeviceInlineUniformBlockFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceMemoryPriorityFeaturesEXT\">VkPhysicalDeviceMemoryPriorityFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceMeshShaderFeaturesNV\">VkPhysicalDeviceMeshShaderFeaturesNV</a>, <a href=\"#VkPhysicalDeviceMultiviewFeatures\">VkPhysicalDeviceMultiviewFeatures</a>, <a href=\"#VkPhysicalDeviceProtectedMemoryFeatures\">VkPhysicalDeviceProtectedMemoryFeatures</a>, <a href=\"#VkPhysicalDeviceRepresentativeFragmentTestFeaturesNV\">VkPhysicalDeviceRepresentativeFragmentTestFeaturesNV</a>, <a href=\"#VkPhysicalDeviceSamplerYcbcrConversionFeatures\">VkPhysicalDeviceSamplerYcbcrConversionFeatures</a>, <a href=\"#VkPhysicalDeviceScalarBlockLayoutFeaturesEXT\">VkPhysicalDeviceScalarBlockLayoutFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceShaderAtomicInt64FeaturesKHR\">VkPhysicalDeviceShaderAtomicInt64FeaturesKHR</a>, <a href=\"#VkPhysicalDeviceShaderDrawParameterFeatures\">VkPhysicalDeviceShaderDrawParameterFeatures</a>, <a href=\"#VkPhysicalDeviceShaderImageFootprintFeaturesNV\">VkPhysicalDeviceShaderImageFootprintFeaturesNV</a>, <a href=\"#VkPhysicalDeviceShadingRateImageFeaturesNV\">VkPhysicalDeviceShadingRateImageFeaturesNV</a>, <a href=\"#VkPhysicalDeviceTransformFeedbackFeaturesEXT\">VkPhysicalDeviceTransformFeedbackFeaturesEXT</a>, <a href=\"#VkPhysicalDeviceVariablePointerFeatures\">VkPhysicalDeviceVariablePointerFeatures</a>, <a href=\"#VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT\">VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT</a>, or <a href=\"#VkPhysicalDeviceVulkanMemoryModelFeaturesKHR\">VkPhysicalDeviceVulkanMemoryModelFeaturesKHR</a>"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkDeviceCreateInfo-sType-unique",
|
"vuid": "VUID-VkDeviceCreateInfo-sType-unique",
|
||||||
@ -3296,24 +3296,40 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkSubpassDescription-pResolveAttachments-00847",
|
"vuid": "VUID-VkSubpassDescription-pResolveAttachments-00847",
|
||||||
"text": " If <code>pResolveAttachments</code> is not <code>NULL</code>, for each resolve attachment that does not have the value <code>VK_ATTACHMENT_UNUSED</code>, the corresponding color attachment <strong class=\"purple\">must</strong> not have the value <code>VK_ATTACHMENT_UNUSED</code>"
|
"text": " If <code>pResolveAttachments</code> is not <code>NULL</code>, for each resolve attachment that is not <code>VK_ATTACHMENT_UNUSED</code>, the corresponding color attachment <strong class=\"purple\">must</strong> not be <code>VK_ATTACHMENT_UNUSED</code>"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkSubpassDescription-pResolveAttachments-00848",
|
"vuid": "VUID-VkSubpassDescription-pResolveAttachments-00848",
|
||||||
"text": " If <code>pResolveAttachments</code> is not <code>NULL</code>, the sample count of each element of <code>pColorAttachments</code> <strong class=\"purple\">must</strong> be anything other than <code>VK_SAMPLE_COUNT_1_BIT</code>"
|
"text": " If <code>pResolveAttachments</code> is not <code>NULL</code>, for each resolve attachment that is not <code>VK_ATTACHMENT_UNUSED</code>, the corresponding color attachment <strong class=\"purple\">must</strong> not have a sample count of <code>VK_SAMPLE_COUNT_1_BIT</code>"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkSubpassDescription-pResolveAttachments-00849",
|
"vuid": "VUID-VkSubpassDescription-pResolveAttachments-00849",
|
||||||
"text": " Each element of <code>pResolveAttachments</code> <strong class=\"purple\">must</strong> have a sample count of <code>VK_SAMPLE_COUNT_1_BIT</code>"
|
"text": " If <code>pResolveAttachments</code> is not <code>NULL</code>, each resolve attachment that is not <code>VK_ATTACHMENT_UNUSED</code> <strong class=\"purple\">must</strong> have a sample count of <code>VK_SAMPLE_COUNT_1_BIT</code>"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkSubpassDescription-pResolveAttachments-00850",
|
"vuid": "VUID-VkSubpassDescription-pResolveAttachments-00850",
|
||||||
"text": " Each element of <code>pResolveAttachments</code> <strong class=\"purple\">must</strong> have the same <a href=\"#VkFormat\">VkFormat</a> as its corresponding color attachment"
|
"text": " If <code>pResolveAttachments</code> is not <code>NULL</code>, each resolve attachment that is not <code>VK_ATTACHMENT_UNUSED</code> <strong class=\"purple\">must</strong> have the same <a href=\"#VkFormat\">VkFormat</a> as its corresponding color attachment"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkSubpassDescription-pColorAttachments-01417",
|
"vuid": "VUID-VkSubpassDescription-pColorAttachments-01417",
|
||||||
"text": " All attachments in <code>pColorAttachments</code> that are not <code>VK_ATTACHMENT_UNUSED</code> <strong class=\"purple\">must</strong> have the same sample count"
|
"text": " All attachments in <code>pColorAttachments</code> that are not <code>VK_ATTACHMENT_UNUSED</code> <strong class=\"purple\">must</strong> have the same sample count"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"vuid": "VUID-VkSubpassDescription-pInputAttachments-02647",
|
||||||
|
"text": " All attachments in <code>pInputAttachments</code> that are not <code>VK_ATTACHMENT_UNUSED</code> <strong class=\"purple\">must</strong> have formats whose features contain at least one of <code>VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT</code> or <code>VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT</code>."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vuid": "VUID-VkSubpassDescription-pColorAttachments-02648",
|
||||||
|
"text": " All attachments in <code>pColorAttachments</code> that are not <code>VK_ATTACHMENT_UNUSED</code> <strong class=\"purple\">must</strong> have formats whose features contain <code>VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT</code>"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vuid": "VUID-VkSubpassDescription-pResolveAttachments-02649",
|
||||||
|
"text": " All attachments in <code>pResolveAttachments</code> that are not <code>VK_ATTACHMENT_UNUSED</code> <strong class=\"purple\">must</strong> have formats whose features contain <code>VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT</code>"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vuid": "VUID-VkSubpassDescription-pDepthStencilAttachment-02650",
|
||||||
|
"text": " If <code>pDepthStencilAttachment</code> is not <code>NULL</code> and the attachment is not <code>VK_ATTACHMENT_UNUSED</code> then it <strong class=\"purple\">must</strong> have a format whose features contain <code>VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT</code>"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkSubpassDescription-pDepthStencilAttachment-01418",
|
"vuid": "VUID-VkSubpassDescription-pDepthStencilAttachment-01418",
|
||||||
"text": " If neither the <code>VK_AMD_mixed_attachment_samples</code> nor the <code>VK_NV_framebuffer_mixed_samples</code> extensions are enabled, and if <code>pDepthStencilAttachment</code> is not <code>VK_ATTACHMENT_UNUSED</code> and any attachments in <code>pColorAttachments</code> are not <code>VK_ATTACHMENT_UNUSED</code>, they <strong class=\"purple\">must</strong> have the same sample count"
|
"text": " If neither the <code>VK_AMD_mixed_attachment_samples</code> nor the <code>VK_NV_framebuffer_mixed_samples</code> extensions are enabled, and if <code>pDepthStencilAttachment</code> is not <code>VK_ATTACHMENT_UNUSED</code> and any attachments in <code>pColorAttachments</code> are not <code>VK_ATTACHMENT_UNUSED</code>, they <strong class=\"purple\">must</strong> have the same sample count"
|
||||||
@ -3376,7 +3392,7 @@
|
|||||||
"core": [
|
"core": [
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkAttachmentReference-layout-00857",
|
"vuid": "VUID-VkAttachmentReference-layout-00857",
|
||||||
"text": " <code>layout</code> <strong class=\"purple\">must</strong> not be <code>VK_IMAGE_LAYOUT_UNDEFINED</code> or <code>VK_IMAGE_LAYOUT_PREINITIALIZED</code>"
|
"text": " If <code>attachment</code> is not <code>VK_ATTACHMENT_UNUSED</code>, <code>layout</code> <strong class=\"purple\">must</strong> not be <code>VK_IMAGE_LAYOUT_UNDEFINED</code> or <code>VK_IMAGE_LAYOUT_PREINITIALIZED</code>"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkAttachmentReference-layout-parameter",
|
"vuid": "VUID-VkAttachmentReference-layout-parameter",
|
||||||
@ -3684,11 +3700,11 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkSubpassDescription2KHR-pResolveAttachments-03066",
|
"vuid": "VUID-VkSubpassDescription2KHR-pResolveAttachments-03066",
|
||||||
"text": " If <code>pResolveAttachments</code> is not <code>NULL</code>, the sample count of each element of <code>pColorAttachments</code> <strong class=\"purple\">must</strong> be anything other than <code>VK_SAMPLE_COUNT_1_BIT</code>"
|
"text": " If <code>pResolveAttachments</code> is not <code>NULL</code>, for each resolve attachment that is not <code>VK_ATTACHMENT_UNUSED</code>, the corresponding color attachment <strong class=\"purple\">must</strong> not have a sample count of <code>VK_SAMPLE_COUNT_1_BIT</code>"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkSubpassDescription2KHR-pResolveAttachments-03067",
|
"vuid": "VUID-VkSubpassDescription2KHR-pResolveAttachments-03067",
|
||||||
"text": " Any given element of <code>pResolveAttachments</code> <strong class=\"purple\">must</strong> have a sample count of <code>VK_SAMPLE_COUNT_1_BIT</code>"
|
"text": " If <code>pResolveAttachments</code> is not <code>NULL</code>, each resolve attachment that is not <code>VK_ATTACHMENT_UNUSED</code> <strong class=\"purple\">must</strong> have a sample count of <code>VK_SAMPLE_COUNT_1_BIT</code>"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkSubpassDescription2KHR-pResolveAttachments-03068",
|
"vuid": "VUID-VkSubpassDescription2KHR-pResolveAttachments-03068",
|
||||||
@ -3784,11 +3800,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkSubpassDescriptionDepthStencilResolveKHR-pDepthStencilResolveAttachment-03179",
|
"vuid": "VUID-VkSubpassDescriptionDepthStencilResolveKHR-pDepthStencilResolveAttachment-03179",
|
||||||
"text": " If <code>pDepthStencilResolveAttachment</code> is not <code>NULL</code>, the sample count of <code>pDepthStencilAttachment</code> <strong class=\"purple\">must</strong> be anything other than <code>VK_SAMPLE_COUNT_1_BIT</code>"
|
"text": " If <code>pDepthStencilResolveAttachment</code> is not <code>NULL</code> and does not have the value <code>VK_ATTACHMENT_UNUSED</code>, <code>pDepthStencilAttachment</code> <strong class=\"purple\">must</strong> not have a sample count of <code>VK_SAMPLE_COUNT_1_BIT</code>"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkSubpassDescriptionDepthStencilResolveKHR-pDepthStencilResolveAttachment-03180",
|
"vuid": "VUID-VkSubpassDescriptionDepthStencilResolveKHR-pDepthStencilResolveAttachment-03180",
|
||||||
"text": " <code>pDepthStencilResolveAttachment</code> <strong class=\"purple\">must</strong> have a sample count of <code>VK_SAMPLE_COUNT_1_BIT</code>"
|
"text": " If <code>pDepthStencilResolveAttachment</code> is not <code>NULL</code> and does not have the value <code>VK_ATTACHMENT_UNUSED</code>, <code>pDepthStencilResolveAttachment</code> <strong class=\"purple\">must</strong> have a sample count of <code>VK_SAMPLE_COUNT_1_BIT</code>"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vuid": "VUID-VkSubpassDescriptionDepthStencilResolveKHR-pDepthStencilResolveAttachment-02651",
|
||||||
|
"text": " If <code>pDepthStencilResolveAttachment</code> is not <code>NULL</code> and does not have the value <code>VK_ATTACHMENT_UNUSED</code> then it <strong class=\"purple\">must</strong> have a format whose features contain <code>VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT</code>"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkSubpassDescriptionDepthStencilResolveKHR-pDepthStencilResolveAttachment-03181",
|
"vuid": "VUID-VkSubpassDescriptionDepthStencilResolveKHR-pDepthStencilResolveAttachment-03181",
|
||||||
@ -3836,7 +3856,7 @@
|
|||||||
"(VK_KHR_create_renderpass2)": [
|
"(VK_KHR_create_renderpass2)": [
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkAttachmentReference2KHR-layout-03077",
|
"vuid": "VUID-VkAttachmentReference2KHR-layout-03077",
|
||||||
"text": " <code>layout</code> <strong class=\"purple\">must</strong> not be <code>VK_IMAGE_LAYOUT_UNDEFINED</code> or <code>VK_IMAGE_LAYOUT_PREINITIALIZED</code>"
|
"text": " If <code>attachment</code> is not <code>VK_ATTACHMENT_UNUSED</code>, <code>layout</code> <strong class=\"purple\">must</strong> not be <code>VK_IMAGE_LAYOUT_UNDEFINED</code> or <code>VK_IMAGE_LAYOUT_PREINITIALIZED</code>"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkAttachmentReference2KHR-sType-sType",
|
"vuid": "VUID-VkAttachmentReference2KHR-sType-sType",
|
||||||
@ -4760,6 +4780,54 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"vkGetPhysicalDeviceCooperativeMatrixPropertiesNV": {
|
||||||
|
"(VK_NV_cooperative_matrix)": [
|
||||||
|
{
|
||||||
|
"vuid": "VUID-vkGetPhysicalDeviceCooperativeMatrixPropertiesNV-physicalDevice-parameter",
|
||||||
|
"text": " <code>physicalDevice</code> <strong class=\"purple\">must</strong> be a valid <code>VkPhysicalDevice</code> handle"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vuid": "VUID-vkGetPhysicalDeviceCooperativeMatrixPropertiesNV-pPropertyCount-parameter",
|
||||||
|
"text": " <code>pPropertyCount</code> <strong class=\"purple\">must</strong> be a valid pointer to a <code>uint32_t</code> value"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vuid": "VUID-vkGetPhysicalDeviceCooperativeMatrixPropertiesNV-pProperties-parameter",
|
||||||
|
"text": " If the value referenced by <code>pPropertyCount</code> is not <code>0</code>, and <code>pProperties</code> is not <code>NULL</code>, <code>pProperties</code> <strong class=\"purple\">must</strong> be a valid pointer to an array of <code>pPropertyCount</code> <code>VkCooperativeMatrixPropertiesNV</code> structures"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"VkCooperativeMatrixPropertiesNV": {
|
||||||
|
"(VK_NV_cooperative_matrix)": [
|
||||||
|
{
|
||||||
|
"vuid": "VUID-VkCooperativeMatrixPropertiesNV-sType-sType",
|
||||||
|
"text": " <code>sType</code> <strong class=\"purple\">must</strong> be <code>VK_STRUCTURE_TYPE_COOPERATIVE_MATRIX_PROPERTIES_NV</code>"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vuid": "VUID-VkCooperativeMatrixPropertiesNV-pNext-pNext",
|
||||||
|
"text": " <code>pNext</code> <strong class=\"purple\">must</strong> be <code>NULL</code>"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vuid": "VUID-VkCooperativeMatrixPropertiesNV-AType-parameter",
|
||||||
|
"text": " <code>AType</code> <strong class=\"purple\">must</strong> be a valid <a href=\"#VkComponentTypeNV\">VkComponentTypeNV</a> value"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vuid": "VUID-VkCooperativeMatrixPropertiesNV-BType-parameter",
|
||||||
|
"text": " <code>BType</code> <strong class=\"purple\">must</strong> be a valid <a href=\"#VkComponentTypeNV\">VkComponentTypeNV</a> value"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vuid": "VUID-VkCooperativeMatrixPropertiesNV-CType-parameter",
|
||||||
|
"text": " <code>CType</code> <strong class=\"purple\">must</strong> be a valid <a href=\"#VkComponentTypeNV\">VkComponentTypeNV</a> value"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vuid": "VUID-VkCooperativeMatrixPropertiesNV-DType-parameter",
|
||||||
|
"text": " <code>DType</code> <strong class=\"purple\">must</strong> be a valid <a href=\"#VkComponentTypeNV\">VkComponentTypeNV</a> value"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vuid": "VUID-VkCooperativeMatrixPropertiesNV-scope-parameter",
|
||||||
|
"text": " <code>scope</code> <strong class=\"purple\">must</strong> be a valid <a href=\"#VkScopeNV\">VkScopeNV</a> value"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"vkCreateValidationCacheEXT": {
|
"vkCreateValidationCacheEXT": {
|
||||||
"(VK_EXT_validation_cache)": [
|
"(VK_EXT_validation_cache)": [
|
||||||
{
|
{
|
||||||
@ -5236,7 +5304,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkGraphicsPipelineCreateInfo-blendEnable-02023",
|
"vuid": "VUID-VkGraphicsPipelineCreateInfo-blendEnable-02023",
|
||||||
"text": " If rasterization is not disabled and the subpass uses color attachments, then for each color attachment in the subpass the <code>blendEnable</code> member of the corresponding element of the <code>pAttachment</code> member of <code>pColorBlendState</code> <strong class=\"purple\">must</strong> be <code>VK_FALSE</code> if the attached image’s <a href=\"#resources-image-format-features\">format features</a> does not contain the <code>VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT</code>."
|
"text": " If rasterization is not disabled and the subpass uses color attachments, then for each color attachment in the subpass the <code>blendEnable</code> member of the corresponding element of the <code>pAttachment</code> member of <code>pColorBlendState</code> <strong class=\"purple\">must</strong> be <code>VK_FALSE</code> if the attached image’s <a href=\"#resources-image-format-features\">format features</a> does not contain <code>VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT</code>."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkGraphicsPipelineCreateInfo-attachmentCount-00746",
|
"vuid": "VUID-VkGraphicsPipelineCreateInfo-attachmentCount-00746",
|
||||||
@ -8288,6 +8356,10 @@
|
|||||||
"vuid": "VUID-VkImageViewCreateInfo-usage-02277",
|
"vuid": "VUID-VkImageViewCreateInfo-usage-02277",
|
||||||
"text": " If <code>usage</code> contains <code>VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT</code>, then the image view’s <a href=\"#resources-image-view-format-features\">format features</a> <strong class=\"purple\">must</strong> contain <code>VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT</code>."
|
"text": " If <code>usage</code> contains <code>VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT</code>, then the image view’s <a href=\"#resources-image-view-format-features\">format features</a> <strong class=\"purple\">must</strong> contain <code>VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT</code>."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"vuid": "VUID-VkImageViewCreateInfo-usage-02652",
|
||||||
|
"text": " If <code>usage</code> contains <code>VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT</code>, then the image view’s <a href=\"#resources-image-view-format-features\">format features</a> <strong class=\"purple\">must</strong> contain at least one of <code>VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT</code> or <code>VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT</code>."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkImageViewCreateInfo-subresourceRange-01478",
|
"vuid": "VUID-VkImageViewCreateInfo-subresourceRange-01478",
|
||||||
"text": " <code>subresourceRange.baseMipLevel</code> <strong class=\"purple\">must</strong> be less than the <code>mipLevels</code> specified in <a href=\"#VkImageCreateInfo\">VkImageCreateInfo</a> when <code>image</code> was created"
|
"text": " <code>subresourceRange.baseMipLevel</code> <strong class=\"purple\">must</strong> be less than the <code>mipLevels</code> specified in <a href=\"#VkImageCreateInfo\">VkImageCreateInfo</a> when <code>image</code> was created"
|
||||||
@ -14746,17 +14818,13 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"(VK_VERSION_1_1)": [
|
"(VK_VERSION_1_1)": [
|
||||||
|
{
|
||||||
|
"vuid": "VUID-vkCmdDrawIndirect-commandBuffer-02640",
|
||||||
|
"text": " <code>commandBuffer</code> <strong class=\"purple\">must</strong> not be a protected command buffer"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-vkCmdDrawIndirect-commandBuffer-01856",
|
"vuid": "VUID-vkCmdDrawIndirect-commandBuffer-01856",
|
||||||
"text": " If <code>commandBuffer</code> is an unprotected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
"text": " If <code>commandBuffer</code> is an unprotected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
||||||
},
|
|
||||||
{
|
|
||||||
"vuid": "VUID-vkCmdDrawIndirect-commandBuffer-01857",
|
|
||||||
"text": " If <code>commandBuffer</code> is a protected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be an unprotected image or unprotected buffer."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"vuid": "VUID-vkCmdDrawIndirect-commandBuffer-01858",
|
|
||||||
"text": " If <code>commandBuffer</code> is a protected command buffer, and any pipeline stage other than the framebuffer-space pipeline stages in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, the image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"(VK_EXT_sample_locations)": [
|
"(VK_EXT_sample_locations)": [
|
||||||
@ -14956,17 +15024,13 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"(VK_KHR_draw_indirect_count)+(VK_VERSION_1_1)": [
|
"(VK_KHR_draw_indirect_count)+(VK_VERSION_1_1)": [
|
||||||
|
{
|
||||||
|
"vuid": "VUID-vkCmdDrawIndirectCountKHR-commandBuffer-02641",
|
||||||
|
"text": " <code>commandBuffer</code> <strong class=\"purple\">must</strong> not be a protected command buffer"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-vkCmdDrawIndirectCountKHR-commandBuffer-03133",
|
"vuid": "VUID-vkCmdDrawIndirectCountKHR-commandBuffer-03133",
|
||||||
"text": " If <code>commandBuffer</code> is an unprotected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
"text": " If <code>commandBuffer</code> is an unprotected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
||||||
},
|
|
||||||
{
|
|
||||||
"vuid": "VUID-vkCmdDrawIndirectCountKHR-commandBuffer-03134",
|
|
||||||
"text": " If <code>commandBuffer</code> is a protected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be an unprotected image or unprotected buffer."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"vuid": "VUID-vkCmdDrawIndirectCountKHR-commandBuffer-03135",
|
|
||||||
"text": " If <code>commandBuffer</code> is a protected command buffer, and any pipeline stage other than the framebuffer-space pipeline stages in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, the image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"(VK_KHR_draw_indirect_count)+(VK_EXT_sample_locations)": [
|
"(VK_KHR_draw_indirect_count)+(VK_EXT_sample_locations)": [
|
||||||
@ -15132,17 +15196,13 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"(VK_AMD_draw_indirect_count)+(VK_VERSION_1_1)": [
|
"(VK_AMD_draw_indirect_count)+(VK_VERSION_1_1)": [
|
||||||
|
{
|
||||||
|
"vuid": "VUID-vkCmdDrawIndirectCountAMD-commandBuffer-02642",
|
||||||
|
"text": " <code>commandBuffer</code> <strong class=\"purple\">must</strong> not be a protected command buffer"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-vkCmdDrawIndirectCountAMD-commandBuffer-01859",
|
"vuid": "VUID-vkCmdDrawIndirectCountAMD-commandBuffer-01859",
|
||||||
"text": " If <code>commandBuffer</code> is an unprotected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
"text": " If <code>commandBuffer</code> is an unprotected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
||||||
},
|
|
||||||
{
|
|
||||||
"vuid": "VUID-vkCmdDrawIndirectCountAMD-commandBuffer-01860",
|
|
||||||
"text": " If <code>commandBuffer</code> is a protected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be an unprotected image or unprotected buffer."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"vuid": "VUID-vkCmdDrawIndirectCountAMD-commandBuffer-01861",
|
|
||||||
"text": " If <code>commandBuffer</code> is a protected command buffer, and any pipeline stage other than the framebuffer-space pipeline stages in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, the image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"(VK_AMD_draw_indirect_count)+(VK_EXT_sample_locations)": [
|
"(VK_AMD_draw_indirect_count)+(VK_EXT_sample_locations)": [
|
||||||
@ -15314,17 +15374,13 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"(VK_VERSION_1_1)": [
|
"(VK_VERSION_1_1)": [
|
||||||
|
{
|
||||||
|
"vuid": "VUID-vkCmdDrawIndexedIndirect-commandBuffer-02643",
|
||||||
|
"text": " <code>commandBuffer</code> <strong class=\"purple\">must</strong> not be a protected command buffer"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-vkCmdDrawIndexedIndirect-commandBuffer-01862",
|
"vuid": "VUID-vkCmdDrawIndexedIndirect-commandBuffer-01862",
|
||||||
"text": " If <code>commandBuffer</code> is an unprotected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
"text": " If <code>commandBuffer</code> is an unprotected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
||||||
},
|
|
||||||
{
|
|
||||||
"vuid": "VUID-vkCmdDrawIndexedIndirect-commandBuffer-01863",
|
|
||||||
"text": " If <code>commandBuffer</code> is a protected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be an unprotected image or unprotected buffer."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"vuid": "VUID-vkCmdDrawIndexedIndirect-commandBuffer-01864",
|
|
||||||
"text": " If <code>commandBuffer</code> is a protected command buffer, and any pipeline stage other than the framebuffer-space pipeline stages in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, the image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"(VK_EXT_sample_locations)": [
|
"(VK_EXT_sample_locations)": [
|
||||||
@ -15528,17 +15584,13 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"(VK_KHR_draw_indirect_count)+(VK_VERSION_1_1)": [
|
"(VK_KHR_draw_indirect_count)+(VK_VERSION_1_1)": [
|
||||||
|
{
|
||||||
|
"vuid": "VUID-vkCmdDrawIndexedIndirectCountKHR-commandBuffer-02644",
|
||||||
|
"text": " <code>commandBuffer</code> <strong class=\"purple\">must</strong> not be a protected command buffer"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-vkCmdDrawIndexedIndirectCountKHR-commandBuffer-03165",
|
"vuid": "VUID-vkCmdDrawIndexedIndirectCountKHR-commandBuffer-03165",
|
||||||
"text": " If <code>commandBuffer</code> is an unprotected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
"text": " If <code>commandBuffer</code> is an unprotected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
||||||
},
|
|
||||||
{
|
|
||||||
"vuid": "VUID-vkCmdDrawIndexedIndirectCountKHR-commandBuffer-03166",
|
|
||||||
"text": " If <code>commandBuffer</code> is a protected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be an unprotected image or unprotected buffer."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"vuid": "VUID-vkCmdDrawIndexedIndirectCountKHR-commandBuffer-03167",
|
|
||||||
"text": " If <code>commandBuffer</code> is a protected command buffer, and any pipeline stage other than the framebuffer-space pipeline stages in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, the image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"(VK_KHR_draw_indirect_count)+(VK_EXT_sample_locations)": [
|
"(VK_KHR_draw_indirect_count)+(VK_EXT_sample_locations)": [
|
||||||
@ -15704,17 +15756,13 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"(VK_AMD_draw_indirect_count)+(VK_VERSION_1_1)": [
|
"(VK_AMD_draw_indirect_count)+(VK_VERSION_1_1)": [
|
||||||
|
{
|
||||||
|
"vuid": "VUID-vkCmdDrawIndexedIndirectCountAMD-commandBuffer-02645",
|
||||||
|
"text": " <code>commandBuffer</code> <strong class=\"purple\">must</strong> not be a protected command buffer"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-vkCmdDrawIndexedIndirectCountAMD-commandBuffer-01865",
|
"vuid": "VUID-vkCmdDrawIndexedIndirectCountAMD-commandBuffer-01865",
|
||||||
"text": " If <code>commandBuffer</code> is an unprotected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
"text": " If <code>commandBuffer</code> is an unprotected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
||||||
},
|
|
||||||
{
|
|
||||||
"vuid": "VUID-vkCmdDrawIndexedIndirectCountAMD-commandBuffer-01866",
|
|
||||||
"text": " If <code>commandBuffer</code> is a protected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be an unprotected image or unprotected buffer."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"vuid": "VUID-vkCmdDrawIndexedIndirectCountAMD-commandBuffer-01867",
|
|
||||||
"text": " If <code>commandBuffer</code> is a protected command buffer, and any pipeline stage other than the framebuffer-space pipeline stages in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, the image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"(VK_AMD_draw_indirect_count)+(VK_EXT_sample_locations)": [
|
"(VK_AMD_draw_indirect_count)+(VK_EXT_sample_locations)": [
|
||||||
@ -15742,7 +15790,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-vkCmdDrawIndirectByteCountEXT-vertexStride-02289",
|
"vuid": "VUID-vkCmdDrawIndirectByteCountEXT-vertexStride-02289",
|
||||||
"text": " <code>vertexStride</code> must be less than or equal to <a href=\"#VkPhysicalDeviceLimits\">VkPhysicalDeviceLimits</a>::<code>maxTransformFeedbackBufferDataStride</code>"
|
"text": " <code>vertexStride</code> <strong class=\"purple\">must</strong> be greater than 0 and less than or equal to <a href=\"#VkPhysicalDeviceLimits\">VkPhysicalDeviceLimits</a>::<code>maxTransformFeedbackBufferDataStride</code>"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-vkCmdDrawIndirectByteCountEXT-counterBuffer-02290",
|
"vuid": "VUID-vkCmdDrawIndirectByteCountEXT-counterBuffer-02290",
|
||||||
@ -15862,17 +15910,13 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"(VK_EXT_transform_feedback)+(VK_VERSION_1_1)": [
|
"(VK_EXT_transform_feedback)+(VK_VERSION_1_1)": [
|
||||||
|
{
|
||||||
|
"vuid": "VUID-vkCmdDrawIndirectByteCountEXT-commandBuffer-02646",
|
||||||
|
"text": " <code>commandBuffer</code> <strong class=\"purple\">must</strong> not be a protected command buffer"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-vkCmdDrawIndirectByteCountEXT-commandBuffer-02309",
|
"vuid": "VUID-vkCmdDrawIndirectByteCountEXT-commandBuffer-02309",
|
||||||
"text": " If <code>commandBuffer</code> is an unprotected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer"
|
"text": " If <code>commandBuffer</code> is an unprotected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer"
|
||||||
},
|
|
||||||
{
|
|
||||||
"vuid": "VUID-vkCmdDrawIndirectByteCountEXT-commandBuffer-02310",
|
|
||||||
"text": " If <code>commandBuffer</code> is a protected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be an unprotected image or unprotected buffer"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"vuid": "VUID-vkCmdDrawIndirectByteCountEXT-commandBuffer-02311",
|
|
||||||
"text": " If <code>commandBuffer</code> is a protected command buffer, and any pipeline stage other than the framebuffer-space pipeline stages in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_GRAPHICS</code> reads from or writes to any image or buffer, the image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"(VK_EXT_transform_feedback)+(VK_EXT_sample_locations)": [
|
"(VK_EXT_transform_feedback)+(VK_EXT_sample_locations)": [
|
||||||
@ -17116,7 +17160,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkPipelineRasterizationStateCreateInfo-pNext-pNext",
|
"vuid": "VUID-VkPipelineRasterizationStateCreateInfo-pNext-pNext",
|
||||||
"text": " Each <code>pNext</code> member of any structure (including this one) in the <code>pNext</code> chain <strong class=\"purple\">must</strong> be either <code>NULL</code> or a pointer to a valid instance of <a href=\"#VkPipelineRasterizationConservativeStateCreateInfoEXT\">VkPipelineRasterizationConservativeStateCreateInfoEXT</a>, <a href=\"#VkPipelineRasterizationStateRasterizationOrderAMD\">VkPipelineRasterizationStateRasterizationOrderAMD</a>, or <a href=\"#VkPipelineRasterizationStateStreamCreateInfoEXT\">VkPipelineRasterizationStateStreamCreateInfoEXT</a>"
|
"text": " Each <code>pNext</code> member of any structure (including this one) in the <code>pNext</code> chain <strong class=\"purple\">must</strong> be either <code>NULL</code> or a pointer to a valid instance of <a href=\"#VkPipelineRasterizationConservativeStateCreateInfoEXT\">VkPipelineRasterizationConservativeStateCreateInfoEXT</a>, <a href=\"#VkPipelineRasterizationDepthClipStateCreateInfoEXT\">VkPipelineRasterizationDepthClipStateCreateInfoEXT</a>, <a href=\"#VkPipelineRasterizationStateRasterizationOrderAMD\">VkPipelineRasterizationStateRasterizationOrderAMD</a>, or <a href=\"#VkPipelineRasterizationStateStreamCreateInfoEXT\">VkPipelineRasterizationStateStreamCreateInfoEXT</a>"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-VkPipelineRasterizationStateCreateInfo-sType-unique",
|
"vuid": "VUID-VkPipelineRasterizationStateCreateInfo-sType-unique",
|
||||||
@ -17156,6 +17200,18 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"VkPipelineRasterizationDepthClipStateCreateInfoEXT": {
|
||||||
|
"(VK_EXT_depth_clip_enable)": [
|
||||||
|
{
|
||||||
|
"vuid": "VUID-VkPipelineRasterizationDepthClipStateCreateInfoEXT-sType-sType",
|
||||||
|
"text": " <code>sType</code> <strong class=\"purple\">must</strong> be <code>VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_DEPTH_CLIP_STATE_CREATE_INFO_EXT</code>"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vuid": "VUID-VkPipelineRasterizationDepthClipStateCreateInfoEXT-flags-zerobitmask",
|
||||||
|
"text": " <code>flags</code> <strong class=\"purple\">must</strong> be <code>0</code>"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"VkPipelineMultisampleStateCreateInfo": {
|
"VkPipelineMultisampleStateCreateInfo": {
|
||||||
"core": [
|
"core": [
|
||||||
{
|
{
|
||||||
@ -18420,17 +18476,13 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"(VK_VERSION_1_1)": [
|
"(VK_VERSION_1_1)": [
|
||||||
|
{
|
||||||
|
"vuid": "VUID-vkCmdDispatchIndirect-commandBuffer-02639",
|
||||||
|
"text": " <code>commandBuffer</code> <strong class=\"purple\">must</strong> not be a protected command buffer"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"vuid": "VUID-vkCmdDispatchIndirect-commandBuffer-01847",
|
"vuid": "VUID-vkCmdDispatchIndirect-commandBuffer-01847",
|
||||||
"text": " If <code>commandBuffer</code> is an unprotected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_COMPUTE</code> reads from or writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
"text": " If <code>commandBuffer</code> is an unprotected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_COMPUTE</code> reads from or writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
||||||
},
|
|
||||||
{
|
|
||||||
"vuid": "VUID-vkCmdDispatchIndirect-commandBuffer-01848",
|
|
||||||
"text": " If <code>commandBuffer</code> is a protected command buffer, and any pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_COMPUTE</code> writes to any image or buffer, that image or buffer <strong class=\"purple\">must</strong> not be an unprotected image or unprotected buffer."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"vuid": "VUID-vkCmdDispatchIndirect-commandBuffer-01849",
|
|
||||||
"text": " If <code>commandBuffer</code> is a protected command buffer, and any pipeline stage other than the compute pipeline stage in the <code>VkPipeline</code> object bound to <code>VK_PIPELINE_BIND_POINT_COMPUTE</code> reads from any image or buffer, the image or buffer <strong class=\"purple\">must</strong> not be a protected image or protected buffer."
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"(VK_NV_corner_sampled_image)": [
|
"(VK_NV_corner_sampled_image)": [
|
||||||
@ -22244,6 +22296,14 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"VkPhysicalDeviceDepthClipEnableFeaturesEXT": {
|
||||||
|
"(VK_EXT_depth_clip_enable)": [
|
||||||
|
{
|
||||||
|
"vuid": "VUID-VkPhysicalDeviceDepthClipEnableFeaturesEXT-sType-sType",
|
||||||
|
"text": " <code>sType</code> <strong class=\"purple\">must</strong> be <code>VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_CLIP_ENABLE_FEATURES_EXT</code>"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"VkPhysicalDeviceMemoryPriorityFeaturesEXT": {
|
"VkPhysicalDeviceMemoryPriorityFeaturesEXT": {
|
||||||
"(VK_EXT_memory_priority)": [
|
"(VK_EXT_memory_priority)": [
|
||||||
{
|
{
|
||||||
@ -22268,6 +22328,14 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"VkPhysicalDeviceCooperativeMatrixFeaturesNV": {
|
||||||
|
"(VK_NV_cooperative_matrix)": [
|
||||||
|
{
|
||||||
|
"vuid": "VUID-VkPhysicalDeviceCooperativeMatrixFeaturesNV-sType-sType",
|
||||||
|
"text": " <code>sType</code> <strong class=\"purple\">must</strong> be <code>VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COOPERATIVE_MATRIX_FEATURES_NV</code>"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"VkPhysicalDevicePushDescriptorPropertiesKHR": {
|
"VkPhysicalDevicePushDescriptorPropertiesKHR": {
|
||||||
"(VK_KHR_push_descriptor)": [
|
"(VK_KHR_push_descriptor)": [
|
||||||
{
|
{
|
||||||
@ -22460,6 +22528,14 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"VkPhysicalDeviceCooperativeMatrixPropertiesNV": {
|
||||||
|
"(VK_NV_cooperative_matrix)": [
|
||||||
|
{
|
||||||
|
"vuid": "VUID-VkPhysicalDeviceCooperativeMatrixPropertiesNV-sType-sType",
|
||||||
|
"text": " <code>sType</code> <strong class=\"purple\">must</strong> be <code>VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COOPERATIVE_MATRIX_PROPERTIES_NV</code>"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"vkGetPhysicalDeviceMultisamplePropertiesEXT": {
|
"vkGetPhysicalDeviceMultisamplePropertiesEXT": {
|
||||||
"(VK_EXT_sample_locations)": [
|
"(VK_EXT_sample_locations)": [
|
||||||
{
|
{
|
||||||
|
@ -146,7 +146,7 @@ server.
|
|||||||
<type category="define">// Vulkan 1.1 version number
|
<type category="define">// Vulkan 1.1 version number
|
||||||
#define <name>VK_API_VERSION_1_1</name> <type>VK_MAKE_VERSION</type>(1, 1, 0)// Patch version should always be set to 0</type>
|
#define <name>VK_API_VERSION_1_1</name> <type>VK_MAKE_VERSION</type>(1, 1, 0)// Patch version should always be set to 0</type>
|
||||||
<type category="define">// Version of this file
|
<type category="define">// Version of this file
|
||||||
#define <name>VK_HEADER_VERSION</name> 100</type>
|
#define <name>VK_HEADER_VERSION</name> 101</type>
|
||||||
|
|
||||||
<type category="define">
|
<type category="define">
|
||||||
#define <name>VK_DEFINE_HANDLE</name>(object) typedef struct object##_T* object;</type>
|
#define <name>VK_DEFINE_HANDLE</name>(object) typedef struct object##_T* object;</type>
|
||||||
@ -311,6 +311,7 @@ server.
|
|||||||
<type requires="VkConditionalRenderingFlagBitsEXT" category="bitmask">typedef <type>VkFlags</type> <name>VkConditionalRenderingFlagsEXT</name>;</type>
|
<type requires="VkConditionalRenderingFlagBitsEXT" category="bitmask">typedef <type>VkFlags</type> <name>VkConditionalRenderingFlagsEXT</name>;</type>
|
||||||
<type requires="VkResolveModeFlagBitsKHR" category="bitmask">typedef <type>VkFlags</type> <name>VkResolveModeFlagsKHR</name>;</type>
|
<type requires="VkResolveModeFlagBitsKHR" category="bitmask">typedef <type>VkFlags</type> <name>VkResolveModeFlagsKHR</name>;</type>
|
||||||
<type category="bitmask">typedef <type>VkFlags</type> <name>VkPipelineRasterizationStateStreamCreateFlagsEXT</name>;</type>
|
<type category="bitmask">typedef <type>VkFlags</type> <name>VkPipelineRasterizationStateStreamCreateFlagsEXT</name>;</type>
|
||||||
|
<type category="bitmask">typedef <type>VkFlags</type> <name>VkPipelineRasterizationDepthClipStateCreateFlagsEXT</name>;</type>
|
||||||
|
|
||||||
|
|
||||||
<comment>Types which can be void pointers or class pointers, selected at compile time</comment>
|
<comment>Types which can be void pointers or class pointers, selected at compile time</comment>
|
||||||
@ -476,6 +477,8 @@ server.
|
|||||||
<type name="VkRayTracingShaderGroupTypeNV" category="enum"/>
|
<type name="VkRayTracingShaderGroupTypeNV" category="enum"/>
|
||||||
<type name="VkAccelerationStructureMemoryRequirementsTypeNV" category="enum"/>
|
<type name="VkAccelerationStructureMemoryRequirementsTypeNV" category="enum"/>
|
||||||
<type name="VkMemoryOverallocationBehaviorAMD" category="enum"/>
|
<type name="VkMemoryOverallocationBehaviorAMD" category="enum"/>
|
||||||
|
<type name="VkScopeNV" category="enum"/>
|
||||||
|
<type name="VkComponentTypeNV" category="enum"/>
|
||||||
|
|
||||||
<comment>WSI extensions</comment>
|
<comment>WSI extensions</comment>
|
||||||
<type name="VkColorSpaceKHR" category="enum"/>
|
<type name="VkColorSpaceKHR" category="enum"/>
|
||||||
@ -3681,6 +3684,17 @@ server.
|
|||||||
<member><type>void</type>* <name>pNext</name></member>
|
<member><type>void</type>* <name>pNext</name></member>
|
||||||
<member><type>VkBool32</type> <name>scalarBlockLayout</name></member>
|
<member><type>VkBool32</type> <name>scalarBlockLayout</name></member>
|
||||||
</type>
|
</type>
|
||||||
|
<type category="struct" name="VkPhysicalDeviceDepthClipEnableFeaturesEXT" structextends="VkPhysicalDeviceFeatures2,VkDeviceCreateInfo">
|
||||||
|
<member values="VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_CLIP_ENABLE_FEATURES_EXT"><type>VkStructureType</type> <name>sType</name></member>
|
||||||
|
<member><type>void</type>* <name>pNext</name><comment>Pointer to next structure</comment></member>
|
||||||
|
<member><type>VkBool32</type> <name>depthClipEnable</name></member>
|
||||||
|
</type>
|
||||||
|
<type category="struct" name="VkPipelineRasterizationDepthClipStateCreateInfoEXT" structextends="VkPipelineRasterizationStateCreateInfo">
|
||||||
|
<member values="VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_DEPTH_CLIP_STATE_CREATE_INFO_EXT"><type>VkStructureType</type> <name>sType</name></member>
|
||||||
|
<member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
|
||||||
|
<member optional="true"><type>VkPipelineRasterizationDepthClipStateCreateFlagsEXT</type> <name>flags</name></member> <!-- Reserved -->
|
||||||
|
<member><type>VkBool32</type> <name>depthClipEnable</name></member>
|
||||||
|
</type>
|
||||||
<type category="struct" name="VkPhysicalDeviceMemoryBudgetPropertiesEXT" structextends="VkPhysicalDeviceMemoryProperties2" returnedonly="true">
|
<type category="struct" name="VkPhysicalDeviceMemoryBudgetPropertiesEXT" structextends="VkPhysicalDeviceMemoryProperties2" returnedonly="true">
|
||||||
<member values="VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_BUDGET_PROPERTIES_EXT"><type>VkStructureType</type> <name>sType</name></member>
|
<member values="VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_BUDGET_PROPERTIES_EXT"><type>VkStructureType</type> <name>sType</name></member>
|
||||||
<member noautovalidity="true"><type>void</type>* <name>pNext</name></member>
|
<member noautovalidity="true"><type>void</type>* <name>pNext</name></member>
|
||||||
@ -3725,6 +3739,29 @@ server.
|
|||||||
<member><type>VkBool32</type> <name>filterCubic</name></member> <!-- The combinations of format, image type (and image view type if provided) can be filtered with VK_FILTER_CUBIC_EXT -->
|
<member><type>VkBool32</type> <name>filterCubic</name></member> <!-- The combinations of format, image type (and image view type if provided) can be filtered with VK_FILTER_CUBIC_EXT -->
|
||||||
<member><type>VkBool32</type> <name>filterCubicMinmax</name> </member> <!-- The combination of format, image type (and image view type if provided) can be filtered with VK_FILTER_CUBIC_EXT and ReductionMode of Min or Max -->
|
<member><type>VkBool32</type> <name>filterCubicMinmax</name> </member> <!-- The combination of format, image type (and image view type if provided) can be filtered with VK_FILTER_CUBIC_EXT and ReductionMode of Min or Max -->
|
||||||
</type>
|
</type>
|
||||||
|
<type category="struct" name="VkPhysicalDeviceCooperativeMatrixFeaturesNV" structextends="VkPhysicalDeviceFeatures2,VkDeviceCreateInfo">
|
||||||
|
<member values="VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COOPERATIVE_MATRIX_FEATURES_NV"><type>VkStructureType</type> <name>sType</name></member>
|
||||||
|
<member><type>void</type>* <name>pNext</name></member>
|
||||||
|
<member><type>VkBool32</type> <name>cooperativeMatrix</name></member>
|
||||||
|
<member><type>VkBool32</type> <name>cooperativeMatrixRobustBufferAccess</name></member>
|
||||||
|
</type>
|
||||||
|
<type category="struct" name="VkPhysicalDeviceCooperativeMatrixPropertiesNV" returnedonly="true" structextends="VkPhysicalDeviceProperties2">
|
||||||
|
<member values="VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COOPERATIVE_MATRIX_PROPERTIES_NV"><type>VkStructureType</type> <name>sType</name></member>
|
||||||
|
<member><type>void</type>* <name>pNext</name></member>
|
||||||
|
<member><type>VkShaderStageFlags</type> <name>cooperativeMatrixSupportedStages</name></member>
|
||||||
|
</type>
|
||||||
|
<type category="struct" name="VkCooperativeMatrixPropertiesNV">
|
||||||
|
<member values="VK_STRUCTURE_TYPE_COOPERATIVE_MATRIX_PROPERTIES_NV"><type>VkStructureType</type> <name>sType</name></member>
|
||||||
|
<member><type>void</type>* <name>pNext</name></member>
|
||||||
|
<member><type>uint32_t</type> <name>MSize</name></member>
|
||||||
|
<member><type>uint32_t</type> <name>NSize</name></member>
|
||||||
|
<member><type>uint32_t</type> <name>KSize</name></member>
|
||||||
|
<member><type>VkComponentTypeNV</type> <name>AType</name></member>
|
||||||
|
<member><type>VkComponentTypeNV</type> <name>BType</name></member>
|
||||||
|
<member><type>VkComponentTypeNV</type> <name>CType</name></member>
|
||||||
|
<member><type>VkComponentTypeNV</type> <name>DType</name></member>
|
||||||
|
<member><type>VkScopeNV</type> <name>scope</name></member>
|
||||||
|
</type>
|
||||||
</types>
|
</types>
|
||||||
|
|
||||||
<comment>Vulkan enumerant (token) definitions</comment>
|
<comment>Vulkan enumerant (token) definitions</comment>
|
||||||
@ -4928,6 +4965,25 @@ server.
|
|||||||
<enum value="1" name="VK_MEMORY_OVERALLOCATION_BEHAVIOR_ALLOWED_AMD"/>
|
<enum value="1" name="VK_MEMORY_OVERALLOCATION_BEHAVIOR_ALLOWED_AMD"/>
|
||||||
<enum value="2" name="VK_MEMORY_OVERALLOCATION_BEHAVIOR_DISALLOWED_AMD"/>
|
<enum value="2" name="VK_MEMORY_OVERALLOCATION_BEHAVIOR_DISALLOWED_AMD"/>
|
||||||
</enums>
|
</enums>
|
||||||
|
<enums name="VkScopeNV" type="enum">
|
||||||
|
<enum value="1" name="VK_SCOPE_DEVICE_NV"/>
|
||||||
|
<enum value="2" name="VK_SCOPE_WORKGROUP_NV"/>
|
||||||
|
<enum value="3" name="VK_SCOPE_SUBGROUP_NV"/>
|
||||||
|
<enum value="5" name="VK_SCOPE_QUEUE_FAMILY_NV"/>
|
||||||
|
</enums>
|
||||||
|
<enums name="VkComponentTypeNV" type="enum">
|
||||||
|
<enum value="0" name="VK_COMPONENT_TYPE_FLOAT16_NV"/>
|
||||||
|
<enum value="1" name="VK_COMPONENT_TYPE_FLOAT32_NV"/>
|
||||||
|
<enum value="2" name="VK_COMPONENT_TYPE_FLOAT64_NV"/>
|
||||||
|
<enum value="3" name="VK_COMPONENT_TYPE_SINT8_NV"/>
|
||||||
|
<enum value="4" name="VK_COMPONENT_TYPE_SINT16_NV"/>
|
||||||
|
<enum value="5" name="VK_COMPONENT_TYPE_SINT32_NV"/>
|
||||||
|
<enum value="6" name="VK_COMPONENT_TYPE_SINT64_NV"/>
|
||||||
|
<enum value="7" name="VK_COMPONENT_TYPE_UINT8_NV"/>
|
||||||
|
<enum value="8" name="VK_COMPONENT_TYPE_UINT16_NV"/>
|
||||||
|
<enum value="9" name="VK_COMPONENT_TYPE_UINT32_NV"/>
|
||||||
|
<enum value="10" name="VK_COMPONENT_TYPE_UINT64_NV"/>
|
||||||
|
</enums>
|
||||||
<commands comment="Vulkan command definitions">
|
<commands comment="Vulkan command definitions">
|
||||||
<command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_INITIALIZATION_FAILED,VK_ERROR_LAYER_NOT_PRESENT,VK_ERROR_EXTENSION_NOT_PRESENT,VK_ERROR_INCOMPATIBLE_DRIVER">
|
<command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_INITIALIZATION_FAILED,VK_ERROR_LAYER_NOT_PRESENT,VK_ERROR_EXTENSION_NOT_PRESENT,VK_ERROR_INCOMPATIBLE_DRIVER">
|
||||||
<proto><type>VkResult</type> <name>vkCreateInstance</name></proto>
|
<proto><type>VkResult</type> <name>vkCreateInstance</name></proto>
|
||||||
@ -7116,6 +7172,12 @@ server.
|
|||||||
<param><type>VkDevice</type> <name>device</name></param>
|
<param><type>VkDevice</type> <name>device</name></param>
|
||||||
<param>const <type>VkBufferDeviceAddressInfoEXT</type>* <name>pInfo</name></param>
|
<param>const <type>VkBufferDeviceAddressInfoEXT</type>* <name>pInfo</name></param>
|
||||||
</command>
|
</command>
|
||||||
|
<command successcodes="VK_SUCCESS,VK_INCOMPLETE" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
|
||||||
|
<proto><type>VkResult</type> <name>vkGetPhysicalDeviceCooperativeMatrixPropertiesNV</name></proto>
|
||||||
|
<param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
|
||||||
|
<param optional="false,true"><type>uint32_t</type>* <name>pPropertyCount</name></param>
|
||||||
|
<param optional="true" len="pPropertyCount"><type>VkCooperativeMatrixPropertiesNV</type>* <name>pProperties</name></param>
|
||||||
|
</command>
|
||||||
</commands>
|
</commands>
|
||||||
|
|
||||||
<feature api="vulkan" name="VK_VERSION_1_0" number="1.0" comment="Vulkan core API interface definitions">
|
<feature api="vulkan" name="VK_VERSION_1_0" number="1.0" comment="Vulkan core API interface definitions">
|
||||||
@ -8864,10 +8926,15 @@ server.
|
|||||||
<type name="VkConservativeRasterizationModeEXT"/>
|
<type name="VkConservativeRasterizationModeEXT"/>
|
||||||
</require>
|
</require>
|
||||||
</extension>
|
</extension>
|
||||||
<extension name="VK_NV_extension_103" number="103" author="NV" contact="Daniel Koch @dgkoch" supported="disabled">
|
<extension name="VK_EXT_depth_clip_enable" number="103" type="device" author="EXT" contact="Piers Daniell @pdaniell-nv" supported="vulkan">
|
||||||
<require>
|
<require>
|
||||||
<enum value="0" name="VK_NV_EXTENSION_103_SPEC_VERSION"/>
|
<enum value="1" name="VK_EXT_DEPTH_CLIP_ENABLE_SPEC_VERSION"/>
|
||||||
<enum value=""VK_NV_extension_103"" name="VK_NV_EXTENSION_103_EXTENSION_NAME"/>
|
<enum value=""VK_EXT_depth_clip_enable"" name="VK_EXT_DEPTH_CLIP_ENABLE_EXTENSION_NAME"/>
|
||||||
|
<enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_CLIP_ENABLE_FEATURES_EXT"/>
|
||||||
|
<enum offset="1" extends="VkStructureType" name="VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_DEPTH_CLIP_STATE_CREATE_INFO_EXT"/>
|
||||||
|
<type name="VkPhysicalDeviceDepthClipEnableFeaturesEXT"/>
|
||||||
|
<type name="VkPipelineRasterizationDepthClipStateCreateInfoEXT"/>
|
||||||
|
<type name="VkPipelineRasterizationDepthClipStateCreateFlagsEXT"/>
|
||||||
</require>
|
</require>
|
||||||
</extension>
|
</extension>
|
||||||
<extension name="VK_NV_extension_104" number="104" author="NV" contact="Mathias Schott gitlab:@mschott" supported="disabled">
|
<extension name="VK_NV_extension_104" number="104" author="NV" contact="Mathias Schott gitlab:@mschott" supported="disabled">
|
||||||
@ -9290,7 +9357,7 @@ server.
|
|||||||
<enum value=""VK_AMD_extension_143"" name="VK_AMD_EXTENSION_143_EXTENSION_NAME"/>
|
<enum value=""VK_AMD_extension_143"" name="VK_AMD_EXTENSION_143_EXTENSION_NAME"/>
|
||||||
</require>
|
</require>
|
||||||
</extension>
|
</extension>
|
||||||
<extension name="VK_EXT_sample_locations" number="144" type="device" author="AMD" contact="Daniel Rakos @drakos-amd" supported="vulkan">
|
<extension name="VK_EXT_sample_locations" number="144" type="device" author="AMD" contact="Daniel Rakos @drakos-amd" supported="vulkan" requires="VK_KHR_get_physical_device_properties2">
|
||||||
<require>
|
<require>
|
||||||
<enum value="1" name="VK_EXT_SAMPLE_LOCATIONS_SPEC_VERSION"/>
|
<enum value="1" name="VK_EXT_SAMPLE_LOCATIONS_SPEC_VERSION"/>
|
||||||
<enum value=""VK_EXT_sample_locations"" name="VK_EXT_SAMPLE_LOCATIONS_EXTENSION_NAME"/>
|
<enum value=""VK_EXT_sample_locations"" name="VK_EXT_SAMPLE_LOCATIONS_EXTENSION_NAME"/>
|
||||||
@ -10385,10 +10452,19 @@ server.
|
|||||||
<enum value=""VK_KHR_extension_249"" name="VK_KHR_EXTENSION_249_EXTENSION_NAME"/>
|
<enum value=""VK_KHR_extension_249"" name="VK_KHR_EXTENSION_249_EXTENSION_NAME"/>
|
||||||
</require>
|
</require>
|
||||||
</extension>
|
</extension>
|
||||||
<extension name="VK_NV_extension_250" number="250" author="NV" contact="Jeff Bolz @jeffbolznv" supported="disabled">
|
<extension name="VK_NV_cooperative_matrix" number="250" type="device" requires="VK_KHR_get_physical_device_properties2" author="NV" contact="Jeff Bolz @jeffbolznv" supported="vulkan">
|
||||||
<require>
|
<require>
|
||||||
<enum value="0" name="VK_NV_EXTENSION_250_SPEC_VERSION"/>
|
<enum value="1" name="VK_NV_COOPERATIVE_MATRIX_SPEC_VERSION"/>
|
||||||
<enum value=""VK_NV_extension_250"" name="VK_NV_EXTENSION_250_EXTENSION_NAME"/>
|
<enum value=""VK_NV_cooperative_matrix"" name="VK_NV_COOPERATIVE_MATRIX_EXTENSION_NAME"/>
|
||||||
|
<enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COOPERATIVE_MATRIX_FEATURES_NV"/>
|
||||||
|
<enum offset="1" extends="VkStructureType" name="VK_STRUCTURE_TYPE_COOPERATIVE_MATRIX_PROPERTIES_NV"/>
|
||||||
|
<enum offset="2" extends="VkStructureType" name="VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COOPERATIVE_MATRIX_PROPERTIES_NV"/>
|
||||||
|
<type name="VkCooperativeMatrixPropertiesNV"/>
|
||||||
|
<type name="VkScopeNV"/>
|
||||||
|
<type name="VkComponentTypeNV"/>
|
||||||
|
<type name="VkPhysicalDeviceCooperativeMatrixFeaturesNV"/>
|
||||||
|
<type name="VkPhysicalDeviceCooperativeMatrixPropertiesNV"/>
|
||||||
|
<command name="vkGetPhysicalDeviceCooperativeMatrixPropertiesNV"/>
|
||||||
</require>
|
</require>
|
||||||
</extension>
|
</extension>
|
||||||
<extension name="VK_NV_extension_251" number="251" author="NV" contact="Kedarnath Thangudu @kthangudu" supported="disabled">
|
<extension name="VK_NV_extension_251" number="251" author="NV" contact="Kedarnath Thangudu @kthangudu" supported="disabled">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user